diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..e0c78672 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{bat,cmd}] +end_of_line = crlf diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..f6a525db --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +* text=auto eol=lf +*.bat text eol=crlf +*.cmd text eol=crlf diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..090c5fd0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "files.eol": "\n", + "files.insertFinalNewline": true, + "files.trimFinalNewlines": true, + "files.trimTrailingWhitespace": true +} diff --git a/AGENTS.md b/AGENTS.md index 9c84de84..a874733e 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -2,6 +2,13 @@ These rules apply to every change under this project root. +## Text-file hygiene + +- Every text file must end with exactly one newline, with no extra blank line + at EOF and no trailing whitespace. +- Before handing off changes, run `npm run release:check`. This check includes + untracked files; `git diff --check` alone does not. + ## Workspace and reference boundaries - The active project root is `D:\Projects\HealerMan`. All implementation, @@ -44,4 +51,3 @@ These rules apply to every change under this project root. - `document.pointerLockElement` remains `null`; - releasing right mouse stops camera motion; - no browser mouse-capture prompt appears. - diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index a7e4b8d7..3d8a13d8 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -185,6 +185,7 @@ on the development PC. Stop if any test or build fails: ```powershell Set-Location F:\Projects\HealerMan +npm run release:check $VersionName = '0.1.3' $VersionCode = 1003 @@ -206,8 +207,8 @@ npm run build npm test -- --run src/avatar npx vitest run src/game/inputManager.test.ts src/game/inputMath.test.ts +npm run release:check git status --short -git diff --check git add -A git status --short git diff --cached --stat diff --git a/PLAYTEST_NOTES.md b/PLAYTEST_NOTES.md index de5ab473..cba705a2 100644 --- a/PLAYTEST_NOTES.md +++ b/PLAYTEST_NOTES.md @@ -1421,3 +1421,33 @@ Vite's existing large-chunk advisory remains informational. - Verification: 38 focused party/pathing/jump/animation tests passed, all 28 avatar tests passed, and `npm run build` completed successfully with 954 modules transformed. The existing large-chunk advisory remains informational. + +# 2026-08-20 — shared online dungeon session with AI fill + +- Ran two signed-in production clients against the local account server on + separate browser origins. **SharedLeader / Bulwarka** invited + **SharedMember / Mendara**; the accepted group roster showed both selected + characters and their Tank and Healer roles as ready. +- The leader launched Wailing Caverns with **Fill open slots with AI** enabled. + Both clients automatically entered the same activity, each rendered the + other player through the normal equipped `CharacterModel` path, and each + showed a live, targetable remote party frame. Three AI companions filled the + remaining slots, producing the expected five-member party on both clients. +- The reciprocal scene captures showed Bulwarka and Mendara at the same shared + dungeon position with matching environment, objective, AI roster, mob state, + and remote role labels. The leader client continued encounter simulation; + the member client received the synchronized mob and AI state without running + a second competing world simulation. +- From the member client, selected Bulwarka's online party frame and completed + a Lesser Heal cast. The member's mana/resource change propagated to the + leader client and both clients retained the same live remote health state. + Enemy combat and AI resource/health changes also continued to propagate while + the two clients remained connected. +- Evidence reviewed during the browser run: invitation/group roster DOM, + coordinated-launch DOM from both clients, reciprocal full-window dungeon + captures, and before/cast-complete remote-healing DOM snapshots. No missing + character-body or equipment fallback appeared in either dungeon capture. +- Verification: server/API tests passed all 11 cases, the complete Vitest suite + passed all 755 cases across 132 files (including the 28 avatar cases), and the + TypeScript production build completed successfully with 983 modules + transformed. The existing large-chunk advisory remains informational. diff --git a/RELEASE_RUNBOOK.md b/RELEASE_RUNBOOK.md index 3bb6cff0..dab8ca35 100644 --- a/RELEASE_RUNBOOK.md +++ b/RELEASE_RUNBOOK.md @@ -18,6 +18,21 @@ approval before it commits, pushes `main`, builds the signed APK, and publishes the Gitea release. Signing passwords and the Gitea token are passed to the child process in memory rather than on its command line. +Before changing versions or running the longer test/build sequence, the manager +runs an isolated release-candidate check. It validates tracked and untracked +files without changing the real Git index, so extra blank lines at EOF and +other whitespace errors fail immediately. Run the same fast check at any time: + +```powershell +npm run release:check +``` + +Editors should honor the repository's `.editorconfig`. The checked-in VS Code +settings also trim extra final newlines whenever a file is saved. +Git may print a one-time CRLF-to-LF conversion warning when an existing Windows +working copy is first staged under `.gitattributes`; that warning is not a +release failure, and subsequent repository text stays consistently LF. + The local release key is `F:\secure\healer-man-release.jks`. When the companion `healer-man-release-password.dpapi` file is present, blank signing-password fields are filled from that Windows user-encrypted credential in memory. The @@ -254,11 +269,14 @@ npm run dev First check for whitespace errors and review the final file list: ```powershell -git diff --check +npm run release:check git status --short git diff --stat ``` +Use `npm run release:check` before the longer release validation. Unlike +`git diff --check`, it includes new, untracked files. + Stage the intended release: ```powershell @@ -520,7 +538,7 @@ Set-Location F:\Projects\HealerMan npm run content:test npm run build git status --short -git diff --check +npm run release:check git add -A git status --short git diff --cached --stat diff --git a/package-lock.json b/package-lock.json index 2ec41294..6c1bcf4d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "healer-man", - "version": "0.1.5", + "version": "0.1.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "healer-man", - "version": "0.1.5", + "version": "0.1.6", "dependencies": { "@capacitor/android": "8.4.1", "@capacitor/core": "8.4.1", diff --git a/package.json b/package.json index 0d579b29..6b278013 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "healer-man", "private": true, - "version": "0.1.5", + "version": "0.1.6", "type": "module", "scripts": { "dev": "vite --host 0.0.0.0", @@ -98,6 +98,7 @@ "android:apk": "npm run android:sync && powershell.exe -NoProfile -ExecutionPolicy Bypass -File scripts/runAndroidGradle.ps1 assembleDebug", "android:apk:release": "npm run android:sync && powershell.exe -NoProfile -ExecutionPolicy Bypass -File scripts/runAndroidGradle.ps1 assembleRelease", "android:install": "npm run android:sync && powershell.exe -NoProfile -ExecutionPolicy Bypass -File scripts/runAndroidGradle.ps1 installDebug", + "release:check": "python scripts/release_manager.py --check-release", "release:gui": "python scripts/release_manager.py", "preview": "vite preview --host 0.0.0.0", "pretest": "npm run loot:generate", diff --git a/release-version.json b/release-version.json index 840a105e..f0693b96 100644 --- a/release-version.json +++ b/release-version.json @@ -1,4 +1,4 @@ { - "versionName": "0.1.5", - "versionCode": 1005 + "versionName": "0.1.6", + "versionCode": 1006 } diff --git a/scripts/export-coa-triggered-spells.mjs b/scripts/export-coa-triggered-spells.mjs new file mode 100644 index 00000000..545f8a26 --- /dev/null +++ b/scripts/export-coa-triggered-spells.mjs @@ -0,0 +1,194 @@ +import fs from "node:fs"; +import path from "node:path"; + +const projectRoot = path.resolve(import.meta.dirname, ".."); +const clientRoot = path.resolve(projectRoot, "..", "LadiksMPQEditor", "client-current"); +const spellPath = path.join(clientRoot, "area-52", "patch-D", "DBFilesClient", "Spell.dbc"); +const supportRoot = path.join(clientRoot, "patch-S", "DBFilesClient"); +const runtimePath = path.join(projectRoot, "src", "game", "generated", "coaAbilityRuntimeCatalog.json"); +const outputPath = path.join(projectRoot, "src", "game", "generated", "coaTriggeredSpellCatalog.json"); + +function assert(condition, message) { + if (!condition) throw new Error(message); +} + +function dbcNumberTable(filePath, valueField, floating = false) { + const buffer = fs.readFileSync(filePath); + assert(buffer.toString("ascii", 0, 4) === "WDBC", `${path.basename(filePath)} is not a WDBC file`); + const recordCount = buffer.readUInt32LE(4); + const recordSize = buffer.readUInt32LE(12); + return new Map(Array.from({ length: recordCount }, (_, index) => { + const base = 20 + index * recordSize; + return [ + buffer.readUInt32LE(base), + floating ? buffer.readFloatLE(base + valueField * 4) : buffer.readInt32LE(base + valueField * 4), + ]; + })); +} + +function dbcRangeTable(filePath) { + const buffer = fs.readFileSync(filePath); + assert(buffer.toString("ascii", 0, 4) === "WDBC", `${path.basename(filePath)} is not a WDBC file`); + const recordCount = buffer.readUInt32LE(4); + const recordSize = buffer.readUInt32LE(12); + return new Map(Array.from({ length: recordCount }, (_, index) => { + const base = 20 + index * recordSize; + return [buffer.readUInt32LE(base), { + min: Math.max(0, buffer.readFloatLE(base + 4), buffer.readFloatLE(base + 8)), + max: Math.max(0, buffer.readFloatLE(base + 12), buffer.readFloatLE(base + 16)), + }]; + })); +} + +function referencedSpellIds(runtime) { + const ids = new Set(); + const inspectEffects = (effects) => { + for (const effect of effects ?? []) { + if (effect.kind === "trigger-spell" && effect.spellId > 0) ids.add(effect.spellId); + if (effect.kind !== "apply-aura") continue; + for (const proc of effect.aura?.procs ?? []) { + const spellId = proc.action?.kind === "custom" ? proc.action.data?.spellId : 0; + if (typeof spellId === "number" && spellId > 0) ids.add(spellId); + } + } + }; + for (const abilities of Object.values(runtime.abilitiesByClass)) { + for (const ability of abilities) { + inspectEffects(ability.effects); + for (const rank of ability.ranks ?? []) inspectEffects(rank.effects); + } + } + return ids; +} + +function cleanText(value) { + return value.replace(/\r/g, "").replace(/\s+/g, " ").trim(); +} + +function spellParser(buffer, castTimes, durations, radii, ranges) { + assert(buffer.toString("ascii", 0, 4) === "WDBC", "Spell.dbc is not a WDBC file"); + const recordCount = buffer.readUInt32LE(4); + const fieldCount = buffer.readUInt32LE(8); + const recordSize = buffer.readUInt32LE(12); + const stringSize = buffer.readUInt32LE(16); + assert(fieldCount >= 234 && recordSize >= fieldCount * 4, "Unexpected Spell.dbc schema"); + const stringsOffset = 20 + recordCount * recordSize; + const offsets = new Map(Array.from({ length: recordCount }, (_, index) => { + const base = 20 + index * recordSize; + return [buffer.readUInt32LE(base), base]; + })); + const readString = (offset) => { + if (!offset || offset >= stringSize) return ""; + const start = stringsOffset + offset; + const end = buffer.indexOf(0, start); + return buffer.toString("utf8", start, end < 0 ? buffer.length : end); + }; + return (id) => { + const base = offsets.get(id); + if (base === undefined) return null; + const unsigned = (field) => buffer.readUInt32LE(base + field * 4); + const signed = (field) => buffer.readInt32LE(base + field * 4); + const float = (field) => buffer.readFloatLE(base + field * 4); + const localized = (firstField) => { + for (let locale = 0; locale < 16; locale += 1) { + const value = readString(unsigned(firstField + locale)); + if (value) return cleanText(value); + } + return ""; + }; + const effects = Array.from({ length: 3 }, (_, effectIndex) => ({ + index: effectIndex, + effectType: unsigned(71 + effectIndex), + auraType: unsigned(95 + effectIndex), + basePoints: signed(80 + effectIndex) + 1, + dieSides: signed(74 + effectIndex), + pointsPerLevel: float(77 + effectIndex), + mechanic: unsigned(83 + effectIndex), + implicitTargetA: unsigned(86 + effectIndex), + implicitTargetB: unsigned(89 + effectIndex), + radiusIndex: unsigned(92 + effectIndex), + radius: radii.get(unsigned(92 + effectIndex)) ?? 0, + periodMs: unsigned(98 + effectIndex), + valueMultiplier: float(101 + effectIndex), + chainTargets: unsigned(104 + effectIndex), + itemType: unsigned(107 + effectIndex), + miscValue: signed(110 + effectIndex), + miscValueB: signed(113 + effectIndex), + triggerSpellId: unsigned(116 + effectIndex), + pointsPerCombo: float(119 + effectIndex), + coefficient: float(229 + effectIndex), + })).filter((effect) => effect.effectType || effect.auraType || effect.basePoints !== 1 || effect.triggerSpellId); + return { + id, + name: localized(136), + rankText: localized(153), + description: localized(170) || localized(187), + categoryId: unsigned(1), + dispelType: unsigned(2), + mechanic: unsigned(3), + attributes: Array.from({ length: 8 }, (_, index) => unsigned(4 + index)), + castTimeIndex: unsigned(28), + castTimeMs: Math.max(0, castTimes.get(unsigned(28)) ?? 0), + recoveryTimeMs: unsigned(29), + categoryRecoveryTimeMs: unsigned(30), + interruptFlags: unsigned(31), + auraInterruptFlags: unsigned(32), + channelInterruptFlags: unsigned(33), + procFlags: unsigned(34), + procChance: unsigned(35), + procCharges: unsigned(36), + maxLevel: unsigned(37), + baseLevel: unsigned(38), + spellLevel: unsigned(39), + durationIndex: unsigned(40), + durationMs: durations.get(unsigned(40)) ?? 0, + powerType: signed(41), + powerCost: unsigned(42), + powerCostPerLevel: unsigned(43), + powerCostPerSecond: unsigned(44), + powerCostPerSecondPerLevel: unsigned(45), + rangeIndex: unsigned(46), + rangeMin: ranges.get(unsigned(46))?.min ?? 0, + rangeMax: ranges.get(unsigned(46))?.max ?? 0, + projectileSpeed: float(47), + stackAmount: unsigned(49), + equippedItemClass: signed(67), + equippedItemSubclassMask: signed(68), + equippedItemInventoryMask: signed(69), + iconId: unsigned(133), + powerCostPercentage: unsigned(204), + startRecoveryCategory: unsigned(205), + startRecoveryTimeMs: unsigned(206), + maximumTargets: unsigned(212), + damageClass: unsigned(213), + preventionType: unsigned(214), + schoolMask: unsigned(225), + runeCostId: unsigned(226), + powerDisplayId: unsigned(228), + effects, + }; + }; +} + +assert(fs.existsSync(spellPath), `CoA Spell.dbc was not found at ${spellPath}`); +const runtime = JSON.parse(fs.readFileSync(runtimePath, "utf8")); +const castTimes = dbcNumberTable(path.join(supportRoot, "SpellCastTimes.dbc"), 1); +const durations = dbcNumberTable(path.join(supportRoot, "SpellDuration.dbc"), 3); +const radii = dbcNumberTable(path.join(supportRoot, "SpellRadius.dbc"), 3, true); +const ranges = dbcRangeTable(path.join(supportRoot, "SpellRange.dbc")); +const parseSpell = spellParser(fs.readFileSync(spellPath), castTimes, durations, radii, ranges); +const pending = [...referencedSpellIds(runtime)]; +const spells = new Map(); +while (pending.length) { + const id = pending.shift(); + if (spells.has(id)) continue; + const spell = parseSpell(id); + if (!spell) continue; + spells.set(id, spell); + for (const effect of spell.effects) { + if (effect.triggerSpellId > 0 && !spells.has(effect.triggerSpellId)) pending.push(effect.triggerSpellId); + } +} + +fs.writeFileSync(outputPath, `${JSON.stringify({ schemaVersion: 1, spells: [...spells.values()] })}\n`, "utf8"); +console.log(`Wrote ${outputPath} with ${spells.size} triggered spell records.`); diff --git a/scripts/generate-combat-runtime-catalogs.ts b/scripts/generate-combat-runtime-catalogs.ts index 689e0d27..13bf47a1 100644 --- a/scripts/generate-combat-runtime-catalogs.ts +++ b/scripts/generate-combat-runtime-catalogs.ts @@ -4,6 +4,7 @@ import { CLASSES, type CoaClassId } from "../src/app/characterCatalog"; import { COA_ABILITIES_BY_CLASS, COA_CLASS_RESOURCES, + COA_TRIGGERED_ABILITIES_BY_SPELL_ID, } from "../src/game/coaAbilityCatalog"; import { COA_LIVE_SOURCE, @@ -25,6 +26,7 @@ writeJson("src/game/generated/coaAbilityRuntimeCatalog.json", { schemaVersion: 1, abilitiesByClass: COA_ABILITIES_BY_CLASS, resourcesByClass: COA_CLASS_RESOURCES, + triggeredAbilitiesBySpellId: COA_TRIGGERED_ABILITIES_BY_SPELL_ID, }); const coaBudgetsByClass = Object.fromEntries(CLASSES diff --git a/scripts/release_manager.py b/scripts/release_manager.py index 8689dae0..e21d2250 100644 --- a/scripts/release_manager.py +++ b/scripts/release_manager.py @@ -15,6 +15,7 @@ import re import shutil import subprocess import sys +import tempfile import threading import webbrowser from dataclasses import dataclass @@ -226,6 +227,67 @@ def current_commit() -> str: return "" +def validate_release_candidates(project_root: Path = PROJECT_ROOT) -> list[str]: + """Check tracked and untracked release files without changing the real index.""" + with tempfile.TemporaryDirectory(prefix="healer-man-release-index-") as temp_dir: + environment = os.environ.copy() + environment["GIT_INDEX_FILE"] = str(Path(temp_dir) / "index") + + def run_temporary_index_command(*args: str) -> subprocess.CompletedProcess[bytes]: + result = subprocess.run( + ["git", *args], + cwd=project_root, + env=environment, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + check=False, + ) + if result.returncode != 0: + output = result.stdout.decode("utf-8", errors="replace").strip() + raise ReleaseError( + f"Release-candidate Git check failed ({result.returncode}): " + f"git {' '.join(args)}\n{output}" + ) + return result + + run_temporary_index_command("read-tree", "HEAD") + run_temporary_index_command("add", "-A") + raw_paths = run_temporary_index_command( + "diff", "--cached", "--name-only", "-z" + ).stdout + staged_paths = [ + path.decode("utf-8", errors="replace") + for path in raw_paths.split(b"\0") + if path + ] + + whitespace_result = subprocess.run( + ["git", "diff", "--cached", "--check"], + cwd=project_root, + env=environment, + text=True, + encoding="utf-8", + errors="replace", + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + check=False, + ) + if whitespace_result.returncode != 0: + detail = whitespace_result.stdout.strip() + raise ReleaseError( + "Release-candidate whitespace check failed. This check includes " + f"tracked and untracked files:\n{detail}" + ) + + dangerous = find_dangerous_staged_paths(staged_paths) + if dangerous: + raise ReleaseError( + "Refusing to release forbidden output or a possible secret:\n" + + "\n".join(f" - {path}" for path in dangerous) + ) + return staged_paths + + def windows_powershell_environment(powershell: str) -> dict[str, str]: environment = os.environ.copy() if Path(powershell).name.lower() == "powershell.exe": @@ -1003,6 +1065,15 @@ def launch_gui(*, smoke_test: bool = False) -> int: credentials: dict[str, str], ) -> None: self._preflight_git(require_clean=False) + self._log_event( + "\n--- Early release-candidate check ---\n" + "$ npm run release:check" + ) + candidate_paths = validate_release_candidates() + self._log_event( + f"✓ Early release-candidate check passed " + f"({len(candidate_paths)} changed path(s), including untracked files)" + ) npm = shutil.which("npm") powershell = shutil.which("powershell.exe") or shutil.which("powershell") if not npm or not powershell: @@ -1034,7 +1105,6 @@ def launch_gui(*, smoke_test: bool = False) -> int: ) for command, label in checks: self._run_command(command, label) - self._run_command(["git", "diff", "--check"], "Whitespace check") self._run_command(["git", "add", "-A"], "Stage release") staged = True @@ -1371,12 +1441,28 @@ def main(argv: Sequence[str] | None = None) -> int: action="store_true", help="print release/version/Git readiness without opening the GUI", ) + parser.add_argument( + "--check-release", + action="store_true", + help="check all release candidates, including untracked files", + ) parser.add_argument( "--smoke-test", action="store_true", help=argparse.SUPPRESS, ) args = parser.parse_args(argv) + if args.check_release: + try: + paths = validate_release_candidates() + print( + f"Release candidate check passed: {len(paths)} changed path(s), " + "including untracked files." + ) + except Exception as exc: + print(f"Release candidate check failed: {exc}", file=sys.stderr) + return 1 + return 0 if args.check: try: print(json.dumps(check_summary(), indent=2)) diff --git a/scripts/release_manager_test.py b/scripts/release_manager_test.py index 0702b11d..c4815a2b 100644 --- a/scripts/release_manager_test.py +++ b/scripts/release_manager_test.py @@ -1,4 +1,7 @@ +import subprocess +import tempfile import unittest +from pathlib import Path import release_manager @@ -45,5 +48,57 @@ class SafetyTests(unittest.TestCase): self.assertIn('test "$ACTUAL_COMMIT" = "$EXPECTED_COMMIT"', block) +class ReleaseCandidateTests(unittest.TestCase): + def test_checks_untracked_files_without_changing_the_real_index(self): + with tempfile.TemporaryDirectory() as temp_dir: + project_root = Path(temp_dir) + + def git(*args): + subprocess.run( + ["git", *args], + cwd=project_root, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + check=True, + ) + + git("init", "--quiet") + (project_root / "tracked.ts").write_text("export const tracked = true;\n") + git("add", "tracked.ts") + git( + "-c", + "user.name=Healer Man Tests", + "-c", + "user.email=tests@example.invalid", + "commit", + "--quiet", + "-m", + "Initial commit", + ) + + untracked = project_root / "untracked.ts" + untracked.write_text("export const untracked = true;\n\n") + with self.assertRaisesRegex( + release_manager.ReleaseError, "untracked.ts.*new blank line at EOF" + ): + release_manager.validate_release_candidates(project_root) + + untracked.write_text("export const untracked = true;\n") + self.assertEqual( + release_manager.validate_release_candidates(project_root), + ["untracked.ts"], + ) + self.assertEqual( + subprocess.run( + ["git", "diff", "--cached", "--name-only"], + cwd=project_root, + text=True, + stdout=subprocess.PIPE, + check=True, + ).stdout, + "", + ) + + if __name__ == "__main__": unittest.main() diff --git a/scripts/runewaker-pipeline/export-player-catalog.mjs b/scripts/runewaker-pipeline/export-player-catalog.mjs index f4fbab4a..2523ca5c 100644 --- a/scripts/runewaker-pipeline/export-player-catalog.mjs +++ b/scripts/runewaker-pipeline/export-player-catalog.mjs @@ -162,6 +162,7 @@ function componentFor(id) { }; const attack = { type: int32(buffers.magicObject, offset + 0x194), + calculationType: int32(buffers.magicObject, offset + 0x2d4), damagePower: cleanFloat(float32(buffers.magicObject, offset + 0x198)), damagePowerSkillLevelArg: cleanFloat(float32(buffers.magicObject, offset + 0x19c)), fixedValue: cleanFloat(float32(buffers.magicObject, offset + 0x1a0)), @@ -297,7 +298,9 @@ function sourceSpell(spellId, classIndex) { })).filter((cost) => cost.type > 0 && cost.value !== 0 && ![9, 10, 11, 12, 13, 14, 15].includes(cost.type)); const costs = costRows.map((cost) => ({ resource: resourceForCostType(cost.type, classIndex), - amount: Math.max(0, Math.min(100, Math.abs(cost.value))), + amount: Math.max(0, cost.type === 3 || cost.type === 4 + ? Math.min(100, Math.abs(cost.value)) + : Math.abs(cost.value)), percentage: cost.type === 3 || cost.type === 4, })); const attackDistance = int32(buffers.magicCollect, offset + 0xbc); diff --git a/server/database.mjs b/server/database.mjs index 58c04daf..d8ee3aaf 100644 --- a/server/database.mjs +++ b/server/database.mjs @@ -86,6 +86,34 @@ export function openGameDatabase(options = {}) { updated_by_username TEXT, updated_at INTEGER ) STRICT; + CREATE TABLE IF NOT EXISTS online_groups ( + id TEXT PRIMARY KEY, + leader_account_id TEXT NOT NULL REFERENCES accounts(id) ON DELETE CASCADE, + activity_json TEXT, + activity_revision INTEGER NOT NULL DEFAULT 0, + created_at INTEGER NOT NULL, + updated_at INTEGER NOT NULL + ) STRICT; + CREATE TABLE IF NOT EXISTS online_group_members ( + group_id TEXT NOT NULL REFERENCES online_groups(id) ON DELETE CASCADE, + account_id TEXT NOT NULL UNIQUE REFERENCES accounts(id) ON DELETE CASCADE, + character_json TEXT, + role TEXT, + joined_at INTEGER NOT NULL, + PRIMARY KEY (group_id, account_id) + ) STRICT; + CREATE INDEX IF NOT EXISTS online_group_members_group_idx ON online_group_members(group_id, joined_at); + CREATE TABLE IF NOT EXISTS online_group_invites ( + id TEXT PRIMARY KEY, + group_id TEXT NOT NULL REFERENCES online_groups(id) ON DELETE CASCADE, + inviter_account_id TEXT NOT NULL REFERENCES accounts(id) ON DELETE CASCADE, + invitee_account_id TEXT NOT NULL REFERENCES accounts(id) ON DELETE CASCADE, + status TEXT NOT NULL, + created_at INTEGER NOT NULL, + expires_at INTEGER NOT NULL + ) STRICT; + CREATE INDEX IF NOT EXISTS online_group_invites_invitee_idx + ON online_group_invites(invitee_account_id, status, expires_at); `); database.prepare(` INSERT OR IGNORE INTO manastorm_admin_config ( @@ -253,6 +281,282 @@ export function openGameDatabase(options = {}) { }; } + function pruneExpiredGroupInvites() { + database.prepare(` + UPDATE online_group_invites SET status = 'expired' + WHERE status = 'pending' AND expires_at <= ? + `).run(Date.now()); + } + + function parseStoredJson(value, fallback = null) { + if (typeof value !== "string" || !value) return fallback; + try { return JSON.parse(value); } catch { return fallback; } + } + + function groupMembership(accountId) { + return database.prepare(` + SELECT online_groups.* + FROM online_group_members + JOIN online_groups ON online_groups.id = online_group_members.group_id + WHERE online_group_members.account_id = ? + `).get(accountId); + } + + function publicGroup(groupId) { + const group = database.prepare("SELECT * FROM online_groups WHERE id = ?").get(groupId); + if (!group) return null; + const members = database.prepare(` + SELECT accounts.id AS account_id, accounts.username, + online_group_members.character_json, online_group_members.role, + online_group_members.joined_at + FROM online_group_members + JOIN accounts ON accounts.id = online_group_members.account_id + WHERE online_group_members.group_id = ? + ORDER BY online_group_members.joined_at, accounts.username_key + `).all(groupId).map((member) => ({ + accountId: member.account_id, + username: member.username, + character: parseStoredJson(member.character_json), + role: ["tank", "healer", "damage"].includes(member.role) ? member.role : null, + joinedAt: Number(member.joined_at), + })); + return { + id: group.id, + leaderAccountId: group.leader_account_id, + members, + activity: parseStoredJson(group.activity_json), + activityRevision: Number(group.activity_revision), + createdAt: Number(group.created_at), + updatedAt: Number(group.updated_at), + }; + } + + function onlineGroupState(accountId) { + pruneExpiredGroupInvites(); + const membership = groupMembership(accountId); + const invitations = database.prepare(` + SELECT online_group_invites.id, online_group_invites.group_id, + online_group_invites.created_at, online_group_invites.expires_at, + accounts.id AS inviter_account_id, accounts.username AS inviter_username + FROM online_group_invites + JOIN accounts ON accounts.id = online_group_invites.inviter_account_id + WHERE online_group_invites.invitee_account_id = ? + AND online_group_invites.status = 'pending' + AND online_group_invites.expires_at > ? + ORDER BY online_group_invites.created_at DESC + `).all(accountId, Date.now()).map((invite) => ({ + id: invite.id, + groupId: invite.group_id, + inviterAccountId: invite.inviter_account_id, + inviterUsername: invite.inviter_username, + createdAt: Number(invite.created_at), + expiresAt: Number(invite.expires_at), + })); + return { group: membership ? publicGroup(membership.id) : null, invitations }; + } + + function createOnlineGroup(accountId) { + const existing = groupMembership(accountId); + if (existing) return existing; + const id = `group-${randomUUID()}`; + const now = Date.now(); + database.prepare(` + INSERT INTO online_groups (id, leader_account_id, activity_json, activity_revision, created_at, updated_at) + VALUES (?, ?, NULL, 0, ?, ?) + `).run(id, accountId, now, now); + database.prepare(` + INSERT INTO online_group_members (group_id, account_id, character_json, role, joined_at) + VALUES (?, ?, NULL, NULL, ?) + `).run(id, accountId, now); + return database.prepare("SELECT * FROM online_groups WHERE id = ?").get(id); + } + + function inviteOnlineGroupMember(account, usernameInput) { + pruneExpiredGroupInvites(); + const username = typeof usernameInput === "string" ? usernameInput.trim() : ""; + if (!username) throw new GameDatabaseError("Enter the player's account name.", 400, "missing_username"); + const invitee = statements.accountByUsername.get(username.toLowerCase()); + if (!invitee) throw new GameDatabaseError("No online player has that account name.", 404, "player_not_found"); + if (invitee.id === account.id) throw new GameDatabaseError("You cannot invite yourself.", 400, "cannot_invite_self"); + if (groupMembership(invitee.id)) throw new GameDatabaseError("That player is already in a group.", 409, "player_already_grouped"); + const group = createOnlineGroup(account.id); + const memberCount = Number(database.prepare("SELECT COUNT(*) AS count FROM online_group_members WHERE group_id = ?").get(group.id).count); + if (memberCount >= 5) throw new GameDatabaseError("Your group is already full.", 409, "group_full"); + const existing = database.prepare(` + SELECT id FROM online_group_invites + WHERE group_id = ? AND invitee_account_id = ? AND status = 'pending' AND expires_at > ? + `).get(group.id, invitee.id, Date.now()); + if (existing) throw new GameDatabaseError("That player already has an invitation from your group.", 409, "invite_exists"); + const id = `invite-${randomUUID()}`; + const createdAt = Date.now(); + const expiresAt = createdAt + 10 * 60 * 1000; + database.prepare(` + INSERT INTO online_group_invites ( + id, group_id, inviter_account_id, invitee_account_id, status, created_at, expires_at + ) VALUES (?, ?, ?, ?, 'pending', ?, ?) + `).run(id, group.id, account.id, invitee.id, createdAt, expiresAt); + return { id, expiresAt, state: onlineGroupState(account.id) }; + } + + function respondToOnlineGroupInvite(accountId, inviteId, accept) { + pruneExpiredGroupInvites(); + const invite = database.prepare(` + SELECT * FROM online_group_invites + WHERE id = ? AND invitee_account_id = ? AND status = 'pending' AND expires_at > ? + `).get(inviteId, accountId, Date.now()); + if (!invite) throw new GameDatabaseError("That group invitation is no longer available.", 404, "invite_not_found"); + if (!accept) { + database.prepare("UPDATE online_group_invites SET status = 'declined' WHERE id = ?").run(invite.id); + return onlineGroupState(accountId); + } + if (groupMembership(accountId)) throw new GameDatabaseError("Leave your current group before accepting another invitation.", 409, "already_grouped"); + const group = database.prepare("SELECT * FROM online_groups WHERE id = ?").get(invite.group_id); + if (!group) throw new GameDatabaseError("That group no longer exists.", 404, "group_not_found"); + const memberCount = Number(database.prepare("SELECT COUNT(*) AS count FROM online_group_members WHERE group_id = ?").get(group.id).count); + if (memberCount >= 5) throw new GameDatabaseError("That group is already full.", 409, "group_full"); + const now = Date.now(); + database.prepare(` + INSERT INTO online_group_members (group_id, account_id, character_json, role, joined_at) + VALUES (?, ?, NULL, NULL, ?) + `).run(group.id, accountId, now); + database.prepare("UPDATE online_group_invites SET status = 'accepted' WHERE id = ?").run(invite.id); + database.prepare(` + UPDATE online_group_invites SET status = 'expired' + WHERE invitee_account_id = ? AND status = 'pending' + `).run(accountId); + database.prepare(` + UPDATE online_groups SET activity_json = NULL, activity_revision = activity_revision + 1, updated_at = ? WHERE id = ? + `).run(now, group.id); + return onlineGroupState(accountId); + } + + function leaveOnlineGroup(accountId) { + const group = groupMembership(accountId); + if (!group) return onlineGroupState(accountId); + database.prepare("DELETE FROM online_group_members WHERE group_id = ? AND account_id = ?").run(group.id, accountId); + const remaining = database.prepare(` + SELECT account_id FROM online_group_members WHERE group_id = ? ORDER BY joined_at LIMIT 1 + `).get(group.id); + if (!remaining) { + database.prepare("DELETE FROM online_groups WHERE id = ?").run(group.id); + } else { + database.prepare(` + UPDATE online_groups + SET leader_account_id = CASE WHEN leader_account_id = ? THEN ? ELSE leader_account_id END, + activity_json = NULL, activity_revision = activity_revision + 1, updated_at = ? + WHERE id = ? + `).run(accountId, remaining.account_id, Date.now(), group.id); + } + return onlineGroupState(accountId); + } + + function removeOnlineGroupMember(accountId, targetAccountId) { + const group = groupMembership(accountId); + if (!group || group.leader_account_id !== accountId) { + throw new GameDatabaseError("Only the group leader can remove players.", 403, "leader_required"); + } + if (targetAccountId === accountId) return leaveOnlineGroup(accountId); + const removed = database.prepare(` + DELETE FROM online_group_members WHERE group_id = ? AND account_id = ? + `).run(group.id, targetAccountId); + if (!removed.changes) throw new GameDatabaseError("That player is not in your group.", 404, "member_not_found"); + database.prepare(` + UPDATE online_groups SET activity_json = NULL, activity_revision = activity_revision + 1, updated_at = ? WHERE id = ? + `).run(Date.now(), group.id); + return onlineGroupState(accountId); + } + + function normalizeGroupCharacter(character) { + if (!character || typeof character !== "object" || Array.isArray(character)) return null; + const id = String(character.id ?? "").slice(0, 100); + const name = String(character.name ?? "").trim().slice(0, 30); + const classId = String(character.classId ?? "").slice(0, 50); + if (!id || !name || !classId) throw new GameDatabaseError("Select a valid character for the group.", 400, "invalid_group_character"); + let appearance = {}; + if (character.appearance && typeof character.appearance === "object" && !Array.isArray(character.appearance)) { + try { + const serialized = JSON.stringify(character.appearance); + if (serialized.length <= 8 * 1024) appearance = JSON.parse(serialized); + } catch { + appearance = {}; + } + } + return { + id, + name, + classId, + categoryId: String(character.categoryId ?? "wow").slice(0, 20), + raceId: String(character.raceId ?? "human").slice(0, 50), + gender: character.gender === "female" ? "female" : "male", + level: Math.max(1, Math.min(1000, Math.trunc(Number(character.level) || 1))), + appearance, + }; + } + + function updateOnlineGroupMember(accountId, character, role) { + const group = groupMembership(accountId); + if (!group) throw new GameDatabaseError("Join or create a group first.", 409, "group_required"); + if (!["tank", "healer", "damage"].includes(role)) { + throw new GameDatabaseError("Choose a valid party role.", 400, "invalid_party_role"); + } + database.prepare(` + UPDATE online_group_members SET character_json = ?, role = ? + WHERE group_id = ? AND account_id = ? + `).run(JSON.stringify(normalizeGroupCharacter(character)), role, group.id, accountId); + database.prepare("UPDATE online_groups SET updated_at = ? WHERE id = ?").run(Date.now(), group.id); + return onlineGroupState(accountId); + } + + function startOnlineGroupActivity(accountId, input) { + const group = groupMembership(accountId); + if (!group || group.leader_account_id !== accountId) { + throw new GameDatabaseError("Only the group leader can start an activity.", 403, "leader_required"); + } + const type = input?.type; + if (type !== "dungeon" && type !== "manastorm") { + throw new GameDatabaseError("Choose a Dungeon or Manastorm.", 400, "invalid_activity_type"); + } + const contentId = String(input?.contentId ?? "").trim().slice(0, 120); + if (!contentId) throw new GameDatabaseError("Choose content before starting.", 400, "missing_content"); + const members = database.prepare(` + SELECT account_id, character_json, role FROM online_group_members WHERE group_id = ? ORDER BY joined_at + `).all(group.id); + if (members.some((member) => !member.character_json || !["tank", "healer", "damage"].includes(member.role))) { + throw new GameDatabaseError("Every player must select a character and party role before the group can start.", 409, "group_not_ready"); + } + const fillWithAi = input?.fillWithAi !== false; + const requestedSize = Math.max(1, Math.min(5, Math.trunc(Number(input?.partySize) || 5))); + const partySize = fillWithAi ? Math.max(members.length, requestedSize) : members.length; + const activity = { + id: `activity-${randomUUID()}`, + type, + contentId, + fillWithAi, + partySize, + startingLevel: type === "manastorm" + ? Math.max(1, Math.trunc(Number(input?.startingLevel) || 1)) + : null, + startedAt: Date.now(), + }; + database.prepare(` + UPDATE online_groups + SET activity_json = ?, activity_revision = activity_revision + 1, updated_at = ? + WHERE id = ? + `).run(JSON.stringify(activity), activity.startedAt, group.id); + return onlineGroupState(accountId); + } + + function clearOnlineGroupActivity(accountId) { + const group = groupMembership(accountId); + if (!group || group.leader_account_id !== accountId) { + throw new GameDatabaseError("Only the group leader can reset the activity.", 403, "leader_required"); + } + database.prepare(` + UPDATE online_groups SET activity_json = NULL, activity_revision = activity_revision + 1, updated_at = ? WHERE id = ? + `).run(Date.now(), group.id); + return onlineGroupState(accountId); + } + return { databasePath, register, @@ -264,6 +568,14 @@ export function openGameDatabase(options = {}) { isGameMaster, getManastormConfig, putManastormConfig, + onlineGroupState, + inviteOnlineGroupMember, + respondToOnlineGroupInvite, + leaveOnlineGroup, + removeOnlineGroupMember, + updateOnlineGroupMember, + startOnlineGroupActivity, + clearOnlineGroupActivity, pruneExpiredSessions: () => Number(statements.deleteExpiredSessions.run(Date.now()).changes), close: () => database.close(), }; diff --git a/server/database.test.mjs b/server/database.test.mjs index 05c1fc3d..40bfd8d4 100644 --- a/server/database.test.mjs +++ b/server/database.test.mjs @@ -122,3 +122,60 @@ test("persists revisioned Manastorm GM configuration and rejects stale or unauth bosses: { "boss:incomplete": { status: "ready" } }, }), (error) => error instanceof GameDatabaseError && error.status === 400); })); + +test("creates online groups through invitations and transfers leadership when the leader leaves", () => withDatabase(async (database) => { + const leaderAuth = await database.register("GroupLeader", "group-pass"); + const healerAuth = await database.register("GroupHealer", "healer-pass"); + const leader = database.authenticate(leaderAuth.token); + const healer = database.authenticate(healerAuth.token); + + const invitation = database.inviteOnlineGroupMember(leader, "grouphealer"); + assert.equal(invitation.state.group.members.length, 1); + const incoming = database.onlineGroupState(healer.id).invitations; + assert.equal(incoming.length, 1); + assert.equal(incoming[0].inviterUsername, "GroupLeader"); + + const accepted = database.respondToOnlineGroupInvite(healer.id, incoming[0].id, true); + assert.equal(accepted.group.members.length, 2); + assert.equal(accepted.group.leaderAccountId, leader.id); + + database.leaveOnlineGroup(leader.id); + const transferred = database.onlineGroupState(healer.id); + assert.equal(transferred.group.leaderAccountId, healer.id); + assert.deepEqual(transferred.group.members.map((member) => member.username), ["GroupHealer"]); +})); + +test("launches players-only and AI-filled group activities only when every member is ready", () => withDatabase(async (database) => { + const leaderAuth = await database.register("ReadyLeader", "group-pass"); + const memberAuth = await database.register("ReadyMember", "member-pass"); + const leader = database.authenticate(leaderAuth.token); + const member = database.authenticate(memberAuth.token); + database.inviteOnlineGroupMember(leader, member.username); + const invite = database.onlineGroupState(member.id).invitations[0]; + database.respondToOnlineGroupInvite(member.id, invite.id, true); + + database.updateOnlineGroupMember(leader.id, { + id: "leader-character", name: "Leadwell", classId: "warrior", raceId: "human", gender: "male", level: 20, + }, "tank"); + assert.throws(() => database.startOnlineGroupActivity(leader.id, { + type: "dungeon", contentId: "wailing-caverns", fillWithAi: true, partySize: 5, + }), (error) => error instanceof GameDatabaseError && error.code === "group_not_ready"); + + database.updateOnlineGroupMember(member.id, { + id: "member-character", name: "Mendwell", classId: "priest", raceId: "human", gender: "female", level: 20, + }, "healer"); + const playersOnly = database.startOnlineGroupActivity(leader.id, { + type: "dungeon", contentId: "wailing-caverns", fillWithAi: false, partySize: 5, + }); + assert.equal(playersOnly.group.activity.partySize, 2); + assert.equal(playersOnly.group.activity.fillWithAi, false); + + const filled = database.startOnlineGroupActivity(leader.id, { + type: "manastorm", contentId: "manastorm", fillWithAi: true, partySize: 5, startingLevel: 10, + }); + assert.equal(filled.group.activity.partySize, 5); + assert.equal(filled.group.activity.startingLevel, 10); + assert.throws(() => database.startOnlineGroupActivity(member.id, { + type: "dungeon", contentId: "wailing-caverns", + }), (error) => error instanceof GameDatabaseError && error.status === 403); +})); diff --git a/server/online-session.mjs b/server/online-session.mjs new file mode 100644 index 00000000..a1c6f417 --- /dev/null +++ b/server/online-session.mjs @@ -0,0 +1,211 @@ +import { GameDatabaseError } from "./database.mjs"; + +const PLAYER_TIMEOUT_MS = 15_000; +const ROOM_TIMEOUT_MS = 30 * 60_000; +const MAX_EVENTS = 256; +const MAX_BATCH_EVENTS = 48; +const ALLOWED_EVENT_KINDS = new Set([ + "damage", + "healing", + "resurrection", + "loot", + "portal", +]); +const ALLOWED_SCHOOLS = new Set([ + "physical", + "holy", + "fire", + "nature", + "frost", + "shadow", + "arcane", +]); + +function finite(value, fallback = 0) { + const number = Number(value); + return Number.isFinite(number) ? number : fallback; +} + +function boundedString(value, maximum = 160) { + return String(value ?? "").slice(0, maximum); +} + +function vector3(value) { + if (!Array.isArray(value) || value.length < 3) return [0, 0, 0]; + return value.slice(0, 3).map((entry) => Math.max(-100_000, Math.min(100_000, finite(entry)))); +} + +function jsonClone(value, fallback = null) { + try { + return JSON.parse(JSON.stringify(value)); + } catch { + return fallback; + } +} + +function requireActivity(account, snapshot) { + const group = snapshot?.group; + const activity = group?.activity; + const member = group?.members?.find((candidate) => candidate.accountId === account.id); + if (!group || !activity || !member) { + throw new GameDatabaseError("The shared activity is no longer active.", 409, "online_activity_required"); + } + return { group, activity, member }; +} + +function sanitizePresence(input, member, now) { + const maximumHealth = Math.max(1, Math.min(1_000_000_000, Math.round(finite(input?.maxHealth, 1)))); + const maximumResource = Math.max(0, Math.min(1_000_000_000, Math.round(finite(input?.maxResource)))); + return { + accountId: member.accountId, + username: member.username, + character: member.character, + role: member.role, + position: vector3(input?.position), + yaw: Math.max(-Math.PI * 8, Math.min(Math.PI * 8, finite(input?.yaw))), + grounded: input?.grounded !== false, + health: Math.max(0, Math.min(maximumHealth, Math.round(finite(input?.health, maximumHealth)))), + maxHealth: maximumHealth, + resource: Math.max(0, Math.min(maximumResource, finite(input?.resource))), + maxResource: maximumResource, + resourceName: boundedString(input?.resourceName, 40), + selectedTargetId: input?.selectedTargetId ? boundedString(input.selectedTargetId) : null, + activeCast: input?.activeCast && typeof input.activeCast === "object" + ? jsonClone(input.activeCast) + : null, + animationEvent: input?.animationEvent && typeof input.animationEvent === "object" + ? jsonClone(input.animationEvent) + : null, + equipment: Array.isArray(input?.equipment) + ? jsonClone(input.equipment.slice(0, 24), []) + : [], + updatedAt: now, + }; +} + +function sanitizeEvent(input, accountId, leaderAccountId) { + const kind = boundedString(input?.kind, 32); + if (!ALLOWED_EVENT_KINDS.has(kind)) return null; + const targetActorId = boundedString(input?.targetActorId); + if (!targetActorId && kind !== "portal") return null; + const sourceActorId = boundedString(input?.sourceActorId); + const localPlayerActorId = `online-player:${accountId}`; + // Non-leaders may submit only their own player actions. Enemy and AI events + // are produced by the activity authority and cannot be forged by members. + if (accountId !== leaderAccountId && sourceActorId !== localPlayerActorId) return null; + const school = boundedString(input?.school, 24); + return { + clientEventId: boundedString(input?.clientEventId, 200), + kind, + sourceActorId: sourceActorId || localPlayerActorId, + targetActorId, + abilityId: input?.abilityId ? boundedString(input.abilityId) : null, + school: ALLOWED_SCHOOLS.has(school) ? school : null, + rawAmount: Math.max(0, Math.min(1_000_000_000, finite(input?.rawAmount))), + effectiveAmount: Math.max(0, Math.min(1_000_000_000, finite(input?.effectiveAmount))), + critical: input?.critical === true, + occurredAt: Math.max(0, Math.trunc(finite(input?.occurredAt, Date.now()))), + }; +} + +export function createOnlineSessionManager() { + const rooms = new Map(); + + function prune(now) { + for (const [activityId, room] of rooms) { + if (now - room.updatedAt > ROOM_TIMEOUT_MS) rooms.delete(activityId); + } + } + + function roomFor(group, activity, now) { + prune(now); + let room = rooms.get(activity.id); + if (!room || room.groupId !== group.id) { + room = { + activityId: activity.id, + groupId: group.id, + revision: 0, + nextEventId: 1, + players: new Map(), + events: [], + eventKeys: new Set(), + world: null, + updatedAt: now, + }; + rooms.set(activity.id, room); + } + return room; + } + + function sync(account, groupSnapshot, input = {}) { + const now = Date.now(); + const { group, activity, member } = requireActivity(account, groupSnapshot); + const room = roomFor(group, activity, now); + const presence = sanitizePresence(input.presence, member, now); + room.players.set(account.id, presence); + room.revision += 1; + room.updatedAt = now; + + if (input.world !== undefined) { + if (group.leaderAccountId !== account.id) { + throw new GameDatabaseError("Only the activity leader can publish shared world state.", 403, "activity_authority_required"); + } + if (!input.world || typeof input.world !== "object" || Array.isArray(input.world)) { + throw new GameDatabaseError("Shared world state must be an object.", 400, "invalid_world_state"); + } + room.world = { + ...jsonClone(input.world, {}), + publishedAt: now, + publishedBy: account.id, + }; + room.revision += 1; + } + + const batch = Array.isArray(input.events) ? input.events.slice(0, MAX_BATCH_EVENTS) : []; + for (const candidate of batch) { + const event = sanitizeEvent(candidate, account.id, group.leaderAccountId); + if (!event?.clientEventId) continue; + const eventKey = `${account.id}:${event.clientEventId}`; + if (room.eventKeys.has(eventKey)) continue; + room.eventKeys.add(eventKey); + room.events.push({ + ...event, + id: room.nextEventId, + sourceAccountId: account.id, + createdAt: now, + }); + room.nextEventId += 1; + room.revision += 1; + } + if (room.events.length > MAX_EVENTS) { + const removed = room.events.splice(0, room.events.length - MAX_EVENTS); + for (const event of removed) room.eventKeys.delete(`${event.sourceAccountId}:${event.clientEventId}`); + } + + const memberIds = new Set(group.members.map((candidate) => candidate.accountId)); + for (const [accountId, player] of room.players) { + if (!memberIds.has(accountId) || now - player.updatedAt > PLAYER_TIMEOUT_MS) { + room.players.delete(accountId); + } + } + const afterEventId = Math.max(0, Math.trunc(finite(input.afterEventId))); + return { + activity, + groupId: group.id, + leaderAccountId: group.leaderAccountId, + localAccountId: account.id, + authority: group.leaderAccountId === account.id, + revision: room.revision, + serverTime: now, + players: [...room.players.values()].sort((left, right) => left.accountId.localeCompare(right.accountId)), + world: room.world, + events: room.events.filter((event) => event.id > afterEventId), + latestEventId: room.nextEventId - 1, + }; + } + + return { + sync, + clear: () => rooms.clear(), + }; +} diff --git a/server/online-session.test.mjs b/server/online-session.test.mjs new file mode 100644 index 00000000..c5aeeea9 --- /dev/null +++ b/server/online-session.test.mjs @@ -0,0 +1,114 @@ +import assert from "node:assert/strict"; +import test from "node:test"; +import { GameDatabaseError } from "./database.mjs"; +import { createOnlineSessionManager } from "./online-session.mjs"; + +function groupSnapshot() { + return { + invitations: [], + group: { + id: "group-one", + leaderAccountId: "leader", + members: [ + { + accountId: "leader", + username: "Leader", + character: { id: "lead", name: "Bulwark", classId: "warrior", raceId: "human", gender: "male", level: 20 }, + role: "tank", + }, + { + accountId: "healer", + username: "Healer", + character: { id: "heal", name: "Mendara", classId: "priest", raceId: "human", gender: "female", level: 20 }, + role: "healer", + }, + ], + activity: { + id: "activity-one", + type: "dungeon", + contentId: "wailing-caverns", + fillWithAi: false, + partySize: 2, + startingLevel: null, + startedAt: Date.now(), + }, + }, + }; +} + +const presence = { + position: [1, 2, 3], + yaw: 0.5, + health: 900, + maxHealth: 1_000, + resource: 400, + maxResource: 500, + resourceName: "Mana", +}; + +test("synchronizes player presence, leader world state, and ordered combat events", () => { + const manager = createOnlineSessionManager(); + const snapshot = groupSnapshot(); + const leader = manager.sync({ id: "leader" }, snapshot, { + presence, + world: { mobs: { boss: { health: 500, maxHealth: 500 } }, encounter: { phase: "boss" } }, + }); + assert.equal(leader.authority, true); + assert.equal(leader.players[0].character.name, "Bulwark"); + assert.equal(leader.world.mobs.boss.health, 500); + + const healer = manager.sync({ id: "healer" }, snapshot, { + presence: { ...presence, position: [4, 5, 6] }, + afterEventId: 0, + events: [{ + clientEventId: "heal:1", + kind: "damage", + sourceActorId: "online-player:healer", + targetActorId: "boss", + school: "holy", + rawAmount: 75, + effectiveAmount: 60, + occurredAt: 123, + }], + }); + assert.equal(healer.players.length, 2); + assert.equal(healer.events.length, 1); + assert.equal(healer.events[0].id, 1); + assert.equal(healer.events[0].sourceAccountId, "healer"); + + const deduplicated = manager.sync({ id: "healer" }, snapshot, { + presence, + afterEventId: 1, + events: [{ + clientEventId: "heal:1", + kind: "damage", + sourceActorId: "online-player:healer", + targetActorId: "boss", + rawAmount: 75, + effectiveAmount: 60, + }], + }); + assert.equal(deduplicated.events.length, 0); + assert.equal(deduplicated.latestEventId, 1); +}); + +test("rejects non-leader world updates and forged enemy events", () => { + const manager = createOnlineSessionManager(); + const snapshot = groupSnapshot(); + assert.throws(() => manager.sync({ id: "healer" }, snapshot, { + presence, + world: { mobs: {} }, + }), (error) => error instanceof GameDatabaseError && error.code === "activity_authority_required"); + + const state = manager.sync({ id: "healer" }, snapshot, { + presence, + events: [{ + clientEventId: "forged", + kind: "damage", + sourceActorId: "boss", + targetActorId: "online-player:leader", + rawAmount: 1_000_000, + }], + }); + assert.equal(state.events.length, 0); +}); diff --git a/server/server.mjs b/server/server.mjs index 6ea48962..d98853a6 100644 --- a/server/server.mjs +++ b/server/server.mjs @@ -3,6 +3,7 @@ import { createServer } from "node:http"; import path from "node:path"; import { fileURLToPath } from "node:url"; import { GameDatabaseError, openGameDatabase } from "./database.mjs"; +import { createOnlineSessionManager } from "./online-session.mjs"; const MIME_TYPES = new Map([ [".css", "text/css; charset=utf-8"], [".glb", "model/gltf-binary"], @@ -148,6 +149,7 @@ export function createGameServer(options = {}) { const bodyLimit = Math.max(1024, Number(options.bodyLimit ?? process.env.MAX_JSON_BODY_BYTES ?? 5 * 1024 * 1024)); const trustProxy = String(options.trustProxy ?? process.env.TRUST_PROXY ?? "").toLowerCase() === "true"; const gameDatabase = options.database ?? openGameDatabase(options); + const onlineSessions = createOnlineSessionManager(); const allowAuthRequest = createAuthLimiter(); gameDatabase.pruneExpiredSessions(); @@ -209,6 +211,58 @@ export function createGameServer(options = {}) { json(response, 200, gameDatabase.putCloudSave(account.id, body.data)); return; } + if (url.pathname === "/api/online-group" && request.method === "GET") { + const account = gameDatabase.authenticate(bearerToken(request)); + json(response, 200, gameDatabase.onlineGroupState(account.id)); + return; + } + if (url.pathname === "/api/online-group/invite" && request.method === "POST") { + const account = gameDatabase.authenticate(bearerToken(request)); + const body = await readJson(request, 64 * 1024); + json(response, 201, gameDatabase.inviteOnlineGroupMember(account, body.username)); + return; + } + if (url.pathname === "/api/online-group/invite/respond" && request.method === "POST") { + const account = gameDatabase.authenticate(bearerToken(request)); + const body = await readJson(request, 64 * 1024); + json(response, 200, gameDatabase.respondToOnlineGroupInvite(account.id, body.inviteId, body.accept === true)); + return; + } + if (url.pathname === "/api/online-group/leave" && request.method === "POST") { + const account = gameDatabase.authenticate(bearerToken(request)); + json(response, 200, gameDatabase.leaveOnlineGroup(account.id)); + return; + } + if (url.pathname === "/api/online-group/remove" && request.method === "POST") { + const account = gameDatabase.authenticate(bearerToken(request)); + const body = await readJson(request, 64 * 1024); + json(response, 200, gameDatabase.removeOnlineGroupMember(account.id, body.accountId)); + return; + } + if (url.pathname === "/api/online-group/member" && request.method === "PUT") { + const account = gameDatabase.authenticate(bearerToken(request)); + const body = await readJson(request, 64 * 1024); + json(response, 200, gameDatabase.updateOnlineGroupMember(account.id, body.character, body.role)); + return; + } + if (url.pathname === "/api/online-group/activity" && request.method === "POST") { + const account = gameDatabase.authenticate(bearerToken(request)); + const body = await readJson(request, 64 * 1024); + json(response, 200, gameDatabase.startOnlineGroupActivity(account.id, body)); + return; + } + if (url.pathname === "/api/online-group/activity/clear" && request.method === "POST") { + const account = gameDatabase.authenticate(bearerToken(request)); + json(response, 200, gameDatabase.clearOnlineGroupActivity(account.id)); + return; + } + if (url.pathname === "/api/online-session/sync" && request.method === "POST") { + const account = gameDatabase.authenticate(bearerToken(request)); + const body = await readJson(request, bodyLimit); + const groupSnapshot = gameDatabase.onlineGroupState(account.id); + json(response, 200, onlineSessions.sync(account, groupSnapshot, body)); + return; + } if (url.pathname === "/api/manastorm-config" && request.method === "GET") { const current = gameDatabase.getManastormConfig(); json(response, 200, { @@ -259,7 +313,10 @@ export function createGameServer(options = {}) { } }); - server.on("close", () => gameDatabase.close()); + server.on("close", () => { + onlineSessions.clear(); + gameDatabase.close(); + }); return { server, database: gameDatabase, staticDir, contentDir }; } diff --git a/server/server.test.mjs b/server/server.test.mjs index c74b2278..8c32345b 100644 --- a/server/server.test.mjs +++ b/server/server.test.mjs @@ -65,6 +65,84 @@ test("serves the game and authenticated cloud-save API", async () => { }); assert.equal(denied.status, 403); + const memberRegistration = await fetch(`${origin}/api/auth/register`, { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ username: "WebTank", password: "tanking-pass" }), + }); + const memberAuth = await memberRegistration.json(); + const invited = await fetch(`${origin}/api/online-group/invite`, { + method: "POST", + headers: { "Content-Type": "application/json", Authorization: `Bearer ${auth.token}` }, + body: JSON.stringify({ username: "WebTank" }), + }); + assert.equal(invited.status, 201); + const memberGroupState = await (await fetch(`${origin}/api/online-group`, { + headers: { Authorization: `Bearer ${memberAuth.token}` }, + })).json(); + assert.equal(memberGroupState.invitations.length, 1); + const accepted = await fetch(`${origin}/api/online-group/invite/respond`, { + method: "POST", + headers: { "Content-Type": "application/json", Authorization: `Bearer ${memberAuth.token}` }, + body: JSON.stringify({ inviteId: memberGroupState.invitations[0].id, accept: true }), + }); + assert.equal(accepted.status, 200); + assert.equal((await accepted.json()).group.members.length, 2); + + for (const [token, character, role] of [ + [auth.token, { id: "web-healer", name: "Mendara", classId: "priest", raceId: "human", gender: "female", level: 20 }, "healer"], + [memberAuth.token, { id: "web-tank", name: "Bulwarka", classId: "warrior", raceId: "human", gender: "male", level: 20 }, "tank"], + ]) { + const ready = await fetch(`${origin}/api/online-group/member`, { + method: "PUT", + headers: { "Content-Type": "application/json", Authorization: `Bearer ${token}` }, + body: JSON.stringify({ character, role }), + }); + assert.equal(ready.status, 200); + } + const activityResponse = await fetch(`${origin}/api/online-group/activity`, { + method: "POST", + headers: { "Content-Type": "application/json", Authorization: `Bearer ${auth.token}` }, + body: JSON.stringify({ + type: "dungeon", + contentId: "wailing-caverns", + fillWithAi: false, + partySize: 2, + }), + }); + assert.equal(activityResponse.status, 200); + const leaderSync = await fetch(`${origin}/api/online-session/sync`, { + method: "POST", + headers: { "Content-Type": "application/json", Authorization: `Bearer ${auth.token}` }, + body: JSON.stringify({ + afterEventId: 0, + presence: { position: [1, 0, 2], health: 900, maxHealth: 1_000 }, + world: { mobs: { boss: { health: 500 } }, mobTransforms: {} }, + }), + }); + assert.equal(leaderSync.status, 200); + assert.equal((await leaderSync.json()).authority, true); + const memberSync = await fetch(`${origin}/api/online-session/sync`, { + method: "POST", + headers: { "Content-Type": "application/json", Authorization: `Bearer ${memberAuth.token}` }, + body: JSON.stringify({ + afterEventId: 0, + presence: { position: [3, 0, 4], health: 800, maxHealth: 1_000 }, + events: [{ + clientEventId: "web-tank-hit-1", + kind: "damage", + sourceActorId: `online-player:${memberAuth.account.id}`, + targetActorId: "boss", + rawAmount: 50, + effectiveAmount: 45, + }], + }), + }); + assert.equal(memberSync.status, 200); + const memberSession = await memberSync.json(); + assert.equal(memberSession.players.length, 2); + assert.equal(memberSession.events[0].targetActorId, "boss"); + const gmRegistration = await fetch(`${origin}/api/auth/register`, { method: "POST", headers: { "Content-Type": "application/json" }, diff --git a/src/App.tsx b/src/App.tsx index 2b96e666..a5cd565d 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,6 +3,7 @@ import { useShellStore } from "./app/shellStore"; import { useManastormAdminStore } from "./game/manastormAdminStore"; import { useAuthoritativeDualScreenSync, useForcedThorDisplays } from "./platform/useThorDualScreen"; import { LoginScreen } from "./ui/LoginScreen"; +import { OnlineGroupCoordinator } from "./app/OnlineGroupCoordinator"; const GameRuntime = lazy(() => import("./GameRuntime")); const CharacterCreateScreen = lazy(() => import("./ui/CharacterCreateScreen").then((module) => ({ default: module.CharacterCreateScreen }))); @@ -28,18 +29,15 @@ export default function App() { void refreshManastormConfig(); }, [refreshManastormConfig, sessionOwnerId]); - if (phase === "login") return ; - if (phase === "characters") return }>; - if (phase === "create-character") return }>; - if (phase === "main-menu") return }>; - if (phase === "class-hall") return }>; - if (phase === "dungeons") return }>; - if (phase === "manastorms") return }>; - if (phase === "gm-admin") return }>; - if (phase !== "game") return null; - return ( - }> - - - ); + let screen = null; + if (phase === "login") screen = ; + else if (phase === "characters") screen = }>; + else if (phase === "create-character") screen = }>; + else if (phase === "main-menu") screen = }>; + else if (phase === "class-hall") screen = }>; + else if (phase === "dungeons") screen = }>; + else if (phase === "manastorms") screen = }>; + else if (phase === "gm-admin") screen = }>; + else if (phase === "game") screen = }>; + return <>{screen}; } diff --git a/src/GameRuntime.tsx b/src/GameRuntime.tsx index a2bc7998..2887f526 100644 --- a/src/GameRuntime.tsx +++ b/src/GameRuntime.tsx @@ -20,6 +20,7 @@ import { MapPanel } from "./ui/MapPanel"; import { PauseMenu } from "./ui/PauseMenu"; import { SceneErrorBoundary } from "./ui/SceneErrorBoundary"; import { GmWorldEditor } from "./ui/GmWorldEditor"; +import { OnlineSessionBridge } from "./game/OnlineSessionBridge"; function InputBridge() { const overlay = useGameStore((state) => state.overlay); @@ -51,6 +52,9 @@ function InputBridge() { useCombatStore.getState().clearTarget(); usePartyStore.getState().clearSelection(); }, + groundTargetActive: () => useCombatStore.getState().pendingGroundTarget !== null, + confirmGroundTarget: () => { useCombatStore.getState().confirmGroundTarget(); }, + cancelGroundTarget: () => useCombatStore.getState().cancelGroundTarget(), gameplayActionsBlocked: () => { const game = useGameStore.getState(); return game.overlay !== null || game.companionOpen; @@ -81,6 +85,7 @@ export default function GameRuntime() { top={
+ diff --git a/src/app/OnlineGroupCoordinator.tsx b/src/app/OnlineGroupCoordinator.tsx new file mode 100644 index 00000000..9d581a5a --- /dev/null +++ b/src/app/OnlineGroupCoordinator.tsx @@ -0,0 +1,85 @@ +import { useEffect } from "react"; +import { selectedCharacter, useShellStore } from "./shellStore"; +import { useOnlineGroupStore } from "./onlineGroupStore"; +import { + classCanFillPartyRole, + defaultPartyRoleForClass, + type PartyRole, +} from "../game/partyRoles"; +import { isManastormPartySize } from "../game/manastormProgress"; + +const GROUP_POLL_MS = 2_500; +const ACTIVITY_JOIN_WINDOW_MS = 10 * 60 * 1000; + +export function OnlineGroupCoordinator() { + const session = useShellStore((state) => state.session); + const character = useShellStore(selectedCharacter); + const phase = useShellStore((state) => state.phase); + const snapshot = useOnlineGroupStore((state) => state.snapshot); + const consumedActivityIds = useOnlineGroupStore((state) => state.consumedActivityIds); + const refresh = useOnlineGroupStore((state) => state.refresh); + const updateMember = useOnlineGroupStore((state) => state.updateMember); + const consumeActivity = useOnlineGroupStore((state) => state.consumeActivity); + const reset = useOnlineGroupStore((state) => state.reset); + + useEffect(() => { + if (!session || session.kind !== "account" || !session.accessToken) { + reset(); + return undefined; + } + void refresh(session); + const timer = window.setInterval(() => void refresh(session, true), GROUP_POLL_MS); + const onVisibility = () => { + if (document.visibilityState === "visible") void refresh(session, true); + }; + document.addEventListener("visibilitychange", onVisibility); + return () => { + window.clearInterval(timer); + document.removeEventListener("visibilitychange", onVisibility); + }; + }, [refresh, reset, session?.accessToken, session?.ownerId]); + + useEffect(() => { + const group = snapshot.group; + if (!session || !character || !group || group.activity) return; + const member = group.members.find((candidate) => candidate.accountId === session.ownerId); + if (!member) return; + const role: PartyRole = member.role && classCanFillPartyRole(character.classId, member.role) + ? member.role + : defaultPartyRoleForClass(character.classId); + const characterChanged = member.character?.id !== character.id + || member.character?.level !== character.level + || member.character?.classId !== character.classId; + if (!characterChanged && member.role === role) return; + void updateMember(session, character, role); + }, [character?.classId, character?.id, character?.level, session?.ownerId, snapshot.group?.id, snapshot.group?.updatedAt, updateMember]); + + useEffect(() => { + const activity = snapshot.group?.activity; + if (!session || !activity || phase === "game" || consumedActivityIds.includes(activity.id)) return; + if (Date.now() - activity.startedAt > ACTIVITY_JOIN_WINDOW_MS) return; + const member = snapshot.group?.members.find((candidate) => candidate.accountId === session.ownerId); + if (!member?.character || !member.role) return; + consumeActivity(activity.id); + void (async () => { + if (activity.type === "dungeon") { + const { installDungeonShellRuntime } = await import("./dungeonShellRuntime"); + installDungeonShellRuntime(); + useShellStore.getState().enterDungeon(activity.contentId, member.role ?? undefined); + return; + } + const { installManastormShellRuntime } = await import("./manastormShellRuntime"); + installManastormShellRuntime(); + const partySize = isManastormPartySize(activity.partySize) ? activity.partySize : 5; + useShellStore.getState().enterManastorm( + member.role ?? undefined, + partySize, + activity.startingLevel ?? undefined, + ); + })().catch((error) => { + useShellStore.getState().setNotice(error instanceof Error ? error.message : "The group activity could not be opened."); + }); + }, [consumeActivity, consumedActivityIds, phase, session?.ownerId, snapshot.group?.activity?.id]); + + return null; +} diff --git a/src/app/onlineAccountClient.ts b/src/app/onlineAccountClient.ts index 6c8e11e1..01c3945e 100644 --- a/src/app/onlineAccountClient.ts +++ b/src/app/onlineAccountClient.ts @@ -6,6 +6,8 @@ import { type AccountResult, } from "./accountRepository"; import type { CharacterProfile, PlayerSession } from "./types"; +import type { OnlineGroupSnapshot, StartOnlineGroupActivityInput } from "./onlineGroupTypes"; +import type { OnlineSessionSnapshot, OnlineSessionSyncInput } from "./onlineSessionTypes"; const NATIVE_API_ORIGIN = "https://iwanttoheal.phenomrom.com"; const SAVE_DEBOUNCE_MS = 500; @@ -159,3 +161,77 @@ export async function logoutOnlineSession(session: PlayerSession | null): Promis } if (activeSession?.ownerId === session?.ownerId) activeSession = null; } + +function onlineGroupRequest(session: PlayerSession, pathname: string, init: RequestInit = {}): Promise { + if (!session.accessToken) throw new OnlineApiError("Online grouping requires a signed-in account.", 401); + return requestOnlineJson(pathname, init, session.accessToken); +} + +export function fetchOnlineGroup(session: PlayerSession): Promise { + return onlineGroupRequest(session, "/api/online-group"); +} + +export async function inviteOnlineGroupPlayer(session: PlayerSession, username: string): Promise { + const response = await onlineGroupRequest<{ state: OnlineGroupSnapshot }>(session, "/api/online-group/invite", { + method: "POST", + body: JSON.stringify({ username }), + }); + return response.state; +} + +export function respondToOnlineGroupInvite( + session: PlayerSession, + inviteId: string, + accept: boolean, +): Promise { + return onlineGroupRequest(session, "/api/online-group/invite/respond", { + method: "POST", + body: JSON.stringify({ inviteId, accept }), + }); +} + +export function leaveOnlineGroup(session: PlayerSession): Promise { + return onlineGroupRequest(session, "/api/online-group/leave", { method: "POST" }); +} + +export function removeOnlineGroupPlayer(session: PlayerSession, accountId: string): Promise { + return onlineGroupRequest(session, "/api/online-group/remove", { + method: "POST", + body: JSON.stringify({ accountId }), + }); +} + +export function updateOnlineGroupMember( + session: PlayerSession, + character: CharacterProfile, + role: string, +): Promise { + return onlineGroupRequest(session, "/api/online-group/member", { + method: "PUT", + body: JSON.stringify({ character, role }), + }); +} + +export function startOnlineGroupActivity( + session: PlayerSession, + activity: StartOnlineGroupActivityInput, +): Promise { + return onlineGroupRequest(session, "/api/online-group/activity", { + method: "POST", + body: JSON.stringify(activity), + }); +} + +export function clearOnlineGroupActivity(session: PlayerSession): Promise { + return onlineGroupRequest(session, "/api/online-group/activity/clear", { method: "POST" }); +} + +export function synchronizeOnlineSession( + session: PlayerSession, + input: OnlineSessionSyncInput, +): Promise { + return onlineGroupRequest(session, "/api/online-session/sync", { + method: "POST", + body: JSON.stringify(input), + }); +} diff --git a/src/app/onlineGroupStore.test.ts b/src/app/onlineGroupStore.test.ts new file mode 100644 index 00000000..20267828 --- /dev/null +++ b/src/app/onlineGroupStore.test.ts @@ -0,0 +1,35 @@ +import { beforeEach, describe, expect, it } from "vitest"; +import { onlineGroupAiPartySize, useOnlineGroupStore } from "./onlineGroupStore"; + +describe("online group AI fill sizing", () => { + beforeEach(() => useOnlineGroupStore.getState().reset()); + + it("reserves one simulated slot for every grouped human other than the local player", () => { + useOnlineGroupStore.setState({ + snapshot: { + invitations: [], + group: { + id: "group-test", + leaderAccountId: "one", + activity: null, + activityRevision: 0, + createdAt: 1, + updatedAt: 1, + members: [ + { accountId: "one", username: "One", character: null, role: null, joinedAt: 1 }, + { accountId: "two", username: "Two", character: null, role: null, joinedAt: 2 }, + { accountId: "three", username: "Three", character: null, role: null, joinedAt: 3 }, + ], + }, + }, + }); + + expect(onlineGroupAiPartySize(5)).toBe(3); + expect(onlineGroupAiPartySize(3)).toBe(1); + }); + + it("keeps ordinary solo activity sizes unchanged", () => { + expect(onlineGroupAiPartySize(5)).toBe(5); + expect(onlineGroupAiPartySize(1)).toBe(1); + }); +}); diff --git a/src/app/onlineGroupStore.ts b/src/app/onlineGroupStore.ts new file mode 100644 index 00000000..6463b555 --- /dev/null +++ b/src/app/onlineGroupStore.ts @@ -0,0 +1,177 @@ +import { create } from "zustand"; +import type { CharacterProfile, PlayerSession } from "./types"; +import type { PartyRole } from "../game/partyRoles"; +import type { PartySize } from "../game/partyRoles"; +import { + clearOnlineGroupActivity, + fetchOnlineGroup, + inviteOnlineGroupPlayer, + leaveOnlineGroup, + removeOnlineGroupPlayer, + respondToOnlineGroupInvite, + startOnlineGroupActivity, + updateOnlineGroupMember, +} from "./onlineAccountClient"; +import type { OnlineGroupActivity, OnlineGroupSnapshot, StartOnlineGroupActivityInput } from "./onlineGroupTypes"; + +const EMPTY_SNAPSHOT: OnlineGroupSnapshot = Object.freeze({ group: null, invitations: Object.freeze([]) }); + +interface OnlineGroupState { + snapshot: OnlineGroupSnapshot; + loading: boolean; + busy: boolean; + error: string; + fillWithAi: boolean; + activeActivity: OnlineGroupActivity | null; + consumedActivityIds: readonly string[]; + refresh: (session: PlayerSession, silent?: boolean) => Promise; + invite: (session: PlayerSession, username: string) => Promise; + respond: (session: PlayerSession, inviteId: string, accept: boolean) => Promise; + leave: (session: PlayerSession) => Promise; + remove: (session: PlayerSession, accountId: string) => Promise; + updateMember: (session: PlayerSession, character: CharacterProfile, role: PartyRole) => Promise; + startActivity: (session: PlayerSession, input: Omit) => Promise; + clearActivity: (session: PlayerSession) => Promise; + setFillWithAi: (fillWithAi: boolean) => void; + consumeActivity: (activityId: string) => void; + reset: () => void; +} + +function messageFor(error: unknown): string { + return error instanceof Error ? error.message : "The online group could not be updated."; +} + +export const useOnlineGroupStore = create((set, get) => ({ + snapshot: EMPTY_SNAPSHOT, + loading: false, + busy: false, + error: "", + fillWithAi: true, + activeActivity: null, + consumedActivityIds: [], + + refresh: async (session, silent = false) => { + if (session.kind !== "account" || !session.accessToken) { + set({ snapshot: EMPTY_SNAPSHOT, loading: false, busy: false, error: "" }); + return; + } + if (!silent) set({ loading: true }); + try { + const snapshot = await fetchOnlineGroup(session); + set({ snapshot, loading: false, error: "" }); + } catch (error) { + set({ loading: false, error: messageFor(error) }); + } + }, + + invite: async (session, username) => { + set({ busy: true, error: "" }); + try { + const snapshot = await inviteOnlineGroupPlayer(session, username); + set({ snapshot, busy: false, activeActivity: null }); + return true; + } catch (error) { + set({ busy: false, error: messageFor(error) }); + return false; + } + }, + + respond: async (session, inviteId, accept) => { + set({ busy: true, error: "" }); + try { + const snapshot = await respondToOnlineGroupInvite(session, inviteId, accept); + set({ snapshot, busy: false, activeActivity: null }); + return true; + } catch (error) { + set({ busy: false, error: messageFor(error) }); + return false; + } + }, + + leave: async (session) => { + set({ busy: true, error: "" }); + try { + const snapshot = await leaveOnlineGroup(session); + set({ snapshot, busy: false, activeActivity: null }); + return true; + } catch (error) { + set({ busy: false, error: messageFor(error) }); + return false; + } + }, + + remove: async (session, accountId) => { + set({ busy: true, error: "" }); + try { + const snapshot = await removeOnlineGroupPlayer(session, accountId); + set({ snapshot, busy: false, activeActivity: null }); + return true; + } catch (error) { + set({ busy: false, error: messageFor(error) }); + return false; + } + }, + + updateMember: async (session, character, role) => { + set({ busy: true, error: "" }); + try { + const snapshot = await updateOnlineGroupMember(session, character, role); + set({ snapshot, busy: false, activeActivity: null }); + return true; + } catch (error) { + set({ busy: false, error: messageFor(error) }); + return false; + } + }, + + startActivity: async (session, input) => { + set({ busy: true, error: "" }); + try { + const snapshot = await startOnlineGroupActivity(session, { ...input, fillWithAi: get().fillWithAi }); + set({ snapshot, busy: false }); + return true; + } catch (error) { + set({ busy: false, error: messageFor(error) }); + return false; + } + }, + + clearActivity: async (session) => { + set({ busy: true, error: "" }); + try { + const snapshot = await clearOnlineGroupActivity(session); + set({ snapshot, busy: false, activeActivity: null }); + return true; + } catch (error) { + set({ busy: false, error: messageFor(error) }); + return false; + } + }, + + setFillWithAi: (fillWithAi) => set({ fillWithAi }), + consumeActivity: (activityId) => set((state) => { + if (state.consumedActivityIds.includes(activityId)) return state; + return { + activeActivity: state.snapshot.group?.activity?.id === activityId + ? state.snapshot.group.activity + : state.activeActivity, + consumedActivityIds: [...state.consumedActivityIds.slice(-7), activityId], + }; + }), + reset: () => set({ + snapshot: EMPTY_SNAPSHOT, + loading: false, + busy: false, + error: "", + activeActivity: null, + consumedActivityIds: [], + }), +})); + +export function onlineGroupHumanCount(): number { + return useOnlineGroupStore.getState().snapshot.group?.members.length ?? 1; +} + +export function onlineGroupAiPartySize(activityPartySize: number): PartySize { + return Math.max(1, Math.min(5, activityPartySize - Math.max(0, onlineGroupHumanCount() - 1))) as PartySize; +} diff --git a/src/app/onlineGroupTypes.ts b/src/app/onlineGroupTypes.ts new file mode 100644 index 00000000..901120fa --- /dev/null +++ b/src/app/onlineGroupTypes.ts @@ -0,0 +1,63 @@ +import type { PartyRole } from "../game/partyRoles"; +import type { CharacterAppearance } from "./characterCatalog"; + +export interface OnlineGroupCharacter { + readonly id: string; + readonly name: string; + readonly classId: string; + readonly categoryId: string; + readonly raceId: string; + readonly gender: "female" | "male"; + readonly level: number; + readonly appearance?: CharacterAppearance; +} + +export interface OnlineGroupMember { + readonly accountId: string; + readonly username: string; + readonly character: OnlineGroupCharacter | null; + readonly role: PartyRole | null; + readonly joinedAt: number; +} + +export interface OnlineGroupActivity { + readonly id: string; + readonly type: "dungeon" | "manastorm"; + readonly contentId: string; + readonly fillWithAi: boolean; + readonly partySize: number; + readonly startingLevel: number | null; + readonly startedAt: number; +} + +export interface OnlineGroup { + readonly id: string; + readonly leaderAccountId: string; + readonly members: readonly OnlineGroupMember[]; + readonly activity: OnlineGroupActivity | null; + readonly activityRevision: number; + readonly createdAt: number; + readonly updatedAt: number; +} + +export interface OnlineGroupInvitation { + readonly id: string; + readonly groupId: string; + readonly inviterAccountId: string; + readonly inviterUsername: string; + readonly createdAt: number; + readonly expiresAt: number; +} + +export interface OnlineGroupSnapshot { + readonly group: OnlineGroup | null; + readonly invitations: readonly OnlineGroupInvitation[]; +} + +export interface StartOnlineGroupActivityInput { + readonly type: OnlineGroupActivity["type"]; + readonly contentId: string; + readonly fillWithAi: boolean; + readonly partySize: number; + readonly startingLevel?: number; +} diff --git a/src/app/onlineSessionStore.ts b/src/app/onlineSessionStore.ts new file mode 100644 index 00000000..aa8a56de --- /dev/null +++ b/src/app/onlineSessionStore.ts @@ -0,0 +1,24 @@ +import { create } from "zustand"; +import type { OnlineSessionSnapshot } from "./onlineSessionTypes"; + +interface OnlineSessionState { + snapshot: OnlineSessionSnapshot | null; + connected: boolean; + synchronizing: boolean; + error: string; + setSynchronizing: (synchronizing: boolean) => void; + accept: (snapshot: OnlineSessionSnapshot) => void; + fail: (message: string) => void; + reset: () => void; +} + +export const useOnlineSessionStore = create((set) => ({ + snapshot: null, + connected: false, + synchronizing: false, + error: "", + setSynchronizing: (synchronizing) => set({ synchronizing }), + accept: (snapshot) => set({ snapshot, connected: true, synchronizing: false, error: "" }), + fail: (error) => set({ connected: false, synchronizing: false, error }), + reset: () => set({ snapshot: null, connected: false, synchronizing: false, error: "" }), +})); diff --git a/src/app/onlineSessionTypes.ts b/src/app/onlineSessionTypes.ts new file mode 100644 index 00000000..11651090 --- /dev/null +++ b/src/app/onlineSessionTypes.ts @@ -0,0 +1,108 @@ +import type { CharacterCombatAnimationEvent } from "../game/combatAnimation"; +import type { ActiveCast, MobCombatState } from "../game/combatStore"; +import type { DamageSchool } from "../game/combatAuras"; +import type { InventoryItem } from "../game/lootTypes"; +import type { PartyMember } from "../game/partyStore"; +import type { OnlineGroupActivity, OnlineGroupCharacter } from "./onlineGroupTypes"; +import type { PartyRole } from "../game/partyRoles"; + +export type OnlineSessionVector = readonly [number, number, number]; + +export interface OnlineSessionPlayer { + readonly accountId: string; + readonly username: string; + readonly character: OnlineGroupCharacter | null; + readonly role: PartyRole | null; + readonly position: OnlineSessionVector; + readonly yaw: number; + readonly grounded: boolean; + readonly health: number; + readonly maxHealth: number; + readonly resource: number; + readonly maxResource: number; + readonly resourceName: string; + readonly selectedTargetId: string | null; + readonly activeCast: ActiveCast | null; + readonly animationEvent: CharacterCombatAnimationEvent | null; + readonly equipment: readonly InventoryItem[]; + readonly updatedAt: number; +} + +export interface OnlineMobTransform { + readonly position: OnlineSessionVector; + readonly yaw: number; +} + +export interface OnlineSharedWorld { + readonly mobs: Readonly>; + readonly mobTransforms: Readonly>; + readonly partyMembers: readonly PartyMember[]; + readonly partyPositions: Readonly>; + readonly partyRuntime: { + readonly command: string; + readonly activeMobId: string | null; + readonly objectiveBossId: string | null; + readonly memberTargetIds: Readonly>; + }; + readonly wailing: Readonly> | null; + readonly manastorm: Readonly> | null; + readonly publishedAt?: number; + readonly publishedBy?: string; +} + +export type OnlineRelayEventKind = "damage" | "healing" | "resurrection" | "loot" | "portal"; + +export interface OnlineRelayEventInput { + readonly clientEventId: string; + readonly kind: OnlineRelayEventKind; + readonly sourceActorId: string; + readonly targetActorId: string; + readonly abilityId?: string | null; + readonly school?: DamageSchool | null; + readonly rawAmount?: number; + readonly effectiveAmount?: number; + readonly critical?: boolean; + readonly occurredAt?: number; +} + +export interface OnlineRelayEvent extends OnlineRelayEventInput { + readonly id: number; + readonly sourceAccountId: string; + readonly createdAt: number; +} + +export interface OnlineSessionSnapshot { + readonly activity: OnlineGroupActivity; + readonly groupId: string; + readonly leaderAccountId: string; + readonly localAccountId: string; + readonly authority: boolean; + readonly revision: number; + readonly serverTime: number; + readonly players: readonly OnlineSessionPlayer[]; + readonly world: OnlineSharedWorld | null; + readonly events: readonly OnlineRelayEvent[]; + readonly latestEventId: number; +} + +export interface OnlinePresenceInput { + readonly position: OnlineSessionVector; + readonly yaw: number; + readonly grounded: boolean; + readonly health: number; + readonly maxHealth: number; + readonly resource: number; + readonly maxResource: number; + readonly resourceName: string; + readonly selectedTargetId: string | null; + readonly activeCast: ActiveCast | null; + readonly animationEvent: CharacterCombatAnimationEvent | null; + readonly equipment: readonly InventoryItem[]; +} + +export interface OnlineSessionSyncInput { + readonly afterEventId: number; + readonly presence: OnlinePresenceInput; + readonly world?: OnlineSharedWorld; + readonly events?: readonly OnlineRelayEventInput[]; +} diff --git a/src/game/CombatBridge.tsx b/src/game/CombatBridge.tsx index 17d52622..2c2c1df2 100644 --- a/src/game/CombatBridge.tsx +++ b/src/game/CombatBridge.tsx @@ -6,6 +6,10 @@ import { useGameStore } from "./store"; import { activateManastormActiveSpellLoadout } from "./manastormSpellLoadout"; import { useManastormStore } from "./manastormStore"; import { useWailingEncounterStore } from "./wailingCavernsEncounter"; +import { + onlineSessionIsActive, + onlineSessionOwnsWorldSimulation, +} from "./onlineSessionRuntime"; /** * Connects the pure combat runtime to the active character and persistent @@ -21,6 +25,7 @@ export function CombatBridge() { useEffect(() => { if (!character) return; useCombatStore.getState().initializeCharacter(character); + useCombatStore.getState().synchronizeActors(); if (gameMode === "manastorm") { activateManastormActiveSpellLoadout( useManastormStore.getState().activeSpellLoadout, @@ -108,17 +113,25 @@ export function CombatBridge() { const delta = Math.min(0.25, Math.max(0, (now - previous) / 1_000)); previous = now; const game = useGameStore.getState(); - if (!game.paused && !game.companionOpen) { + const sharedOnline = onlineSessionIsActive(); + if ((!game.paused || sharedOnline) && (!game.companionOpen || sharedOnline)) { const epochNow = Date.now(); const combat = useCombatStore.getState(); combat.setPlayerPosition(game.playerPosition); combat.tick(delta, epochNow); - if (game.gameMode === "dungeon") { + if (onlineSessionOwnsWorldSimulation() && game.gameMode === "dungeon") { useCombatStore.getState().engageNearbyMobs(epochNow, game.playerPosition); } - useCombatStore.getState().advanceMobCombat(epochNow, game.playerPosition); - advanceDungeonPartyCombat(epochNow); - if (game.gameMode === "dungeon" && game.activeDungeonId === "wailing-caverns") { + if (onlineSessionOwnsWorldSimulation()) { + useCombatStore.getState().advanceMobCombat(epochNow, game.playerPosition); + advanceDungeonPartyCombat(epochNow); + } + useCombatStore.getState().synchronizeActors(); + if ( + onlineSessionOwnsWorldSimulation() + && game.gameMode === "dungeon" + && game.activeDungeonId === "wailing-caverns" + ) { useWailingEncounterStore.getState().advance( useCombatStore.getState().mobs, epochNow, diff --git a/src/game/ManastormBridge.tsx b/src/game/ManastormBridge.tsx index 17953981..8c85a3ba 100644 --- a/src/game/ManastormBridge.tsx +++ b/src/game/ManastormBridge.tsx @@ -14,6 +14,7 @@ import { getManastormCatalog, manastormEncounterById } from "./manastorm"; import { synchronizeManastormProgress } from "./manastormProgressSync"; import { synchronizeManastormAffixes } from "./manastormAffixRuntime"; import { preloadManastormStage } from "./manastormStageLoader"; +import { onlineSessionIsActive, onlineSessionOwnsWorldSimulation } from "./onlineSessionRuntime"; /** Connects staged combat, party sizing, and shared resurrections to Manastorm state. */ export function ManastormBridge() { @@ -30,11 +31,12 @@ export function ManastormBridge() { useEffect(() => { if (gameMode !== "manastorm") return; + if (!onlineSessionOwnsWorldSimulation()) return; synchronizeManastormPartySize(); }, [gameMode, partyMemberCount, partySize]); useEffect(() => { - if (gameMode !== "manastorm" || status !== "entering" || !encounter) return; + if (gameMode !== "manastorm" || status !== "entering" || !encounter || !onlineSessionOwnsWorldSimulation()) return; useManastormStore.getState().enterStage(); }, [encounter, gameMode, status]); @@ -42,12 +44,14 @@ export function ManastormBridge() { if ( gameMode !== "manastorm" || !encounter + || !onlineSessionOwnsWorldSimulation() ) return; synchronizeManastormCombat(); }, [encounter, gameMode, mobs, status]); useEffect(() => { if (gameMode !== "manastorm") return; + if (!onlineSessionOwnsWorldSimulation()) return; const timer = window.setInterval(() => synchronizeManastormAffixes(Date.now()), 250); return () => window.clearInterval(timer); }, [gameMode]); @@ -71,6 +75,7 @@ export function ManastormBridge() { || previous.health <= 0 || useGameStore.getState().gameMode !== "manastorm" || resolvingDefeatRef.current + || onlineSessionIsActive() ) return; resolvingDefeatRef.current = true; try { @@ -82,7 +87,11 @@ export function ManastormBridge() { }), []); useEffect(() => usePartyStore.subscribe((state, previous) => { - if (useGameStore.getState().gameMode !== "manastorm" || resolvingDefeatRef.current) return; + if ( + useGameStore.getState().gameMode !== "manastorm" + || resolvingDefeatRef.current + || !onlineSessionOwnsWorldSimulation() + ) return; const previousById = new Map(previous.members.map((member) => [member.id, member])); const downedMemberIds = state.members.filter((member) => ( member.health <= 0 && (previousById.get(member.id)?.health ?? 0) > 0 diff --git a/src/game/OnlineSessionBridge.tsx b/src/game/OnlineSessionBridge.tsx new file mode 100644 index 00000000..8efd4b0c --- /dev/null +++ b/src/game/OnlineSessionBridge.tsx @@ -0,0 +1,319 @@ +import { useEffect, useRef } from "react"; +import { synchronizeOnlineSession } from "../app/onlineAccountClient"; +import { useOnlineGroupStore } from "../app/onlineGroupStore"; +import { useOnlineSessionStore } from "../app/onlineSessionStore"; +import type { + OnlineRelayEvent, + OnlineRelayEventInput, + OnlineSessionSnapshot, + OnlineSharedWorld, +} from "../app/onlineSessionTypes"; +import { useShellStore } from "../app/shellStore"; +import { PLAYER_AGGRO_ID } from "./aggro"; +import { useCombatStore } from "./combatStore"; +import { equipmentItemsForOwner, PLAYER_EQUIPMENT_OWNER_ID } from "./equipment"; +import { getMobRuntimeTransform } from "./mobRuntimeRegistry"; +import { + configureOnlineSessionRuntime, + drainOnlineInteractions, + isOnlinePlayerActorId, + onlineAccountIdFromActor, + onlinePlayerActorId, +} from "./onlineSessionRuntime"; +import { + getPartyRuntimePosition, + removePartyRuntimePosition, + updatePartyRuntimePosition, +} from "./partyRuntimeRegistry"; +import { usePartyStore } from "./partyStore"; +import { useGameStore } from "./store"; +import { useManastormStore } from "./manastormStore"; +import { advanceManastormSession } from "./manastormSession"; +import { useWailingEncounterStore } from "./wailingCavernsEncounter"; + +const SYNC_INTERVAL_MS = 100; +const WORLD_INTERVAL_MS = 200; + +function serializableState(state: T): Readonly> { + return JSON.parse(JSON.stringify(state)) as Readonly>; +} + +function sharedWorld(): OnlineSharedWorld { + const combat = useCombatStore.getState(); + const party = usePartyStore.getState(); + const game = useGameStore.getState(); + const mobTransforms = Object.fromEntries( + Object.keys(combat.mobs).flatMap((id) => { + const transform = getMobRuntimeTransform(id); + return transform ? [[id, transform]] : []; + }), + ); + const partyPositions = Object.fromEntries( + party.members.flatMap((member) => { + const position = getPartyRuntimePosition(member.id); + return position ? [[member.id, position]] : []; + }), + ); + return { + mobs: combat.mobs, + mobTransforms, + partyMembers: party.members, + partyPositions, + partyRuntime: { + command: party.command, + activeMobId: party.activeMobId, + objectiveBossId: party.objectiveBossId, + memberTargetIds: party.memberTargetIds, + }, + wailing: game.gameMode === "dungeon" + ? serializableState(useWailingEncounterStore.getState()) + : null, + manastorm: game.gameMode === "manastorm" + ? serializableState(useManastormStore.getState()) + : null, + }; +} + +function applySharedWorld(world: OnlineSharedWorld): void { + useCombatStore.setState({ mobs: world.mobs }); + usePartyStore.setState({ + members: world.partyMembers, + command: world.partyRuntime.command as ReturnType["command"], + activeMobId: world.partyRuntime.activeMobId, + objectiveBossId: world.partyRuntime.objectiveBossId, + memberTargetIds: world.partyRuntime.memberTargetIds, + }); + for (const [id, position] of Object.entries(world.partyPositions)) { + updatePartyRuntimePosition(id, position[0], position[1], position[2]); + } + if (world.wailing) useWailingEncounterStore.setState(world.wailing as never); + if (world.manastorm) useManastormStore.setState(world.manastorm as never); +} + +function eventForRelay( + event: ReturnType["combatEvents"][number], + localAccountId: string, + authority: boolean, +): OnlineRelayEventInput | null { + if (!["damage", "healing", "resurrection"].includes(event.kind)) return null; + const combat = useCombatStore.getState(); + const playerOwnedSummon = combat.summons.some((summon) => ( + summon.id === event.sourceActorId && summon.ownerActorId === PLAYER_AGGRO_ID + )); + const sourceIsLocal = event.sourceActorId === PLAYER_AGGRO_ID || playerOwnedSummon; + const targetsRemotePlayer = isOnlinePlayerActorId(event.targetActorId); + if (!sourceIsLocal && !(authority && targetsRemotePlayer)) return null; + const localActorId = onlinePlayerActorId(localAccountId); + const targetActorId = event.targetActorId === PLAYER_AGGRO_ID + ? localActorId + : event.targetActorId; + if (sourceIsLocal && targetActorId === localActorId) return null; + return { + clientEventId: `combat:${localAccountId}:${event.occurredAt}:${event.id}:${event.kind}`, + kind: event.kind as "damage" | "healing" | "resurrection", + sourceActorId: sourceIsLocal ? localActorId : event.sourceActorId, + targetActorId, + abilityId: event.abilityId, + school: event.school, + rawAmount: event.rawAmount, + effectiveAmount: event.effectiveAmount, + critical: event.critical, + occurredAt: event.occurredAt, + }; +} + +function applyRelayEvent( + event: OnlineRelayEvent, + snapshot: OnlineSessionSnapshot, + applyingRef: React.MutableRefObject, +): void { + if (event.sourceAccountId === snapshot.localAccountId) return; + const localActorId = onlinePlayerActorId(snapshot.localAccountId); + applyingRef.current = true; + try { + if (event.kind === "portal" && snapshot.authority) { + advanceManastormSession(); + return; + } + if (event.kind === "loot" && snapshot.authority && event.targetActorId) { + useCombatStore.getState().lootMob(event.targetActorId, event.occurredAt || Date.now()); + return; + } + if (event.targetActorId === localActorId) { + if (event.kind === "damage") { + const sourceLevel = useCombatStore.getState().mobs[event.sourceActorId]?.level; + useCombatStore.getState().damagePlayer( + event.rawAmount ?? event.effectiveAmount ?? 0, + event.school ?? "physical", + sourceLevel, + ); + } else if (event.kind === "healing") { + useCombatStore.getState().healActor(PLAYER_AGGRO_ID, event.effectiveAmount ?? 0, { + sourceActorId: event.sourceActorId, + abilityId: event.abilityId ?? undefined, + school: event.school ?? undefined, + now: event.occurredAt, + amountAlreadyModified: true, + }); + } else if (event.kind === "resurrection") { + const combat = useCombatStore.getState(); + combat.revivePlayer((event.effectiveAmount ?? 1) / Math.max(1, combat.maxHealth)); + } + return; + } + if (!snapshot.authority) return; + const partyMember = usePartyStore.getState().members.find((member) => member.id === event.targetActorId); + if (partyMember) { + if (event.kind === "healing") { + useCombatStore.getState().healActor(event.targetActorId, event.effectiveAmount ?? 0, { + sourceActorId: event.sourceActorId, + abilityId: event.abilityId ?? undefined, + school: event.school ?? undefined, + now: event.occurredAt, + amountAlreadyModified: true, + }); + } else if (event.kind === "resurrection") { + useCombatStore.getState().reviveActor( + event.targetActorId, + (event.effectiveAmount ?? 1) / Math.max(1, partyMember.maxHealth), + event.sourceActorId, + event.abilityId ?? undefined, + event.occurredAt, + ); + } + return; + } + const mob = useCombatStore.getState().mobs[event.targetActorId]; + if (mob && event.kind === "damage") { + const sourceMember = snapshot.players.find((player) => player.accountId === event.sourceAccountId); + useCombatStore.getState().damageMob( + mob.id, + event.rawAmount ?? event.effectiveAmount ?? 0, + event.occurredAt, + { + actorId: event.sourceActorId, + role: sourceMember?.role ?? "damage", + abilityId: event.abilityId ?? undefined, + }, + event.school ?? "physical", + ); + } + } finally { + applyingRef.current = false; + } +} + +export function OnlineSessionBridge() { + const session = useShellStore((state) => state.session); + const activeActivity = useOnlineGroupStore((state) => state.activeActivity); + const group = useOnlineGroupStore((state) => state.snapshot.group); + const accept = useOnlineSessionStore((state) => state.accept); + const fail = useOnlineSessionStore((state) => state.fail); + const reset = useOnlineSessionStore((state) => state.reset); + const pendingEventsRef = useRef([]); + const applyingRef = useRef(false); + + useEffect(() => { + if (!session?.accessToken || !activeActivity || !group) { + configureOnlineSessionRuntime({ active: false, authority: true, localAccountId: null }); + reset(); + return undefined; + } + const localAccountId = session.ownerId; + const immediateAuthority = group.leaderAccountId === localAccountId; + configureOnlineSessionRuntime({ + active: true, + authority: immediateAuthority, + localAccountId, + }); + let disposed = false; + let syncing = false; + let latestEventId = 0; + let lastWorldSentAt = 0; + const remotePositionIds = new Set(); + + const unsubscribeCombat = useCombatStore.subscribe((state, previous) => { + if (applyingRef.current || state.combatEvents === previous.combatEvents) return; + const previousKeys = new Set(previous.combatEvents.map((event) => `${event.id}:${event.occurredAt}:${event.kind}`)); + for (const event of state.combatEvents) { + if (previousKeys.has(`${event.id}:${event.occurredAt}:${event.kind}`)) continue; + const relay = eventForRelay(event, localAccountId, group.leaderAccountId === localAccountId); + if (relay) pendingEventsRef.current.push(relay); + } + }); + + const synchronize = async () => { + if (disposed || syncing) return; + syncing = true; + const combat = useCombatStore.getState(); + const game = useGameStore.getState(); + const outgoingEvents = [...pendingEventsRef.current.splice(0), ...drainOnlineInteractions()]; + const now = Date.now(); + const publishWorld = group.leaderAccountId === localAccountId && now - lastWorldSentAt >= WORLD_INTERVAL_MS; + if (publishWorld) lastWorldSentAt = now; + try { + const snapshot = await synchronizeOnlineSession(session, { + afterEventId: latestEventId, + presence: { + position: game.playerPosition, + yaw: game.cameraYaw, + grounded: game.playerGrounded, + health: combat.health, + maxHealth: combat.maxHealth, + resource: combat.resource, + maxResource: combat.maxResource, + resourceName: combat.resourceName, + selectedTargetId: combat.selectedTargetId, + activeCast: combat.activeCast, + animationEvent: combat.playerAnimationEvent, + equipment: equipmentItemsForOwner( + combat.equipment, + combat.inventory, + PLAYER_EQUIPMENT_OWNER_ID, + ), + }, + ...(publishWorld ? { world: sharedWorld() } : {}), + ...(outgoingEvents.length ? { events: outgoingEvents } : {}), + }); + if (disposed) return; + latestEventId = Math.max(latestEventId, snapshot.latestEventId); + configureOnlineSessionRuntime({ + active: true, + authority: snapshot.authority, + localAccountId, + players: snapshot.players, + mobTransforms: snapshot.world?.mobTransforms, + }); + for (const player of snapshot.players) { + if (player.accountId === localAccountId) continue; + const actorId = onlinePlayerActorId(player.accountId); + remotePositionIds.add(actorId); + updatePartyRuntimePosition(actorId, player.position[0], player.position[1], player.position[2]); + } + if (!snapshot.authority && snapshot.world) applySharedWorld(snapshot.world); + for (const event of snapshot.events) applyRelayEvent(event, snapshot, applyingRef); + useCombatStore.getState().synchronizeActors(); + accept(snapshot); + } catch (error) { + if (outgoingEvents.length) pendingEventsRef.current.unshift(...outgoingEvents); + if (!disposed) fail(error instanceof Error ? error.message : "The shared activity lost connection."); + } finally { + syncing = false; + } + }; + + void synchronize(); + const timer = window.setInterval(() => void synchronize(), SYNC_INTERVAL_MS); + return () => { + disposed = true; + window.clearInterval(timer); + unsubscribeCombat(); + for (const id of remotePositionIds) removePartyRuntimePosition(id); + pendingEventsRef.current = []; + configureOnlineSessionRuntime({ active: false, authority: true, localAccountId: null }); + reset(); + }; + }, [accept, activeActivity?.id, fail, group?.id, group?.leaderAccountId, reset, session?.accessToken, session?.ownerId]); + + return null; +} diff --git a/src/game/PartyBridge.tsx b/src/game/PartyBridge.tsx index 4888ab13..c95c62c9 100644 --- a/src/game/PartyBridge.tsx +++ b/src/game/PartyBridge.tsx @@ -5,6 +5,7 @@ import { resetPartyRuntimeClock } from "./partyRuntime"; import { usePartyStore } from "./partyStore"; import { useGameStore } from "./store"; import { useManastormStore } from "./manastormStore"; +import { onlineGroupAiPartySize, useOnlineGroupStore } from "../app/onlineGroupStore"; /** Owns party lifecycle; the combat interval itself remains in CombatBridge. */ export function PartyBridge() { @@ -12,6 +13,7 @@ export function PartyBridge() { const playerRole = useShellStore((state) => state.activeDungeonRole); const gameMode = useGameStore((state) => state.gameMode); const manastormPartySize = useManastormStore((state) => state.partySize); + const onlineActivity = useOnlineGroupStore((state) => state.activeActivity); const level = useCombatStore((state) => state.level); const resetRevision = useGameStore((state) => state.resetRevision); const mountedResetRevision = useRef(resetRevision); @@ -20,17 +22,22 @@ export function PartyBridge() { if (!character) return; const combat = useCombatStore.getState(); const party = usePartyStore.getState(); + const requestedPartySize = gameMode === "manastorm" ? manastormPartySize : 5; + const aiPartySize = onlineActivity + && onlineActivity.type === (gameMode === "manastorm" ? "manastorm" : "dungeon") + ? onlineGroupAiPartySize(onlineActivity.partySize) + : requestedPartySize; party.initializeParty( character.id, combat.level, combat.health, playerRole, - gameMode === "manastorm" ? manastormPartySize : 5, + aiPartySize, character.categoryId ?? "wow", ); usePartyStore.getState().syncEquipment(combat.equipment, combat.inventory); resetPartyRuntimeClock(); - }, [character?.id, gameMode, manastormPartySize, playerRole]); + }, [character?.id, gameMode, manastormPartySize, onlineActivity?.id, playerRole]); useEffect(() => { usePartyStore.getState().syncLevel(level); diff --git a/src/game/abilityCatalog.test.ts b/src/game/abilityCatalog.test.ts index 65698120..3b5cf402 100644 --- a/src/game/abilityCatalog.test.ts +++ b/src/game/abilityCatalog.test.ts @@ -38,7 +38,20 @@ describe("baseline ability catalog", () => { const iconPath = path.join(process.cwd(), "public", ability.icon.slice(1)); expect(existsSync(iconPath), `${ability.name} icon should exist at ${iconPath}`).toBe(true); expect(statSync(iconPath).size, `${ability.name} icon should not be empty`).toBeGreaterThan(0); - expect(ability.cost.resource).toBe(resource.type); + if (characterClass.mode !== "classic" || ability.cost.amount > 0) { + const classicResources: Partial> = { + warrior: ["rage", "health"], + rogue: ["energy"], + "death-knight": ["runic-power", "health"], + druid: ["mana", "rage", "energy"], + warlock: ["mana", "health"], + }; + expect( + characterClass.mode === "classic" + ? classicResources[characterClass.id] ?? [resource.type] + : ["mana", "rage", "energy", "runic-power", "focus", "health"], + ).toContain(ability.cost.resource); + } expect(ability.cost.amount).toBeGreaterThanOrEqual(0); expect(ability.effects.length).toBeGreaterThan(0); expect(allIds.has(ability.id)).toBe(false); diff --git a/src/game/abilityCatalog.ts b/src/game/abilityCatalog.ts index 19acb52a..d856e745 100644 --- a/src/game/abilityCatalog.ts +++ b/src/game/abilityCatalog.ts @@ -6,11 +6,68 @@ import { import { WOW335_ABILITIES_BY_CLASS } from "./wow335AbilityCatalog"; import { ROM_ALL_ABILITIES, ROM_ELITE_ABILITIES, ROM_ORDINARY_ABILITIES_BY_CLASS, type RomSkillGroup } from "./romAbilityCatalog"; import { registerAbilityAnimationLookup } from "./abilityAnimationLookup"; -import type { AuraDefinition, DispelCategory } from "./combatAuras"; +import type { AuraDefinition, DamageSchool, DispelCategory } from "./combatAuras"; -export type ResourceType = "mana" | "rage" | "energy" | "runic-power" | "focus" | "nature-power" | "psi" | "health"; -export type AbilityTarget = "hostile" | "friendly" | "self"; +export type ResourceType = + | "mana" + | "rage" + | "energy" + | "runic-power" + | "focus" + | "nature-power" + | "psi" + | "health" + | "holy-power" + | "chi" + | "soul-power" + | `custom:${string}`; +export type AbilityTarget = "hostile" | "friendly" | "any" | "self"; export type AbilityCastMode = "instant" | "cast" | "channel"; +export type AbilityTargetShape = "unit" | "circle" | "cone" | "chain" | "ground"; + +export interface AbilityTargetingRules { + readonly shape: AbilityTargetShape; + readonly requiresLineOfSight?: boolean; + readonly requiresFacing?: boolean; + readonly requiresBehindTarget?: boolean; + readonly attackArcRadians?: number; + readonly radius?: number; + readonly maximumTargets?: number; + readonly jumpRange?: number; + readonly groundRange?: number; +} + +export interface AbilityCastRules { + readonly school?: DamageSchool; + readonly canCastWhileMoving?: boolean; + readonly pushbackImmune?: boolean; + /** A fraction from zero to one, applied independently to each pushback hit. */ + readonly pushbackResistance?: number; +} + +export interface AbilityRuneCost { + readonly blood?: number; + readonly frost?: number; + readonly unholy?: number; +} + +export interface AbilityAiHints { + readonly categories: readonly ( + | "damage" + | "execute" + | "heal" + | "emergency-heal" + | "area-heal" + | "mitigation" + | "taunt" + | "interrupt" + | "dispel" + | "resurrection" + | "control" + | "debuff" + )[]; + readonly priority?: number; +} export type MobStatusKind = | "slow" | "stun" @@ -63,6 +120,8 @@ export interface AbilityAmountScaling { readonly basePoints?: number; readonly dieSides?: number; readonly pointsPerLevel?: number; + /** Additional power coefficient gained per source skill level. */ + readonly coefficientPerLevel?: number; readonly bonusPowerCoefficient?: number; readonly sourceLevel?: number; readonly maxScalingLevel?: number; @@ -77,15 +136,17 @@ export type AbilityEffect = | ({ readonly kind: "hot"; readonly coefficient: number; readonly ticks: number; readonly intervalMs: number } & AbilityAmountScaling) | { readonly kind: "resurrection"; readonly percentMaxHealth: number } | { readonly kind: "summon"; readonly creatureId: number; readonly coefficient: number; readonly durationMs: number } - | { readonly kind: "resource"; readonly amount: number; readonly resource?: ResourceType } + | { readonly kind: "resource"; readonly amount: number; readonly resource?: ResourceType; readonly percentage?: boolean } | { readonly kind: "combo"; readonly amount: number } | { readonly kind: "taunt"; readonly durationMs: number; readonly maxTargets?: number } - | { readonly kind: "status"; readonly status: MobStatusKind; readonly durationMs: number; readonly magnitude?: number; readonly maxTargets?: number } + | { readonly kind: "status"; readonly status: MobStatusKind; readonly durationMs: number; readonly magnitude?: number; readonly maxTargets?: number; readonly breakOnDamage?: boolean } | { readonly kind: "apply-aura"; readonly aura: AuraDefinition; /** Some hostile spells apply their beneficial rider to the caster. */ readonly recipient?: "ability-target" | "caster"; + /** Party/raid area auras are applied to the player and every active party member. */ + readonly scope?: "target" | "party"; readonly control?: AbilityAuraControl; readonly sourceEffectType: number; readonly sourceAuraType: number; @@ -109,6 +170,7 @@ export type AbilityEffect = readonly kind: "threat"; readonly mode: "flat" | "percent" | "redirect"; readonly amount: number; + readonly recipient?: "caster" | "ability-target"; } | { readonly kind: "movement"; @@ -119,7 +181,14 @@ export type AbilityEffect = | { readonly kind: "pet"; readonly action: "summon" | "call" | "recall" | "dismiss" | "resurrect" | "feed" | "tame"; readonly creatureId?: number } | { readonly kind: "totem"; readonly action: "destroy-all" } | { readonly kind: "rune"; readonly action: "activate"; readonly count: number } - | { readonly kind: "cooldown-reset"; readonly mode: "reset" | "reduce"; readonly abilityName?: string; readonly amountMs?: number } + | { + readonly kind: "cooldown-reset"; + readonly mode: "reset" | "reduce"; + readonly abilityName?: string; + readonly amountMs?: number; + /** Fraction of the target ability's remaining cooldown removed at execution time. */ + readonly amountPercent?: number; + } | { readonly kind: "trigger-spell"; readonly spellId: number; readonly withValue?: number } | { /** A known combat-side DBC script hook that requires a spell-specific handler. */ @@ -140,6 +209,7 @@ export type AbilityEffect = } | { readonly kind: "utility"; + readonly action?: "create-item" | "open-lock" | "portal" | "weapon-enchant" | "pickpocket" | "farsight" | "class-script"; readonly effectType: number; readonly auraType: number; readonly miscValue: number; @@ -165,6 +235,9 @@ export interface AbilityRankDefinition { readonly cost: AbilityCost; readonly costs?: readonly AbilityCost[]; readonly effects: readonly AbilityEffect[]; + readonly targeting?: AbilityTargetingRules; + readonly castRules?: AbilityCastRules; + readonly runeCost?: AbilityRuneCost; } export interface AbilityDefinition { @@ -188,6 +261,10 @@ export interface AbilityDefinition { readonly cost: AbilityCost; readonly costs?: readonly AbilityCost[]; readonly effects: readonly AbilityEffect[]; + readonly targeting?: AbilityTargetingRules; + readonly castRules?: AbilityCastRules; + readonly runeCost?: AbilityRuneCost; + readonly ai?: AbilityAiHints; readonly passive?: boolean; readonly source?: "core" | "wow335-progression" | "ascension-progression" | "coa-starter" | "coa-progression" | "coa-tree" | "runewaker"; readonly romSkillGroup?: RomSkillGroup; @@ -793,6 +870,9 @@ export function abilityAtLevel( cost: rank.cost, costs: rank.costs ?? [rank.cost], effects: rank.effects, + targeting: rank.targeting ?? ability.targeting, + castRules: rank.castRules ?? ability.castRules, + runeCost: rank.runeCost ?? ability.runeCost, }; } diff --git a/src/game/abilityRules.ts b/src/game/abilityRules.ts new file mode 100644 index 00000000..5c4cf0cf --- /dev/null +++ b/src/game/abilityRules.ts @@ -0,0 +1,104 @@ +import type { + AbilityAiHints, + AbilityDefinition, + AbilityRuneCost, + AbilityTargetingRules, +} from "./abilityCatalog"; + +const CHAIN_ABILITIES = new Set(["chain heal", "chain lightning", "prayer of mending"]); +const GROUND_ABILITIES = new Set([ + "blizzard", "rain of fire", "flamestrike", "death and decay", "consecration", + "volley", "hurricane", "earthquake", "meteor", "healing rain", +]); +const CONE_ABILITIES = new Set([ + "cone of cold", "dragon's breath", "dragons breath", "shockwave", "cleave", + "swipe", "swipe (cat)", "fan of knives", "whirlwind", +]); +const BEHIND_ABILITIES = new Set(["backstab", "ambush", "garrote", "ravage", "shred", "pounce"]); +const MOVEMENT_CAST_ABILITIES = new Set(["scorch", "steady shot", "spiritwalker's grace"]); +const EMERGENCY_HEAL_ABILITIES = new Set([ + "flash heal", "flash of light", "swiftmend", "lay on hands", "nature's swiftness", +]); + +const RUNE_COSTS_BY_SPELL_ID: Readonly> = Object.freeze({ + 49909: { frost: 1 }, 45524: { frost: 1 }, 49184: { frost: 1 }, 47528: { frost: 1 }, + 49921: { unholy: 1 }, 55271: { unholy: 1 }, 49222: { unholy: 1 }, 51052: { unholy: 1 }, + 49930: { blood: 1 }, 55262: { blood: 1 }, 49941: { blood: 1 }, 50842: { blood: 1 }, + 48982: { blood: 1 }, 49005: { blood: 1 }, + 49924: { frost: 1, unholy: 1 }, 51425: { frost: 1, unholy: 1 }, + 49938: { blood: 1, frost: 1, unholy: 1 }, +}); +const RUNE_COSTS_BY_NAME: Readonly> = Object.freeze({ + "icy touch": { frost: 1 }, "chains of ice": { frost: 1 }, "howling blast": { frost: 1 }, "mind freeze": { frost: 1 }, + "plague strike": { unholy: 1 }, "scourge strike": { unholy: 1 }, "bone shield": { unholy: 1 }, "anti-magic zone": { unholy: 1 }, + "blood strike": { blood: 1 }, "heart strike": { blood: 1 }, "blood boil": { blood: 1 }, "pestilence": { blood: 1 }, + "rune tap": { blood: 1 }, "mark of blood": { blood: 1 }, + "death strike": { frost: 1, unholy: 1 }, "obliterate": { frost: 1, unholy: 1 }, + "death and decay": { blood: 1, frost: 1, unholy: 1 }, +}); + +export function targetingRulesForAbility(ability: AbilityDefinition): AbilityTargetingRules { + if (ability.targeting) return ability.targeting; + const name = ability.name.toLowerCase(); + const shape = CHAIN_ABILITIES.has(name) + ? "chain" + : GROUND_ABILITIES.has(name) || name.endsWith(" trap") + ? "ground" + : CONE_ABILITIES.has(name) || name.endsWith(" breath") + ? "cone" + : ability.radius && ability.radius > 0 + ? "circle" + : "unit"; + const hostile = ability.target === "hostile" || ability.target === "any"; + return Object.freeze({ + shape, + requiresLineOfSight: ability.target !== "self", + // WoW friendly spells are deliberately facing independent. + requiresFacing: hostile && shape !== "circle" && shape !== "ground", + requiresBehindTarget: hostile && BEHIND_ABILITIES.has(name), + attackArcRadians: shape === "cone" ? Math.PI / 2 : Math.PI, + ...(ability.radius ? { radius: ability.radius } : {}), + ...(shape === "chain" ? { maximumTargets: 3, jumpRange: 12 } : {}), + ...(shape === "ground" ? { groundRange: ability.range.max, radius: ability.radius ?? 8 } : {}), + }); +} + +export function canAbilityCastWhileMoving(ability: AbilityDefinition): boolean { + return ability.castRules?.canCastWhileMoving ?? MOVEMENT_CAST_ABILITIES.has(ability.name.toLowerCase()); +} + +export function abilityPushbackResistance(ability: AbilityDefinition): number { + if (ability.castRules?.pushbackImmune) return 1; + return Math.max(0, Math.min(1, ability.castRules?.pushbackResistance ?? 0)); +} + +/** WotLK 3.3.5 rune costs for the active DK toolkit imported by the game. */ +export function runeCostForAbility(ability: AbilityDefinition): AbilityRuneCost | null { + if (ability.runeCost) return ability.runeCost; + return RUNE_COSTS_BY_SPELL_ID[ability.dbcSpellId] + ?? RUNE_COSTS_BY_NAME[ability.name.toLowerCase()] + ?? null; +} + +export function aiHintsForAbility(ability: AbilityDefinition): AbilityAiHints { + if (ability.ai) return ability.ai; + const name = ability.name.toLowerCase(); + const categories = new Set(); + for (const effect of ability.effects) { + if (["damage", "dot", "finisher-damage"].includes(effect.kind)) categories.add("damage"); + if (effect.kind === "execute") categories.add("execute"); + if (effect.kind === "heal" || effect.kind === "hot") categories.add("heal"); + if (effect.kind === "shield") categories.add("mitigation"); + if (effect.kind === "taunt") categories.add("taunt"); + if (effect.kind === "interrupt") categories.add("interrupt"); + if (effect.kind === "dispel" || effect.kind === "dispel-mechanic") categories.add("dispel"); + if (effect.kind === "resurrection") categories.add("resurrection"); + if (effect.kind === "status") { + categories.add(effect.status === "interrupt" ? "interrupt" : "control"); + } + if (effect.kind === "dot" || (effect.kind === "apply-aura" && effect.aura.disposition === "debuff")) categories.add("debuff"); + } + if (EMERGENCY_HEAL_ABILITIES.has(name)) categories.add("emergency-heal"); + if ((ability.radius ?? 0) > 0 && categories.has("heal")) categories.add("area-heal"); + return Object.freeze({ categories: Object.freeze([...categories]) }); +} diff --git a/src/game/coaAbilityCatalog.test.ts b/src/game/coaAbilityCatalog.test.ts new file mode 100644 index 00000000..a0d5e376 --- /dev/null +++ b/src/game/coaAbilityCatalog.test.ts @@ -0,0 +1,188 @@ +import { describe, expect, it } from "vitest"; +import { COA_CLASS_IDS, type CoaClassId } from "../app/characterCatalog"; +import type { AbilityDefinition, AbilityEffect, AbilityRankDefinition } from "./abilityCatalog"; +import { + COA_ABILITIES_BY_CLASS, + COA_CLASS_RESOURCES, + COA_TRIGGERED_ABILITIES_BY_SPELL_ID, +} from "./coaAbilityCatalog"; +import { + COA_PROGRESSION_CHAINS, + COA_TREE_ENTRIES, + coaClassIdFromDbcId, + coaSpellById, +} from "./coaLiveCatalog"; + +const abilities = Object.values(COA_ABILITIES_BY_CLASS).flat(); +const ranksFor = (ability: AbilityDefinition): readonly AbilityRankDefinition[] => ability.ranks ?? [{ + rank: 1, + spellId: ability.dbcSpellId, + level: ability.unlockLevel, + description: ability.description, + castMode: ability.castMode, + castTimeMs: ability.castTimeMs, + cooldownMs: ability.cooldownMs, + gcdMs: ability.gcdMs, + cost: ability.cost, + effects: ability.effects, +}]; +const ranks = abilities.flatMap((ability) => ranksFor(ability).map((rank) => ({ ability, rank }))); +const byName = (classId: CoaClassId, name: string): AbilityDefinition => { + const ability = COA_ABILITIES_BY_CLASS[classId].find((candidate) => candidate.name === name); + if (!ability) throw new Error(`Missing ${classId} ability ${name}`); + return ability; +}; +const rankEffectsForSpell = (spellId: number): readonly AbilityEffect[] => ranks + .find(({ rank }) => rank.spellId === spellId)?.rank.effects ?? []; + +describe("Ascension Conquest ability catalog", () => { + it("covers every class, source family, and playable rank", () => { + expect(Object.keys(COA_ABILITIES_BY_CLASS).sort()).toEqual([...COA_CLASS_IDS].sort()); + expect(Object.keys(COA_CLASS_RESOURCES).sort()).toEqual([...COA_CLASS_IDS].sort()); + expect(abilities).toHaveLength(1_275); + expect(ranks).toHaveLength(3_394); + expect(new Set(ranks.map(({ rank }) => rank.spellId)).size).toBe(3_347); + + const runtimeSpellIds = new Set(ranks.map(({ rank }) => rank.spellId)); + for (const chain of COA_PROGRESSION_CHAINS) { + const classId = coaClassIdFromDbcId(chain.classId); + expect(classId, chain.name).not.toBeNull(); + for (const rank of chain.ranks) { + expect(runtimeSpellIds.has(rank.spellId), `${classId}: ${chain.name} rank ${rank.rank}`).toBe(true); + } + } + for (const entry of COA_TREE_ENTRIES.filter((candidate) => candidate.entryType === "Ability")) { + const classId = coaClassIdFromDbcId(entry.classId); + if (!classId) continue; + for (const rank of entry.rankDescriptions) { + expect(runtimeSpellIds.has(rank.spellId), `${classId}: ${entry.name} rank ${rank.rank}`).toBe(true); + } + } + }); + + it("gives every family and rank finite, executable runtime data", () => { + expect(new Set(abilities.map((ability) => ability.id)).size).toBe(abilities.length); + for (const ability of abilities) { + expect(ability.classId, ability.id).toBeTruthy(); + expect(ability.name.length, ability.id).toBeGreaterThan(0); + expect(ability.icon.startsWith("/assets/ui/spells/"), ability.id).toBe(true); + expect(Number.isFinite(ability.range.min), ability.id).toBe(true); + expect(Number.isFinite(ability.range.max), ability.id).toBe(true); + expect(ability.range.max, ability.id).toBeGreaterThanOrEqual(ability.range.min); + expect(ability.cooldownMs, ability.id).toBeGreaterThanOrEqual(0); + for (const rank of ranksFor(ability)) { + const label = `${ability.id} rank ${rank.rank} (${rank.spellId})`; + expect(rank.spellId, label).toBeGreaterThan(0); + expect(rank.level, label).toBeGreaterThan(0); + expect(rank.description.length, label).toBeGreaterThan(0); + expect(rank.castTimeMs, label).toBeGreaterThanOrEqual(0); + expect(rank.cooldownMs, label).toBeGreaterThanOrEqual(0); + expect(rank.gcdMs, label).toBeGreaterThanOrEqual(0); + expect(Number.isFinite(rank.cost.amount), label).toBe(true); + expect(rank.cost.amount, label).toBeGreaterThanOrEqual(0); + expect(rank.effects.length, label).toBeGreaterThan(0); + expect(rank.effects.some((effect) => effect.kind === "scripted" || effect.kind === "unsupported"), label).toBe(false); + if (!ability.passive) { + expect(rank.effects.some((effect) => effect.kind !== "utility" || effect.action !== "class-script"), label).toBe(true); + } + } + } + }); + + it("translates every standard DBC combat effect into its executable semantic", () => { + const applyAuraTypes = new Set([0, 3, 6, 27, 35, 65, 119, 128, 129, 143, 190]); + const triggerTypes = new Set([32, 64, 140, 141, 142, 148, 151, 160, 165, 169, 175, 178, 183]); + const movementTypes = new Set([5, 29, 41, 42, 43, 79, 96, 98, 138, 144, 149]); + for (const { ability, rank } of ranks) { + const dbc = coaSpellById(rank.spellId)?.dbc; + if (!dbc) continue; + const kinds = new Set(rank.effects.map((effect) => effect.kind)); + for (const effect of dbc.effects) { + const label = `${ability.classId}: ${ability.name} rank ${rank.rank}, DBC ${effect.effectType}/${effect.auraType}`; + if (effect.effectType === 2 || [17, 31, 58, 121].includes(effect.effectType)) expect(kinds.has("damage"), label).toBe(true); + if ([10, 67, 136].includes(effect.effectType)) expect(kinds.has("heal"), label).toBe(true); + if (applyAuraTypes.has(effect.effectType) && effect.auraType > 0) expect(kinds.has("apply-aura"), label).toBe(true); + if (effect.auraType === 3 && effect.periodMs > 0) expect(kinds.has("dot"), label).toBe(true); + if ([8, 20].includes(effect.auraType) && effect.periodMs > 0) expect(kinds.has("hot"), label).toBe(true); + if (triggerTypes.has(effect.effectType) && effect.triggerSpellId > 0) expect(kinds.has("trigger-spell"), label).toBe(true); + if (movementTypes.has(effect.effectType)) expect(kinds.has("movement"), label).toBe(true); + if (effect.effectType === 38) expect(kinds.has("dispel"), label).toBe(true); + if (effect.effectType === 68) expect(kinds.has("interrupt"), label).toBe(true); + if ([18, 94, 113, 117].includes(effect.effectType)) expect(kinds.has("resurrection"), label).toBe(true); + if ([192, 195].includes(effect.effectType)) expect(kinds.has("cooldown-reset"), label).toBe(true); + } + } + }); + + it("preserves percentages, actual power pools, and shared cooldown groups", () => { + const percentageCosts = ranks.filter(({ rank }) => rank.cost.percentage); + expect(percentageCosts.length).toBeGreaterThan(1_500); + expect(ranks.some(({ rank }) => rank.cost.resource === "health")).toBe(true); + expect(ranks.some(({ rank }) => rank.cost.resource === "energy")).toBe(true); + expect(ranks.some(({ rank }) => rank.cost.resource === "rage")).toBe(true); + expect(ranks.some(({ rank }) => rank.cost.resource === "runic-power")).toBe(true); + + const ascension = byName("sun-cleric", "Solar Invocation: Ascension"); + const revelation = byName("sun-cleric", "Solar Invocation: Revelation"); + expect(ascension.cooldownGroup).toBe("coa:solar-invocation-spells"); + expect(revelation.cooldownGroup).toBe(ascension.cooldownGroup); + expect(revelation.target).toBe("any"); + + const profound = byName("templar", "Profound Enlightenment"); + expect(profound.effects.filter((effect) => effect.kind === "cooldown-reset")).toEqual([ + expect.objectContaining({ mode: "reduce", amountPercent: 0.5 }), + expect.objectContaining({ mode: "reduce", amountPercent: 0.5 }), + expect.objectContaining({ mode: "reduce", amountPercent: 0.5 }), + ]); + }); + + it("keeps representative healing, protection, control, proc, trigger, and reset spells functional", () => { + expect(byName("sun-cleric", "Solar Invocation: Ascension")).toMatchObject({ target: "self", radius: 40 }); + expect(byName("guardian", "Feats of Strength")).toMatchObject({ target: "friendly" }); + expect(byName("knight-of-xoroth", "Black Shield").ranks?.every((rank) => rank.effects.some((effect) => effect.kind === "shield"))).toBe(true); + expect(byName("witch-hunter", "Brand of the Unworthy").effects).toContainEqual(expect.objectContaining({ kind: "status", status: "sleep" })); + expect(byName("necromancer", "Plaguestorm").ranks?.every((rank) => rank.effects.some((effect) => effect.kind === "dot"))).toBe(true); + expect(byName("templar", "Profound Enlightenment").effects.filter((effect) => effect.kind === "cooldown-reset")).toHaveLength(3); + expect(byName("sun-cleric", "New Day").effects.filter((effect) => effect.kind === "cooldown-reset")).toHaveLength(3); + + const gaze = byName("cultist", "Gaze of C'Thun"); + expect(gaze.target).toBe("any"); + expect(gaze.effects.some((effect) => effect.kind === "trigger-spell")).toBe(true); + expect(gaze.effects.some((effect) => effect.kind === "damage")).toBe(true); + expect(gaze.effects.some((effect) => effect.kind === "heal")).toBe(true); + + const razorice = byName("necromancer", "Razorice"); + const procs = razorice.effects + .filter((effect): effect is Extract => effect.kind === "apply-aura") + .flatMap((effect) => effect.aura.procs ?? []); + expect(procs.length).toBeGreaterThan(0); + expect(procs.every((proc) => proc.action.kind === "damage" || proc.action.kind === "custom")).toBe(true); + }); + + it("keeps every rank spell lookup executable, including recursively expanded trigger spells", () => { + for (const { ability, rank } of ranks) { + expect(rankEffectsForSpell(rank.spellId).length, `${ability.name} ${rank.spellId}`).toBeGreaterThan(0); + } + const gaze = byName("cultist", "Gaze of C'Thun"); + expect(gaze.effects.filter((effect) => effect.kind === "trigger-spell")).toEqual(expect.arrayContaining([ + expect.objectContaining({ spellId: 520334 }), + expect.objectContaining({ spellId: 520335 }), + ])); + }); + + it("ships executable hidden payloads for proc-triggered DBC spell IDs", () => { + expect(Object.keys(COA_TRIGGERED_ABILITIES_BY_SPELL_ID)).toHaveLength(585); + expect(COA_TRIGGERED_ABILITIES_BY_SPELL_ID[800951]).toMatchObject({ + name: "Battle Rhythm", + effects: expect.arrayContaining([{ kind: "resource", amount: 5 }]), + }); + expect(Object.values(COA_TRIGGERED_ABILITIES_BY_SPELL_ID).filter((ability) => ( + ability.effects.some((effect) => effect.kind !== "utility") + ))).toHaveLength(547); + for (const [spellId, ability] of Object.entries(COA_TRIGGERED_ABILITIES_BY_SPELL_ID)) { + expect(ability.dbcSpellId, spellId).toBe(Number(spellId)); + expect(ability.effects.length, spellId).toBeGreaterThan(0); + expect(ability.effects.some((effect) => effect.kind === "scripted" || effect.kind === "unsupported"), spellId).toBe(false); + } + }); +}); diff --git a/src/game/coaAbilityCatalog.ts b/src/game/coaAbilityCatalog.ts index 77a61f44..7dcb668f 100644 --- a/src/game/coaAbilityCatalog.ts +++ b/src/game/coaAbilityCatalog.ts @@ -1,6 +1,8 @@ import type { ClassId, CoaClassId } from "../app/characterCatalog"; import type { AbilityAmountScaling, + AbilityAuraControl, + AbilityCost, AbilityDefinition, AbilityEffect, AbilityRankDefinition, @@ -8,6 +10,14 @@ import type { ClassResourceProfile, ResourceType, } from "./abilityCatalog"; +import type { + AuraDefinition, + AuraModifier, + AuraProcDefinition, + DamageSchool, + DispelCategory, + ProcTrigger, +} from "./combatAuras"; import { COA_PROGRESSION_CHAINS, COA_TREE_ENTRIES, @@ -20,6 +30,37 @@ import { type CoaProgressionChain, type CoaTreeEntry, } from "./coaLiveCatalog"; +import triggeredSpellCatalog from "./generated/coaTriggeredSpellCatalog.json"; + +interface CoaSourceSpell { + readonly name: string; + readonly rank: string; + readonly description: string; + readonly liveTooltip?: string; + readonly dbc: CoaDbcSpell; +} + +const COA_TRIGGERED_DBC_BY_ID = new Map( + (triggeredSpellCatalog.spells as unknown as readonly CoaDbcSpell[]).map((spell) => [spell.id, spell]), +); + +function coaSourceSpellById(spellId: number): CoaSourceSpell | null { + const live = coaSpellById(spellId); + if (live?.dbc) return { + name: live.name, + rank: live.rank, + description: live.description, + ...(live.liveTooltip ? { liveTooltip: live.liveTooltip } : {}), + dbc: live.dbc, + }; + const dbc = COA_TRIGGERED_DBC_BY_ID.get(spellId); + return dbc ? { + name: dbc.name || `Triggered Spell ${spellId}`, + rank: dbc.rankText, + description: dbc.description, + dbc, + } : null; +} const spellIcon = (basename: string) => `/assets/ui/spells/${basename.toLowerCase()}.png`; const UNLOCK_LEVELS = [1, 1, 2, 4] as const; @@ -265,6 +306,200 @@ const COA_STARTER_ABILITIES_BY_CLASS: Readonly> = { + [-1]: "all-primary", + 0: "strength", + 1: "agility", + 2: "stamina", + 3: "intellect", + 4: "spirit", +}; + +function targetsForEffect(effect: CoaDbcEffect): readonly number[] { + return [effect.implicitTargetA, effect.implicitTargetB]; +} + +function effectTargetsHostile(effect: CoaDbcEffect): boolean { + return targetsForEffect(effect).some((target) => HOSTILE_TARGETS.has(target)); +} + +function schoolsFromMask(mask: number): readonly DamageSchool[] { + const schools: readonly [number, DamageSchool][] = [ + [1, "physical"], + [2, "holy"], + [4, "fire"], + [8, "nature"], + [16, "frost"], + [32, "shadow"], + [64, "arcane"], + ]; + return schools.filter(([bit]) => (mask & bit) !== 0).map(([, school]) => school); +} + +function schoolFromMask(mask: number): DamageSchool | undefined { + const schools = schoolsFromMask(mask); + return schools.length === 1 ? schools[0] : undefined; +} + +function percentValue(effect: CoaDbcEffect): number { + return effect.basePoints / 100; +} + +function auraModifiers(effect: CoaDbcEffect): readonly AuraModifier[] { + const flatStat = (stat: string): AuraModifier[] => [ + { kind: "stat", stat, operation: "flat", value: effect.basePoints }, + ]; + const percentStat = (stat: string): AuraModifier[] => [ + { kind: "stat", stat, operation: "percent", value: percentValue(effect) }, + ]; + const resistanceStat = `resistance:${schoolFromMask(effect.miscValue) ?? "all"}`; + switch (effect.auraType) { + case 9: return percentStat("attack-speed"); + case 10: + case 103: + case 183: + case 221: return percentStat("threat"); + case 13: return [{ kind: "damage", direction: "dealt", ...(schoolFromMask(effect.miscValue) ? { school: schoolFromMask(effect.miscValue) } : {}), operation: "flat", value: effect.basePoints }]; + case 14: return [{ kind: "damage", direction: "taken", ...(schoolFromMask(effect.miscValue) ? { school: schoolFromMask(effect.miscValue) } : {}), operation: "flat", value: effect.basePoints }]; + case 20: return flatStat("health-regeneration"); + case 22: + case 83: + case 123: + case 143: return flatStat(resistanceStat); + case 29: return flatStat(STAT_BY_MISC_VALUE[effect.miscValue] ?? `stat:${effect.miscValue}`); + case 31: + case 32: + case 33: + case 58: + case 129: + case 171: + case 172: + case 191: + case 201: + case 206: + case 207: + case 208: + case 209: + case 210: + case 211: + case 252: return percentStat("movement-speed"); + case 34: + case 250: return flatStat("maximum-health"); + case 35: return [{ kind: "resource", resource: "power", property: "maximum", operation: "flat", value: effect.basePoints }]; + case 39: + case 267: return schoolsFromMask(effect.miscValue).map((school) => ({ + kind: "damage" as const, + direction: "taken" as const, + school, + operation: "percent" as const, + value: -1, + })); + case 47: return percentStat("parry"); + case 49: return percentStat("dodge"); + case 50: return percentStat("critical-healing"); + case 51: return percentStat("block"); + case 52: + case 187: + case 188: + case 197: return percentStat("critical-strike"); + case 54: + case 184: + case 185: return percentStat("hit"); + case 55: + case 186: + case 199: return percentStat("spell-hit"); + case 57: + case 71: + case 179: return percentStat("spell-critical-strike"); + case 59: return [{ kind: "damage", direction: "dealt", operation: "flat", value: effect.basePoints }]; + case 61: + case 65: + case 138: + case 140: + case 141: + case 192: + case 193: + case 216: + case 217: + case 218: return percentStat("haste"); + case 72: return [{ kind: "resource", resource: "power", property: "cost", operation: "percent", value: percentValue(effect) }]; + case 73: return [{ kind: "resource", resource: "power", property: "cost", operation: "flat", value: effect.basePoints }]; + case 79: + case 168: return [{ kind: "damage", direction: "dealt", ...(schoolFromMask(effect.miscValue) ? { school: schoolFromMask(effect.miscValue) } : {}), operation: "percent", value: percentValue(effect) }]; + case 80: + case 137: return percentStat(STAT_BY_MISC_VALUE[effect.miscValue] ?? "all-primary"); + case 84: + case 88: + case 116: + case 161: return effect.auraType === 84 || effect.auraType === 116 || effect.auraType === 161 + ? flatStat("health-regeneration") + : percentStat("health-regeneration"); + case 85: return [{ kind: "resource", resource: "power", property: "regeneration", operation: "flat", value: effect.basePoints }]; + case 87: + case 229: + case 255: + case 271: return [{ kind: "damage", direction: "taken", ...(schoolFromMask(effect.miscValue) ? { school: schoolFromMask(effect.miscValue) } : {}), operation: "percent", value: percentValue(effect) }]; + case 99: + case 165: return flatStat("attack-power"); + case 101: + case 142: return percentStat(resistanceStat); + case 107: + case 166: return percentStat("attack-power"); + case 108: + case 167: + case 212: return percentStat("ranged-attack-power"); + case 110: + case 134: + case 219: return [{ kind: "resource", resource: "mana", property: "regeneration", operation: "percent", value: percentValue(effect) }]; + case 113: return [{ kind: "damage", direction: "taken", attackKind: "ranged", operation: "flat", value: effect.basePoints }]; + case 114: return [{ kind: "damage", direction: "taken", attackKind: "ranged", operation: "percent", value: percentValue(effect) }]; + case 115: return [{ kind: "healing", direction: "taken", operation: "flat", value: effect.basePoints }]; + case 118: return [{ kind: "healing", direction: "taken", operation: "percent", value: percentValue(effect) }]; + case 122: return [{ kind: "damage", direction: "dealt", attackKind: "melee", operation: "percent", value: percentValue(effect) }]; + case 124: + case 127: return flatStat("ranged-attack-power"); + case 125: return [{ kind: "damage", direction: "taken", attackKind: "melee", operation: "flat", value: effect.basePoints }]; + case 126: return [{ kind: "damage", direction: "taken", attackKind: "melee", operation: "percent", value: percentValue(effect) }]; + case 132: return [{ kind: "resource", resource: "power", property: "maximum", operation: "percent", value: percentValue(effect) }]; + case 133: return percentStat("maximum-health"); + case 135: return [{ kind: "healing", direction: "done", operation: "flat", value: effect.basePoints }]; + case 136: + case 175: return [{ kind: "healing", direction: "done", operation: "percent", value: percentValue(effect) }]; + case 150: return percentStat("block-value"); + case 158: return flatStat("block-value"); + case 163: + case 203: + case 204: return percentStat("critical-damage"); + case 169: return percentStat("critical-strike"); + case 174: + case 237: return percentStat("spell-power"); + case 189: + case 220: return flatStat(`combat-rating:${effect.miscValue}`); + case 230: return flatStat("maximum-health"); + case 240: return flatStat("expertise"); + case 248: return percentStat("combat-result"); + case 251: return percentStat("enemy-dodge"); + case 253: return percentStat("block-critical-strike"); + case 280: return percentStat("armor-penetration"); + default: return []; + } +} function effectCoefficient(effect: CoaDbcEffect, spellLevel: number): number { if (effect.coefficient > 0) return Math.max(0.05, effect.coefficient); @@ -285,69 +520,464 @@ function effectAmountScaling(effect: CoaDbcEffect, spell: CoaDbcSpell): AbilityA }; } -function statusFromAura(auraType: number): Extract["status"] | null { - if (auraType === 5) return "fear"; - if (auraType === 7) return "fear"; - if (auraType === 12) return "stun"; - if (auraType === 26) return "root"; - if (auraType === 27) return "interrupt"; - if (auraType === 32 || auraType === 33) return "slow"; - return null; +function controlFromAura(auraType: number): AbilityAuraControl | undefined { + switch (auraType) { + case 5: + case 56: return { kind: "confuse" }; + case 6: + case 177: return { kind: "charm" }; + case 7: return { kind: "fear" }; + case 12: return { kind: "stun" }; + case 25: return { kind: "pacify" }; + case 26: + case 92: return { kind: "root" }; + case 27: + case 60: return { kind: "silence" }; + case 67: + case 254: + case 278: return { kind: "disarm" }; + default: return undefined; + } } -function effectsForSpell(spell: CoaDbcSpell | undefined, description: string): readonly AbilityEffect[] { +function utilityTagsForAura(auraType: number, abilityName: string): readonly string[] { + const tags: string[] = []; + if (auraType === 16 || /\bstealth|prowl|vanish\b/i.test(abilityName)) tags.push("stealth"); + if ([17, 19, 44, 151].includes(auraType)) tags.push("tracking"); + if (auraType === 36) tags.push("shapeshift"); + if (auraType === 66) tags.push("feign-death"); + if (auraType === 78) tags.push("mounted"); + if (auraType === 82) tags.push("water-breathing"); + if (auraType === 104) tags.push("water-walking"); + if (auraType === 105) tags.push("slow-fall"); + if ([1, 4, 68, 121, 128, 226, 292].includes(auraType)) tags.push(`coa-aura:${auraType}`); + if (auraType === 120) tags.push("untrackable"); + if (auraType === 149) tags.push("pushback-resistance"); + if (auraType === 25) tags.push("pacified"); + if (auraType === 41) tags.push("reveal-stealth"); + if (auraType === 91) tags.push("reduced-aggro-radius"); + return tags; +} + +function controlImmunitiesForAura(auraType: number, miscValue: number): AuraDefinition["controlImmunities"] { + if (auraType !== 77) return undefined; + if (miscValue === 5) return ["fear"]; + if (miscValue === 7 || miscValue === 11) return ["root"]; + if (miscValue === 10) return ["sleep"]; + if (miscValue === 12) return ["stun"]; + return undefined; +} + +function inferredProcTriggers(description: string, auraType: number): readonly ProcTrigger[] { + if ([23, 48, 226, 227].includes(auraType)) return ["periodic"]; + const triggers: ProcTrigger[] = []; + if (/\bcritical|critically\b/i.test(description)) triggers.push("crit"); + if (/\bdodge/i.test(description)) triggers.push("dodge"); + if (/\bparr(?:y|ied)/i.test(description)) triggers.push("parry"); + if (/\bblock/i.test(description)) triggers.push("block"); + if (/\bcast(?:ing|s)?\b/i.test(description)) triggers.push("cast"); + if (/\bheal(?:ing|s|ed)?\b/i.test(description)) triggers.push("heal"); + if (/\bkill(?:ing|s|ed)?\b/i.test(description)) triggers.push("kill"); + if (/\bdamage taken|when struck|takes? damage/i.test(description)) triggers.push("damage-taken"); + if (/\bhit(?:s|ting)?\b|attack/i.test(description)) triggers.push("hit"); + return triggers.length ? [...new Set(triggers)] : ["hit"]; +} + +function procForAura( + effect: CoaDbcEffect, + spell: CoaDbcSpell, + description: string, + effectIndex: number, +): AuraProcDefinition | undefined { + const triggerAura = [23, 42, 43, 48, 109, 111, 223, 225, 227, 231].includes(effect.auraType); + const damageShield = effect.auraType === 15; + if (!triggerAura && !damageShield) return undefined; + if (!damageShield && effect.triggerSpellId <= 0) return undefined; + const descriptionChance = description.match(/(\d+(?:\.\d+)?)% chance/i); + const chance = descriptionChance + ? Math.min(1, Math.max(0, Number(descriptionChance[1]) / 100)) + : spell.procChance > 0 ? Math.min(1, spell.procChance / 100) : 1; + const internalCooldown = description.match(/(?:once every|once per|only once (?:every|per))\s+(\d+(?:\.\d+)?)\s*sec/i); + return { + id: `coa:${spell.id}:proc:${effectIndex}:${effect.triggerSpellId || "damage"}`, + triggers: damageShield ? "damage-taken" : inferredProcTriggers(description, effect.auraType), + chance, + ...(internalCooldown ? { internalCooldownMs: Number(internalCooldown[1]) * 1_000 } : {}), + ...(spell.procCharges > 0 ? { charges: spell.procCharges } : {}), + action: damageShield + ? { + kind: "damage", + amount: Math.max(1, Math.abs(effect.basePoints)), + school: schoolFromMask(spell.schoolMask) ?? "physical", + target: "event-other", + } + : { + kind: "custom", + id: "wow335-trigger-spell", + data: { spellId: effect.triggerSpellId }, + }, + }; +} + +function dispelCategoryForAura(abilityName: string, description: string, durationMs: number): DispelCategory | undefined { + const text = `${abilityName} ${description}`; + if (/\bcurse\b/i.test(text)) return "curse"; + if (/\bpoison|venom\b/i.test(text)) return "poison"; + if (/\bdisease|plague\b/i.test(text)) return "disease"; + if (/\benrage|frenzy|berserk/i.test(text)) return "enrage"; + if (/\bbleed|bleeding|wound|rend\b/i.test(text)) return undefined; + return durationMs > 0 ? "magic" : undefined; +} + +function namedAuraForEffect( + effect: CoaDbcEffect, + spell: CoaDbcSpell, + abilityName: string, + description: string, + effectIndex: number, +): AuraDefinition { + const modifiers = auraModifiers(effect); + const tags = utilityTagsForAura(effect.auraType, abilityName); + const proc = procForAura(effect, spell, description, effectIndex); + const category = dispelCategoryForAura(abilityName, description, spell.durationMs); + const school = schoolFromMask(effect.miscValue); + return { + id: `coa:${spell.id}:effect:${effectIndex}:aura:${effect.auraType}`, + name: `${abilityName} (Aura ${effect.auraType})`, + disposition: effectTargetsHostile(effect) ? "debuff" : "buff", + ...([3, 8].includes(effect.auraType) && effect.periodMs > 0 ? { hideFromAuraStrip: true } : {}), + durationMs: spell.durationMs > 0 ? spell.durationMs : null, + maxStacks: Math.max(1, spell.stackAmount || 1), + stackBehavior: spell.stackAmount > 1 ? "add" : "refresh", + ...(tags.length ? { utilityTags: tags } : {}), + ...(controlImmunitiesForAura(effect.auraType, effect.miscValue) + ? { controlImmunities: controlImmunitiesForAura(effect.auraType, effect.miscValue) } + : {}), + ...([28, 74].includes(effect.auraType) + ? { reflectSpellChance: Math.min(1, Math.max(0, Math.abs(effect.basePoints) / 100)) } + : {}), + ...(effect.auraType === 81 + ? { redirectDamagePercent: Math.min(1, Math.max(0, Math.abs(effect.basePoints) / 100)) } + : {}), + ...(category ? { dispelCategory: category } : {}), + ...(modifiers.length ? { modifiers } : {}), + ...([69, 97].includes(effect.auraType) + ? { + absorbs: [{ + id: `coa:${spell.id}:absorb:${effectIndex}`, + amount: Math.max(1, Math.abs(effect.basePoints)), + ...(school ? { school } : {}), + perStack: false, + }], + } + : {}), + ...(proc ? { procs: [proc] } : {}), + }; +} + +function categoriesForDispel(miscValue: number): readonly DispelCategory[] { + switch (miscValue) { + case 1: return ["magic"]; + case 2: return ["curse"]; + case 3: return ["disease"]; + case 4: return ["poison"]; + case 7: return ALL_DISPEL_CATEGORIES; + case 9: return ["enrage"]; + default: return []; + } +} + +function utilityAction(effectType: number): Extract["action"] { + if (effectType === 24) return "create-item"; + if (effectType === 33) return "open-lock"; + if (effectType === 50) return "portal"; + if (effectType === 54) return "weapon-enchant"; + if (effectType === 71) return "pickpocket"; + if (effectType === 72) return "farsight"; + return "class-script"; +} + +function effectsForSpell( + spell: CoaDbcSpell | undefined, + description: string, + abilityName: string, + depth = 0, + visitedSpellIds: ReadonlySet = new Set(), +): readonly AbilityEffect[] { if (!spell) { if (/\b(?:heal|restore|mend|rejuvenat)\w*\b/i.test(description)) return [{ kind: "heal", coefficient: 1 }]; if (/\b(?:damage|strike|blast|bolt|shot|slash|smash|attack)\w*\b/i.test(description)) return [{ kind: "damage", coefficient: 1 }]; - return [{ kind: "utility", effectType: 0, auraType: 0, miscValue: 0, triggerSpellId: 0, durationMs: 0 }]; + return [{ kind: "utility", action: "class-script", effectType: 0, auraType: 0, miscValue: 0, triggerSpellId: 0, durationMs: 0 }]; } const effects: AbilityEffect[] = []; - for (const effect of spell.effects) { + for (const [effectIndex, effect] of spell.effects.entries()) { const coefficient = effectCoefficient(effect, spell.spellLevel); const scaling = effectAmountScaling(effect, spell); + if ((APPLY_AURA_EFFECTS.has(effect.effectType) || effect.effectType === 0 || effect.effectType === 3) && effect.auraType > 0) { + effects.push({ + kind: "apply-aura", + aura: namedAuraForEffect(effect, spell, abilityName, description, effectIndex), + ...(targetsForEffect(effect).includes(1) ? { recipient: "caster" as const } : {}), + ...([35, 65].includes(effect.effectType) ? { scope: "party" as const } : {}), + ...(controlFromAura(effect.auraType) ? { control: controlFromAura(effect.auraType) } : {}), + sourceEffectType: effect.effectType, + sourceAuraType: effect.auraType, + miscValue: effect.miscValue, + triggerSpellId: effect.triggerSpellId, + }); + if (effect.auraType === 3 && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, spell.durationMs) / effect.periodMs)); + effects.push({ kind: "dot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs, tag: `spell-${spell.id}` }); + } else if ([8, 20].includes(effect.auraType) && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, spell.durationMs) / effect.periodMs)); + effects.push({ kind: "hot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs }); + } else if (effect.auraType === 11) { + effects.push({ kind: "taunt", durationMs: Math.max(3_000, spell.durationMs) }); + } else if (effect.auraType === 53 && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, spell.durationMs) / effect.periodMs)); + effects.push({ kind: "dot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs, tag: `spell-${spell.id}` }); + effects.push({ kind: "hot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs }); + } else if (effect.auraType === 64 && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, spell.durationMs) / effect.periodMs)); + effects.push({ kind: "resource-drain", amount: Math.abs(effect.basePoints) * ticks, burn: false, resource: "mana", percentage: true }); + } else if (effect.auraType === 24) { + const ticks = effect.periodMs > 0 + ? Math.max(1, Math.round(Math.max(effect.periodMs, spell.durationMs) / effect.periodMs)) + : 1; + effects.push({ kind: "resource", amount: Math.abs(effect.basePoints) * ticks }); + } + if (effectTargetsHostile(effect) && (effect.auraType === 32 || effect.auraType === 33)) { + effects.push({ + kind: "status", + status: "slow", + durationMs: Math.max(1_000, spell.durationMs), + magnitude: Math.min(0.95, Math.max(0.05, Math.abs(effect.basePoints) / 100)), + }); + } else if (effectTargetsHostile(effect) && effect.auraType === 9) { + effects.push({ + kind: "status", + status: "attack-speed", + durationMs: Math.max(1_000, spell.durationMs), + magnitude: Math.min(0.95, Math.max(0.05, Math.abs(effect.basePoints) / 100)), + }); + } + continue; + } + if (effect.effectType === 1) { + effects.push({ kind: "execute", coefficient: Math.max(1, coefficient) }); + continue; + } if (effect.effectType === 2) { effects.push({ kind: "damage", coefficient, ...scaling }); continue; } - if (effect.effectType === 10 || effect.effectType === 67 || effect.effectType === 136) { + if (effect.effectType === 8 || effect.effectType === 62) { + effects.push({ kind: "resource-drain", amount: Math.max(0, Math.abs(effect.basePoints)), burn: effect.effectType === 62 }); + continue; + } + if (effect.effectType === 9) { + effects.push({ kind: "damage", coefficient, ...scaling }); effects.push({ kind: "heal", coefficient, ...scaling }); continue; } + if (WEAPON_DAMAGE_EFFECTS.has(effect.effectType)) { + effects.push({ kind: "damage", coefficient: effect.effectType === 31 ? Math.max(0.1, Math.abs(effect.basePoints) / 100) : 1 }); + continue; + } + if (effect.effectType === 67) { + effects.push({ kind: "heal", coefficient: 0, percentMaxHealth: 1, ...scaling }); + continue; + } + if (effect.effectType === 10 || effect.effectType === 67 || effect.effectType === 136) { + effects.push(effect.effectType === 136 + ? { kind: "heal", coefficient: 0, percentMaxHealth: Math.max(0, Math.abs(effect.basePoints) / 100), ...scaling } + : { kind: "heal", coefficient, ...scaling }); + continue; + } if (effect.effectType === 30) { effects.push({ kind: "resource", amount: Math.abs(effect.basePoints) }); continue; } - if (effect.auraType === 3 && effect.periodMs > 0) { - const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, spell.durationMs) / effect.periodMs)); - effects.push({ kind: "dot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs, tag: `spell-${spell.id}` }); + if (effect.effectType === 137) { + effects.push({ kind: "resource", amount: Math.abs(effect.basePoints), percentage: true }); continue; } - if (effect.auraType === 8 && effect.periodMs > 0) { - const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, spell.durationMs) / effect.periodMs)); - effects.push({ kind: "hot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs }); + if ([63, 91, 125, 130].includes(effect.effectType)) { + effects.push({ + kind: "threat", + mode: effect.effectType === 130 ? "redirect" : effect.effectType === 125 ? "percent" : "flat", + amount: effect.basePoints, + }); continue; } - if (effect.auraType === 69) { - effects.push({ kind: "shield", coefficient, ...scaling, durationMs: Math.max(1_000, spell.durationMs) }); - continue; - } - if (effect.auraType === 11) { + if (effect.effectType === 114 || effect.auraType === 11) { effects.push({ kind: "taunt", durationMs: Math.max(3_000, spell.durationMs) }); continue; } - const status = statusFromAura(effect.auraType); - if (status) { + if (effect.effectType === 38) { + const relationship = targetsForEffect(effect).includes(25) + ? "target" + : effectTargetsHostile(effect) ? "hostile" : "friendly"; effects.push({ - kind: "status", - status, + kind: "dispel", + mode: relationship === "hostile" ? "purge" : "cleanse", + relationship, + categories: categoriesForDispel(effect.miscValue), + maxCount: Math.max(1, Math.abs(effect.basePoints)), + }); + continue; + } + if (effect.effectType === 126) { + effects.push({ + kind: "dispel", + mode: "steal", + relationship: "hostile", + categories: ["magic"], + maxCount: Math.max(1, Math.abs(effect.basePoints)), + }); + continue; + } + if (effect.effectType === 68) { + effects.push({ kind: "interrupt", lockoutMs: Math.max(1_000, spell.durationMs) }); + continue; + } + if (effect.effectType === 80) { + effects.push({ kind: "combo", amount: Math.max(1, Math.abs(effect.basePoints)) }); + continue; + } + if ([70, 124, 145].includes(effect.effectType)) { + effects.push({ kind: "pull", toward: effect.effectType === 145 ? "destination" : "caster" }); + continue; + } + if ([5, 29, 41, 42, 43, 79, 96, 98, 138, 144, 149].includes(effect.effectType)) { + const movement = effect.effectType === 5 || effect.effectType === 43 + ? "teleport" + : effect.effectType === 96 || effect.effectType === 149 + ? "charge" + : effect.effectType === 98 || effect.effectType === 144 + ? "knockback" + : effect.effectType === 79 + ? "sanctuary" + : "leap"; + effects.push({ + kind: "movement", + movement, + toward: movement === "knockback" || effect.effectType === 138 + ? "away" + : [42, 43, 144, 149].includes(effect.effectType) ? "destination" : "target", + }); + continue; + } + if (effect.effectType === 108) { + effects.push({ kind: "dispel-mechanic", mechanic: effect.miscValue, maxCount: Math.max(1, Math.abs(effect.basePoints)) }); + continue; + } + const triggeredSpellId = effect.triggerSpellId > 0 + ? effect.triggerSpellId + : effect.effectType === 168 && coaSourceSpellById(effect.miscValue) ? effect.miscValue : 0; + if ((TRIGGER_SPELL_EFFECTS.has(effect.effectType) || effect.effectType === 168) && triggeredSpellId > 0) { + effects.push({ + kind: "trigger-spell", + spellId: triggeredSpellId, + ...([141, 142, 183].includes(effect.effectType) ? { withValue: effect.basePoints } : {}), + }); + if (depth < 2 && !visitedSpellIds.has(triggeredSpellId)) { + const triggered = coaSourceSpellById(triggeredSpellId); + if (triggered) { + const expandedVisited = new Set(visitedSpellIds); + expandedVisited.add(spell.id); + effects.push(...effectsForSpell( + triggered.dbc, + triggered.liveTooltip || triggered.description || triggered.dbc.description, + triggered.name, + depth + 1, + expandedVisited, + ).filter((nested) => nested.kind !== "utility")); + } else if (effect.effectType === 142) { + const describesDamagePayload = /\bdamage\b/i.test(description); + const describesHealingPayload = /\bheal(?:s|ing|ed)?\b/i.test(description); + if (describesDamagePayload && (!describesHealingPayload || effectIndex === 0)) { + effects.push({ kind: "damage", coefficient, ...scaling }); + } + if (describesHealingPayload && (!describesDamagePayload || effectIndex > 0)) { + effects.push({ kind: "heal", coefficient, ...scaling }); + } + } + } + continue; + } + if ([18, 94, 113, 117].includes(effect.effectType)) { + effects.push({ kind: "resurrection", percentMaxHealth: effect.effectType === 94 ? 1 : 0.35 }); + continue; + } + if (effect.effectType === 69) { + effects.push({ kind: "status", status: "confuse", durationMs: Math.max(1_000, spell.durationMs) }); + continue; + } + if ([55, 56, 101, 102, 109, 135, 153].includes(effect.effectType)) { + const action: Extract["action"] = effect.effectType === 101 + ? "feed" + : effect.effectType === 102 + ? "dismiss" + : effect.effectType === 109 + ? "resurrect" + : effect.effectType === 135 + ? "call" + : effect.effectType === 55 ? "tame" : "summon"; + effects.push({ kind: "pet", action, ...(effect.miscValue > 0 ? { creatureId: effect.miscValue } : {}) }); + continue; + } + if ([28, 76, 104, 105, 106, 107].includes(effect.effectType)) { + effects.push({ + kind: "summon", + creatureId: Math.max(0, effect.miscValue), + coefficient, durationMs: Math.max(1_000, spell.durationMs), - ...(status === "slow" ? { magnitude: 0.3 } : {}), + }); + continue; + } + if (effect.effectType === 110) { + effects.push({ kind: "totem", action: "destroy-all" }); + continue; + } + if (effect.effectType === 146) { + effects.push({ kind: "rune", action: "activate", count: Math.max(1, Math.abs(effect.basePoints)) }); + continue; + } + if (effect.effectType === 192 || effect.effectType === 195) { + const affected = coaSourceSpellById(effect.miscValue); + const describedNames = description.match(/cooldown of\s+(.+?)(?:\s+spells?\b|\.)/i)?.[1] + ?.split(/,|\band\b/i) + .map((name) => name.trim()) + .filter(Boolean) ?? []; + const abilityName = affected?.name ?? describedNames[effectIndex]; + effects.push({ + kind: "cooldown-reset", + mode: effect.effectType === 195 ? "reset" : "reduce", + ...(abilityName ? { abilityName } : {}), + ...(effect.effectType === 192 + ? { amountPercent: Math.min(1, Math.abs(effect.basePoints) / 100) } + : {}), + }); + continue; + } + if (effect.effectType === 0 && effect.auraType === 0) continue; + if (NONCOMBAT_EFFECTS.has(effect.effectType)) { + effects.push({ + kind: "utility", + action: utilityAction(effect.effectType), + effectType: effect.effectType, + auraType: effect.auraType, + miscValue: effect.miscValue, + triggerSpellId: effect.triggerSpellId, + durationMs: spell.durationMs, }); continue; } effects.push({ kind: "utility", + action: "class-script", effectType: effect.effectType, auraType: effect.auraType, miscValue: effect.miscValue, @@ -356,24 +986,85 @@ function effectsForSpell(spell: CoaDbcSpell | undefined, description: string): r }); } - if (!effects.some((effect) => effect.kind === "damage" || effect.kind === "heal" || effect.kind === "dot" || effect.kind === "hot")) { - if (/\b(?:heals?|restores? .*health|mends?|rejuvenat)\w*\b/i.test(description)) { - effects.unshift({ kind: "heal", coefficient: 1 }); - } else if (/\b(?:deals?|inflicts?|causes?)\b[^.]*\bdamage\b/i.test(description)) { + const hasHealing = effects.some((effect) => ["heal", "hot"].includes(effect.kind)); + const hasDamage = effects.some((effect) => ["damage", "dot"].includes(effect.kind)); + const describesHealing = /\b(?:heal(?:s|ing|ed)?|restores? .*health|mends?|rejuvenat\w*)\b/i.test(description); + const describesDamage = /\b(?:deal(?:s|ing)?|inflict(?:s|ing)?|caus(?:e|es|ing)|damag(?:e|es|ing))\b[^.]*\bdamage\b/i.test(description); + if (!hasHealing && describesHealing) effects.unshift({ kind: "heal", coefficient: 1 }); + if (!hasDamage && describesDamage) effects.unshift({ kind: "damage", coefficient: 1 }); + if (!effects.some((effect) => ["damage", "heal", "dot", "hot", "shield"].includes(effect.kind))) { + if (/\bswap health percentages\b/i.test(description)) { + const minimum = Number(description.match(/to\s+(\d+(?:\.\d+)?)%/)?.[1] ?? 40); + effects.unshift({ kind: "heal", coefficient: 0, percentMaxHealth: Math.max(0, minimum / 100) }); + } else if (/\babsorb(?:s|ing)?(?: shield)?\b/i.test(description)) { + effects.unshift({ kind: "shield", coefficient: 1, durationMs: Math.max(1_000, spell.durationMs || 15_000) }); + } else if (/\bincapacitat(?:e|es|ing)\b/i.test(description)) { + effects.unshift({ kind: "status", status: "sleep", durationMs: Math.max(1_000, spell.durationMs || 8_000) }); + } else if (/(?:appl(?:y|ies)|refresh(?:es)?)[^.]*\b(?:diseases?|plagues?)\b/i.test(description)) { + effects.unshift({ kind: "dot", coefficient: 0.25, ticks: 5, intervalMs: 2_000, tag: `spell-${spell.id}-disease` }); + } else if (/\b(?:hooks?|pulls?)\b[^.]*\b(?:orb|enemy|target)\b/i.test(description)) { + effects.unshift({ kind: "pull", toward: "caster" }); + } else if (/\bdetonates? all\b/i.test(description)) { effects.unshift({ kind: "damage", coefficient: 1 }); + } else if (/\bteleports? you\b/i.test(description)) { + effects.unshift({ kind: "movement", movement: "teleport", toward: "destination" }); + } else if (/\bincreasing (?:their|the targets?|an allys?) primary stat\b/i.test(description)) { + effects.unshift({ + kind: "apply-aura", + aura: { + id: `coa:${spell.id}:tooltip-primary-stat`, + name: abilityName, + disposition: "buff", + durationMs: spell.durationMs > 0 ? spell.durationMs : 15_000, + maxStacks: 1, + stackBehavior: "refresh", + dispelCategory: "magic", + modifiers: [{ kind: "stat", stat: "all-primary", operation: "flat", value: 1 }], + }, + sourceEffectType: 0, + sourceAuraType: 0, + miscValue: 0, + triggerSpellId: 0, + }); } } return effects.length ? effects - : [{ kind: "utility", effectType: 0, auraType: 0, miscValue: 0, triggerSpellId: 0, durationMs: 0 }]; + : [{ kind: "utility", action: "class-script", effectType: 0, auraType: 0, miscValue: 0, triggerSpellId: 0, durationMs: 0 }]; } -function targetForSpell(spell: CoaDbcSpell | undefined, effects: readonly AbilityEffect[]): AbilityTarget { +function targetForSpell( + spell: CoaDbcSpell | undefined, + effects: readonly AbilityEffect[], + description = "", +): AbilityTarget { const targets = spell?.effects.flatMap((effect) => [effect.implicitTargetA, effect.implicitTargetB]) ?? []; - if (targets.some((target) => HOSTILE_TARGETS.has(target))) return "hostile"; - if (targets.some((target) => FRIENDLY_TARGETS.has(target))) return "friendly"; - if (effects.some((effect) => effect.kind === "damage" || effect.kind === "dot" || effect.kind === "taunt")) return "hostile"; - if (effects.some((effect) => effect.kind === "heal" || effect.kind === "hot") && targets.some((target) => target !== 1)) return "friendly"; + const offensive = effects.some((effect) => ( + ["damage", "dot", "taunt", "status", "interrupt", "pull", "execute", "resource-drain", "threat"].includes(effect.kind) + || (effect.kind === "apply-aura" && effect.aura.disposition === "debuff") + || (effect.kind === "dispel" && effect.relationship === "hostile") + || (effect.kind === "trigger-spell" && targets.some((target) => HOSTILE_TARGETS.has(target))) + )); + const beneficial = effects.some((effect) => ( + ["heal", "hot", "shield", "resurrection"].includes(effect.kind) + || (effect.kind === "apply-aura" && effect.aura.disposition === "buff") + )); + const hasHostileTarget = targets.some((target) => HOSTILE_TARGETS.has(target)); + const hasFriendlyTarget = targets.some((target) => FRIENDLY_TARGETS.has(target)); + if ( + offensive + && beneficial + && ( + (hasHostileTarget && hasFriendlyTarget) + || /\b(?:enemy or ally|enemy[^.]*\bor\b[^.]*ally|enemies[^.]*\bor\b[^.]*allies)\b/i.test(description) + ) + ) return "any"; + if (!offensive && beneficial) { + if (hasFriendlyTarget || /\b(?:an?|the|target) all(?:y|ies)\b/i.test(description)) return "friendly"; + return "self"; + } + if (offensive || hasHostileTarget) return "hostile"; + if (hasFriendlyTarget) return "friendly"; return "self"; } @@ -386,19 +1077,34 @@ function rangeForSpell(spell: CoaDbcSpell | undefined, target: AbilityTarget): { return { min: 0, max: 30 }; } -function costForSpell(resource: ResourceType, spell: CoaDbcSpell | undefined): number { - if (!spell) return 0; - if (spell.powerCostPercentage > 0) return spell.powerCostPercentage; - if (spell.powerType === 1) return Math.round(spell.powerCost / 10); - return spell.powerCost; +function resourceForSpell(fallback: ResourceType, spell: CoaDbcSpell | undefined): ResourceType { + switch (spell?.powerType) { + case -2: return "health"; + case 0: return "mana"; + case 1: return "rage"; + case 2: return "focus"; + case 3: return "energy"; + case 6: return "runic-power"; + default: return fallback; + } } -function liveTooltipCost(resource: ResourceType, tooltip: string, fallback: number): number { +function liveTooltipCost(resource: ResourceType, tooltip: string, fallback: AbilityCost): AbilityCost { const percentage = tooltip.match(/(\d+(?:\.\d+)?)%\s+of base mana/i); - if (percentage) return Number(percentage[1]); + if (percentage) return { resource: "mana", amount: Number(percentage[1]), percentage: true }; const resourceName = resource === "runic-power" ? "Runic Power" : resource.replace(/(^|-)([a-z])/g, (_match, _separator, letter) => ` ${letter.toUpperCase()}`).trim(); const direct = tooltip.match(new RegExp(`(\\d+(?:\\.\\d+)?)\\s+${resourceName}`, "i")); - return direct ? Number(direct[1]) : fallback; + return direct ? { resource, amount: Number(direct[1]) } : fallback; +} + +function costForSpell(fallbackResource: ResourceType, spell: CoaDbcSpell | undefined): AbilityCost { + if (!spell) return { resource: fallbackResource, amount: 0 }; + const resource = resourceForSpell(fallbackResource, spell); + if (spell.powerCostPercentage > 0) return { resource, amount: spell.powerCostPercentage, percentage: true }; + const amount = resource === "rage" || resource === "runic-power" + ? Math.round(spell.powerCost / 10) + : spell.powerCost; + return { resource, amount }; } function liveTooltipCastTime(tooltip: string, fallback: number): number { @@ -424,24 +1130,31 @@ function liveTooltipRange( return range ? { min: 0, max: Number(range[1]) } : fallback; } -function liveTooltipMechanics(spell: ReturnType, tooltip: string): string { +function liveTooltipMechanics(spell: CoaSourceSpell | null, tooltip: string): string { if (!spell || !tooltip) return tooltip; const heading = `${spell.name}${spell.rank}`; return tooltip.startsWith(heading) ? tooltip.slice(heading.length) : tooltip; } +function cooldownGroupForText(text: string, abilityName = ""): string | undefined { + const shared = text.match(/shares? a cooldown with other\s+([^@.]+)/i)?.[1]?.trim(); + if (shared) return `coa:${slug(shared)}`; + if (/^Solar Invocation:/i.test(abilityName)) return "coa:solar-invocation-spells"; + return undefined; +} + function rankDefinition( resource: ResourceType, spellId: number, rank: number, level: number, ): AbilityRankDefinition { - const liveSpell = coaSpellById(spellId); + const liveSpell = coaSourceSpellById(spellId); const dbc = liveSpell?.dbc; const liveTooltip = liveSpell?.liveTooltip ?? ""; const mechanicsTooltip = liveTooltipMechanics(liveSpell, liveTooltip); const description = liveTooltip || liveSpell?.description || dbc?.description || "No client tooltip is available."; - const effects = effectsForSpell(dbc, description); + const effects = effectsForSpell(dbc, description, liveSpell?.name ?? dbc?.name ?? `Spell ${spellId}`); const castTimeMs = liveTooltipCastTime(mechanicsTooltip, dbc?.castTimeMs ?? 0); const channeling = Boolean(dbc?.channelInterruptFlags && dbc.durationMs > 0); const rawCost = costForSpell(resource, dbc); @@ -457,7 +1170,7 @@ function rankDefinition( Math.max(dbc?.recoveryTimeMs ?? 0, dbc?.categoryRecoveryTimeMs ?? 0), ), gcdMs: dbc?.startRecoveryTimeMs || 1_500, - cost: { resource, amount: liveTooltipCost(resource, mechanicsTooltip, rawCost) }, + cost: liveTooltipCost(resourceForSpell(resource, dbc), mechanicsTooltip, rawCost), effects, }; } @@ -472,11 +1185,19 @@ export function ascensionProgressionAbility( if (!chain.ranks.length) return null; const ranks = chain.ranks.map((rank) => rankDefinition(resource, rank.spellId, rank.rank, rank.level)); const first = ranks[0]; - const firstSpell = coaSpellById(first.spellId); + const firstSpell = coaSourceSpellById(first.spellId); const dbc = firstSpell?.dbc; - const target = targetForSpell(dbc, first.effects); + const target = targetForSpell(dbc, first.effects, first.description); + const radius = Math.max(0, ...((dbc?.effects ?? []).map((effect) => effect.radius))); + const cooldownGroup = cooldownGroupForText(first.description, chain.name); const passive = Boolean((dbc?.attributes[0] ?? 0) & 0x40) - || /\b(?:passive|specialization)\b/i.test(firstSpell?.rank ?? dbc?.rankText ?? ""); + || /\b(?:passive|specialization)\b/i.test(firstSpell?.rank ?? dbc?.rankText ?? "") + || ranks.every((rank) => /^Deprecate(?:d)?\.?$/i.test(rank.description.trim())) + || ranks.every((rank) => ( + rank.cost.amount === 0 + && rank.cooldownMs === 0 + && /(?:Rank\s*\d+)?(?:Instant)?(?:Increases?|Reduces?|Allows?|This node has no effect)\b/i.test(rank.description) + )); return { id, classId, @@ -491,10 +1212,11 @@ export function ascensionProgressionAbility( liveTooltipMechanics(firstSpell, firstSpell?.liveTooltip ?? ""), rangeForSpell(dbc, target), ), - radius: Math.max(0, ...((dbc?.effects ?? []).map((effect) => effect.radius))), + ...(radius > 0 ? { radius } : {}), castMode: first.castMode, castTimeMs: first.castTimeMs, cooldownMs: first.cooldownMs, + ...(cooldownGroup ? { cooldownGroup } : {}), gcdMs: first.gcdMs, cost: first.cost, effects: first.effects, @@ -531,12 +1253,15 @@ function treeAbility(entry: CoaTreeEntry): AbilityDefinition | null { }).filter((rank) => rank.spellId > 0); if (!ranks.length) return null; const first = ranks[0]; - const firstSpell = coaSpellById(first.spellId); + const firstSpell = coaSourceSpellById(first.spellId); const dbc = firstSpell?.dbc; - const target = targetForSpell(dbc, first.effects); + const target = targetForSpell(dbc, first.effects, first.description || entry.description); + const radius = Math.max(0, ...((dbc?.effects ?? []).map((effect) => effect.radius))); + const cooldownGroup = cooldownGroupForText(first.description || entry.description, entry.name); const passive = entry.isPassive || Boolean((dbc?.attributes[0] ?? 0) & 0x40) || /\b(?:passive|specialization)\b/i.test(firstSpell?.rank ?? dbc?.rankText ?? "") + || /^Deprecate(?:d)?\.?$/i.test((first.description || entry.description).trim()) ; return { id: `coa-tree-${entry.id}`, @@ -549,13 +1274,14 @@ function treeAbility(entry: CoaTreeEntry): AbilityDefinition | null { description: first.description || entry.description, target, range: liveTooltipRange( - liveTooltipMechanics(coaSpellById(first.spellId), coaSpellById(first.spellId)?.liveTooltip ?? ""), + liveTooltipMechanics(coaSourceSpellById(first.spellId), coaSourceSpellById(first.spellId)?.liveTooltip ?? ""), rangeForSpell(dbc, target), ), - radius: Math.max(0, ...((dbc?.effects ?? []).map((effect) => effect.radius))), + ...(radius > 0 ? { radius } : {}), castMode: first.castMode, castTimeMs: first.castTimeMs, cooldownMs: first.cooldownMs, + ...(cooldownGroup ? { cooldownGroup } : {}), gcdMs: first.gcdMs, cost: first.cost, effects: first.effects, @@ -589,16 +1315,53 @@ export const COA_ABILITIES_BY_CLASS: Readonly ability.name.toLowerCase() === starter.name.toLowerCase(), ); const ranked = rankedIndex >= 0 ? remainingProgression[rankedIndex] : null; - if (!ranked) return starter; + if (!ranked) { + const liveSpell = coaSourceSpellById(starter.dbcSpellId); + if (!liveSpell) return starter; + const liveRank = rankDefinition( + COA_CLASS_RESOURCES[classId].type, + starter.dbcSpellId, + 1, + starter.unlockLevel, + ); + const target = targetForSpell(liveSpell.dbc, liveRank.effects, liveRank.description); + const radius = Math.max(0, ...liveSpell.dbc.effects.map((effect) => effect.radius)); + const cooldownGroup = cooldownGroupForText(liveRank.description, starter.name); + return { + ...starter, + description: liveRank.description, + target, + range: liveTooltipRange( + liveTooltipMechanics(liveSpell, liveSpell.liveTooltip ?? ""), + rangeForSpell(liveSpell.dbc, target), + ), + ...(radius > 0 ? { radius } : {}), + castMode: liveRank.castMode, + castTimeMs: liveRank.castTimeMs, + cooldownMs: liveRank.cooldownMs, + ...(cooldownGroup ? { cooldownGroup } : {}), + gcdMs: liveRank.gcdMs, + cost: liveRank.cost, + effects: liveRank.effects, + passive: Boolean((liveSpell.dbc.attributes[0] ?? 0) & 0x40) + || /\b(?:passive|specialization)\b/i.test(liveSpell.rank ?? liveSpell.dbc.rankText) + || /^Deprecate(?:d)?\.?$/i.test(liveRank.description.trim()), + ranks: [liveRank], + }; + } remainingProgression.splice(rankedIndex, 1); return { ...starter, dbcSpellId: ranked.dbcSpellId, unlockLevel: ranked.unlockLevel, description: ranked.description, + target: ranked.target, + range: ranked.range, + radius: ranked.radius, castMode: ranked.castMode, castTimeMs: ranked.castTimeMs, cooldownMs: ranked.cooldownMs, + ...(ranked.cooldownGroup ? { cooldownGroup: ranked.cooldownGroup } : {}), gcdMs: ranked.gcdMs, cost: ranked.cost, effects: ranked.effects, @@ -614,3 +1377,74 @@ export const COA_ABILITIES_BY_CLASS: Readonly>; + +function triggeredIdsFromEffects(effects: readonly AbilityEffect[]): readonly number[] { + const ids: number[] = []; + for (const effect of effects) { + if (effect.kind === "trigger-spell" && effect.spellId > 0) ids.push(effect.spellId); + if (effect.kind !== "apply-aura") continue; + for (const proc of effect.aura.procs ?? []) { + const spellId = proc.action.kind === "custom" ? proc.action.data?.spellId : undefined; + if (typeof spellId === "number" && spellId > 0) ids.push(spellId); + } + } + return ids; +} + +const playableSpellIds = new Set(Object.values(COA_ABILITIES_BY_CLASS).flatMap((abilities) => ( + abilities.flatMap((ability) => [ability.dbcSpellId, ...(ability.ranks ?? []).map((rank) => rank.spellId)]) +))); +const triggeredOwnerBySpellId = new Map(); +for (const [classId, abilities] of Object.entries(COA_ABILITIES_BY_CLASS) as [CoaClassId, readonly AbilityDefinition[]][]) { + for (const ability of abilities) { + for (const spellId of triggeredIdsFromEffects(ability.effects)) { + if (!playableSpellIds.has(spellId) && !triggeredOwnerBySpellId.has(spellId)) triggeredOwnerBySpellId.set(spellId, classId); + } + for (const rank of ability.ranks ?? []) for (const spellId of triggeredIdsFromEffects(rank.effects)) { + if (!playableSpellIds.has(spellId) && !triggeredOwnerBySpellId.has(spellId)) triggeredOwnerBySpellId.set(spellId, classId); + } + } +} + +const triggeredAbilitiesBySpellId: Record = {}; +const pendingTriggeredSpellIds = [...triggeredOwnerBySpellId.keys()]; +while (pendingTriggeredSpellIds.length) { + const spellId = pendingTriggeredSpellIds.shift()!; + if (triggeredAbilitiesBySpellId[spellId]) continue; + const source = coaSourceSpellById(spellId); + const classId = triggeredOwnerBySpellId.get(spellId); + if (!source || !classId) continue; + const rank = rankDefinition(COA_CLASS_RESOURCES[classId].type, spellId, 1, Math.max(1, source.dbc.spellLevel)); + const target = targetForSpell(source.dbc, rank.effects, rank.description); + const radius = Math.max(0, ...source.dbc.effects.map((effect) => effect.radius)); + triggeredAbilitiesBySpellId[spellId] = { + id: `coa-triggered-${spellId}`, + classId, + dbcSpellId: spellId, + name: source.name || `Triggered Spell ${spellId}`, + unlockLevel: 1, + icon: coaIconUrl("inv_misc_questionmark"), + sigil: sigil(source.name || `Triggered Spell ${spellId}`), + description: rank.description, + target, + range: rangeForSpell(source.dbc, target), + ...(radius > 0 ? { radius } : {}), + castMode: "instant", + castTimeMs: 0, + cooldownMs: 0, + gcdMs: 0, + cost: { resource: COA_CLASS_RESOURCES[classId].type, amount: 0 }, + effects: rank.effects, + passive: false, + source: "coa-progression", + }; + for (const nestedId of triggeredIdsFromEffects(rank.effects)) { + if (playableSpellIds.has(nestedId)) continue; + if (!triggeredOwnerBySpellId.has(nestedId)) triggeredOwnerBySpellId.set(nestedId, classId); + if (!triggeredAbilitiesBySpellId[nestedId]) pendingTriggeredSpellIds.push(nestedId); + } +} + +/** Hidden DBC payloads invoked by CoA aura procs. */ +export const COA_TRIGGERED_ABILITIES_BY_SPELL_ID: Readonly> = + Object.freeze(triggeredAbilitiesBySpellId); diff --git a/src/game/coaAbilityRuntimeCatalog.ts b/src/game/coaAbilityRuntimeCatalog.ts index 5f19b233..3ea93789 100644 --- a/src/game/coaAbilityRuntimeCatalog.ts +++ b/src/game/coaAbilityRuntimeCatalog.ts @@ -6,10 +6,15 @@ interface CoaAbilityRuntimeSnapshot { readonly schemaVersion: 1; readonly abilitiesByClass: Readonly>; readonly resourcesByClass: Readonly>; + readonly triggeredAbilitiesBySpellId: Readonly>; } const snapshot = generated as unknown as CoaAbilityRuntimeSnapshot; export const COA_RUNTIME_ABILITIES_BY_CLASS = snapshot.abilitiesByClass; export const COA_RUNTIME_CLASS_RESOURCES = snapshot.resourcesByClass; +export const COA_RUNTIME_TRIGGERED_ABILITIES_BY_SPELL_ID = snapshot.triggeredAbilitiesBySpellId; +export function coaTriggeredAbilityBySpellId(spellId: number): AbilityDefinition | null { + return COA_RUNTIME_TRIGGERED_ABILITIES_BY_SPELL_ID[spellId] ?? null; +} diff --git a/src/game/coaCombatRuntime.test.ts b/src/game/coaCombatRuntime.test.ts new file mode 100644 index 00000000..6324fd0e --- /dev/null +++ b/src/game/coaCombatRuntime.test.ts @@ -0,0 +1,55 @@ +import { beforeEach, describe, expect, it } from "vitest"; +import { clearMobRuntimeRegistry, setMobPosition } from "./mobRuntimeRegistry"; +import { clearPartyRuntimeRegistry, registerPartyRuntimePosition } from "./partyRuntimeRegistry"; +import { useCombatStore } from "./combatStore"; +import { usePartyStore } from "./partyStore"; + +describe("Ascension Conquest combat runtime", () => { + beforeEach(() => { + clearMobRuntimeRegistry(); + clearPartyRuntimeRegistry(); + }); + + it("heals a selected ally with an enemy-or-ally spell", () => { + useCombatStore.getState().initializeCharacter({ classId: "cultist", raceId: "human", level: 20 }); + usePartyStore.getState().initializeParty("coa-any-friendly", 20, useCombatStore.getState().health, "healer", 2, "coa"); + const member = usePartyStore.getState().members[0]!; + usePartyStore.getState().damageMember(member.id, 500); + registerPartyRuntimePosition(member.id, [3, 0, 0]); + usePartyStore.getState().selectMember(member.id); + const injuredHealth = usePartyStore.getState().members[0]!.health; + + expect(useCombatStore.getState().castAbility("cultist-gaze-of-cthun", undefined, 1_000)).toMatchObject({ ok: true }); + + expect(usePartyStore.getState().members[0]!.health).toBeGreaterThan(injuredHealth); + }); + + it("damages a selected enemy with the same enemy-or-ally spell", () => { + useCombatStore.getState().initializeCharacter({ classId: "cultist", raceId: "human", level: 20 }); + usePartyStore.getState().clearSelection(); + useCombatStore.getState().registerMob("gaze-dummy", { name: "Gaze Dummy", maxHealth: 5_000 }); + setMobPosition("gaze-dummy", [3, 0, 0]); + useCombatStore.getState().selectMob("gaze-dummy"); + + expect(useCombatStore.getState().castAbility("cultist-gaze-of-cthun", undefined, 1_000)).toMatchObject({ ok: true }); + + expect(useCombatStore.getState().mobs["gaze-dummy"]!.health).toBeLessThan(5_000); + }); + + it("executes a hidden DBC payload when a passive proc fires", () => { + useCombatStore.getState().initializeCharacter({ classId: "pyromancer", raceId: "human", level: 20 }); + usePartyStore.getState().initializeParty("coa-hidden-proc", 20, useCombatStore.getState().health, "healer", 2, "coa"); + const member = usePartyStore.getState().members[0]!; + usePartyStore.getState().damageMember(member.id, 500); + registerPartyRuntimePosition(member.id, [3, 0, 0]); + usePartyStore.getState().selectMember(member.id); + expect(useCombatStore.getState().auras.some((aura) => aura.definition.name.includes("Phoenix Handler"))).toBe(true); + + expect(useCombatStore.getState().castAbility("coa-24-cinderheart-476-502044", undefined, 1_000)).toMatchObject({ ok: true }); + useCombatStore.getState().tick(0.1, 4_100); + + expect(useCombatStore.getState().auras.some((aura) => ( + aura.definition.id === "coa:704865:effect:0:aura:23" + ))).toBe(true); + }); +}); diff --git a/src/game/combatActorAuthority.ts b/src/game/combatActorAuthority.ts new file mode 100644 index 00000000..ce91b83b --- /dev/null +++ b/src/game/combatActorAuthority.ts @@ -0,0 +1,105 @@ +import { resourceProfileForClass, type ResourceType } from "./abilityCatalog"; +import { + normalizeActorResourcePool, + type CombatActorState, +} from "./combatActors"; +import type { PartyMember } from "./partyStore"; + +/** + * Creates the authoritative companion actor. Existing actor values win over + * the party-frame compatibility record once the actor has entered combat. + */ +export function companionActorFromMember( + member: PartyMember, + absorb = 0, + existing?: CombatActorState | null, +): CombatActorState { + const profile = resourceProfileForClass(member.classId); + const resources = existing?.kind === "companion" + ? existing.resources + : Object.fromEntries(Object.entries(member.resourcePools).map(([id, current]) => [id, + normalizeActorResourcePool( + id, + current ?? 0, + id === member.resourceType ? member.maxResource : 100, + id === member.resourceType ? profile.regenerationPerSecond : 0, + member.lastResourceSpentAt[id as ResourceType] ?? 0, + ), + ])); + const actor = existing?.kind === "companion" ? existing : null; + return Object.freeze({ + id: member.id, + threatActorId: member.id, + kind: "companion" as const, + classId: member.classId, + level: member.level, + health: actor?.health ?? member.health, + maxHealth: actor?.maxHealth ?? member.maxHealth, + absorb, + resources, + cooldowns: actor?.cooldowns ?? member.cooldowns, + globalCooldownEndsAt: actor?.globalCooldownEndsAt ?? member.globalCooldownEndsAt, + cast: actor?.cast ?? member.activeCast, + controlledUntil: actor?.controlledUntil ?? member.controlledUntil, + schoolLockedUntil: actor?.schoolLockedUntil ?? member.schoolLockedUntil, + comboPoints: actor?.comboPoints ?? 0, + comboTargetId: actor?.comboTargetId ?? null, + runes: actor?.runes ?? member.runes, + abilityIds: actor?.abilityIds, + alive: (actor?.health ?? member.health) > 0, + }); +} + +/** Party and scene consumers receive a read-compatible mirror of actor state. */ +export function memberFromCompanionActor(member: PartyMember, actor?: CombatActorState | null): PartyMember { + if (!actor || actor.kind !== "companion") return member; + const resourcePools = Object.fromEntries(Object.entries(actor.resources).map(([id, pool]) => [id, pool.current])) as Partial>; + const lastResourceSpentAt = Object.fromEntries(Object.entries(actor.resources).map(([id, pool]) => [id, pool.lastSpentAt])) as Partial>; + const primary = actor.resources[member.resourceType]; + return { + ...member, + health: actor.health, + maxHealth: actor.maxHealth, + resource: primary?.current ?? member.resource, + maxResource: primary?.maximum ?? member.maxResource, + resourcePools, + lastResourceSpentAt, + cooldowns: actor.cooldowns, + globalCooldownEndsAt: actor.globalCooldownEndsAt, + activeCast: actor.cast, + activeCastTargetId: actor.cast?.targetId ?? member.activeCastTargetId, + schoolLockedUntil: actor.schoolLockedUntil, + runes: actor.runes, + controlledUntil: actor.controlledUntil, + status: actor.health <= 0 ? "down" : member.status, + }; +} + +export function companionActorWithMemberRuntime( + actor: CombatActorState, + member: PartyMember, +): CombatActorState { + const profile = resourceProfileForClass(member.classId); + const resources = Object.fromEntries(Object.entries(member.resourcePools).map(([id, current]) => [id, + normalizeActorResourcePool( + id, + current ?? 0, + id === member.resourceType ? member.maxResource : actor.resources[id]?.maximum ?? 100, + id === member.resourceType ? profile.regenerationPerSecond : actor.resources[id]?.regenerationPerSecond ?? 0, + member.lastResourceSpentAt[id as ResourceType] ?? actor.resources[id]?.lastSpentAt ?? 0, + ), + ])); + return Object.freeze({ + ...actor, + health: member.health, + maxHealth: member.maxHealth, + resources, + cooldowns: member.cooldowns, + globalCooldownEndsAt: member.globalCooldownEndsAt, + cast: member.activeCast ? { ...member.activeCast, targetId: member.activeCastTargetId } : null, + controlledUntil: member.controlledUntil, + schoolLockedUntil: member.schoolLockedUntil, + runes: member.runes, + alive: member.health > 0, + }); +} diff --git a/src/game/combatActors.ts b/src/game/combatActors.ts new file mode 100644 index 00000000..0ce46488 --- /dev/null +++ b/src/game/combatActors.ts @@ -0,0 +1,117 @@ +import type { ClassId } from "../app/characterCatalog"; +import type { DamageSchool } from "./combatAuras"; + +export type CombatActorKind = "player" | "companion" | "enemy" | "pet" | "totem" | "summon"; +export type CombatResourceId = string; +export type DeathKnightRuneType = "blood" | "frost" | "unholy" | "death"; +export type CombatActorPosition = readonly [number, number, number]; + +export interface CombatResourcePoolState { + readonly id: CombatResourceId; + readonly current: number; + readonly maximum: number; + readonly regenerationPerSecond: number; + /** Mana regeneration observes the five-second rule from this timestamp. */ + readonly lastSpentAt: number; +} + +export interface DeathKnightRuneState { + readonly slot: number; + readonly baseType: Exclude; + readonly type: DeathKnightRuneType; + readonly readyAt: number; +} + +export interface CombatActorCastState { + readonly abilityId: string; + readonly school: DamageSchool; + readonly mode: "cast" | "channel"; + readonly startedAt: number; + readonly completesAt: number; + readonly originalDurationMs: number; + readonly pushbackHits: number; + /** Simulation-space origin used for movement cancellation and completion validation. */ + readonly origin?: CombatActorPosition; + readonly targetId?: string | null; +} + +/** + * Renderer-free snapshot shared by every combatant. Specialized player, party, + * and mob records may retain presentation fields, but combat rules consume + * this common contract. + */ +export interface CombatActorState { + readonly id: string; + /** Stable id used by threat tables even when a renderer entity is replaced. */ + readonly threatActorId?: string; + readonly kind: CombatActorKind; + readonly ownerId?: string; + readonly classId?: ClassId; + readonly level: number; + readonly health: number; + readonly maxHealth: number; + readonly absorb: number; + readonly resources: Readonly>; + readonly cooldowns: Readonly>; + readonly globalCooldownEndsAt: number; + readonly cast: CombatActorCastState | null; + readonly controlledUntil: number; + readonly schoolLockedUntil: Readonly>>; + readonly comboPoints: number; + readonly comboTargetId: string | null; + readonly runes: readonly DeathKnightRuneState[]; + /** Executable catalog abilities owned by pets, summons, and companions. */ + readonly abilityIds?: readonly string[]; + readonly alive: boolean; +} + +export function createDeathKnightRunes(now = 0): readonly DeathKnightRuneState[] { + const types = ["blood", "blood", "frost", "frost", "unholy", "unholy"] as const; + return Object.freeze(types.map((type, slot) => Object.freeze({ + slot, + baseType: type, + type, + readyAt: Math.max(0, now), + }))); +} + +export function normalizeActorResourcePool( + id: CombatResourceId, + current: number, + maximum: number, + regenerationPerSecond = 0, + lastSpentAt = 0, +): CombatResourcePoolState { + const safeMaximum = Math.max(0, Number.isFinite(maximum) ? maximum : 0); + return Object.freeze({ + id, + current: Math.max(0, Math.min(safeMaximum, Number.isFinite(current) ? current : 0)), + maximum: safeMaximum, + regenerationPerSecond: Math.max(0, Number.isFinite(regenerationPerSecond) ? regenerationPerSecond : 0), + lastSpentAt: Math.max(0, Number.isFinite(lastSpentAt) ? lastSpentAt : 0), + }); +} + +export function spendActorResource( + pool: CombatResourcePoolState, + amount: number, + now: number, +): CombatResourcePoolState | null { + const requested = Math.max(0, Number.isFinite(amount) ? amount : 0); + if (pool.current + Number.EPSILON < requested) return null; + return Object.freeze({ + ...pool, + current: Math.max(0, pool.current - requested), + lastSpentAt: Math.max(pool.lastSpentAt, Number.isFinite(now) ? now : 0), + }); +} + +export function restoreActorResource( + pool: CombatResourcePoolState, + amount: number, +): CombatResourcePoolState { + return Object.freeze({ + ...pool, + current: Math.min(pool.maximum, pool.current + Math.max(0, Number.isFinite(amount) ? amount : 0)), + }); +} diff --git a/src/game/combatAuras.ts b/src/game/combatAuras.ts index 47bd61a4..e6bebd62 100644 --- a/src/game/combatAuras.ts +++ b/src/game/combatAuras.ts @@ -143,6 +143,16 @@ export interface AuraDefinition { readonly stackBehavior?: AuraStackBehavior; /** Defaults to true. False makes applications from all sources share one aura. */ readonly uniqueBySource?: boolean; + /** A target can have only one aura from an exclusive stance/form/seal/etc. group. */ + readonly exclusiveGroup?: string; + /** Explicit non-numeric gameplay state such as stealth, tracking, flight, or water walking. */ + readonly utilityTags?: readonly string[]; + /** Enemy control mechanics ignored while this aura is active. */ + readonly controlImmunities?: readonly ("fear" | "sleep" | "root" | "stun" | "silence")[]; + /** Chance from 0 through 1 to reflect an incoming spell. */ + readonly reflectSpellChance?: number; + /** Portion of incoming target damage transferred to the aura source. */ + readonly redirectDamagePercent?: number; readonly dispelCategory?: DispelCategory; readonly dispelPriority?: number; readonly modifiers?: readonly AuraModifier[]; @@ -309,14 +319,25 @@ export function applyAura( const maxStacks = boundedPositiveInteger(definition.maxStacks, 1); const requestedStacks = Math.min(maxStacks, boundedPositiveInteger(request.stacks, 1)); const instanceId = auraIdentity(definition, request.sourceId, request.targetId); - const existingIndex = current.findIndex((aura) => aura.instanceId === instanceId); + const exclusive = definition.exclusiveGroup + ? current.filter((aura) => ( + aura.targetId === request.targetId + && aura.definition.exclusiveGroup === definition.exclusiveGroup + && aura.instanceId !== instanceId + )) + : []; + const exclusiveIds = new Set(exclusive.map((aura) => aura.instanceId)); + const base = exclusiveIds.size > 0 + ? current.filter((aura) => !exclusiveIds.has(aura.instanceId)) + : current; + const existingIndex = base.findIndex((aura) => aura.instanceId === instanceId); if (existingIndex < 0) { const aura = makeAura(request, requestedStacks); - return { auras: [...current, aura], aura }; + return { auras: [...base, aura], aura, ...(exclusive[0] ? { replaced: exclusive[0] } : {}) }; } - const existing = current[existingIndex]; + const existing = base[existingIndex]; const behavior = definition.stackBehavior ?? "refresh"; const stacks = behavior === "add" ? Math.min(maxStacks, existing.stacks + requestedStacks) @@ -333,7 +354,7 @@ export function applyAura( procStates: existing.procStates, } : replacement; - const auras = [...current]; + const auras = [...base]; auras[existingIndex] = aura; return { auras, aura, replaced: existing }; } diff --git a/src/game/combatEvents.ts b/src/game/combatEvents.ts new file mode 100644 index 00000000..a5a5fc74 --- /dev/null +++ b/src/game/combatEvents.ts @@ -0,0 +1,49 @@ +import type { DamageSchool } from "./combatAuras"; + +export type StructuredCombatEventKind = + | "damage" + | "healing" + | "absorb" + | "resource" + | "aura" + | "cast" + | "interrupt" + | "death" + | "resurrection"; + +export interface StructuredCombatEvent { + readonly id: number; + readonly occurredAt: number; + readonly kind: StructuredCombatEventKind; + readonly sourceActorId: string; + readonly targetActorId: string; + readonly abilityId?: string; + readonly school?: DamageSchool; + readonly rawAmount: number; + readonly effectiveAmount: number; + readonly overheal: number; + readonly absorbed: number; + readonly critical: boolean; + readonly outcome?: string; +} +export type CombatEventInput = Omit; + +export const MAX_COMBAT_EVENT_HISTORY = 200; + +export function appendCombatEvent( + events: readonly StructuredCombatEvent[], + event: CombatEventInput, + id: number, + maximum = MAX_COMBAT_EVENT_HISTORY, +): readonly StructuredCombatEvent[] { + const next = Object.freeze({ + ...event, + id, + occurredAt: Math.max(0, Number.isFinite(event.occurredAt) ? event.occurredAt : 0), + rawAmount: Math.max(0, Number.isFinite(event.rawAmount) ? event.rawAmount : 0), + effectiveAmount: Math.max(0, Number.isFinite(event.effectiveAmount) ? event.effectiveAmount : 0), + overheal: Math.max(0, Number.isFinite(event.overheal) ? event.overheal : 0), + absorbed: Math.max(0, Number.isFinite(event.absorbed) ? event.absorbed : 0), + }); + return Object.freeze([...events, next].slice(-Math.max(1, Math.trunc(maximum)))); +} diff --git a/src/game/combatHealing.test.ts b/src/game/combatHealing.test.ts new file mode 100644 index 00000000..8e041e5d --- /dev/null +++ b/src/game/combatHealing.test.ts @@ -0,0 +1,18 @@ +import { describe, expect, it } from "vitest"; +import { resolveHealing } from "./combatHealing"; + +describe("combat healing resolution", () => { + it("reports critical raw healing, effective healing, and overheal independently", () => { + expect(resolveHealing(100, 950, 1_000, 0.25, 0.1)).toEqual({ + rawAmount: 150, + effectiveAmount: 50, + overheal: 100, + critical: true, + }); + }); + + it("does not resurrect a zero-health actor implicitly", () => { + const result = resolveHealing(100, 0, 1_000, 0, 1); + expect(result).toMatchObject({ rawAmount: 100, effectiveAmount: 100, overheal: 0, critical: false }); + }); +}); diff --git a/src/game/combatHealing.ts b/src/game/combatHealing.ts new file mode 100644 index 00000000..23e7f4e4 --- /dev/null +++ b/src/game/combatHealing.ts @@ -0,0 +1,28 @@ +export interface HealingResolution { + readonly rawAmount: number; + readonly effectiveAmount: number; + readonly overheal: number; + readonly critical: boolean; +} +export function resolveHealing( + amount: number, + currentHealth: number, + maximumHealth: number, + criticalChance = 0, + roll = 1, + criticalMultiplier = 1.5, +): HealingResolution { + const critical = Number.isFinite(roll) && roll < Math.max(0, Math.min(1, criticalChance)); + const rawAmount = Math.max(0, Math.round( + (Number.isFinite(amount) ? amount : 0) * (critical ? Math.max(1, criticalMultiplier) : 1), + )); + const missing = Math.max(0, (Number.isFinite(maximumHealth) ? maximumHealth : 0) + - (Number.isFinite(currentHealth) ? currentHealth : 0)); + const effectiveAmount = Math.min(rawAmount, missing); + return Object.freeze({ + rawAmount, + effectiveAmount, + overheal: rawAmount - effectiveAmount, + critical, + }); +} diff --git a/src/game/combatResources.test.ts b/src/game/combatResources.test.ts new file mode 100644 index 00000000..3553e5fa --- /dev/null +++ b/src/game/combatResources.test.ts @@ -0,0 +1,47 @@ +import { describe, expect, it } from "vitest"; +import { createDeathKnightRunes, normalizeActorResourcePool } from "./combatActors"; +import { + activateDeathKnightRunes, + advanceCombatResourcePool, + spendDeathKnightRunes, +} from "./combatResources"; + +describe("authentic combat resources", () => { + it("suppresses spirit mana regeneration for five seconds after spending", () => { + const mana = normalizeActorResourcePool("mana", 50, 100, 12, 1_000); + const insideRule = advanceCombatResourcePool(mana, { + inCombat: true, + actorLevel: 80, + now: 5_999, + deltaSeconds: 1, + manaSpiritRegenerationPerSecond: 8, + }); + const outsideRule = advanceCombatResourcePool(mana, { + inCombat: true, + actorLevel: 80, + now: 6_000, + deltaSeconds: 1, + manaSpiritRegenerationPerSecond: 8, + }); + expect(insideRule.current).toBe(54); + expect(outsideRule.current).toBe(62); + }); + + it("decays rage and runic power only out of combat", () => { + const rage = normalizeActorResourcePool("rage", 20, 100); + const runic = normalizeActorResourcePool("runic-power", 20, 100); + expect(advanceCombatResourcePool(rage, { inCombat: false, actorLevel: 80, now: 1, deltaSeconds: 1 }).current).toBe(17); + expect(advanceCombatResourcePool(runic, { inCombat: false, actorLevel: 80, now: 1, deltaSeconds: 1 }).current).toBe(17.5); + expect(advanceCombatResourcePool(rage, { inCombat: true, actorLevel: 80, now: 1, deltaSeconds: 1 }).current).toBe(20); + }); + + it("recharges six Death Knight runes independently", () => { + const initial = createDeathKnightRunes(); + const first = spendDeathKnightRunes(initial, { frost: 1, unholy: 1 }, 1_000)!; + expect(first).toHaveLength(6); + expect(first.filter((rune) => rune.readyAt === 11_000)).toHaveLength(2); + expect(spendDeathKnightRunes(first, { frost: 2 }, 1_001)).toBeNull(); + const activated = activateDeathKnightRunes(first, 1); + expect(activated.filter((rune) => rune.readyAt === 0)).toHaveLength(5); + }); +}); diff --git a/src/game/combatResources.ts b/src/game/combatResources.ts new file mode 100644 index 00000000..b1d39fd3 --- /dev/null +++ b/src/game/combatResources.ts @@ -0,0 +1,89 @@ +import { + createDeathKnightRunes, + type CombatResourcePoolState, + type DeathKnightRuneState, + type DeathKnightRuneType, +} from "./combatActors"; + +export const MANA_FIVE_SECOND_RULE_MS = 5_000; +export const DEATH_KNIGHT_RUNE_RECHARGE_MS = 10_000; + +export interface CombatResourceAdvanceRules { + readonly inCombat: boolean; + readonly actorLevel: number; + readonly now: number; + readonly deltaSeconds: number; + readonly manaSpiritRegenerationPerSecond?: number; +} +export function advanceCombatResourcePool( + pool: CombatResourcePoolState, + rules: CombatResourceAdvanceRules, +): CombatResourcePoolState { + const delta = Math.max(0, Math.min(1, Number.isFinite(rules.deltaSeconds) ? rules.deltaSeconds : 0)); + let rate = pool.regenerationPerSecond; + if (pool.id === "mana" && rules.now - pool.lastSpentAt < MANA_FIVE_SECOND_RULE_MS) { + rate = Math.max(0, rate - Math.max(0, rules.manaSpiritRegenerationPerSecond ?? 0)); + } + if ((pool.id === "rage" || pool.id === "runic-power") && !rules.inCombat) { + rate = pool.id === "rage" ? -3 : -2.5; + } + return Object.freeze({ + ...pool, + current: Math.max(0, Math.min(pool.maximum, pool.current + rate * delta)), + }); +} + +export interface RuneCost { + readonly blood?: number; + readonly frost?: number; + readonly unholy?: number; +} + +export function availableDeathKnightRunes( + runes: readonly DeathKnightRuneState[], + now: number, +): readonly DeathKnightRuneState[] { + return runes.filter((rune) => rune.readyAt <= now); +} + +function runeMatches(rune: DeathKnightRuneState, type: Exclude): boolean { + return rune.type === type || rune.type === "death"; +} + +export function spendDeathKnightRunes( + runes: readonly DeathKnightRuneState[] | undefined, + cost: RuneCost, + now: number, + rechargeMs = DEATH_KNIGHT_RUNE_RECHARGE_MS, +): readonly DeathKnightRuneState[] | null { + const current = runes?.length === 6 ? [...runes] : [...createDeathKnightRunes(now)]; + const spent = new Set(); + for (const type of ["blood", "frost", "unholy"] as const) { + const count = Math.max(0, Math.trunc(cost[type] ?? 0)); + for (let index = 0; index < count; index += 1) { + const candidate = current.find((rune) => ( + !spent.has(rune.slot) && rune.readyAt <= now && runeMatches(rune, type) + )); + if (!candidate) return null; + spent.add(candidate.slot); + } + } + return Object.freeze(current.map((rune) => spent.has(rune.slot) + ? Object.freeze({ ...rune, readyAt: now + Math.max(1, rechargeMs) }) + : rune)); +} + +export function activateDeathKnightRunes( + runes: readonly DeathKnightRuneState[], + count: number, +): readonly DeathKnightRuneState[] { + let remaining = Math.max(0, Math.trunc(count)); + return Object.freeze([...runes] + .sort((left, right) => right.readyAt - left.readyAt || left.slot - right.slot) + .map((rune) => { + if (remaining <= 0 || rune.readyAt <= 0) return rune; + remaining -= 1; + return Object.freeze({ ...rune, readyAt: 0 }); + }) + .sort((left, right) => left.slot - right.slot)); +} diff --git a/src/game/combatRuntimeCatalog.test.ts b/src/game/combatRuntimeCatalog.test.ts index 69386ec5..8a95debc 100644 --- a/src/game/combatRuntimeCatalog.test.ts +++ b/src/game/combatRuntimeCatalog.test.ts @@ -1,9 +1,14 @@ import { describe, expect, it } from "vitest"; import { CLASSES, type ClassId } from "../app/characterCatalog"; -import { COA_ABILITIES_BY_CLASS, COA_CLASS_RESOURCES } from "./coaAbilityCatalog"; +import { + COA_ABILITIES_BY_CLASS, + COA_CLASS_RESOURCES, + COA_TRIGGERED_ABILITIES_BY_SPELL_ID, +} from "./coaAbilityCatalog"; import { COA_RUNTIME_ABILITIES_BY_CLASS, COA_RUNTIME_CLASS_RESOURCES, + COA_RUNTIME_TRIGGERED_ABILITIES_BY_SPELL_ID, } from "./coaAbilityRuntimeCatalog"; import generatedTalentRuntime from "./generated/talentRuntimeCatalog.json"; import { @@ -21,6 +26,7 @@ describe("compact combat runtime catalogs", () => { it("preserves every derived COA ability and resource profile", () => { expect(COA_RUNTIME_ABILITIES_BY_CLASS).toEqual(COA_ABILITIES_BY_CLASS); expect(COA_RUNTIME_CLASS_RESOURCES).toEqual(COA_CLASS_RESOURCES); + expect(COA_RUNTIME_TRIGGERED_ABILITIES_BY_SPELL_ID).toEqual(COA_TRIGGERED_ABILITIES_BY_SPELL_ID); }); it("preserves every talent field used by runtime allocation and modifiers", () => { diff --git a/src/game/combatSpatial.test.ts b/src/game/combatSpatial.test.ts new file mode 100644 index 00000000..18673f43 --- /dev/null +++ b/src/game/combatSpatial.test.ts @@ -0,0 +1,33 @@ +import { afterEach, describe, expect, it } from "vitest"; +import { + combatHasLineOfSight, + isPositionInFacingArc, + isSourceBehindTarget, + projectCombatGroundPoint, + registerCombatSpatialProvider, + resetCombatSpatialProvider, +} from "./combatSpatial"; + +describe("renderer-independent combat spatial queries", () => { + afterEach(resetCombatSpatialProvider); + + it("validates facing and behind arcs", () => { + const actor = { id: "actor", position: [0, 0, 0] as const, yaw: 0 }; + expect(isPositionInFacingArc(actor, [0, 0, 5])).toBe(true); + expect(isPositionInFacingArc(actor, [0, 0, -5])).toBe(false); + expect(isSourceBehindTarget([0, 0, -2], actor)).toBe(true); + expect(isSourceBehindTarget([0, 0, 2], actor)).toBe(false); + }); + + it("delegates line of sight and collision-safe ground projection", () => { + registerCombatSpatialProvider({ + actor: () => null, + hasLineOfSight: (_source, target) => target[0] >= 0, + projectGroundPoint: (requested) => requested[1] > 5 ? null : [requested[0], 0, requested[2]], + }); + expect(combatHasLineOfSight([0, 0, 0], [2, 0, 0])).toBe(true); + expect(combatHasLineOfSight([0, 0, 0], [-2, 0, 0])).toBe(false); + expect(projectCombatGroundPoint([2, 3, 4], 10)).toEqual([2, 0, 4]); + expect(projectCombatGroundPoint([2, 8, 4], 10)).toBeNull(); + }); +}); diff --git a/src/game/combatSpatial.ts b/src/game/combatSpatial.ts new file mode 100644 index 00000000..1d7c0a10 --- /dev/null +++ b/src/game/combatSpatial.ts @@ -0,0 +1,86 @@ +export type CombatSpatialPosition = readonly [x: number, y: number, z: number]; + +export interface CombatSpatialActorSnapshot { + readonly id: string; + readonly position: CombatSpatialPosition; + /** World-space yaw in radians; +Z is forward. */ + readonly yaw: number; +} + +export interface CombatSpatialProvider { + readonly actor: (actorId: string) => CombatSpatialActorSnapshot | null; + readonly hasLineOfSight: ( + source: CombatSpatialPosition, + target: CombatSpatialPosition, + ) => boolean; + readonly projectGroundPoint: ( + requested: CombatSpatialPosition, + maximumDistance: number, + origin?: CombatSpatialPosition, + ) => CombatSpatialPosition | null; +} + +let provider: CombatSpatialProvider | null = null; + +/** Registers the loaded dungeon's read-only spatial query seam. */ +export function registerCombatSpatialProvider(next: CombatSpatialProvider): () => void { + provider = next; + return () => { + if (provider === next) provider = null; + }; +} + +export function resetCombatSpatialProvider(): void { + provider = null; +} + +export function combatSpatialActor(actorId: string): CombatSpatialActorSnapshot | null { + return provider?.actor(actorId) ?? null; +} + +export function combatHasLineOfSight( + source: CombatSpatialPosition, + target: CombatSpatialPosition, +): boolean { + return provider?.hasLineOfSight(source, target) ?? true; +} + +export function projectCombatGroundPoint( + requested: CombatSpatialPosition, + maximumDistance: number, + origin?: CombatSpatialPosition, +): CombatSpatialPosition | null { + if (!requested.every(Number.isFinite) || !Number.isFinite(maximumDistance) || maximumDistance < 0) return null; + return provider ? provider.projectGroundPoint(requested, maximumDistance, origin) : requested; +} + +function normalizedPlanarDirection( + from: CombatSpatialPosition, + to: CombatSpatialPosition, +): readonly [number, number] | null { + const dx = to[0] - from[0]; + const dz = to[2] - from[2]; + const length = Math.hypot(dx, dz); + return length > 1e-5 ? [dx / length, dz / length] : null; +} + +export function isPositionInFacingArc( + source: CombatSpatialActorSnapshot, + target: CombatSpatialPosition, + arcRadians = Math.PI, +): boolean { + const direction = normalizedPlanarDirection(source.position, target); + if (!direction) return true; + const forwardX = Math.sin(source.yaw); + const forwardZ = Math.cos(source.yaw); + const cosine = forwardX * direction[0] + forwardZ * direction[1]; + return cosine >= Math.cos(Math.max(0, Math.min(Math.PI * 2, arcRadians)) / 2); +} + +export function isSourceBehindTarget( + source: CombatSpatialPosition, + target: CombatSpatialActorSnapshot, + rearArcRadians = Math.PI, +): boolean { + return !isPositionInFacingArc(target, source, Math.PI * 2 - rearArcRadians); +} diff --git a/src/game/combatStore.test.ts b/src/game/combatStore.test.ts index ee9f4dc7..e1ae6a28 100644 --- a/src/game/combatStore.test.ts +++ b/src/game/combatStore.test.ts @@ -12,6 +12,7 @@ import { EMPTY_CORPSE_DESPAWN_MS, MINIMUM_CORPSE_VISIBLE_MS, MOB_WOUND_ANIMATION_COOLDOWN_MS, + PLAYER_AURA_ENTITY_ID, selectedMob, useCombatStore, } from "./combatStore"; @@ -90,7 +91,7 @@ describe("combat store", () => { expect(useCombatStore.getState().mobs.ravager.health).toBe(100); useCombatStore.getState().tick(0.1, 2500); expect(useCombatStore.getState().mobs.ravager.health).toBeLessThan(100); - expect(useCombatStore.getState().resource).toBe(startingResource - 14); + expect(useCombatStore.getState().resource).toBe(startingResource - Math.round(startingResource * 0.14)); expect(useCombatStore.getState().activeCast).toBeNull(); expect(useCombatStore.getState().mobs.ravager.engaged).toBe(true); }); @@ -950,7 +951,7 @@ describe("combat store", () => { expect(useCombatStore.getState().castSlot(0, undefined, 10_000).ok).toBe(true); const boltCompletion = useCombatStore.getState().activeCast!.completesAt; useCombatStore.getState().tick(0.1, boltCompletion); - expect(useCombatStore.getState().resource).toBe(startingMana - 9); + expect(useCombatStore.getState().resource).toBe(startingMana - Math.round(startingMana * 0.1 * 0.85)); }); it("routes a cast-time direct heal to the selected living party member", () => { @@ -972,6 +973,154 @@ describe("combat store", () => { expect(useCombatStore.getState().selectedTargetId).toBe("hostile-selection"); }); + it("fully heals the selected ally with Lay on Hands and starts its cooldown", () => { + useCombatStore.getState().initializeCharacter({ classId: "paladin", level: 10 }); + usePartyStore.getState().initializeParty("lay-on-hands-test", 10, useCombatStore.getState().health); + const memberId = preparePartyMember(0, [10, 0, 0], 1, true); + const memberBefore = usePartyStore.getState().members.find((member) => member.id === memberId)!; + + expect(useCombatStore.getState().castAbility( + "wow335-paladin-lay-on-hands", + [0, 0, 0], + 1_000, + )).toMatchObject({ + ok: true, + healing: memberBefore.maxHealth - 1, + }); + expect(usePartyStore.getState().members.find((member) => member.id === memberId)?.health) + .toBe(memberBefore.maxHealth); + expect(useCombatStore.getState().cooldowns["wow335-paladin-lay-on-hands"]) + .toBe(1_201_000); + expect(useCombatStore.getState().castAbility( + "wow335-paladin-lay-on-hands", + [0, 0, 0], + 2_500, + )).toMatchObject({ ok: false, reason: "cooldown" }); + }); + + it("makes the selected ally immune to physical attacks with Hand of Protection", () => { + useCombatStore.getState().initializeCharacter({ classId: "paladin", level: 10 }); + usePartyStore.getState().initializeParty("hand-of-protection-test", 10, useCombatStore.getState().health); + const memberId = preparePartyMember(0, [0, 0, 0], 1, true); + const memberBefore = usePartyStore.getState().members.find((member) => member.id === memberId)!; + + expect(useCombatStore.getState().castAbility( + "wow335-paladin-hand-of-protection", + [0, 0, 0], + 1_000, + )).toMatchObject({ ok: true }); + expect(useCombatStore.getState().auras).toContainEqual(expect.objectContaining({ + targetId: memberId, + expiresAt: 7_000, + definition: expect.objectContaining({ name: expect.stringContaining("Hand of Protection") }), + })); + expect(useCombatStore.getState().cooldowns["wow335-paladin-hand-of-protection"]) + .toBe(301_000); + + useCombatStore.getState().registerMob("party-victim", { + name: "Party victim", + maxHealth: 200, + xpReward: 0, + }); + setMobPosition("party-victim", [2, 0, 0]); + useCombatStore.getState().damageMob("party-victim", 5, 1_000, { + actorId: memberId, + role: "tank", + }); + + expect(useCombatStore.getState().advanceMobCombat(1_450)).toBe(0); + expect(usePartyStore.getState().members.find((member) => member.id === memberId)?.health) + .toBe(memberBefore.health); + }); + + it("clears roots with Hand of Freedom and replaces mutually exclusive seals", () => { + useCombatStore.getState().initializeCharacter({ classId: "paladin", level: 80 }); + usePartyStore.getState().initializeParty("paladin-aura-test", 80, useCombatStore.getState().health); + const memberId = preparePartyMember(0, [0, 0, 0], Number.MAX_SAFE_INTEGER, true); + usePartyStore.getState().controlMember(memberId, "root", 30_000); + + expect(useCombatStore.getState().castAbility("wow335-paladin-hand-of-freedom", [0, 0, 0], 1_000).ok).toBe(true); + expect(usePartyStore.getState().members.find((member) => member.id === memberId)).toMatchObject({ + controlledUntil: 0, + controlMechanic: null, + }); + + usePartyStore.getState().selectSelf(); + expect(useCombatStore.getState().castAbility("wow335-paladin-seal-of-righteousness", [0, 0, 0], 3_000).ok).toBe(true); + expect(useCombatStore.getState().castAbility("wow335-paladin-seal-of-wisdom", [0, 0, 0], 5_000).ok).toBe(true); + const seals = useCombatStore.getState().auras.filter((aura) => ( + aura.targetId === PLAYER_AURA_ENTITY_ID && aura.definition.exclusiveGroup === "paladin:seal" + )); + expect(seals).toHaveLength(1); + expect(seals[0].definition.name).toContain("Seal of Wisdom"); + }); + + it("redirects Hand of Sacrifice damage to the paladin", () => { + useCombatStore.getState().initializeCharacter({ classId: "paladin", level: 80 }); + usePartyStore.getState().initializeParty("hand-of-sacrifice-test", 80, useCombatStore.getState().health); + const memberId = preparePartyMember(0, [0, 0, 0], Number.MAX_SAFE_INTEGER, true); + const memberBefore = usePartyStore.getState().members.find((member) => member.id === memberId)!; + const playerBefore = useCombatStore.getState().health; + + expect(useCombatStore.getState().castAbility("wow335-paladin-hand-of-sacrifice", [0, 0, 0], 1_000).ok).toBe(true); + useCombatStore.getState().registerMob("sacrifice-attacker", { name: "Sacrifice attacker", maxHealth: 200, xpReward: 0 }); + setMobPosition("sacrifice-attacker", [2, 0, 0]); + useCombatStore.getState().damageMob("sacrifice-attacker", 5, 1_000, { actorId: memberId, role: "tank" }); + expect(useCombatStore.getState().advanceMobCombat(1_450)).toBeGreaterThan(0); + + const memberLoss = memberBefore.health - usePartyStore.getState().members.find((member) => member.id === memberId)!.health; + const playerLoss = playerBefore - useCombatStore.getState().health; + expect(memberLoss).toBeGreaterThan(0); + expect(playerLoss).toBeGreaterThan(0); + expect(playerLoss).toBeLessThan(memberLoss); + }); + + it("taunts up to three attackers off an ally with Righteous Defense", () => { + useCombatStore.getState().initializeCharacter({ classId: "paladin", level: 80 }); + usePartyStore.getState().initializeParty("righteous-defense-test", 80, useCombatStore.getState().health); + const memberId = preparePartyMember(0, [0, 0, 0], Number.MAX_SAFE_INTEGER, true); + for (const id of ["attacker-a", "attacker-b", "attacker-c", "attacker-d"]) { + useCombatStore.getState().registerMob(id, { name: id, maxHealth: 100, xpReward: 0 }); + setMobPosition(id, [2, 0, 0]); + } + useCombatStore.setState((state) => ({ + mobs: Object.fromEntries(Object.entries(state.mobs).map(([id, mob]) => [id, { + ...mob, + engaged: true, + targetActorId: memberId, + threatByActor: { [memberId]: 10 }, + }])), + })); + + expect(useCombatStore.getState().castAbility("wow335-paladin-righteous-defense", [0, 0, 0], 1_000).ok).toBe(true); + expect(Object.values(useCombatStore.getState().mobs).filter((mob) => mob.forcedTarget?.actorId === PLAYER_AURA_ENTITY_ID)).toHaveLength(3); + }); + + it("channels party-wide classic healing without requiring an enemy target", () => { + useCombatStore.getState().initializeCharacter({ classId: "priest", level: 80 }); + usePartyStore.getState().initializeParty("divine-hymn-test", 80, useCombatStore.getState().health); + const memberId = preparePartyMember(0, [4, 0, 0], 1); + useCombatStore.getState().damagePlayer(500); + const playerBefore = useCombatStore.getState().health; + + expect(useCombatStore.getState().castAbility("wow335-priest-divine-hymn", [0, 0, 0], 1_000).ok).toBe(true); + const completion = useCombatStore.getState().activeCast?.completesAt; + if (completion) useCombatStore.getState().tick(1, completion); + expect(useCombatStore.getState().activeCast).toBeNull(); + expect(useCombatStore.getState().health).toBeGreaterThan(playerBefore); + expect(usePartyStore.getState().members.find((member) => member.id === memberId)!.health).toBeGreaterThan(1); + }); + + it("executes intentional classic utility spells instead of rejecting them", () => { + useCombatStore.getState().initializeCharacter({ classId: "mage", level: 80 }); + useCombatStore.getState().damagePlayer(500); + const before = useCombatStore.getState().health; + expect(useCombatStore.getState().castAbility("wow335-mage-conjure-food", [0, 0, 0], 1_000).ok).toBe(true); + const completion = useCombatStore.getState().activeCast?.completesAt; + if (completion) useCombatStore.getState().tick(1, completion); + expect(useCombatStore.getState().health).toBeGreaterThan(before); + }); + it("falls back to the player and snapshots an explicit null friendly target", () => { registerTarget("enemy", [10, 0, 0], 100, 0); const memberId = preparePartyMember(0, [8, 0, 0], 1); diff --git a/src/game/combatStore.ts b/src/game/combatStore.ts index d7dcdc22..683666f0 100644 --- a/src/game/combatStore.ts +++ b/src/game/combatStore.ts @@ -22,6 +22,43 @@ import { type MobStatusKind, type ResourceType, } from "./abilityCatalog"; +import { + abilityPushbackResistance, + canAbilityCastWhileMoving, + runeCostForAbility, + targetingRulesForAbility, +} from "./abilityRules"; +import { + combatHasLineOfSight, + combatSpatialActor, + isPositionInFacingArc, + isSourceBehindTarget, + projectCombatGroundPoint, +} from "./combatSpatial"; +import { + appendCombatEvent, + type CombatEventInput, + type StructuredCombatEvent, +} from "./combatEvents"; +import { + createDeathKnightRunes, + normalizeActorResourcePool, + type CombatActorState, + type DeathKnightRuneState, +} from "./combatActors"; +import { + companionActorFromMember, + companionActorWithMemberRuntime, + memberFromCompanionActor, +} from "./combatActorAuthority"; +import { + activateDeathKnightRunes, + advanceCombatResourcePool, + spendDeathKnightRunes, +} from "./combatResources"; +import { resolveHealing, type HealingResolution } from "./combatHealing"; +import { romTriggeredAbilityBySpellId } from "./romAbilityCatalog"; +import { coaTriggeredAbilityBySpellId } from "./coaAbilityRuntimeCatalog"; import { awardExperience, healerManExperienceAward, @@ -84,6 +121,7 @@ import { resolveStatValue as resolveAuraStatValue, type ActiveAura, type AuraDefinition, + type DispelCategory, type ProcEvent, type TriggeredAuraProc, } from "./combatAuras"; @@ -154,6 +192,10 @@ import { type ThreatTable, } from "./aggro"; import { distanceSquared, planarDistanceSquared } from "./mobAi"; +import { + onlinePlayerRuntimeActor, + onlinePlayerRuntimeActors, +} from "./onlineSessionRuntime"; import { emitCombatPresentation, presentationDeliveryForAbility, @@ -217,6 +259,7 @@ export interface MobStatus { readonly sourceAbilityId: string; readonly endsAt: number; readonly magnitude?: number; + readonly breakOnDamage?: boolean; } export interface MobAura { @@ -246,6 +289,11 @@ export interface EnemyActiveCast { readonly completesAt: number; } +export interface DiminishingReturnState { + readonly applications: number; + readonly resetAt: number; +} + export interface MobCombatState { readonly id: string; readonly name: string; @@ -275,6 +323,8 @@ export interface MobCombatState { readonly xpReward: number; readonly experienceGranted: boolean; readonly statuses: readonly MobStatus[]; + readonly controlDiminishingReturns?: Readonly>>; + readonly tauntDiminishingReturns?: DiminishingReturnState; readonly auras: readonly MobAura[]; readonly threatByActor: ThreatTable; readonly targetActorId: AggroActorId | null; @@ -311,7 +361,12 @@ export interface ActiveCast { readonly mode: "cast" | "channel"; readonly startedAt: number; readonly completesAt: number; + readonly originalDurationMs: number; + readonly pushbackHits: number; + readonly school: DamageSchool; + readonly canCastWhileMoving: boolean; readonly origin: CombatPosition; + readonly groundPosition: CombatPosition | null; readonly totalTicks: number; readonly ticksCompleted: number; readonly nextTickAt: number; @@ -324,9 +379,12 @@ export interface TimedCombatEffect { readonly sourceActorId: AggroActorId; readonly targetId: string | null; readonly coefficient: number; + /** Pre-scaled amount for non-player actors whose equipment is not the player loadout. */ + readonly fixedAmount?: number; readonly basePoints?: number; readonly dieSides?: number; readonly pointsPerLevel?: number; + readonly coefficientPerLevel?: number; readonly bonusPowerCoefficient?: number; readonly sourceLevel?: number; readonly maxScalingLevel?: number; @@ -370,12 +428,27 @@ export type CastFailureReason = | "global-cooldown" | "cooldown" | "not-enough-resource" + | "not-enough-runes" + | "condition-not-met" | "no-target" | "target-dead" | "target-unavailable" + | "line-of-sight" + | "not-facing" + | "must-be-behind" + | "invalid-destination" + | "school-locked" | "too-close" | "out-of-range"; +export interface CastRequest { + readonly origin?: CombatPosition; + readonly now?: number; + readonly targetActorId?: string | null; + readonly groundPosition?: CombatPosition; + readonly completingCast?: ActiveCast; +} + export interface CastResult { readonly ok: boolean; readonly abilityId?: string; @@ -386,6 +459,17 @@ export interface CastResult { readonly levelsGained: number; } +export interface ActorHealingRequest { + readonly sourceActorId: string; + readonly abilityId?: string; + readonly school?: DamageSchool; + readonly criticalChance?: number; + readonly criticalMultiplier?: number; + readonly seed?: string; + readonly now?: number; + readonly amountAlreadyModified?: boolean; +} + export interface CharacterCombatSeed { readonly classId: ClassId; readonly secondaryClassId?: ClassId | null; @@ -447,6 +531,45 @@ export interface CombatSummon { readonly creatureId: number; readonly targetId: string | null; readonly expiresAt: number; + readonly kind: "pet" | "totem" | "summon"; + readonly name: string; + readonly ownerActorId: AggroActorId; + readonly health: number; + readonly maxHealth: number; + readonly position: CombatPosition; + readonly nextActionAt: number; + readonly pulseIntervalMs: number; + readonly attackDamage: number; + readonly abilityIds: readonly string[]; + readonly resources: CombatActorState["resources"]; + readonly cooldowns: CombatActorState["cooldowns"]; + readonly globalCooldownEndsAt: number; + readonly cast: CombatActorState["cast"]; + readonly controlledUntil: number; + readonly schoolLockedUntil: CombatActorState["schoolLockedUntil"]; + readonly exclusiveGroup?: string; +} + +export interface CombatAreaEffect { + readonly id: string; + readonly sourceActorId: AggroActorId; + readonly sourceAbilityId: string; + readonly position: CombatPosition; + readonly radius: number; + readonly createdAt: number; + readonly expiresAt: number; + readonly tickIntervalMs: number; + readonly nextTickAt: number; + readonly fixedDamagePerTick?: number; + readonly fixedHealingPerTick?: number; +} + +export interface PendingGroundTarget { + readonly abilityId: string; + readonly maximumRange: number; + readonly radius: number; + readonly position: CombatPosition; + readonly valid: boolean; } export interface CombatState { @@ -466,21 +589,30 @@ export interface CombatState { maxResource: number; resourcePools: Readonly>>; maxResourcePools: Readonly>>; + lastResourceSpentAt: Readonly>>; resourceName: string; comboPoints: number; + comboTargetId: string | null; + deathKnightRunes: readonly DeathKnightRuneState[]; abilities: readonly AbilityDefinition[]; cooldowns: Readonly>; globalCooldownEndsAt: number; activeCast: ActiveCast | null; + schoolLockedUntil: Readonly>>; playerAnimationEvent: CharacterCombatAnimationEvent | null; autoAttackTargetId: string | null; nextAutoAttackAt: number; mobs: Readonly>; selectedTargetId: string | null; + selectedFriendlyActorId: string | null; effects: readonly TimedCombatEffect[]; /** Named buffs/debuffs for the player, mobs, and party members. */ auras: readonly ActiveAura[]; summons: readonly CombatSummon[]; + areaEffects: readonly CombatAreaEffect[]; + pendingGroundTarget: PendingGroundTarget | null; + actors: Readonly>; + combatEvents: readonly StructuredCombatEvent[]; feedback: CombatFeedback | null; /** Most recent discrete attack result, retained for proc and combat-log consumers. */ lastCombatResult: CombatResult | null; @@ -504,8 +636,16 @@ export interface CombatState { selectNearestTarget: (origin?: CombatPosition, maxRange?: number) => string | null; cycleTarget: (direction?: TargetCycleDirection, origin?: CombatPosition, maxRange?: number) => string | null; clearTarget: () => void; + selectFriendlyActor: (id: string | null) => boolean; setPlayerPosition: (position: CombatPosition) => void; - castAbility: (abilityId: string, origin?: CombatPosition, now?: number, completingCast?: ActiveCast) => CastResult; + castAbility: (abilityId: string, requestOrOrigin?: CastRequest | CombatPosition, now?: number, completingCast?: ActiveCast) => CastResult; + beginGroundTarget: (abilityId: string) => boolean; + moveGroundTarget: (moveX: number, moveForward: number, yaw: number, deltaSeconds: number) => void; + confirmGroundTarget: (position?: CombatPosition, now?: number) => CastResult; + cancelGroundTarget: () => void; + synchronizeActors: () => void; + /** Commits companion simulation results to authoritative actors and mirrors party frames. */ + commitCompanionActors: (members: readonly import("./partyStore").PartyMember[]) => void; castSlot: (index: number, origin?: CombatPosition, now?: number) => CastResult; castActionBinding: (layer: ActionBindingLayer, control: ActionBindingControl, origin?: CombatPosition, now?: number) => CastResult; damageMob: ( @@ -518,7 +658,19 @@ export interface CombatState { ) => DamageResult; addHealingThreat: (source: ThreatSource, effectiveHealing: number) => void; tauntMob: (id: string, source: ThreatSource, durationMs: number, now?: number) => boolean; + interruptMob: (id: string, sourceAbilityId: string, lockoutMs: number, now?: number) => boolean; + controlMob: (id: string, sourceAbilityId: string, status: MobStatusKind, durationMs: number, now?: number) => boolean; + dispelActor: (id: string, categories: readonly DispelCategory[], maxCount?: number) => number; + healActor: (id: string, amount: number, request: ActorHealingRequest) => HealingResolution; + reviveActor: (id: string, percentMaxHealth: number, sourceActorId: string, abilityId?: string, now?: number) => number; + restoreActorResource: (id: string, resource: ResourceType, amount: number, percentage?: boolean, sourceActorId?: string, abilityId?: string, now?: number) => number; + shieldActor: (id: string, amount: number, durationMs: number, sourceActorId: string, ability: AbilityDefinition, now?: number) => number; + applyActorAura: (sourceActorId: string, targetActorId: string, ability: AbilityDefinition, effect: Extract, now?: number) => boolean; + applyTimedActorEffect: (sourceActorId: string, targetActorId: string, ability: AbilityDefinition, effect: Extract, now?: number) => boolean; + summonActor: (ownerActorId: string, ability: AbilityDefinition, effect: Extract, position: CombatPosition, targetId?: string | null, now?: number) => string | null; + createActorAreaEffect: (sourceActorId: string, ability: AbilityDefinition, position: CombatPosition, now?: number) => string | null; damagePlayer: (amount: number, school?: DamageSchool, attackerLevel?: number) => number; + damageSummon: (id: string, amount: number) => number; healPlayer: (amount: number) => number; revivePlayer: (percentMaxHealth?: number) => number; cancelCast: (message?: string) => boolean; @@ -551,6 +703,10 @@ interface MutableCastWork { effects: TimedCombatEffect[]; auras: ActiveAura[]; summons: CombatSummon[]; + areaEffects: CombatAreaEffect[]; + combatEvents: StructuredCombatEvent[]; + actors: Record; + cooldowns: Record; health: number; maxHealth: number; shield: number; @@ -559,7 +715,10 @@ interface MutableCastWork { maxResource: number; resourcePools: Partial>; maxResourcePools: Partial>; + lastResourceSpentAt: Partial>; comboPoints: number; + comboTargetId: string | null; + deathKnightRunes: readonly DeathKnightRuneState[]; progression: MutableProgression; totalDamage: number; totalHealing: number; @@ -577,6 +736,62 @@ let effectSequence = 0; let castSequence = 0; let animationSequence = 0; let summonSequence = 0; +let areaEffectSequence = 0; +let combatEventSequence = 0; + +function initialSummonCombatRuntime(): Pick { + return { + abilityIds: [], + resources: {}, + cooldowns: {}, + globalCooldownEndsAt: 0, + cast: null, + controlledUntil: 0, + schoolLockedUntil: {}, + }; +} + +function combatActorFromSummon( + summon: CombatSummon, + level: number, + auras: readonly ActiveAura[], +): CombatActorState { + return { + id: summon.id, + threatActorId: summon.id, + kind: summon.kind, + ownerId: summon.ownerActorId, + level, + health: summon.health, + maxHealth: summon.maxHealth, + absorb: entityAbsorbAmount(auras, summon.id), + resources: summon.resources, + cooldowns: summon.cooldowns, + globalCooldownEndsAt: summon.globalCooldownEndsAt, + cast: summon.cast, + controlledUntil: summon.controlledUntil, + schoolLockedUntil: summon.schoolLockedUntil, + comboPoints: 0, + comboTargetId: null, + runes: [], + abilityIds: summon.abilityIds, + alive: summon.health > 0, + }; +} + +function recordCombatEvent( + events: readonly StructuredCombatEvent[], + input: CombatEventInput, +): readonly StructuredCombatEvent[] { + combatEventSequence += 1; + return appendCombatEvent(events, input, combatEventSequence); +} + +function recordCombatEventInWork(work: MutableCastWork, input: CombatEventInput): void { + work.combatEvents = [...recordCombatEvent(work.combatEvents, input)]; +} function nextFeedback( kind: CombatFeedbackKind, @@ -685,7 +900,6 @@ function clamp(value: number, min: number, max: number): number { const ROM_RAGE_CLASSES = new Set(["rom-warrior", "rom-champion"]); const ROM_RAGE_PER_AUTO_ATTACK = 6; const ROM_RAGE_PER_HIT_TAKEN = 7; -const ROM_RAGE_DECAY_PER_SECOND = 3; const ROM_CHAMPION_RAGE_PER_SECOND = 6; const PLAYER_AUTO_ATTACK_RANGE = 5; @@ -719,8 +933,11 @@ function gainRomRage( resourcePools: Partial>, maxResourcePools: Partial>, ): { resource: number; resourcePools: Partial> } { - if (!hasRomRagePool(classId, secondaryClassId) || amount <= 0) return { resource, resourcePools }; const activeType = resourceProfileForClass(classId).type; + const hasRage = hasRomRagePool(classId, secondaryClassId) + || activeType === "rage" + || maxResourcePools.rage !== undefined; + if (!hasRage || amount <= 0) return { resource, resourcePools }; const maximum = maxResourcePools.rage ?? (activeType === "rage" ? maxResource : 100); const rage = clamp((resourcePools.rage ?? (activeType === "rage" ? resource : 0)) + amount, 0, maximum); return { @@ -804,14 +1021,15 @@ function threatSourceForActor( }; } -function actorPosition(state: Pick, actorId: AggroActorId): CombatPosition | null { - return actorId === PLAYER_AGGRO_ID - ? state.playerPosition - : getPartyRuntimePosition(actorId); +function actorPosition(state: Pick, actorId: AggroActorId): CombatPosition | null { + if (actorId === PLAYER_AGGRO_ID) return state.playerPosition; + return getPartyRuntimePosition(actorId) + ?? state.summons.find((summon) => summon.id === actorId && summon.health > 0)?.position + ?? null; } function eligibleAggroActorIds( - state: Pick, + state: Pick, mob: Pick, ): Set { const eligible = new Set(); @@ -825,6 +1043,12 @@ function eligibleAggroActorIds( for (const member of usePartyStore.getState().members) { if (member.health > 0 && withinLeash(getPartyRuntimePosition(member.id))) eligible.add(member.id); } + for (const actor of onlinePlayerRuntimeActors()) { + if (actor.health > 0 && withinLeash(getPartyRuntimePosition(actor.id))) eligible.add(actor.id); + } + for (const summon of state.summons) { + if (summon.health > 0 && withinLeash(summon.position)) eligible.add(summon.id); + } return eligible; } @@ -931,15 +1155,17 @@ function equipmentAdjustedCombatAmount( const equipmentPower = kind === "spell" ? attackPower : attackPower / 14 * weaponSpeed + weaponDamage * 0.35; + const sourceLevel = Math.max(1, typeof scaling === "number" ? level : scaling.sourceLevel ?? level); + const scalingLevel = Math.min(level, typeof scaling === "number" ? level : scaling.maxScalingLevel || level); + const coefficient = typeof scaling === "number" + ? scaling + : scaling.coefficient + Math.max(0, scalingLevel - sourceLevel) * Math.max(0, scaling.coefficientPerLevel ?? 0); if (typeof scaling === "number" || scaling.basePoints === undefined) { - const coefficient = typeof scaling === "number" ? scaling : scaling.coefficient; return Math.max( 0, Math.round(coefficient * (playerCombatPower(level) + equipmentPower)), ); } - const sourceLevel = Math.max(1, scaling.sourceLevel ?? level); - const scalingLevel = Math.min(level, scaling.maxScalingLevel || level); const levelGrowth = Math.max(0, scalingLevel - sourceLevel) * Math.max(0, scaling.pointsPerLevel ?? 0); const averageRoll = Math.abs(scaling.basePoints) + Math.max(0, Math.abs(scaling.dieSides ?? 1) - 1) / 2 @@ -952,7 +1178,7 @@ function equipmentAdjustedCombatAmount( : 1; const bonusPower = equipmentPower * Math.max( 0, - scaling.bonusPowerCoefficient ?? scaling.coefficient, + scaling.bonusPowerCoefficient ?? coefficient, ); return Math.max(0, Math.round(averageRoll * earlyLevelScale + bonusPower)); } @@ -1252,16 +1478,16 @@ function abilityCosts( ): readonly { resource: ResourceType; amount: number }[] { const aggregated = new Map(); for (const cost of ability.costs?.length ? ability.costs : [ability.cost]) { - const adjusted = Math.max(0, Math.round(applyTalentModifierValue( - cost.amount, + const maximum = cost.resource === "health" + ? state.maxHealth + : state.maxResourcePools[cost.resource] ?? defaultResourceMaximum(cost.resource); + const baseAmount = cost.percentage ? maximum * cost.amount / 100 : cost.amount; + const rawAmount = Math.max(0, Math.round(applyTalentModifierValue( + baseAmount, modifiers, "resource-cost-percent", abilityTalentContext(ability), ))); - const maximum = cost.resource === "health" - ? state.maxHealth - : state.maxResourcePools[cost.resource] ?? defaultResourceMaximum(cost.resource); - const rawAmount = cost.percentage ? Math.round(maximum * adjusted / 100) : adjusted; const playerAuras = aurasForEntity(state.auras ?? [], PLAYER_AURA_ENTITY_ID); const resourceAdjusted = resolveAuraResourceValue( resolveAuraResourceValue(rawAmount, playerAuras, cost.resource, "cost"), @@ -1419,6 +1645,29 @@ function stableCombatUnit(seed: string): number { return (hash >>> 0) / 0x1_0000_0000; } +function applyWrathCastPushback( + cast: ActiveCast | null, + now: number, + seed: string, +): ActiveCast | null { + if (!cast || cast.pushbackHits >= 2) return cast; + const ability = abilityById(cast.abilityId); + const resistance = ability ? abilityPushbackResistance(ability) : 0; + if (resistance >= 1 || stableCombatUnit(`${seed}:pushback`) < resistance) return cast; + const pushbackHits = cast.pushbackHits + 1; + if (cast.mode === "channel") { + const lostTicks = Math.max(1, Math.ceil(cast.totalTicks * 0.25)); + const totalTicks = Math.max(cast.ticksCompleted, cast.totalTicks - lostTicks); + return { + ...cast, + pushbackHits, + totalTicks, + completesAt: Math.max(now, cast.completesAt - cast.originalDurationMs * 0.25), + }; + } + return { ...cast, pushbackHits, completesAt: cast.completesAt + 500 }; +} + export function deterministicEnemyCooldown( runtimeId: string, abilityId: string, @@ -1524,6 +1773,8 @@ function summonedMobCombatState( xpReward: 0, experienceGranted: false, statuses: [], + controlDiminishingReturns: {}, + tauntDiminishingReturns: { applications: 0, resetAt: 0 }, auras: [], threatByActor: seedActorThreat({}, targetActorId), targetActorId, @@ -1562,6 +1813,16 @@ function aurasForEntity(auras: readonly ActiveAura[], entityId: string): ActiveA return auras.filter((aura) => aura.targetId === entityId); } +function hasControlImmunity( + auras: readonly ActiveAura[], + entityId: string, + mechanic: EnemyControlMechanic, +): boolean { + return aurasForEntity(auras, entityId).some((aura) => ( + aura.definition.controlImmunities?.includes(mechanic) + )); +} + function auraDefinitionForAbility( definition: AuraDefinition, ability: AbilityDefinition, @@ -1687,15 +1948,18 @@ function executeTriggeredAuraProcsInWork( work.health += healed; work.progression.health = work.health; work.totalHealing += healed; + } else if (action.kind === "heal" && actionTarget && !work.mobs[actionTarget]) { + work.totalHealing += healCompanionActorInWork(work, actionTarget, Math.max(0, action.amount)); } else if (action.kind === "damage" && actionTarget && work.mobs[actionTarget]) { - const mob = work.mobs[actionTarget]; - const amount = Math.min(mob.health, Math.max(0, Math.round(action.amount))); - work.mobs[actionTarget] = { - ...mob, - health: mob.health - amount, - dead: mob.health - amount <= 0, - }; - work.totalDamage += amount; + damageMobInWork( + work.classId, + work, + actionTarget, + Math.max(0, action.amount), + now, + playerThreatSource({ talentModifiers: work.talentModifiers }, triggered.procId, true), + action.school, + ); } else if (action.kind === "apply-aura" && actionTarget) { const definition = work.auras.find((aura) => aura.definition.id === action.auraId)?.definition; if (definition) { @@ -1718,7 +1982,49 @@ function executeTriggeredAuraProcsInWork( triggered.event.otherId ?? triggered.targetId, now, 0, + true, ); + } else if ( + action.kind === "custom" + && action.id === "classic-status" + && typeof action.data?.status === "string" + ) { + const targetId = triggered.event.otherId ?? triggered.targetId; + const mob = work.mobs[targetId]; + if (mob) { + work.mobs[targetId] = applyStatus(mob, { + kind: "status", + status: action.data.status as MobStatusKind, + durationMs: typeof action.data.durationMs === "number" ? action.data.durationMs : 3_000, + ...(typeof action.data.magnitude === "number" ? { magnitude: action.data.magnitude } : {}), + }, `proc:${triggered.procId}`, now); + } + } else if (action.kind === "custom" && action.id === "rom-frost-arrow") { + const triggeringAbility = triggered.event.abilityId ? abilityById(triggered.event.abilityId) : null; + const targetId = triggered.event.otherId ?? triggered.targetId; + const mob = work.mobs[targetId]; + if (mob && triggeringAbility?.name === "Wind Arrow") { + work.mobs[targetId] = applyStatus(mob, { + kind: "status", + status: "slow", + durationMs: 6_000, + magnitude: 0.4, + }, `proc:${triggered.procId}`, now); + } + } else if (action.kind === "custom" && action.id === "rom-entling-offering") { + const triggeringAbility = triggered.event.abilityId ? abilityById(triggered.event.abilityId) : null; + const targetId = triggered.event.otherId ?? triggered.targetId; + if (work.mobs[targetId] && triggeringAbility?.name === "Shot") { + damageMobInWork( + work.classId, + work, + targetId, + Math.max(1, Math.round(playerCombatPower(work.progression.level) * 0.35)), + now, + playerThreatSource({ talentModifiers: work.talentModifiers }, "rom-entling-offering", true), + "physical", + ); + } } } } @@ -1762,9 +2068,16 @@ function castFailureMessage(reason: CastFailureReason, resourceName: string, unl case "global-cooldown": return "Your abilities are not ready yet."; case "cooldown": return "That ability is still recharging."; case "not-enough-resource": return `Not enough ${resourceName}.`; + case "not-enough-runes": return "The required Death Knight runes are still recharging."; + case "condition-not-met": return "That ability's required RuneWaker state is not active."; case "no-target": return "Select an enemy target."; case "target-dead": return "That target is already defeated."; case "target-unavailable": return "That target is not currently visible."; + case "line-of-sight": return "That target is not in line of sight."; + case "not-facing": return "You must face that target."; + case "must-be-behind": return "You must be behind that target."; + case "invalid-destination": return "That ground destination is invalid."; + case "school-locked": return "That spell school is locked out."; case "too-close": return "That target is too close."; case "out-of-range": return "That target is out of range."; } @@ -1891,7 +2204,7 @@ function engageMobGroupInWork( } function nearestAggroActorId( - state: Pick, + state: Pick, mobPosition: CombatPosition, aggroRange: number, ): AggroActorId | null { @@ -1915,6 +2228,24 @@ function nearestAggroActorId( nearestDistanceSquared = memberDistanceSquared; } } + for (const actor of onlinePlayerRuntimeActors()) { + if (actor.health <= 0) continue; + const position = getPartyRuntimePosition(actor.id); + if (!position) continue; + const actorDistanceSquared = distanceSquared(mobPosition, position); + if (actorDistanceSquared < nearestDistanceSquared) { + nearestId = actor.id; + nearestDistanceSquared = actorDistanceSquared; + } + } + for (const summon of state.summons) { + if (summon.health <= 0) continue; + const summonDistanceSquared = distanceSquared(mobPosition, summon.position); + if (summonDistanceSquared < nearestDistanceSquared) { + nearestId = summon.id; + nearestDistanceSquared = summonDistanceSquared; + } + } return nearestId; } @@ -1981,6 +2312,20 @@ function damageMobInWork( : undefined; if (adjustedCombatResult) work.combatResults.push(adjustedCombatResult); const applied = Math.min(mob.health, Math.max(0, Math.round(auraAbsorb.remainingDamage))); + recordCombatEventInWork(work, { + occurredAt: now, + kind: "damage", + sourceActorId: source.actorId, + targetActorId: id, + ...(source.abilityId ? { abilityId: source.abilityId } : {}), + school, + rawAmount: combatResult?.rawDamage ?? Math.max(0, Math.round(amount)), + effectiveAmount: applied, + overheal: 0, + absorbed: auraAbsorb.absorbed, + critical: combatResult?.critical ?? false, + outcome: combatResult?.outcome ?? "hit", + }); const thorns = mob.auras.find((aura) => aura.id === "thorns"); if (thorns && source.actorId === PLAYER_AGGRO_ID && applied > 0) { const reflected = Math.min( @@ -2026,7 +2371,10 @@ function damageMobInWork( : mob.corpseDespawnAt, experienceGranted: mob.experienceGranted || killed, lastDamageAt: now, - statuses: killed ? [] : mob.statuses, + statuses: killed ? [] : applied > 0 + ? mob.statuses.filter((status) => !(status.breakOnDamage + ?? ["fear", "sleep", "blind", "confuse"].includes(status.kind))) + : mob.statuses, threatByActor, targetActorId: killed ? null : (engagedMob.targetActorId ?? source.actorId), forcedTarget: killed ? null : engagedMob.forcedTarget, @@ -2154,13 +2502,30 @@ function applyStatus( now: number, ): MobCombatState { if (mob.dead) return mob; - if ( - (effect.status === "fear" || effect.status === "root" || effect.status === "stun") - && mob.mechanicImmunities.includes(effect.status) - ) return mob; - const durationMs = mob.boss && effect.status === "stun" + if (mob.mechanicImmunities.includes(effect.status as AzerothCoreMechanic)) return mob; + const baseDurationMs = mob.boss && effect.status === "stun" ? Math.min(3000, effect.durationMs) : effect.durationMs; + const diminishingStatuses = new Set([ + "stun", "fear", "root", "sleep", "blind", "freeze", "charm", "confuse", "knockdown", + ]); + const previousDiminishing = mob.controlDiminishingReturns?.[effect.status]; + const applications = mob.boss && diminishingStatuses.has(effect.status) && previousDiminishing?.resetAt && previousDiminishing.resetAt > now + ? previousDiminishing.applications + : 0; + const multiplier = mob.boss && diminishingStatuses.has(effect.status) + ? [1, 0.5, 0.25, 0][Math.min(3, applications)] + : 1; + const durationMs = Math.round(baseDurationMs * multiplier); + const controlDiminishingReturns = mob.boss && diminishingStatuses.has(effect.status) + ? { + ...mob.controlDiminishingReturns, + [effect.status]: { + applications: Math.min(3, applications + 1), + resetAt: now + 15_000, + }, + } + : mob.controlDiminishingReturns; if (effect.status === "interrupt") { const cast = mob.activeCast; if (!cast?.interruptible) return mob; @@ -2174,11 +2539,13 @@ function applyStatus( }, }; } + if (durationMs <= 0) return { ...mob, controlDiminishingReturns }; const status: MobStatus = { kind: effect.status, sourceAbilityId: abilityId, endsAt: now + durationMs, ...(effect.magnitude === undefined ? {} : { magnitude: effect.magnitude }), + ...(effect.breakOnDamage === undefined ? {} : { breakOnDamage: effect.breakOnDamage }), }; const incapacitated = [ "stun", "fear", "sleep", "blind", "pacify", "knockdown", "freeze", "charm", "confuse", @@ -2193,6 +2560,7 @@ function applyStatus( ...(cancelsActiveCast ? { activeCast: null, nextAttackAt: now } : {}), + controlDiminishingReturns, statuses: [...mob.statuses.filter((entry) => entry.kind !== effect.status), status], }; } @@ -2204,12 +2572,13 @@ function executeTriggeredSpellInWork( targetId: string | null, now: number, depth: number, + allowCoaHidden = false, ): void { if (depth > 1) return; const catalogAbility = work.abilities.find((candidate) => ( candidate.dbcSpellId === spellId || candidate.ranks?.some((rank) => rank.spellId === spellId) - )); + )) ?? romTriggeredAbilityBySpellId(spellId) ?? (allowCoaHidden ? coaTriggeredAbilityBySpellId(spellId) : null); if (!catalogAbility) return; const ability = abilityAtLevel(catalogAbility, work.progression.level); const source = playerThreatSource({ talentModifiers: work.talentModifiers }, ability.id, true); @@ -2257,7 +2626,7 @@ function executeTriggeredSpellInWork( work.progression.health = work.health; work.totalHealing += healed; } else { - const healed = usePartyStore.getState().healMember(recipient, amount); + const healed = healCompanionActorInWork(work, recipient, amount); work.totalHealing += healed; } } else if (effect.kind === "status") { @@ -2293,12 +2662,152 @@ function executeTriggeredSpellInWork( } else if (effect.kind === "resource") { const resource = effect.resource ?? resourceProfileForClass(work.classId).type; const maximum = work.maxResourcePools[resource] ?? defaultResourceMaximum(resource); - work.resourcePools[resource] = clamp((work.resourcePools[resource] ?? 0) + effect.amount, 0, maximum); + const amount = effect.percentage ? maximum * effect.amount / 100 : effect.amount; + work.resourcePools[resource] = clamp((work.resourcePools[resource] ?? 0) + amount, 0, maximum); if (resource === resourceProfileForClass(work.classId).type) { work.resource = work.resourcePools[resource] ?? work.resource; } + } else if (effect.kind === "dot") { + for (const mobId of mobTargets) { + work.effects = work.effects.filter((entry) => !( + entry.kind === "dot" + && entry.targetId === mobId + && (effect.tag ? entry.tag === effect.tag : entry.sourceAbilityId === ability.id) + )); + work.effects.push(timedEffect( + "dot", ability.id, source.actorId, mobId, effect, effect.ticks, effect.intervalMs, now, + effect.tag, school, work.gearStats.spellPenetration, + )); + } + } else if (effect.kind === "hot") { + const recipient = targetId && !work.mobs[targetId] ? targetId : null; + work.effects.push(timedEffect( + "hot", ability.id, source.actorId, recipient, effect, effect.ticks, effect.intervalMs, now, + )); + } else if (effect.kind === "shield") { + const amount = equipmentAdjustedCombatAmount( + effect, work.progression.level, work.gearStats, work.classId, ability, + ); + const recipient = targetId && !work.mobs[targetId] ? targetId : PLAYER_AURA_ENTITY_ID; + if (recipient === PLAYER_AURA_ENTITY_ID) { + work.shield = Math.max(work.shield, amount); + work.shieldExpiresAt = now + effect.durationMs; + } else { + work.auras = [...applyCombatAura(work.auras, { + definition: { + id: `coa-triggered-shield:${spellId}`, + name: ability.name, + disposition: "buff", + durationMs: effect.durationMs, + absorbs: [{ id: `coa-triggered-shield:${spellId}:pool`, amount }], + }, + sourceId, + targetId: recipient, + now, + }).auras]; + } + } else if (effect.kind === "summon") { + summonSequence += 1; + work.summons.push({ + id: `player-triggered-summon-${summonSequence}`, + sourceAbilityId: ability.id, + creatureId: effect.creatureId, + targetId, + expiresAt: now + effect.durationMs, + kind: /totem/i.test(ability.name) ? "totem" : "summon", + name: ability.name, + ownerActorId: sourceId, + health: Math.max(1, Math.round(work.maxHealth * 0.3)), + maxHealth: Math.max(1, Math.round(work.maxHealth * 0.3)), + position: getMobPosition(targetId ?? "") ?? [0, 0, 0], + nextActionAt: now + 1_000, + pulseIntervalMs: /totem/i.test(ability.name) ? 2_000 : 2_200, + attackDamage: Math.max(1, Math.round(playerCombatPower(work.progression.level) * Math.max(0.15, effect.coefficient))), + ...initialSummonCombatRuntime(), + }); + } else if (effect.kind === "resource-drain") { + const resource = effect.resource ?? resourceProfileForClass(work.classId).type; + const maximum = work.maxResourcePools[resource] ?? defaultResourceMaximum(resource); + const amount = effect.percentage ? maximum * effect.amount / 100 : effect.amount; + if (mobTargets.length && !effect.burn) { + const resourceBefore = work.resourcePools[resource] ?? 0; + work.resourcePools[resource] = clamp(resourceBefore + amount, 0, maximum); + } else if (!mobTargets.length) { + work.resourcePools[resource] = Math.max(0, (work.resourcePools[resource] ?? 0) - amount); + } + if (resource === resourceProfileForClass(work.classId).type) { + work.resource = work.resourcePools[resource] ?? work.resource; + } + } else if (effect.kind === "pull") { + const playerPosition = useCombatStore.getState().playerPosition; + for (const mobId of mobTargets) { + const position = getMobPosition(mobId); + if (!position || effect.toward !== "caster") continue; + const dx = position[0] - playerPosition[0]; + const dz = position[2] - playerPosition[2]; + const length = Math.max(0.001, Math.hypot(dx, dz)); + setMobPosition(mobId, [ + playerPosition[0] + dx / length * 1.5, + position[1], + playerPosition[2] + dz / length * 1.5, + ]); + } + } else if (effect.kind === "dispel") { + const recipient = targetId ?? sourceId; + const targeted = work.auras.filter((aura) => aura.targetId === recipient); + const untouched = work.auras.filter((aura) => aura.targetId !== recipient); + const result = dispelCombatAuras(targeted, { + relationship: effect.relationship === "target" + ? work.mobs[recipient] ? "hostile" : "friendly" + : effect.relationship, + categories: effect.categories, + maxCount: effect.maxCount, + }); + work.auras = [...untouched, ...result.auras]; + } else if (effect.kind === "execute") { + for (const mobId of mobTargets) { + const mob = work.mobs[mobId]; + if (mob) damageMobInWork( + work.classId, + work, + mobId, + Math.max(mob.health, mob.maxHealth * effect.coefficient), + now, + source, + school, + ); + } + } else if (effect.kind === "threat") { + for (const mobId of mobTargets) { + const mob = work.mobs[mobId]; + if (!mob) continue; + const current = mob.threatByActor[source.actorId] ?? 0; + work.mobs[mobId] = { + ...mob, + threatByActor: { + ...mob.threatByActor, + [source.actorId]: effect.mode === "percent" + ? current * Math.max(0, 1 + effect.amount / 100) + : effect.mode === "redirect" ? 0 : Math.max(0, current + effect.amount), + }, + }; + } + } else if (effect.kind === "cooldown-reset") { + const candidates = effect.abilityName + ? work.abilities.filter((candidate) => candidate.name.toLowerCase() === effect.abilityName!.toLowerCase()) + : work.abilities; + for (const candidate of candidates) { + if (effect.mode === "reset") work.cooldowns[candidate.id] = 0; + else { + const readyAt = work.cooldowns[candidate.id] ?? now; + const reduction = effect.amountPercent !== undefined + ? Math.max(0, readyAt - now) * Math.max(0, Math.min(1, effect.amountPercent)) + : effect.amountMs ?? 0; + work.cooldowns[candidate.id] = Math.max(now, readyAt - reduction); + } + } } else if (effect.kind === "trigger-spell" && depth < 1 && effect.spellId !== spellId) { - executeTriggeredSpellInWork(work, effect.spellId, sourceId, targetId, now, depth + 1); + executeTriggeredSpellInWork(work, effect.spellId, sourceId, targetId, now, depth + 1, allowCoaHidden); } } } @@ -2327,6 +2836,7 @@ function timedEffect( ...(scaling.basePoints === undefined ? {} : { basePoints: scaling.basePoints }), ...(scaling.dieSides === undefined ? {} : { dieSides: scaling.dieSides }), ...(scaling.pointsPerLevel === undefined ? {} : { pointsPerLevel: scaling.pointsPerLevel }), + ...(scaling.coefficientPerLevel === undefined ? {} : { coefficientPerLevel: scaling.coefficientPerLevel }), ...(scaling.bonusPowerCoefficient === undefined ? {} : { bonusPowerCoefficient: scaling.bonusPowerCoefficient }), ...(scaling.sourceLevel === undefined ? {} : { sourceLevel: scaling.sourceLevel }), ...(scaling.maxScalingLevel === undefined ? {} : { maxScalingLevel: scaling.maxScalingLevel }), @@ -2339,6 +2849,189 @@ function timedEffect( }; } +function entityAbsorbAmount(auras: readonly ActiveAura[], entityId: string): number { + return aurasForEntity(auras, entityId).reduce((total, aura) => ( + total + aura.absorbs.reduce((sum, absorb) => sum + Math.max(0, absorb.remaining), 0) + ), 0); +} + +function ensureCompanionActorInWork(work: MutableCastWork, id: string): CombatActorState | null { + const member = usePartyStore.getState().members.find((candidate) => candidate.id === id); + if (!member) return null; + const existing = work.actors[id]; + const actor = companionActorFromMember(member, entityAbsorbAmount(work.auras, id), existing); + work.actors[id] = actor; + return actor; +} + +function mirrorCompanionActor(actor: CombatActorState): void { + if (actor.kind !== "companion") return; + const member = usePartyStore.getState().members.find((candidate) => candidate.id === actor.id); + if (!member) return; + const mirrored = memberFromCompanionActor(member, actor); + usePartyStore.getState().updateMemberCombat(actor.id, { + health: mirrored.health, + maxHealth: mirrored.maxHealth, + resource: mirrored.resource, + maxResource: mirrored.maxResource, + resourcePools: mirrored.resourcePools, + lastResourceSpentAt: mirrored.lastResourceSpentAt, + cooldowns: mirrored.cooldowns, + globalCooldownEndsAt: mirrored.globalCooldownEndsAt, + activeCast: mirrored.activeCast, + activeCastTargetId: mirrored.activeCastTargetId, + schoolLockedUntil: mirrored.schoolLockedUntil, + runes: mirrored.runes, + controlledUntil: mirrored.controlledUntil, + status: mirrored.status, + }); +} + +function healCompanionActorInWork(work: MutableCastWork, id: string, amount: number): number { + const actor = ensureCompanionActorInWork(work, id); + const requested = Math.max(0, Math.round(Number.isFinite(amount) ? amount : 0)); + if (!actor || actor.health <= 0 || requested <= 0) return 0; + const healed = Math.min(requested, actor.maxHealth - actor.health); + if (healed <= 0) return 0; + const next = Object.freeze({ ...actor, health: actor.health + healed, alive: true }); + work.actors[id] = next; + mirrorCompanionActor(next); + return healed; +} + +function reviveCompanionActorInWork(work: MutableCastWork, id: string, percentMaxHealth: number): number { + const actor = ensureCompanionActorInWork(work, id); + if (!actor || actor.health > 0) return 0; + const health = Math.max(1, Math.round(actor.maxHealth * Math.max(0.01, Math.min(1, percentMaxHealth)))); + const next = Object.freeze({ ...actor, health, alive: true, controlledUntil: 0, cast: null }); + work.actors[id] = next; + mirrorCompanionActor(next); + usePartyStore.setState((party) => ({ + members: party.members.map((member) => member.id === id + ? { ...member, status: "ready", controlMechanic: null } + : member), + })); + return health; +} + +function damageCompanionActorInWork(work: MutableCastWork, id: string, amount: number): number { + const actor = ensureCompanionActorInWork(work, id); + const requested = Math.max(0, Math.round(Number.isFinite(amount) ? amount : 0)); + if (!actor || actor.health <= 0 || requested <= 0) return 0; + const applied = Math.min(actor.health, requested); + const health = actor.health - applied; + const next = Object.freeze({ ...actor, health, alive: health > 0, cast: health > 0 ? actor.cast : null }); + work.actors[id] = next; + mirrorCompanionActor(next); + if (health <= 0) { + usePartyStore.setState((party) => ({ + members: party.members.map((member) => member.id === id + ? { ...member, status: "down", activeCast: null, activeCastTargetId: null } + : member), + })); + } + return applied; +} + +function clearCompanionControlInWork(work: MutableCastWork, id: string): boolean { + const actor = ensureCompanionActorInWork(work, id); + if (!actor || actor.controlledUntil <= 0) return false; + const next = Object.freeze({ ...actor, controlledUntil: 0 }); + work.actors[id] = next; + mirrorCompanionActor(next); + usePartyStore.setState((party) => ({ + members: party.members.map((member) => member.id === id + ? { ...member, controlMechanic: null } + : member), + })); + return true; +} + +function combatActorSnapshots(state: CombatState): Readonly> { + const actors: Record = {}; + const resourceProfile = resourceProfileForClass(state.classId); + const playerResources = Object.fromEntries( + Object.entries(state.maxResourcePools).map(([id, maximum]) => [id, normalizeActorResourcePool( + id, + state.resourcePools[id as ResourceType] ?? 0, + maximum ?? 0, + id === resourceProfile.type ? resourceProfile.regenerationPerSecond : 0, + state.lastResourceSpentAt[id as ResourceType] ?? 0, + )]), + ); + actors[PLAYER_AURA_ENTITY_ID] = { + id: PLAYER_AURA_ENTITY_ID, + threatActorId: PLAYER_AURA_ENTITY_ID, + kind: "player", + classId: state.classId, + level: state.level, + health: state.health, + maxHealth: state.maxHealth, + absorb: state.shield + entityAbsorbAmount(state.auras, PLAYER_AURA_ENTITY_ID), + resources: playerResources, + cooldowns: state.cooldowns, + globalCooldownEndsAt: state.globalCooldownEndsAt, + cast: state.activeCast ? { + abilityId: state.activeCast.abilityId, + school: state.activeCast.school, + mode: state.activeCast.mode, + startedAt: state.activeCast.startedAt, + completesAt: state.activeCast.completesAt, + originalDurationMs: state.activeCast.originalDurationMs, + pushbackHits: state.activeCast.pushbackHits, + } : null, + controlledUntil: state.controlledUntil, + schoolLockedUntil: state.schoolLockedUntil, + comboPoints: state.comboPoints, + comboTargetId: state.comboTargetId, + runes: state.deathKnightRunes, + alive: state.health > 0, + }; + for (const member of usePartyStore.getState().members) { + actors[member.id] = companionActorFromMember( + member, + entityAbsorbAmount(state.auras, member.id), + state.actors[member.id], + ); + } + for (const actor of onlinePlayerRuntimeActors()) actors[actor.id] = actor; + for (const mob of Object.values(state.mobs)) { + actors[mob.id] = { + id: mob.id, + threatActorId: mob.id, + kind: "enemy", + level: mob.level, + health: mob.health, + maxHealth: mob.maxHealth, + absorb: entityAbsorbAmount(state.auras, mob.id), + resources: mob.maxMana > 0 + ? { mana: normalizeActorResourcePool("mana", mob.maxMana, mob.maxMana) } + : {}, + cooldowns: mob.abilityReadyAt, + globalCooldownEndsAt: 0, + cast: mob.activeCast ? { + abilityId: mob.activeCast.attackId, + school: mob.activeCast.school, + mode: "cast", + startedAt: mob.activeCast.startedAt, + completesAt: mob.activeCast.completesAt, + originalDurationMs: mob.activeCast.completesAt - mob.activeCast.startedAt, + pushbackHits: 0, + } : null, + controlledUntil: Math.max(0, ...mob.statuses.map((status) => status.endsAt)), + schoolLockedUntil: mob.schoolLockedUntil, + comboPoints: 0, + comboTargetId: null, + runes: [], + alive: !mob.dead, + }; + } + for (const summon of state.summons) { + actors[summon.id] = combatActorFromSummon(summon, state.level, state.auras); + } + return Object.freeze(actors); +} + function initialState() { const classId: ClassId = "priest"; const raceId: RaceId = "human"; @@ -2373,20 +3066,29 @@ function initialState() { maxResource, resourcePools: initialPools.pools, maxResourcePools: initialPools.maximums, + lastResourceSpentAt: {}, resourceName: resource.name, comboPoints: 0, + comboTargetId: null, + deathKnightRunes: [], abilities, cooldowns: {}, globalCooldownEndsAt: 0, activeCast: null, + schoolLockedUntil: {}, playerAnimationEvent: null, autoAttackTargetId: null, nextAutoAttackAt: 0, mobs: {}, selectedTargetId: null, + selectedFriendlyActorId: null, effects: [], auras: [], summons: [], + areaEffects: [], + pendingGroundTarget: null, + actors: {}, + combatEvents: [], feedback: null, lastCombatResult: null, bossLootRewards: [] as readonly BossLootReward[], @@ -2450,6 +3152,7 @@ export const useCombatStore = create((set, get) => ({ maxResourcePools: initialPools.maximums, resourceName: resource.name, abilities, + deathKnightRunes: classId === "death-knight" ? createDeathKnightRunes() : [], auras: syncPassiveAuras([], abilities, progression.level, talentRanks, Date.now()), talentRanks, talentModifiers, @@ -2588,6 +3291,8 @@ export const useCombatStore = create((set, get) => ({ xpReward, experienceGranted: false, statuses: [], + controlDiminishingReturns: {}, + tauntDiminishingReturns: { applications: 0, resetAt: 0 }, auras: [], threatByActor: {}, targetActorId: null, @@ -2795,6 +3500,7 @@ export const useCombatStore = create((set, get) => ({ ? 0 : state.nextAutoAttackAt, comboPoints: state.selectedTargetId === id ? state.comboPoints : 0, + comboTargetId: state.selectedTargetId === id ? state.comboTargetId : id, feedback: nextFeedback("target", mob.name, { targetId: id }), })); return true; @@ -2830,21 +3536,51 @@ export const useCombatStore = create((set, get) => ({ autoAttackTargetId: null, nextAutoAttackAt: 0, comboPoints: 0, + comboTargetId: null, feedback: state.selectedTargetId ? nextFeedback("target", "Target cleared.") : state.feedback, })), + selectFriendlyActor: (id) => { + if (id === null) { + set({ selectedFriendlyActorId: null }); + return true; + } + const state = get(); + const actor = state.actors[id]; + if (!actor || !["player", "companion", "pet", "totem", "summon"].includes(actor.kind)) return false; + set({ + selectedFriendlyActorId: id, + feedback: nextFeedback("target", `Friendly target selected: ${state.summons.find((summon) => summon.id === id)?.name ?? id}.`, { targetId: id }), + }); + return true; + }, + setPlayerPosition: (position) => set((state) => { const next: CombatPosition = [position[0], position[1], position[2]]; const cast = state.activeCast; - const movedWhileCasting = Boolean(cast && ( + const movedWhileCasting = Boolean(cast && !cast.canCastWhileMoving && ( (next[0] - cast.origin[0]) ** 2 + (next[2] - cast.origin[2]) ** 2 > 0.04 )); if (movedWhileCasting) emitPlayerAbilityCancellation(cast!.abilityId, Date.now(), next); return { playerPosition: next, activeCast: movedWhileCasting ? null : cast, + combatEvents: movedWhileCasting ? recordCombatEvent(state.combatEvents, { + occurredAt: Date.now(), + kind: "interrupt", + sourceActorId: PLAYER_AURA_ENTITY_ID, + targetActorId: PLAYER_AURA_ENTITY_ID, + abilityId: cast!.abilityId, + school: cast!.school, + rawAmount: 0, + effectiveAmount: 0, + overheal: 0, + absorbed: 0, + critical: false, + outcome: "movement", + }) : state.combatEvents, playerAnimationEvent: movedWhileCasting ? nextAnimationEvent("ability-cancel", cast!.abilityId) : state.playerAnimationEvent, @@ -2854,7 +3590,115 @@ export const useCombatStore = create((set, get) => ({ }; }), - castAbility: (abilityId, origin, now = Date.now(), completingCast) => { + beginGroundTarget: (abilityId) => { + const ability = abilityById(abilityId); + if (!ability || targetingRulesForAbility(ability).shape !== "ground") return false; + const state = get(); + const targeting = targetingRulesForAbility(ability); + const maximumRange = targeting.groundRange ?? ability.range.max; + const player = combatSpatialActor(PLAYER_AURA_ENTITY_ID); + const yaw = player?.yaw ?? 0; + const distance = Math.min(10, Math.max(0, maximumRange)); + const requested: CombatPosition = [ + state.playerPosition[0] + Math.sin(yaw) * distance, + state.playerPosition[1], + state.playerPosition[2] + Math.cos(yaw) * distance, + ]; + const projected = projectCombatGroundPoint(requested, maximumRange, state.playerPosition); + set({ + pendingGroundTarget: { + abilityId, + maximumRange, + radius: targeting.radius ?? ability.radius ?? 4, + position: projected ?? requested, + valid: projected !== null && (!targeting.requiresLineOfSight || combatHasLineOfSight(state.playerPosition, projected)), + }, + feedback: nextFeedback("target", `Choose a location for ${ability.name}.`, { abilityId }), + }); + return true; + }, + + moveGroundTarget: (moveX, moveForward, yaw, deltaSeconds) => set((state) => { + const pending = state.pendingGroundTarget; + if (!pending) return state; + const magnitude = Math.hypot(moveX, moveForward); + if (magnitude < 0.05 || !Number.isFinite(deltaSeconds)) return state; + const normalizedX = moveX / Math.max(1, magnitude); + const normalizedForward = moveForward / Math.max(1, magnitude); + const safeYaw = Number.isFinite(yaw) ? yaw : 0; + const worldX = -normalizedX * Math.cos(safeYaw) + normalizedForward * Math.sin(safeYaw); + const worldZ = normalizedX * Math.sin(safeYaw) + normalizedForward * Math.cos(safeYaw); + const speed = 10; + const requested: CombatPosition = [ + pending.position[0] + worldX * speed * clamp(deltaSeconds, 0, 0.1), + pending.position[1], + pending.position[2] + worldZ * speed * clamp(deltaSeconds, 0, 0.1), + ]; + const projected = projectCombatGroundPoint(requested, pending.maximumRange, state.playerPosition); + const ability = abilityById(pending.abilityId); + const targeting = ability ? targetingRulesForAbility(ability) : null; + const valid = Boolean(projected + && Math.sqrt(distanceSquared(state.playerPosition, projected)) <= pending.maximumRange + && (!targeting?.requiresLineOfSight || combatHasLineOfSight(state.playerPosition, projected))); + return { + pendingGroundTarget: { + ...pending, + position: projected ?? pending.position, + valid, + }, + }; + }), + + confirmGroundTarget: (position, now = Date.now()) => { + const pending = get().pendingGroundTarget; + if (!pending) return emptyCastResult("invalid-destination"); + const destination = position ?? pending.position; + if (!pending.valid && position === undefined) return emptyCastResult("invalid-destination", pending.abilityId); + set({ pendingGroundTarget: null }); + return get().castAbility(pending.abilityId, { origin: get().playerPosition, groundPosition: destination, now }); + }, + + cancelGroundTarget: () => set({ pendingGroundTarget: null }), + + synchronizeActors: () => { + let actors: Readonly> = {}; + set((state) => { + actors = combatActorSnapshots(state); + return { actors }; + }); + usePartyStore.setState((party) => ({ + members: party.members.map((member) => memberFromCompanionActor(member, actors[member.id])), + })); + }, + commitCompanionActors: (members) => { + let actors: Readonly> = {}; + set((state) => { + const next = { ...state.actors }; + for (const member of members) { + const existing = next[member.id] ?? companionActorFromMember( + member, + entityAbsorbAmount(state.auras, member.id), + ); + next[member.id] = companionActorWithMemberRuntime(existing, member); + } + actors = Object.freeze(next); + return { actors }; + }); + usePartyStore.setState((party) => ({ + members: party.members.map((member) => { + const runtime = members.find((candidate) => candidate.id === member.id) ?? member; + return memberFromCompanionActor(runtime, actors[member.id]); + }), + })); + }, + + castAbility: (abilityId, requestOrOrigin, legacyNow = Date.now(), legacyCompletingCast) => { + const request: CastRequest = Array.isArray(requestOrOrigin) + ? { origin: requestOrOrigin as CombatPosition, now: legacyNow, completingCast: legacyCompletingCast } + : (requestOrOrigin as CastRequest | undefined) ?? { now: legacyNow, completingCast: legacyCompletingCast }; + const origin = request.origin; + const now = request.now ?? legacyNow; + const completingCast = request.completingCast ?? legacyCompletingCast; const state = get(); const party = usePartyStore.getState(); const catalogAbility = abilityById(abilityId); @@ -2864,40 +3708,69 @@ export const useCombatStore = create((set, get) => ({ const ability = catalogAbility ? abilityAtLevel(catalogAbility, state.level, learnedTalentRank) : null; + const activePlayerAuras = aurasForEntity(state.auras, PLAYER_AURA_ENTITY_ID); + const hasRuneWakerState = (tag: string) => activePlayerAuras.some((aura) => aura.definition.utilityTags?.includes(tag)); + const holyAuraFriendly = Boolean( + ability?.source === "runewaker" + && ability.name === "Holy Aura" + && party.selectedMemberId + && hasRuneWakerState("rom-holy-salvation-candle") + ); + const effectiveTarget = holyAuraFriendly + ? "friendly" + : ability?.target === "any" + ? completingCast + ? completingCast.targetId && state.mobs[completingCast.targetId] ? "hostile" : "friendly" + : state.selectedFriendlyActorId || party.selectedMemberId || party.selfSelected ? "friendly" : "hostile" + : ability?.target; const modifiers = state.talentModifiers; const resourceCost = ability ? talentAdjustedResourceCost(ability, modifiers) : 0; const costs = ability ? abilityCosts(ability, modifiers, state) : []; const costsToSpend = completingCast?.mode === "channel" ? [] : costs; + const targeting = ability ? targetingRulesForAbility(ability) : null; + const spellSchool = ability ? ability.castRules?.school ?? abilityDamageSchool(state.classId, ability) : "physical"; + const runeCost = ability && baseClassFor(state.classId) === "death-knight" + ? runeCostForAbility(ability) + : null; let failure: CastFailureReason | undefined; if (!ability) failure = "unknown-ability"; else if (!state.abilities.some((entry) => entry.id === ability.id)) failure = "wrong-class"; else if (ability.talentEntryId !== undefined && !learnedTalentRank) failure = "not-learned"; else if (ability.passive) failure = "passive"; - else if (ability.effects.every((effect) => ( - effect.kind === "scripted" || effect.kind === "unsupported" || effect.kind === "utility" - ))) failure = "unsupported"; + else if (ability.effects.every((effect) => effect.kind === "scripted" || effect.kind === "unsupported")) failure = "unsupported"; else if (!isAbilityUnlocked(ability, state.level)) failure = "level-locked"; else if (state.health <= 0) failure = "player-dead"; else if (state.controlledUntil > now) failure = "player-controlled"; + else if ( + effectiveTarget === "hostile" + && abilityAttackKind(state.classId, ability) === "melee" + && aurasForEntity(state.auras, PLAYER_AURA_ENTITY_ID).some((aura) => aura.definition.utilityTags?.includes("pacified")) + ) failure = "player-controlled"; else if (state.activeCast && !completingCast) failure = "already-casting"; else if (!completingCast && state.globalCooldownEndsAt > now) failure = "global-cooldown"; - else if ((state.cooldowns[abilityId] ?? 0) > now) failure = "cooldown"; + else if (!completingCast && (state.cooldowns[abilityId] ?? 0) > now) failure = "cooldown"; + else if ((state.schoolLockedUntil[spellSchool] ?? 0) > now) failure = "school-locked"; + else if (ability.id === "rom-mage-primary-55" && !hasRuneWakerState("rom-charged")) failure = "condition-not-met"; + else if (ability.id === "rom-mage-primary-56" && !hasRuneWakerState("rom-static-field-charge")) failure = "condition-not-met"; else if (costs.some((cost) => cost.resource === "health" ? state.health <= cost.amount : (state.resourcePools[cost.resource] ?? (cost.resource === resourceProfileForClass(state.classId).type ? state.resource : 0)) < cost.amount)) failure = "not-enough-resource"; + else if (runeCost && !spendDeathKnightRunes(state.deathKnightRunes, runeCost, now)) failure = "not-enough-runes"; const playerOrigin = currentOrigin(state, origin); // `null` is a meaningful snapshotted target for friendly casts: it means // the player. Do not fall through to a newly selected ally on completion. let targetId = completingCast ? completingCast.targetId - : ability?.target === "hostile" + : request.targetActorId !== undefined + ? request.targetActorId + : effectiveTarget === "hostile" ? state.selectedTargetId - : ability?.target === "friendly" - ? party.selectedMemberId + : effectiveTarget === "friendly" + ? state.selectedFriendlyActorId ?? party.selectedMemberId : null; let targetPosition: CombatPosition | null = null; - if (!failure && ability?.target === "hostile") { + if (!failure && ability && effectiveTarget === "hostile" && targeting?.shape !== "ground") { let target = targetId ? state.mobs[targetId] : null; if (!completingCast && (!target || target.dead) && state.settings.autoTargetNearest) { const maximumRange = talentAdjustedRange(ability.range.max, ability, modifiers); @@ -2920,27 +3793,54 @@ export const useCombatStore = create((set, get) => ({ else if (distance > talentAdjustedRange(ability.range.max, ability, modifiers)) failure = "out-of-range"; } } - } else if (!failure && ability?.target === "friendly" && targetId) { - const target = party.members.find((member) => member.id === targetId); - if (!target) failure = "target-unavailable"; - else if (target.health <= 0 && !ability.effects.some((effect) => effect.kind === "resurrection")) { + } else if (!failure && ability && effectiveTarget === "friendly" && targetId) { + const partyTarget = party.members.find((member) => member.id === targetId); + const target = state.actors[targetId] + ?? (partyTarget ? companionActorFromMember(partyTarget, entityAbsorbAmount(state.auras, targetId)) : null); + if (!target || !["companion", "pet", "totem", "summon"].includes(target.kind)) failure = "target-unavailable"; + else if (!target.alive && !ability.effects.some((effect) => effect.kind === "resurrection")) { failure = "target-dead"; } else { - targetPosition = getPartyRuntimePosition(targetId); + targetPosition = getPartyRuntimePosition(targetId) + ?? state.summons.find((summon) => summon.id === targetId)?.position + ?? null; if (!targetPosition) failure = "target-unavailable"; else { - const distance = Math.sqrt(partyRuntimeDistanceSquared(targetId, playerOrigin)); + const distance = Math.sqrt(distanceSquared(playerOrigin, targetPosition)); if (distance < talentAdjustedRange(ability.range.min, ability, modifiers)) failure = "too-close"; else if (distance > talentAdjustedRange(ability.range.max, ability, modifiers)) failure = "out-of-range"; } } } + if (!failure && ability && targeting?.requiresLineOfSight && targetPosition) { + if (!combatHasLineOfSight(playerOrigin, targetPosition)) failure = "line-of-sight"; + } + const playerSpatial = combatSpatialActor(PLAYER_AGGRO_ID); + const targetSpatial = targetId ? combatSpatialActor(targetId) : null; + if (!failure && ability && effectiveTarget === "hostile" && targeting?.requiresFacing && playerSpatial && targetPosition) { + if (!isPositionInFacingArc(playerSpatial, targetPosition, targeting.attackArcRadians ?? Math.PI)) { + failure = "not-facing"; + } + } + if (!failure && ability && effectiveTarget === "hostile" && targeting?.requiresBehindTarget && targetSpatial) { + if (!isSourceBehindTarget(playerOrigin, targetSpatial)) failure = "must-be-behind"; + } + let groundPosition: CombatPosition | null = completingCast?.groundPosition ?? null; + if (!failure && ability && targeting?.shape === "ground") { + const requestedGround = request.groundPosition ?? targetPosition ?? playerOrigin; + const maximumGroundRange = talentAdjustedRange(targeting.groundRange ?? ability.range.max, ability, modifiers); + const projected = projectCombatGroundPoint(requestedGround, maximumGroundRange, playerOrigin); + if (!projected || Math.sqrt(distanceSquared(playerOrigin, projected)) > maximumGroundRange) failure = "invalid-destination"; + else if (targeting.requiresLineOfSight && !combatHasLineOfSight(playerOrigin, projected)) failure = "line-of-sight"; + else groundPosition = [projected[0], projected[1], projected[2]]; + } + const autoAttackTarget = targetId ? state.mobs[targetId] : null; const startsAutoAttack = Boolean( ability - && ability.target === "hostile" + && effectiveTarget === "hostile" && abilityAttackKind(state.classId, ability) === "melee" && targetId && autoAttackTarget @@ -2963,7 +3863,7 @@ export const useCombatStore = create((set, get) => ({ feedback: nextFeedback("error", castFailureMessage(reason, state.resourceName, ability?.unlockLevel), { abilityId }), ...autoAttackUpdate, ...(completingCast - ? { playerAnimationEvent: nextAnimationEvent("ability-cancel", abilityId) } + ? { activeCast: null, playerAnimationEvent: nextAnimationEvent("ability-cancel", abilityId) } : {}), }); if (completingCast) emitPlayerAbilityCancellation(abilityId, now, playerOrigin); @@ -2971,13 +3871,36 @@ export const useCombatStore = create((set, get) => ({ } let affectedMobIds: string[] = []; - if (ability.radius !== undefined) { - const center = ability.target === "hostile" ? targetPosition! : playerOrigin; - affectedMobIds = nearbyMobRuntimeIds(center, talentAdjustedRange(ability.radius, ability, modifiers)).filter((id) => { + if (targeting?.shape === "chain" && effectiveTarget === "hostile" && targetId && targetPosition) { + let previous = targetPosition; + const ordered = [targetId, ...Object.keys(state.mobs).filter((id) => id !== targetId).sort()]; + for (const id of ordered) { + if (affectedMobIds.length >= (targeting.maximumTargets ?? 3)) break; const mob = state.mobs[id]; - return Boolean(mob && !mob.dead); + const position = getMobPosition(id); + if (!mob || mob.dead || !position) continue; + if (affectedMobIds.length > 0 && Math.sqrt(distanceSquared(previous, position)) > (targeting.jumpRange ?? 12)) continue; + if (!combatHasLineOfSight(previous, position)) continue; + affectedMobIds.push(id); + previous = position; + } + } else if (targeting?.shape === "cone" && effectiveTarget === "hostile") { + const maximumRange = talentAdjustedRange(ability.range.max, ability, modifiers); + affectedMobIds = nearbyMobRuntimeIds(playerOrigin, maximumRange).filter((id) => { + const mob = state.mobs[id]; + const position = getMobPosition(id); + return Boolean(mob && !mob.dead && position + && combatHasLineOfSight(playerOrigin, position) + && (!playerSpatial || isPositionInFacingArc(playerSpatial, position, targeting.attackArcRadians ?? Math.PI / 2))); }); - } else if (ability.target === "hostile" && targetId) { + } else if (ability.radius !== undefined || targeting?.shape === "ground") { + const center = groundPosition ?? (effectiveTarget === "hostile" ? targetPosition! : playerOrigin); + affectedMobIds = nearbyMobRuntimeIds(center, talentAdjustedRange(targeting?.radius ?? ability.radius ?? 0, ability, modifiers)).filter((id) => { + const mob = state.mobs[id]; + const position = getMobPosition(id); + return Boolean(mob && !mob.dead && position && combatHasLineOfSight(center, position)); + }); + } else if (effectiveTarget === "hostile" && targetId) { affectedMobIds = [targetId]; } @@ -2997,11 +3920,18 @@ export const useCombatStore = create((set, get) => ({ ); const cooldownMs = talentAdjustedCooldown(ability, modifiers); const spentPools = { ...state.resourcePools }; + const lastResourceSpentAt = { ...state.lastResourceSpentAt }; let healthAfterCosts = state.health; for (const cost of costsToSpend) { if (cost.resource === "health") healthAfterCosts = Math.max(1, healthAfterCosts - cost.amount); - else spentPools[cost.resource] = Math.max(0, (spentPools[cost.resource] ?? 0) - cost.amount); + else { + spentPools[cost.resource] = Math.max(0, (spentPools[cost.resource] ?? 0) - cost.amount); + if (cost.amount > 0) lastResourceSpentAt[cost.resource] = now; + } } + const spentRunes = runeCost && completingCast?.mode !== "channel" + ? spendDeathKnightRunes(state.deathKnightRunes, runeCost, now) + : state.deathKnightRunes; const activeResourceType = resourceProfileForClass(state.classId).type; const activeResourceAfterCosts = spentPools[activeResourceType] ?? state.resource - resourceCost; if (!completingCast && castTimeMs > 0) { @@ -3013,7 +3943,12 @@ export const useCombatStore = create((set, get) => ({ mode: ability.castMode === "channel" ? "channel" : "cast", startedAt: now, completesAt: now + castTimeMs, + originalDurationMs: castTimeMs, + pushbackHits: 0, + school: spellSchool, + canCastWhileMoving: canAbilityCastWhileMoving(ability), origin: [playerOrigin[0], playerOrigin[1], playerOrigin[2]], + groundPosition, totalTicks: ability.castMode === "channel" ? 5 : 0, ticksCompleted: 0, nextTickAt: ability.castMode === "channel" ? now + castTimeMs / 5 : 0, @@ -3029,9 +3964,25 @@ export const useCombatStore = create((set, get) => ({ health: activeCast.mode === "channel" ? healthAfterCosts : state.health, resource: activeCast.mode === "channel" ? activeResourceAfterCosts : state.resource, resourcePools: activeCast.mode === "channel" ? spentPools : state.resourcePools, + lastResourceSpentAt: activeCast.mode === "channel" ? lastResourceSpentAt : state.lastResourceSpentAt, + deathKnightRunes: activeCast.mode === "channel" && spentRunes ? spentRunes : state.deathKnightRunes, cooldowns: channelCooldowns, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: now, + kind: "cast", + sourceActorId: PLAYER_AURA_ENTITY_ID, + targetActorId: targetId ?? PLAYER_AURA_ENTITY_ID, + abilityId: ability.id, + school: spellSchool, + rawAmount: 0, + effectiveAmount: 0, + overheal: 0, + absorbed: 0, + critical: false, + outcome: "started", + }), globalCooldownEndsAt: now + gcdMs, - selectedTargetId: ability.target === "hostile" ? targetId : state.selectedTargetId, + selectedTargetId: effectiveTarget === "hostile" ? targetId : state.selectedTargetId, feedback: nextFeedback( "success", `${activeCast.mode === "channel" ? "Channeling" : "Casting"} ${ability.name}...`, @@ -3057,6 +4008,10 @@ export const useCombatStore = create((set, get) => ({ effects: [...state.effects], auras: [...state.auras], summons: [...state.summons], + areaEffects: [...state.areaEffects], + combatEvents: [...state.combatEvents], + actors: { ...state.actors }, + cooldowns: { ...state.cooldowns }, health: healthAfterCosts, maxHealth: state.maxHealth, shield: state.shield, @@ -3065,7 +4020,10 @@ export const useCombatStore = create((set, get) => ({ maxResource: state.maxResource, resourcePools: spentPools, maxResourcePools: { ...state.maxResourcePools }, + lastResourceSpentAt, comboPoints: state.comboPoints, + comboTargetId: state.comboTargetId, + deathKnightRunes: spentRunes ?? state.deathKnightRunes, progression, totalDamage: 0, totalHealing: 0, @@ -3078,7 +4036,28 @@ export const useCombatStore = create((set, get) => ({ }; const castThreatSource = playerThreatSource(state, ability.id); - const hasHostileEffect = ability.effects.some((effect) => ( + if (targeting?.shape === "ground" && groundPosition) { + const periodic = ability.effects.filter((effect) => effect.kind === "dot" || effect.kind === "hot"); + const durationMs = periodic.reduce((maximum, effect) => ( + Math.max(maximum, effect.ticks * effect.intervalMs) + ), 0); + if (durationMs > 0) { + areaEffectSequence += 1; + work.areaEffects.push({ + id: `area-effect-${areaEffectSequence}`, + sourceActorId: PLAYER_AGGRO_ID, + sourceAbilityId: ability.id, + position: groundPosition, + radius: talentAdjustedRange(targeting.radius ?? ability.radius ?? 8, ability, modifiers), + createdAt: now, + expiresAt: now + durationMs, + tickIntervalMs: Math.min(...periodic.map((effect) => effect.intervalMs)), + nextTickAt: now + Math.min(...periodic.map((effect) => effect.intervalMs)), + }); + } + } + + const hasHostileEffect = (ability.target !== "any" || effectiveTarget === "hostile") && ability.effects.some((effect) => ( effect.kind === "damage" || effect.kind === "finisher-damage" || effect.kind === "dot" @@ -3091,6 +4070,12 @@ export const useCombatStore = create((set, get) => ({ || effect.kind === "resource-drain" || effect.kind === "threat" )); + if (hasHostileEffect) { + work.auras = work.auras.filter((aura) => !( + aura.targetId === PLAYER_AURA_ENTITY_ID + && aura.definition.utilityTags?.includes("stealth") + )); + } if (hasHostileEffect) { for (const id of affectedMobIds) engageMobGroupInWork(work, id, now, castThreatSource.actorId); } @@ -3100,7 +4085,23 @@ export const useCombatStore = create((set, get) => ({ let playerPositionAfterEffects: CombatPosition = state.playerPosition; let clearedPlayerControl = false; const cooldownAdjustments: Array> = []; - for (const effect of ability.effects) { + const effectsToResolve = completingCast?.mode === "channel" + ? ability.effects.filter((effect) => !["damage", "heal", "dot", "hot", "resource-drain"].includes(effect.kind)) + : ability.effects; + for (const effect of effectsToResolve) { + if ( + ability.target === "any" + && effectiveTarget === "hostile" + && ["heal", "hot", "shield", "resurrection"].includes(effect.kind) + ) continue; + if ( + effect.kind === "apply-aura" + && ability.target === "any" + && ( + (effectiveTarget === "friendly" && effect.aura.disposition === "debuff") + || (effectiveTarget === "hostile" && effect.aura.disposition === "buff" && effect.recipient !== "caster") + ) + ) continue; if (effect.kind === "damage") { const amount = talentAdjustedAmount( equipmentAdjustedCombatAmount( @@ -3157,44 +4158,150 @@ export const useCombatStore = create((set, get) => ({ ); } work.comboPoints = 0; + work.comboTargetId = null; } else if (effect.kind === "heal") { - const friendlyTarget = ability.target === "friendly" && targetId - ? usePartyStore.getState().members.find((member) => member.id === targetId) + const partyMembers = usePartyStore.getState().members; + const friendlySummons = work.summons.filter((summon) => summon.health > 0); + const onlineFriendlies = onlinePlayerRuntimeActors().filter((actor) => actor.health > 0); + const selectedFriendly = effectiveTarget === "friendly" && targetId + ? partyMembers.find((member) => member.id === targetId) : null; - const healingTargetMaxHealth = friendlyTarget?.maxHealth ?? work.maxHealth; - const unmodifiedAmount = talentAdjustedAmount( - equipmentAdjustedCombatAmount( - effect, - work.progression.level, - work.gearStats, - state.classId, - ability, - ) - + Math.round(healingTargetMaxHealth * (effect.percentMaxHealth ?? 0)), - modifiers, - "healing-percent", - ability, - ); - const healingTargetId = friendlyTarget && targetId ? targetId : PLAYER_AURA_ENTITY_ID; - const amount = Math.round(resolveAuraHealingValue( - resolveAuraHealingValue( - unmodifiedAmount, - aurasForEntity(work.auras, PLAYER_AURA_ENTITY_ID), - "done", - ), - aurasForEntity(work.auras, healingTargetId), - "taken", - )); - const healed = friendlyTarget && targetId - ? usePartyStore.getState().healMember(targetId, amount) - : Math.min(amount, work.maxHealth - work.health); - if (!friendlyTarget) { - work.health += healed; - work.progression.health = work.health; + const selectedFriendlySummon = effectiveTarget === "friendly" && targetId + ? friendlySummons.find((summon) => summon.id === targetId) + : null; + const selectedOnlineFriendly = effectiveTarget === "friendly" && targetId + ? onlineFriendlies.find((actor) => actor.id === targetId) + : null; + const allLivingFriendlies = [ + PLAYER_AURA_ENTITY_ID, + ...partyMembers.filter((member) => member.health > 0).map((member) => member.id), + ...friendlySummons.map((summon) => summon.id), + ...onlineFriendlies.map((actor) => actor.id), + ]; + const friendlyPosition = (id: string): CombatPosition | null => id === PLAYER_AURA_ENTITY_ID + ? playerOrigin + : getPartyRuntimePosition(id) ?? friendlySummons.find((summon) => summon.id === id)?.position ?? null; + const healingCenter = groundPosition ?? (targetId ? friendlyPosition(targetId) : null) ?? playerOrigin; + let healingTargetIds: string[]; + if (targeting?.shape === "chain") { + const ordered = [...allLivingFriendlies].sort((left, right) => { + const selectedId = selectedFriendly?.id ?? selectedFriendlySummon?.id ?? PLAYER_AURA_ENTITY_ID; + if (left === selectedId) return -1; + if (right === selectedId) return 1; + const leftMember = partyMembers.find((member) => member.id === left); + const rightMember = partyMembers.find((member) => member.id === right); + const leftSummon = friendlySummons.find((summon) => summon.id === left); + const rightSummon = friendlySummons.find((summon) => summon.id === right); + const leftOnline = onlineFriendlies.find((actor) => actor.id === left); + const rightOnline = onlineFriendlies.find((actor) => actor.id === right); + const leftRatio = leftMember ? leftMember.health / leftMember.maxHealth + : leftSummon ? leftSummon.health / leftSummon.maxHealth + : leftOnline ? leftOnline.health / leftOnline.maxHealth + : work.health / work.maxHealth; + const rightRatio = rightMember ? rightMember.health / rightMember.maxHealth + : rightSummon ? rightSummon.health / rightSummon.maxHealth + : rightOnline ? rightOnline.health / rightOnline.maxHealth + : work.health / work.maxHealth; + return leftRatio - rightRatio || left.localeCompare(right); + }); + healingTargetIds = []; + for (const candidate of ordered) { + if (healingTargetIds.length >= (targeting.maximumTargets ?? 3)) break; + const position = friendlyPosition(candidate); + const previousPosition = healingTargetIds.length + ? friendlyPosition(healingTargetIds.at(-1)!) + : playerOrigin; + if (!position || !previousPosition) continue; + if (Math.sqrt(distanceSquared(previousPosition, position)) > (targeting.jumpRange ?? 12)) continue; + if (!combatHasLineOfSight(previousPosition, position)) continue; + healingTargetIds.push(candidate); + } + } else if ((targeting?.shape === "circle" || targeting?.shape === "ground") && effectiveTarget !== "hostile") { + const radius = talentAdjustedRange(targeting.radius ?? ability.radius ?? 0, ability, modifiers); + healingTargetIds = allLivingFriendlies.filter((id) => { + const position = friendlyPosition(id); + return Boolean(position + && Math.sqrt(distanceSquared(healingCenter, position)) <= radius + && combatHasLineOfSight(healingCenter, position)); + }); + } else { + healingTargetIds = [selectedFriendly?.id ?? selectedFriendlySummon?.id ?? selectedOnlineFriendly?.id ?? PLAYER_AURA_ENTITY_ID]; } - work.totalHealing += healed; - addHealingThreatInWork(work, castThreatSource, healed); - if (healed > 0) { + const casterStats = applyAuraStats( + playerCharacterStats(state.classId, state.level, state.gearStats, state.raceId, state.secondaryClassId, modifiers), + aurasForEntity(work.auras, PLAYER_AURA_ENTITY_ID), + ); + const criticalChance = Math.max(0, casterStats.spellCritPercent / 100); + let directHealing = 0; + for (const healingTargetId of [...new Set(healingTargetIds)]) { + const friendlyTarget = partyMembers.find((member) => member.id === healingTargetId); + const friendlySummon = work.summons.find((summon) => summon.id === healingTargetId); + const friendlyOnline = onlineFriendlies.find((actor) => actor.id === healingTargetId); + const healingTargetMaxHealth = friendlyTarget?.maxHealth ?? friendlySummon?.maxHealth ?? friendlyOnline?.maxHealth ?? work.maxHealth; + const healingTargetHealth = friendlyTarget?.health ?? friendlySummon?.health ?? friendlyOnline?.health ?? work.health; + const unmodifiedAmount = talentAdjustedAmount( + equipmentAdjustedCombatAmount( + effect, + work.progression.level, + work.gearStats, + state.classId, + ability, + ) + Math.round(healingTargetMaxHealth * (effect.percentMaxHealth ?? 0)), + modifiers, + "healing-percent", + ability, + ); + const amount = Math.round(resolveAuraHealingValue( + resolveAuraHealingValue( + unmodifiedAmount, + aurasForEntity(work.auras, PLAYER_AURA_ENTITY_ID), + "done", + ), + aurasForEntity(work.auras, healingTargetId), + "taken", + )); + const resolution = resolveHealing( + amount, + healingTargetHealth, + healingTargetMaxHealth, + criticalChance, + stableCombatUnit(`${PLAYER_AGGRO_ID}:${ability.id}:${healingTargetId}:${now}:heal`), + ); + const healed = friendlyTarget + ? healCompanionActorInWork(work, healingTargetId, resolution.rawAmount) + : friendlySummon + ? Math.min(resolution.rawAmount, friendlySummon.maxHealth - friendlySummon.health) + : friendlyOnline + ? Math.min(resolution.rawAmount, friendlyOnline.maxHealth - friendlyOnline.health) + : resolution.effectiveAmount; + if (friendlySummon && healed > 0) { + work.summons = work.summons.map((summon) => summon.id === healingTargetId + ? { ...summon, health: summon.health + healed } + : summon); + const actor = work.actors[healingTargetId]; + if (actor) work.actors[healingTargetId] = { ...actor, health: actor.health + healed, alive: true }; + } else if (friendlyOnline && healed > 0) { + const actor = work.actors[healingTargetId] ?? friendlyOnline; + work.actors[healingTargetId] = { ...actor, health: actor.health + healed, alive: true }; + } else if (!friendlyTarget) { + work.health += healed; + work.progression.health = work.health; + } + recordCombatEventInWork(work, { + occurredAt: now, + kind: "healing", + sourceActorId: PLAYER_AGGRO_ID, + targetActorId: healingTargetId, + abilityId: ability.id, + school: spellSchool, + rawAmount: resolution.rawAmount, + effectiveAmount: healed, + overheal: Math.max(0, resolution.rawAmount - healed), + absorbed: 0, + critical: resolution.critical, + }); + directHealing += healed; + if (healed <= 0) continue; evaluateProcsInWork(work, { trigger: "heal", subjectId: PLAYER_AURA_ENTITY_ID, @@ -3203,20 +4310,61 @@ export const useCombatStore = create((set, get) => ({ amount: healed, }, now); } + work.totalHealing += directHealing; + const beacon = work.auras.find((aura) => ( + aura.sourceId === PLAYER_AURA_ENTITY_ID + && !healingTargetIds.includes(aura.targetId) + && aura.definition.utilityTags?.includes("beacon-of-light") + )); + if (beacon?.targetId === PLAYER_AURA_ENTITY_ID) { + const beaconHealing = Math.min(directHealing, work.maxHealth - work.health); + work.health += beaconHealing; + work.progression.health = work.health; + work.totalHealing += beaconHealing; + } else if (beacon) { + work.totalHealing += healCompanionActorInWork(work, beacon.targetId, directHealing); + } + addHealingThreatInWork(work, castThreatSource, directHealing); } else if (effect.kind === "resurrection") { const restored = targetId - ? usePartyStore.getState().reviveMember(targetId, effect.percentMaxHealth) + ? reviveCompanionActorInWork(work, targetId, effect.percentMaxHealth) : 0; work.totalHealing += restored; + if (restored > 0 && targetId) recordCombatEventInWork(work, { + occurredAt: now, + kind: "resurrection", + sourceActorId: PLAYER_AGGRO_ID, + targetActorId: targetId, + abilityId: ability.id, + rawAmount: restored, + effectiveAmount: restored, + overheal: 0, + absorbed: 0, + critical: false, + }); addHealingThreatInWork(work, castThreatSource, restored); } else if (effect.kind === "summon") { summonSequence += 1; + if (/totem/i.test(ability.name)) { + work.summons = work.summons.filter((summon) => summon.exclusiveGroup !== "totem"); + } work.summons.push({ id: `player-summon-${summonSequence}`, sourceAbilityId: ability.id, creatureId: effect.creatureId, targetId, expiresAt: now + effect.durationMs, + kind: /totem/i.test(ability.name) ? "totem" : "summon", + name: ability.name, + ownerActorId: PLAYER_AGGRO_ID, + health: Math.max(1, Math.round(work.maxHealth * 0.3)), + maxHealth: Math.max(1, Math.round(work.maxHealth * 0.3)), + position: groundPosition ?? playerOrigin, + nextActionAt: now + 1_000, + pulseIntervalMs: /totem/i.test(ability.name) ? 2_000 : 2_200, + attackDamage: Math.max(1, Math.round(playerCombatPower(work.progression.level) * Math.max(0.15, effect.coefficient))), + ...initialSummonCombatRuntime(), + ...(/totem/i.test(ability.name) ? { exclusiveGroup: "totem" } : {}), }); if (ability.target === "hostile") { const amount = talentAdjustedAmount( @@ -3259,24 +4407,120 @@ export const useCombatStore = create((set, get) => ({ "healing-percent", ability, ); - work.shield = Math.max(work.shield, amount); - work.shieldExpiresAt = now + talentAdjustedDuration(effect.durationMs, ability, modifiers); + const durationMs = talentAdjustedDuration(effect.durationMs, ability, modifiers); + const partyMembers = usePartyStore.getState().members; + const recipients = ability.radius !== undefined + ? [PLAYER_AURA_ENTITY_ID, ...partyMembers.filter((member) => { + const position = getPartyRuntimePosition(member.id); + return member.health > 0 && Boolean(position + && Math.sqrt(distanceSquared(playerOrigin, position)) <= ability.radius! + && combatHasLineOfSight(playerOrigin, position)); + }).map((member) => member.id)] + : [targetId ?? PLAYER_AURA_ENTITY_ID]; + for (const recipientId of recipients) { + if (recipientId === PLAYER_AURA_ENTITY_ID) { + work.shield = Math.max(work.shield, amount); + work.shieldExpiresAt = now + durationMs; + } else { + work.auras = [...applyCombatAura(work.auras, { + definition: { + id: `shield:${ability.id}`, + name: ability.name, + icon: ability.icon, + disposition: "buff", + durationMs, + stackBehavior: "replace", + absorbs: [{ id: `${ability.id}:absorb`, amount }], + }, + sourceId: PLAYER_AURA_ENTITY_ID, + targetId: recipientId, + now, + }).auras]; + } + recordCombatEventInWork(work, { + occurredAt: now, + kind: "absorb", + sourceActorId: PLAYER_AGGRO_ID, + targetActorId: recipientId, + abilityId: ability.id, + school: spellSchool, + rawAmount: amount, + effectiveAmount: amount, + overheal: 0, + absorbed: amount, + critical: false, + }); + } } else if (effect.kind === "resource") { const resource = effect.resource ?? activeResourceType; + const friendlyResourceTarget = effectiveTarget === "friendly" && targetId + ? usePartyStore.getState().members.find((member) => member.id === targetId) + : null; + if (friendlyResourceTarget) { + const maximum = friendlyResourceTarget.resourceType === resource + ? friendlyResourceTarget.maxResource + : 100; + const current = friendlyResourceTarget.resourcePools[resource] ?? 0; + const requested = effect.percentage ? maximum * effect.amount / 100 : effect.amount; + const restored = Math.max(0, Math.min(requested, maximum - current)); + const actor = ensureCompanionActorInWork(work, friendlyResourceTarget.id); + if (actor) { + const pool = actor.resources[resource] ?? normalizeActorResourcePool(resource, current, maximum); + const next = Object.freeze({ + ...actor, + resources: Object.freeze({ + ...actor.resources, + [resource]: Object.freeze({ ...pool, current: current + restored }), + }), + }); + work.actors[friendlyResourceTarget.id] = next; + mirrorCompanionActor(next); + } + recordCombatEventInWork(work, { + occurredAt: now, + kind: "resource", + sourceActorId: PLAYER_AGGRO_ID, + targetActorId: friendlyResourceTarget.id, + abilityId: ability.id, + rawAmount: requested, + effectiveAmount: restored, + overheal: Math.max(0, requested - restored), + absorbed: 0, + critical: false, + }); + continue; + } const targetAuras = aurasForEntity(work.auras, PLAYER_AURA_ENTITY_ID); + const maximum = work.maxResourcePools[resource] + ?? (resource === activeResourceType ? work.maxResource : defaultResourceMaximum(resource)); + const rawAmount = effect.percentage ? maximum * effect.amount / 100 : effect.amount; const amount = resolveAuraResourceValue( - resolveAuraResourceValue(effect.amount, targetAuras, resource, "generation"), + resolveAuraResourceValue(rawAmount, targetAuras, resource, "generation"), targetAuras, "power", "generation", ); - const maximum = work.maxResourcePools[resource] - ?? (resource === activeResourceType ? work.maxResource : defaultResourceMaximum(resource)); - work.resourcePools[resource] = clamp((work.resourcePools[resource] ?? 0) + amount, 0, maximum); + const resourceBefore = work.resourcePools[resource] ?? 0; + work.resourcePools[resource] = clamp(resourceBefore + amount, 0, maximum); if (resource === activeResourceType) work.resource = work.resourcePools[resource] ?? work.resource; + recordCombatEventInWork(work, { + occurredAt: now, + kind: "resource", + sourceActorId: PLAYER_AGGRO_ID, + targetActorId: PLAYER_AURA_ENTITY_ID, + abilityId: ability.id, + rawAmount: amount, + effectiveAmount: (work.resourcePools[resource] ?? 0) - resourceBefore, + overheal: Math.max(0, amount - ((work.resourcePools[resource] ?? 0) - resourceBefore)), + absorbed: 0, + critical: false, + }); } else if (effect.kind === "combo") { - work.comboPoints = clamp(work.comboPoints + effect.amount, 0, 5); + const comboTargetId = targetId && work.mobs[targetId] ? targetId : null; + work.comboPoints = clamp((work.comboTargetId === comboTargetId ? work.comboPoints : 0) + effect.amount, 0, 5); + work.comboTargetId = comboTargetId; } else if (effect.kind === "dot") { + if (targeting?.shape === "ground") continue; for (const id of affectedMobIds) { work.effects = work.effects.filter((entry) => !( entry.kind === "dot" @@ -3298,7 +4542,8 @@ export const useCombatStore = create((set, get) => ({ )); } } else if (effect.kind === "hot") { - const hotTargetId = ability.target === "friendly" ? targetId : null; + if (targeting?.shape === "ground") continue; + const hotTargetId = effectiveTarget === "friendly" ? targetId : null; work.effects = work.effects.filter((entry) => !( entry.kind === "hot" && entry.sourceAbilityId === ability.id @@ -3308,16 +4553,34 @@ export const useCombatStore = create((set, get) => ({ "hot", ability.id, castThreatSource.actorId, hotTargetId, effect, effect.ticks, effect.intervalMs, now, )); } else if (effect.kind === "taunt") { - const candidates = effect.maxTargets ? affectedMobIds.slice(0, effect.maxTargets) : affectedMobIds; + const friendlyAttackers = effectiveTarget === "friendly" && targetId + ? Object.values(work.mobs) + .filter((mob) => !mob.dead && mob.targetActorId === targetId) + .map((mob) => mob.id) + : []; + const tauntTargets = affectedMobIds.length ? affectedMobIds : friendlyAttackers; + const candidates = effect.maxTargets ? tauntTargets.slice(0, effect.maxTargets) : tauntTargets; const durationMs = talentAdjustedDuration(effect.durationMs, ability, modifiers); for (const id of candidates) { const mob = work.mobs[id]; if (!mob || mob.dead) continue; + const previous = mob.tauntDiminishingReturns; + const applications = mob.boss && previous && previous.resetAt > now ? previous.applications : 0; + const multiplier = mob.boss ? [1, 0.65, 0.4225, 0][Math.min(3, applications)] : 1; + const effectiveDurationMs = Math.round(durationMs * multiplier); + const tauntDiminishingReturns = mob.boss + ? { applications: Math.min(3, applications + 1), resetAt: now + 15_000 } + : mob.tauntDiminishingReturns; + if (effectiveDurationMs <= 0) { + work.mobs[id] = { ...mob, tauntDiminishingReturns }; + continue; + } work.mobs[id] = { ...mob, + tauntDiminishingReturns, threatByActor: tauntThreat(mob.threatByActor, castThreatSource.actorId), targetActorId: castThreatSource.actorId, - forcedTarget: { actorId: castThreatSource.actorId, endsAt: now + durationMs }, + forcedTarget: { actorId: castThreatSource.actorId, endsAt: now + effectiveDurationMs }, }; } } else if (effect.kind === "status") { @@ -3330,13 +4593,20 @@ export const useCombatStore = create((set, get) => ({ }, ability.id, now); } } else if (effect.kind === "apply-aura") { - const durationMs = effect.aura.durationMs === null + const sourceDurationMs = holyAuraFriendly && ability.name === "Holy Aura" && effect.aura.durationMs !== null + ? Math.max(1_000, effect.aura.durationMs - 2_000) + : effect.aura.durationMs; + const durationMs = sourceDurationMs === null ? null - : talentAdjustedDuration(effect.aura.durationMs, ability, modifiers); + : talentAdjustedDuration(sourceDurationMs, ability, modifiers); const auraDefinition = auraDefinitionForAbility(effect.aura, ability, durationMs); - const recipients = effect.recipient === "caster" + const recipients = effect.scope === "party" + ? [PLAYER_AURA_ENTITY_ID, ...usePartyStore.getState().members.filter((member) => member.health > 0).map((member) => member.id)] + : holyAuraFriendly && ability.name === "Holy Aura" && targetId + ? [targetId] + : effect.recipient === "caster" ? [PLAYER_AURA_ENTITY_ID] - : ability.target === "hostile" + : effectiveTarget === "hostile" ? affectedMobIds : [targetId ?? PLAYER_AURA_ENTITY_ID]; for (const recipientId of recipients) { @@ -3346,6 +4616,19 @@ export const useCombatStore = create((set, get) => ({ targetId: recipientId, now, }).auras]; + if (auraDefinition.controlImmunities?.length) { + if ( + recipientId === PLAYER_AURA_ENTITY_ID + && state.controlMechanic + && auraDefinition.controlImmunities.includes(state.controlMechanic) + ) clearedPlayerControl = true; + else if (recipientId !== PLAYER_AURA_ENTITY_ID) { + const member = usePartyStore.getState().members.find((candidate) => candidate.id === recipientId); + if (member?.controlMechanic && auraDefinition.controlImmunities.includes(member.controlMechanic)) { + clearCompanionControlInWork(work, recipientId); + } + } + } if (effect.control && work.mobs[recipientId]) { const durationMs = auraDefinition.durationMs ?? 1_000; work.mobs[recipientId] = applyStatus(work.mobs[recipientId], { @@ -3357,7 +4640,7 @@ export const useCombatStore = create((set, get) => ({ } } } else if (effect.kind === "dispel") { - const primaryRecipientId = ability.target === "hostile" + const primaryRecipientId = effectiveTarget === "hostile" ? targetId : targetId ?? PLAYER_AURA_ENTITY_ID; const recipientIds = effect.scope === "party" @@ -3392,7 +4675,7 @@ export const useCombatStore = create((set, get) => ({ if ( recipientId !== PLAYER_AURA_ENTITY_ID && result.removed.some((removed) => removed.definition.id.startsWith("enemy-control:")) - ) usePartyStore.getState().clearMemberControl(recipientId); + ) clearCompanionControlInWork(work, recipientId); if (effect.mode === "steal") { for (const removed of result.removed) { work.auras = [...applyCombatAura(work.auras, { @@ -3466,10 +4749,14 @@ export const useCombatStore = create((set, get) => ({ if (resource === activeResourceType) work.resource = work.resourcePools[resource] ?? work.resource; } } else if (effect.kind === "threat") { - for (const id of affectedMobIds) { + const threatTargets = affectedMobIds.length ? affectedMobIds : Object.keys(work.mobs); + for (const id of threatTargets) { const mob = work.mobs[id]; if (!mob || mob.dead) continue; - const currentThreat = mob.threatByActor[castThreatSource.actorId] ?? 0; + const threatActorId = effect.recipient === "ability-target" && targetId && !work.mobs[targetId] + ? targetId + : castThreatSource.actorId; + const currentThreat = mob.threatByActor[threatActorId] ?? 0; const nextThreat = effect.mode === "redirect" ? 0 : effect.mode === "percent" @@ -3477,7 +4764,13 @@ export const useCombatStore = create((set, get) => ({ : Math.max(0, currentThreat + effect.amount); work.mobs[id] = { ...mob, - threatByActor: { ...mob.threatByActor, [castThreatSource.actorId]: nextThreat }, + threatByActor: { + ...mob.threatByActor, + [threatActorId]: nextThreat, + ...(effect.mode === "redirect" && targetId && !work.mobs[targetId] + ? { [targetId]: (mob.threatByActor[targetId] ?? 0) + currentThreat } + : {}), + }, }; } } else if (effect.kind === "movement") { @@ -3495,33 +4788,78 @@ export const useCombatStore = create((set, get) => ({ const length = Math.max(0.001, Math.hypot(dx, dz)); setMobPosition(id, [position[0] + dx / length * 4, position[1], position[2] + dz / length * 4]); } + } else if (effect.toward === "away") { + const referenceId = state.selectedTargetId + ?? nearbyMobRuntimeIds(state.playerPosition, 40).find((id) => !work.mobs[id]?.dead) + ?? null; + const reference = referenceId ? getMobPosition(referenceId) : null; + const dx = reference ? state.playerPosition[0] - reference[0] : 0; + const dz = reference ? state.playerPosition[2] - reference[2] : 1; + const length = Math.max(0.001, Math.hypot(dx, dz)); + playerPositionAfterEffects = [ + state.playerPosition[0] + dx / length * 8, + state.playerPosition[1], + state.playerPosition[2] + dz / length * 8, + ]; } else if (targetPosition) { playerPositionAfterEffects = [targetPosition[0], targetPosition[1], targetPosition[2]]; } } else if (effect.kind === "dispel-mechanic") { + const mechanicStatus: Partial> = { + 1: "charm", + 3: "disarm", + 5: "fear", + 7: "root", + 9: "silence", + 10: "sleep", + 11: "slow", + 12: "stun", + }; for (const id of affectedMobIds) { const mob = work.mobs[id]; - if (mob) work.mobs[id] = { ...mob, statuses: mob.statuses.slice(effect.maxCount) }; + if (!mob) continue; + const wanted = mechanicStatus[effect.mechanic]; + let removed = 0; + work.mobs[id] = { + ...mob, + statuses: mob.statuses.filter((status) => { + if (removed >= effect.maxCount || (wanted && status.kind !== wanted)) return true; + removed += 1; + return false; + }), + }; } } else if (effect.kind === "pet") { - if ((effect.action === "summon" || effect.action === "call" || effect.action === "tame") && effect.creatureId) { + if (["summon", "call", "recall", "resurrect", "tame"].includes(effect.action)) { summonSequence += 1; - work.summons.push({ - id: `player-pet-${summonSequence}`, - sourceAbilityId: ability.id, - creatureId: effect.creatureId, - targetId, - expiresAt: Number.MAX_SAFE_INTEGER, - }); + const existingPet = work.summons.find((summon) => summon.id.startsWith("player-pet-")); + if (!existingPet) { + work.summons.push({ + id: `player-pet-${summonSequence}`, + sourceAbilityId: ability.id, + creatureId: effect.creatureId ?? 1, + targetId, + expiresAt: Number.MAX_SAFE_INTEGER, + kind: "pet", + name: ability.name, + ownerActorId: PLAYER_AGGRO_ID, + health: Math.max(1, Math.round(work.maxHealth * 0.5)), + maxHealth: Math.max(1, Math.round(work.maxHealth * 0.5)), + position: playerOrigin, + nextActionAt: now + 1_000, + pulseIntervalMs: 2_000, + attackDamage: Math.max(1, Math.round(playerCombatPower(work.progression.level) * 0.35)), + ...initialSummonCombatRuntime(), + exclusiveGroup: "combat-pet", + }); + } } else if (effect.action === "dismiss") { - work.summons = work.summons.filter((summon) => summon.sourceAbilityId !== ability.id); + work.summons = work.summons.filter((summon) => !summon.id.startsWith("player-pet-")); } } else if (effect.kind === "totem") { - work.summons = []; + work.summons = work.summons.filter((summon) => !/totem/i.test(abilityById(summon.sourceAbilityId)?.name ?? "")); } else if (effect.kind === "rune") { - const maximum = work.maxResourcePools["runic-power"] ?? 100; - work.resourcePools["runic-power"] = clamp((work.resourcePools["runic-power"] ?? 0) + effect.count * 10, 0, maximum); - if (activeResourceType === "runic-power") work.resource = work.resourcePools["runic-power"] ?? work.resource; + work.deathKnightRunes = activateDeathKnightRunes(work.deathKnightRunes, effect.count); } else if (effect.kind === "cooldown-reset") { cooldownAdjustments.push(effect); } else if (effect.kind === "trigger-spell") { @@ -3535,15 +4873,91 @@ export const useCombatStore = create((set, get) => ({ 0, ); } + } else if (effect.kind === "utility") { + if (effect.action === "create-item") { + if (/water|mana|spellstone/i.test(ability.name)) { + const restored = Math.max(1, Math.round(work.maxResource * 0.25)); + work.resource = clamp(work.resource + restored, 0, work.maxResource); + work.resourcePools[activeResourceType] = work.resource; + } else if (/food|refreshment|health|firestone/i.test(ability.name)) { + const healed = Math.min(Math.max(1, Math.round(work.maxHealth * 0.25)), work.maxHealth - work.health); + work.health += healed; + work.progression.health = work.health; + work.totalHealing += healed; + } + } else if (effect.action === "portal") { + summonSequence += 1; + work.summons.push({ + id: `player-utility-${summonSequence}`, + sourceAbilityId: ability.id, + creatureId: effect.miscValue, + targetId: null, + expiresAt: now + Math.max(30_000, effect.durationMs), + kind: "summon", + name: ability.name, + ownerActorId: PLAYER_AGGRO_ID, + health: 1, + maxHealth: 1, + position: playerOrigin, + nextActionAt: Number.MAX_SAFE_INTEGER, + pulseIntervalMs: 0, + attackDamage: 0, + ...initialSummonCombatRuntime(), + }); + } else if (effect.action === "class-script" && ability.name === "Divine Intervention") { + work.health = 1; + work.progression.health = 1; + } else if (effect.action === "class-script" && ability.id === "rom-rogue-rom-warden-elite-60") { + const revival = work.auras.find((aura) => ( + aura.targetId === PLAYER_AURA_ENTITY_ID + && aura.definition.utilityTags?.includes("rom-revival-charge") + )); + const restored = Math.min( + work.maxHealth - work.health, + Math.round(work.maxHealth * 0.05 * (revival?.stacks ?? 0)), + ); + work.health += restored; + work.progression.health = work.health; + work.totalHealing += restored; + if (revival) work.auras = work.auras.filter((aura) => aura.instanceId !== revival.instanceId); + } } } + const consumedRuneWakerTags = ability.id === "rom-mage-primary-55" + ? ["rom-charged"] + : ability.id === "rom-mage-primary-56" + ? ["rom-static-field-charge"] + : holyAuraFriendly && ability.name === "Holy Aura" + ? ["rom-holy-salvation-candle"] + : []; + if (consumedRuneWakerTags.length) { + work.auras = work.auras.filter((aura) => !( + aura.targetId === PLAYER_AURA_ENTITY_ID + && consumedRuneWakerTags.some((tag) => aura.definition.utilityTags?.includes(tag)) + )); + } + evaluateProcsInWork(work, { trigger: "cast", subjectId: PLAYER_AURA_ENTITY_ID, otherId: targetId ?? undefined, abilityId: ability.id, }, now); + recordCombatEventInWork(work, { + occurredAt: now, + kind: "cast", + sourceActorId: PLAYER_AURA_ENTITY_ID, + targetActorId: targetId ?? PLAYER_AURA_ENTITY_ID, + abilityId: ability.id, + school: spellSchool, + rawAmount: 0, + effectiveAmount: 0, + overheal: 0, + absorbed: 0, + critical: false, + outcome: "completed", + }); // Judgement of Light restores 2% health when the marked target is struck. if (work.totalDamage > 0 && targetId && work.mobs[targetId]?.statuses.some((entry) => entry.kind === "marked")) { @@ -3554,9 +4968,9 @@ export const useCombatStore = create((set, get) => ({ addHealingThreatInWork(work, castThreatSource, healed); } - const cooldowns: Record = { ...state.cooldowns }; - if (cooldownMs > 0) cooldowns[ability.id] = now + cooldownMs; - if (ability.cooldownGroup) { + const cooldowns: Record = { ...work.cooldowns }; + if (cooldownMs > 0 && completingCast?.mode !== "channel") cooldowns[ability.id] = now + cooldownMs; + if (ability.cooldownGroup && completingCast?.mode !== "channel") { for (const grouped of state.abilities.filter((entry) => entry.cooldownGroup === ability.cooldownGroup)) { cooldowns[grouped.id] = now + Math.max(cooldownMs, talentAdjustedCooldown(grouped, modifiers)); } @@ -3567,7 +4981,13 @@ export const useCombatStore = create((set, get) => ({ : state.abilities; for (const candidate of candidates) { if (adjustment.mode === "reset") cooldowns[candidate.id] = 0; - else cooldowns[candidate.id] = Math.max(now, (cooldowns[candidate.id] ?? now) - (adjustment.amountMs ?? 0)); + else { + const readyAt = cooldowns[candidate.id] ?? now; + const reduction = adjustment.amountPercent !== undefined + ? Math.max(0, readyAt - now) * Math.max(0, Math.min(1, adjustment.amountPercent)) + : adjustment.amountMs ?? 0; + cooldowns[candidate.id] = Math.max(now, readyAt - reduction); + } } } @@ -3577,6 +4997,13 @@ export const useCombatStore = create((set, get) => ({ : primaryCombatResult ? `${ability.name} ${combatResultDescription(primaryCombatResult)}.` : `${ability.name}${work.totalDamage ? ` dealt ${work.totalDamage}` : ""}${work.totalHealing ? ` healed ${work.totalHealing}` : ""}.`; + const activeSummonIds = new Set(work.summons.map((summon) => summon.id)); + for (const [actorId, actor] of Object.entries(work.actors)) { + if (["pet", "totem", "summon"].includes(actor.kind) && !activeSummonIds.has(actorId)) delete work.actors[actorId]; + } + for (const summon of work.summons) { + work.actors[summon.id] = combatActorFromSummon(summon, work.progression.level, work.auras); + } set({ level: work.progression.level, xp: work.progression.xp, @@ -3589,15 +5016,21 @@ export const useCombatStore = create((set, get) => ({ maxResource: work.maxResource, resourcePools: { ...work.resourcePools, [activeResourceType]: clamp(work.resource, 0, work.maxResource) }, maxResourcePools: work.maxResourcePools, + lastResourceSpentAt: work.lastResourceSpentAt, + deathKnightRunes: work.deathKnightRunes, talentModifiers: work.talentModifiers, comboPoints: work.comboPoints, + comboTargetId: work.comboTargetId, mobs: work.mobs, auras: work.auras, + combatEvents: work.combatEvents, + actors: work.actors, effects: work.effects.length === state.effects.length && work.effects.every((effect, index) => effect === state.effects[index]) ? state.effects : work.effects, summons: work.summons, + areaEffects: work.areaEffects, lastCombatResult: work.combatResults.at(-1) ?? state.lastCombatResult, cooldowns, globalCooldownEndsAt: completingCast ? state.globalCooldownEndsAt : now + gcdMs, @@ -3646,6 +5079,15 @@ export const useCombatStore = create((set, get) => ({ set({ feedback: nextFeedback("error", "That controller binding is empty.") }); return emptyCastResult("unknown-ability"); } + const ability = abilityById(abilityId); + if (ability && targetingRulesForAbility(ability).shape === "ground") { + const pending = get().pendingGroundTarget; + if (pending?.abilityId !== abilityId) { + get().beginGroundTarget(abilityId); + return { ...emptyCastResult(), ok: true, abilityId }; + } + return get().confirmGroundTarget(undefined, now); + } return get().castAbility(abilityId, origin, now); }, @@ -3660,6 +5102,10 @@ export const useCombatStore = create((set, get) => ({ effects: [...state.effects], auras: [...state.auras], summons: [...state.summons], + areaEffects: [...state.areaEffects], + combatEvents: [...state.combatEvents], + actors: { ...state.actors }, + cooldowns: { ...state.cooldowns }, health: state.health, maxHealth: state.maxHealth, shield: state.shield, @@ -3668,7 +5114,10 @@ export const useCombatStore = create((set, get) => ({ maxResource: state.maxResource, resourcePools: { ...state.resourcePools }, maxResourcePools: { ...state.maxResourcePools }, + lastResourceSpentAt: { ...state.lastResourceSpentAt }, comboPoints: state.comboPoints, + comboTargetId: state.comboTargetId, + deathKnightRunes: state.deathKnightRunes, progression, totalDamage: 0, totalHealing: 0, @@ -3707,6 +5156,9 @@ export const useCombatStore = create((set, get) => ({ set({ mobs: work.mobs, auras: work.auras, + combatEvents: work.combatEvents, + actors: work.actors, + cooldowns: work.cooldowns, level: progression.level, xp: progression.xp, xpToNext: progression.xpToNext, @@ -3720,6 +5172,7 @@ export const useCombatStore = create((set, get) => ({ autoAttackTargetId: work.mobs[id]?.dead && state.autoAttackTargetId === id ? null : state.autoAttackTargetId, nextAutoAttackAt: work.mobs[id]?.dead && state.autoAttackTargetId === id ? 0 : state.nextAutoAttackAt, comboPoints: work.mobs[id]?.dead && state.selectedTargetId === id ? 0 : state.comboPoints, + comboTargetId: work.mobs[id]?.dead && state.comboTargetId === id ? null : state.comboTargetId, feedback: result.levelsGained > 0 ? nextFeedback("level-up", levelUpMessage(state.classId, state.level, progression.level)) : result.combatResult @@ -3757,8 +5210,19 @@ export const useCombatStore = create((set, get) => ({ tauntMob: (id, source, durationMs, now = Date.now()) => { const target = get().mobs[id]; if (!target || target.dead || durationMs <= 0) return false; + const previous = target.tauntDiminishingReturns; + const applications = target.boss && previous && previous.resetAt > now ? previous.applications : 0; + const multiplier = target.boss ? [1, 0.65, 0.4225, 0][Math.min(3, applications)] : 1; + const effectiveDurationMs = Math.round(durationMs * multiplier); + const nextDiminishing = target.boss + ? { applications: Math.min(3, applications + 1), resetAt: now + 15_000 } + : target.tauntDiminishingReturns; set((state) => { const mobs: Record = { ...state.mobs }; + if (effectiveDurationMs <= 0) { + mobs[id] = { ...mobs[id], tauntDiminishingReturns: nextDiminishing }; + return { mobs }; + } const groupId = mobGroupId(id); const groupWasEngaged = Object.entries(mobs).some(([mobId, mob]) => ( mobGroupId(mobId) === groupId && mob.engaged && !mob.dead @@ -3770,12 +5234,13 @@ export const useCombatStore = create((set, get) => ({ : seedActorThreat(mob.threatByActor, source.actorId); mobs[mobId] = { ...mob, + ...(mobId === id ? { tauntDiminishingReturns: nextDiminishing } : {}), threatByActor: mobId === id ? tauntThreat(seeded, source.actorId) : seeded, targetActorId: mobId === id ? source.actorId : (mob.targetActorId ?? (groupWasEngaged ? null : source.actorId)), forcedTarget: mobId === id - ? { actorId: source.actorId, endsAt: now + Math.max(1, durationMs) } + ? { actorId: source.actorId, endsAt: now + Math.max(1, effectiveDurationMs) } : mob.forcedTarget, engaged: true, combatPhase: "chasing", @@ -3790,11 +5255,469 @@ export const useCombatStore = create((set, get) => ({ } return { mobs }; }); + return effectiveDurationMs > 0; + }, + + interruptMob: (id, sourceAbilityId, lockoutMs, now = Date.now()) => { + let interrupted = false; + set((state) => { + const mob = state.mobs[id]; + if (!mob?.activeCast?.interruptible) return state; + const next = applyStatus(mob, { + kind: "status", + status: "interrupt", + durationMs: Math.max(1, lockoutMs), + }, sourceAbilityId, now); + interrupted = next.activeCast === null; + return interrupted ? { mobs: { ...state.mobs, [id]: next } } : state; + }); + return interrupted; + }, + + controlMob: (id, sourceAbilityId, status, durationMs, now = Date.now()) => { + let controlled = false; + set((state) => { + const mob = state.mobs[id]; + if (!mob || mob.dead) return state; + const next = applyStatus(mob, { + kind: "status", + status, + durationMs: Math.max(1, durationMs), + }, sourceAbilityId, now); + controlled = next.statuses.some((entry) => ( + entry.sourceAbilityId === sourceAbilityId + && entry.kind === status + && entry.endsAt > now + )); + return controlled ? { mobs: { ...state.mobs, [id]: next } } : state; + }); + return controlled; + }, + + dispelActor: (id, categories, maxCount = 1) => { + let removedCount = 0; + let clearedCompanionActor: CombatActorState | null = null; + set((state) => { + const targeted = state.auras.filter((aura) => aura.targetId === id); + const untouched = state.auras.filter((aura) => aura.targetId !== id); + const result = dispelCombatAuras(targeted, { + relationship: "friendly", + categories, + maxCount: Math.max(1, Math.trunc(maxCount)), + }); + removedCount = result.removed.length; + if (!removedCount) return state; + if (id === PLAYER_AURA_ENTITY_ID && result.removed.some((aura) => aura.definition.id.startsWith("enemy-control:"))) { + return { auras: [...untouched, ...result.auras], controlledUntil: 0, controlMechanic: null }; + } + if (result.removed.some((aura) => aura.definition.id.startsWith("enemy-control:"))) { + const member = usePartyStore.getState().members.find((candidate) => candidate.id === id); + if (member) { + const actor = companionActorFromMember( + member, + entityAbsorbAmount(state.auras, id), + state.actors[id], + ); + clearedCompanionActor = { ...actor, controlledUntil: 0 }; + return { + auras: [...untouched, ...result.auras], + actors: { ...state.actors, [id]: clearedCompanionActor }, + }; + } + } + return { auras: [...untouched, ...result.auras] }; + }); + if (clearedCompanionActor) mirrorCompanionActor(clearedCompanionActor); + return removedCount; + }, + + healActor: (id, amount, request) => { + const now = request.now ?? Date.now(); + const state = get(); + const sourceAuras = aurasForEntity(state.auras, request.sourceActorId); + const targetAuras = aurasForEntity(state.auras, id); + const modified = request.amountAlreadyModified + ? amount + : resolveAuraHealingValue( + resolveAuraHealingValue(amount, sourceAuras, "done"), + targetAuras, + "taken", + ); + const partyMember = usePartyStore.getState().members.find((member) => member.id === id); + const summon = state.summons.find((candidate) => candidate.id === id); + const actor = partyMember + ? companionActorFromMember(partyMember, entityAbsorbAmount(state.auras, id), state.actors[id]) + : state.actors[id]; + const currentHealth = id === PLAYER_AURA_ENTITY_ID + ? state.health + : summon?.health ?? actor?.health ?? 0; + const maximumHealth = id === PLAYER_AURA_ENTITY_ID + ? state.maxHealth + : summon?.maxHealth ?? actor?.maxHealth ?? 0; + if (currentHealth <= 0 || maximumHealth <= 0) return resolveHealing(0, currentHealth, maximumHealth); + const resolution = resolveHealing( + modified, + currentHealth, + maximumHealth, + request.criticalChance ?? 0, + stableCombatUnit(request.seed ?? `${request.sourceActorId}:${request.abilityId ?? "heal"}:${id}:${now}`), + request.criticalMultiplier ?? 1.5, + ); + let healedCompanion: CombatActorState | null = null; + set((current) => { + const combatEvents = recordCombatEvent(current.combatEvents, { + occurredAt: now, + kind: "healing", + sourceActorId: request.sourceActorId, + targetActorId: id, + ...(request.abilityId ? { abilityId: request.abilityId } : {}), + ...(request.school ? { school: request.school } : {}), + rawAmount: resolution.rawAmount, + effectiveAmount: resolution.effectiveAmount, + overheal: resolution.overheal, + absorbed: 0, + critical: resolution.critical, + }); + if (id === PLAYER_AURA_ENTITY_ID) { + const playerActor = current.actors[id]; + return { + health: current.health + resolution.effectiveAmount, + actors: playerActor ? { + ...current.actors, + [id]: { ...playerActor, health: current.health + resolution.effectiveAmount, alive: true }, + } : current.actors, + combatEvents, + }; + } + const activeSummon = current.summons.find((candidate) => candidate.id === id); + if (activeSummon) { + const nextHealth = activeSummon.health + resolution.effectiveAmount; + const summonActor = current.actors[id]; + return { + summons: current.summons.map((candidate) => candidate.id === id + ? { ...candidate, health: nextHealth } + : candidate), + actors: summonActor ? { + ...current.actors, + [id]: { ...summonActor, health: nextHealth, alive: true }, + } : current.actors, + combatEvents, + }; + } + if (!partyMember || !actor) return { combatEvents }; + healedCompanion = { ...actor, health: actor.health + resolution.effectiveAmount, alive: true }; + return { + actors: { ...current.actors, [id]: healedCompanion }, + combatEvents, + }; + }); + if (healedCompanion) mirrorCompanionActor(healedCompanion); + return resolution; + }, + + reviveActor: (id, percentMaxHealth, sourceActorId, abilityId, now = Date.now()) => { + const state = get(); + const fraction = clamp(percentMaxHealth, 0.01, 1); + if (id === PLAYER_AURA_ENTITY_ID) { + const restored = state.health > 0 ? 0 : Math.max(1, Math.round(state.maxHealth * fraction)); + if (restored <= 0) return 0; + set({ + health: restored, + controlledUntil: 0, + controlMechanic: null, + feedback: nextFeedback("heal", `Resurrected with ${restored} health.`, { amount: restored, abilityId }), + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: now, + kind: "resurrection", + sourceActorId, + targetActorId: id, + ...(abilityId ? { abilityId } : {}), + rawAmount: restored, + effectiveAmount: restored, + overheal: 0, + absorbed: 0, + critical: false, + }), + }); + return restored; + } + const member = usePartyStore.getState().members.find((candidate) => candidate.id === id); + if (!member) { + const onlineActor = onlinePlayerRuntimeActor(id); + if (!onlineActor || onlineActor.health > 0) return 0; + const restored = Math.max(1, Math.round(onlineActor.maxHealth * fraction)); + set({ + actors: { + ...state.actors, + [id]: { ...onlineActor, health: restored, alive: true, controlledUntil: 0, cast: null }, + }, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: now, + kind: "resurrection", + sourceActorId, + targetActorId: id, + ...(abilityId ? { abilityId } : {}), + rawAmount: restored, + effectiveAmount: restored, + overheal: 0, + absorbed: 0, + critical: false, + }), + }); + return restored; + } + const actor = companionActorFromMember(member, entityAbsorbAmount(state.auras, id), state.actors[id]); + if (actor.alive || actor.health > 0) return 0; + const restored = Math.max(1, Math.round(actor.maxHealth * fraction)); + const nextActor: CombatActorState = { + ...actor, + health: restored, + alive: true, + controlledUntil: 0, + cast: null, + }; + set({ + actors: { ...state.actors, [id]: nextActor }, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: now, + kind: "resurrection", + sourceActorId, + targetActorId: id, + ...(abilityId ? { abilityId } : {}), + rawAmount: restored, + effectiveAmount: restored, + overheal: 0, + absorbed: 0, + critical: false, + }), + }); + mirrorCompanionActor(nextActor); + return restored; + }, + + restoreActorResource: (id, resource, amount, percentage = false, sourceActorId = id, abilityId, now = Date.now()) => { + const state = get(); + const actor = state.actors[id]; + if (!actor) return 0; + const pool = actor.resources[resource] ?? normalizeActorResourcePool(resource, 0, defaultResourceMaximum(resource)); + const requested = Math.max(0, percentage ? pool.maximum * amount / 100 : amount); + const restored = Math.min(requested, pool.maximum - pool.current); + if (restored <= 0) return 0; + const nextActor: CombatActorState = { + ...actor, + resources: { + ...actor.resources, + [resource]: { ...pool, current: pool.current + restored }, + }, + }; + const patch: Partial = { + actors: { ...state.actors, [id]: nextActor }, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: now, + kind: "resource", + sourceActorId, + targetActorId: id, + ...(abilityId ? { abilityId } : {}), + rawAmount: requested, + effectiveAmount: restored, + overheal: requested - restored, + absorbed: 0, + critical: false, + }), + }; + if (id === PLAYER_AURA_ENTITY_ID) { + patch.resourcePools = { ...state.resourcePools, [resource]: pool.current + restored }; + if (resource === resourceProfileForClass(state.classId).type) patch.resource = pool.current + restored; + } + set(patch); + if (nextActor.kind === "companion") mirrorCompanionActor(nextActor); + return restored; + }, + + shieldActor: (id, amount, durationMs, sourceActorId, ability, now = Date.now()) => { + const state = get(); + const absorb = Math.max(0, Math.round(amount)); + if (absorb <= 0 || !state.actors[id]) return 0; + const result = applyCombatAura(state.auras, { + definition: { + id: `shield:${sourceActorId}:${ability.id}`, + name: ability.name, + icon: ability.icon, + disposition: "buff", + durationMs: Math.max(1, durationMs), + stackBehavior: "replace", + absorbs: [{ id: `${ability.id}:absorb`, amount: absorb }], + }, + sourceId: sourceActorId, + targetId: id, + now, + }); + set({ + auras: result.auras, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: now, + kind: "absorb", + sourceActorId, + targetActorId: id, + abilityId: ability.id, + school: presentationSchoolForAbility(ability), + rawAmount: absorb, + effectiveAmount: absorb, + overheal: 0, + absorbed: absorb, + critical: false, + }), + }); + return absorb; + }, + + applyActorAura: (sourceActorId, targetActorId, ability, effect, now = Date.now()) => { + const state = get(); + if (!state.actors[sourceActorId] || (!state.actors[targetActorId] && !state.mobs[targetActorId])) return false; + const durationMs = effect.aura.durationMs; + const definition = auraDefinitionForAbility(effect.aura, ability, durationMs); + const result = applyCombatAura(state.auras, { + definition, + sourceId: sourceActorId, + targetId: targetActorId, + now, + }); + set({ + auras: result.auras, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: now, + kind: "aura", + sourceActorId, + targetActorId, + abilityId: ability.id, + school: presentationSchoolForAbility(ability), + rawAmount: 0, + effectiveAmount: 1, + overheal: 0, + absorbed: 0, + critical: false, + }), + }); return true; }, + applyTimedActorEffect: (sourceActorId, targetActorId, ability, effect, now = Date.now()) => { + const state = get(); + if (!state.actors[sourceActorId]) return false; + if (effect.kind === "dot" && (!state.mobs[targetActorId] || state.mobs[targetActorId].dead)) return false; + if (effect.kind === "hot" && !state.actors[targetActorId]) return false; + const sourceActor = state.actors[sourceActorId]; + const sourceMember = usePartyStore.getState().members.find((member) => member.id === sourceActorId); + const amount = sourceMember + ? Math.max(1, Math.round((effect.basePoints ?? 0) + Math.max(0.1, effect.coefficient) * ( + sourceMember.level * 4 + + sourceMember.gearStats.spellPower + + sourceMember.gearStats.attackPower * 0.35 + + sourceMember.gearStats.rangedAttackPower * 0.35 + ))) + : Math.max(1, Math.round((effect.basePoints ?? 0) + Math.max(0.1, effect.coefficient) * sourceActor.level * 4)); + const next = state.effects.filter((entry) => !( + entry.kind === effect.kind + && entry.sourceAbilityId === ability.id + && entry.targetId === targetActorId + )); + next.push({ ...timedEffect( + effect.kind, + ability.id, + sourceActorId, + targetActorId, + { ...effect, coefficient: amount }, + effect.ticks, + effect.intervalMs, + now, + effect.kind === "dot" ? effect.tag : undefined, + effect.kind === "dot" ? presentationSchoolForAbility(ability) : undefined, + sourceMember?.gearStats.spellPenetration, + ), fixedAmount: amount }); + set({ effects: next }); + return true; + }, + + summonActor: (ownerActorId, ability, effect, position, targetId = null, now = Date.now()) => { + const state = get(); + const owner = state.actors[ownerActorId]; + if (!owner?.alive) return null; + summonSequence += 1; + const isTotem = /totem/i.test(ability.name); + const id = `${ownerActorId}:${isTotem ? "totem" : "summon"}-${summonSequence}`; + const maxHealth = Math.max(1, Math.round(owner.maxHealth * (isTotem ? 0.1 : 0.3))); + const summon: CombatSummon = { + id, + sourceAbilityId: ability.id, + creatureId: effect.creatureId, + targetId, + expiresAt: now + effect.durationMs, + kind: isTotem ? "totem" : "summon", + name: ability.name, + ownerActorId, + health: maxHealth, + maxHealth, + position, + nextActionAt: now + 1_000, + pulseIntervalMs: isTotem ? 2_000 : 2_200, + attackDamage: Math.max(1, Math.round(owner.level * 4 * Math.max(0.15, effect.coefficient))), + ...initialSummonCombatRuntime(), + ...(isTotem ? { exclusiveGroup: `${ownerActorId}:totem` } : {}), + }; + const summons = isTotem + ? [...state.summons.filter((candidate) => candidate.exclusiveGroup !== summon.exclusiveGroup), summon] + : [...state.summons, summon]; + set({ summons }); + get().synchronizeActors(); + return id; + }, + + createActorAreaEffect: (sourceActorId, ability, position, now = Date.now()) => { + const state = get(); + const sourceActor = state.actors[sourceActorId]; + if (!sourceActor?.alive) return null; + const targeting = targetingRulesForAbility(ability); + if (targeting.shape !== "ground") return null; + const sourcePosition = actorPosition(state, sourceActorId) ?? state.playerPosition; + const projected = projectCombatGroundPoint(position, targeting.groundRange ?? ability.range.max, sourcePosition); + if (!projected || !combatHasLineOfSight(sourcePosition, projected)) return null; + const periodic = ability.effects.filter((effect): effect is Extract => ( + effect.kind === "dot" || effect.kind === "hot" + )); + if (!periodic.length) return null; + const sourceMember = usePartyStore.getState().members.find((member) => member.id === sourceActorId); + const power = sourceMember + ? sourceMember.level * 4 + sourceMember.gearStats.spellPower + + sourceMember.gearStats.attackPower * 0.35 + sourceMember.gearStats.rangedAttackPower * 0.35 + : sourceActor.level * 4; + const scaled = (effect: Extract) => Math.max( + 1, + Math.round((effect.basePoints ?? 0) + Math.max(0.1, effect.coefficient) * Math.max(8, power)), + ); + areaEffectSequence += 1; + const id = `${sourceActorId}:area-${areaEffectSequence}`; + const interval = Math.max(100, Math.min(...periodic.map((effect) => effect.intervalMs))); + const duration = Math.max(...periodic.map((effect) => effect.intervalMs * effect.ticks)); + const area: CombatAreaEffect = { + id, + sourceActorId, + sourceAbilityId: ability.id, + position: projected, + radius: targeting.radius ?? ability.radius ?? 8, + createdAt: now, + expiresAt: now + duration, + tickIntervalMs: interval, + nextTickAt: now + interval, + fixedDamagePerTick: periodic.filter((effect) => effect.kind === "dot").reduce((sum, effect) => sum + scaled(effect), 0), + fixedHealingPerTick: periodic.filter((effect) => effect.kind === "hot").reduce((sum, effect) => sum + scaled(effect), 0), + }; + set({ areaEffects: [...state.areaEffects, area] }); + return id; + }, + damagePlayer: (amount, school = "physical", attackerLevel) => { const state = get(); + const now = Date.now(); const mitigated = damageAfterEquipmentMitigation( talentAdjustedIncomingDamage(amount, state.talentModifiers), state.gearStats, @@ -3811,15 +5734,26 @@ export const useCombatStore = create((set, get) => ({ targetId: PLAYER_AURA_ENTITY_ID, amount: incoming, school, - now: Date.now(), + now, }); const absorbed = Math.min(state.shield, namedAbsorb.remainingDamage); const healthDamage = Math.min(state.health, namedAbsorb.remainingDamage - absorbed); - const health = state.health - healthDamage; + const remodeledBody = namedAbsorb.auras.find((aura) => ( + aura.targetId === PLAYER_AURA_ENTITY_ID + && aura.definition.utilityTags?.includes("rom-remodeled-body") + )); + const preventedDeath = Boolean(remodeledBody && healthDamage >= state.health); + const health = preventedDeath ? state.maxHealth : state.health - healthDamage; + const aurasAfterCheatDeath = preventedDeath + ? namedAbsorb.auras.filter((aura) => aura.instanceId !== remodeledBody!.instanceId) + : namedAbsorb.auras; const rage = gainRomRage( state.classId, state.secondaryClassId, - healthDamage > 0 && hasRomWarriorRagePool(state.classId, state.secondaryClassId) + healthDamage > 0 && ( + hasRomWarriorRagePool(state.classId, state.secondaryClassId) + || (!hasRomRagePool(state.classId, state.secondaryClassId) && state.maxResourcePools.rage !== undefined) + ) ? ROM_RAGE_PER_HIT_TAKEN : 0, state.resource, @@ -3827,29 +5761,108 @@ export const useCombatStore = create((set, get) => ({ { ...state.resourcePools }, { ...state.maxResourcePools }, ); - const procResult = evaluateAuraProcs(namedAbsorb.auras, { + const procResult = evaluateAuraProcs(aurasAfterCheatDeath, { trigger: "damage-taken", subjectId: PLAYER_AURA_ENTITY_ID, amount: healthDamage, school, - }, Date.now(), ({ aura, proc }) => stableCombatUnit(`${aura.instanceId}:${proc.id}:damage-taken:${state.health}`)); + }, now, ({ aura, proc }) => stableCombatUnit(`${aura.instanceId}:${proc.id}:damage-taken:${state.health}`)); + let nextAuras = procResult.auras; + if ( + healthDamage > 0 + && state.abilities.some((ability) => ability.id === "rom-rogue-rom-warden-elite-60" && isAbilityUnlocked(ability, state.level)) + ) { + nextAuras = applyCombatAura(nextAuras, { + definition: { + id: "rom-state-revival-charge", + name: "Revival", + disposition: "buff", + durationMs: null, + maxStacks: 10, + stackBehavior: "add", + utilityTags: ["rom-revival-charge"], + }, + sourceId: PLAYER_AURA_ENTITY_ID, + targetId: PLAYER_AURA_ENTITY_ID, + now, + }).auras; + } set({ - auras: procResult.auras, + auras: nextAuras, shield: state.shield - absorbed, health, resource: rage.resource, resourcePools: rage.resourcePools, - activeCast: health <= 0 ? null : state.activeCast, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: now, + kind: "damage", + sourceActorId: "external", + targetActorId: PLAYER_AURA_ENTITY_ID, + school, + rawAmount: incoming, + effectiveAmount: healthDamage, + overheal: 0, + absorbed: namedAbsorb.absorbed + absorbed, + critical: false, + outcome: healthDamage > 0 ? "hit" : "absorb", + }), + activeCast: health <= 0 + ? null + : healthDamage > 0 + ? applyWrathCastPushback(state.activeCast, now, `external:${school}:${state.health}`) + : state.activeCast, autoAttackTargetId: health <= 0 ? null : state.autoAttackTargetId, nextAutoAttackAt: health <= 0 ? 0 : state.nextAutoAttackAt, playerAnimationEvent: healthDamage > 0 ? nextAnimationEvent(health <= 0 ? "death" : "wound") : state.playerAnimationEvent, - feedback: nextFeedback("damage", health <= 0 ? "You have been defeated." : `${healthDamage} damage taken.`, { amount: healthDamage }), + feedback: nextFeedback("damage", preventedDeath ? "Remodeled Body prevented defeat and restored all health." : health <= 0 ? "You have been defeated." : `${healthDamage} damage taken.`, { amount: healthDamage }), }); return healthDamage; }, + damageSummon: (id, amount) => { + const requested = Math.max(0, Math.round(Number.isFinite(amount) ? amount : 0)); + if (requested <= 0) return 0; + let applied = 0; + set((state) => { + const summon = state.summons.find((candidate) => candidate.id === id); + if (!summon) return state; + const absorbed = absorbAuraDamage(state.auras, { + targetId: id, + amount: requested, + school: "physical", + now: Date.now(), + }); + applied = Math.min(summon.health, Math.max(0, Math.round(absorbed.remainingDamage))); + const health = summon.health - applied; + const summons = health > 0 + ? state.summons.map((candidate) => candidate.id === id ? { ...candidate, health } : candidate) + : state.summons.filter((candidate) => candidate.id !== id); + const actors = { ...state.actors }; + if (health > 0) actors[id] = combatActorFromSummon({ ...summon, health }, state.level, absorbed.auras); + else delete actors[id]; + return { + auras: absorbed.auras, + summons, + actors, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: Date.now(), + kind: "damage", + sourceActorId: "external", + targetActorId: id, + rawAmount: requested, + effectiveAmount: applied, + overheal: 0, + absorbed: absorbed.absorbed, + critical: false, + outcome: applied > 0 ? "hit" : "absorb", + }), + }; + }); + return applied; + }, + healPlayer: (amount) => { const state = get(); // Ordinary healing and lingering HoTs must not raise a defeated player. @@ -3867,7 +5880,22 @@ export const useCombatStore = create((set, get) => ({ otherId: PLAYER_AURA_ENTITY_ID, amount: healed, }, Date.now(), ({ aura, proc }) => stableCombatUnit(`${aura.instanceId}:${proc.id}:heal:${state.health}`)); - set({ auras: procResult.auras, health: state.health + healed, feedback: nextFeedback("heal", `${healed} health restored.`, { amount: healed }) }); + set({ + auras: procResult.auras, + health: state.health + healed, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: Date.now(), + kind: "healing", + sourceActorId: PLAYER_AURA_ENTITY_ID, + targetActorId: PLAYER_AURA_ENTITY_ID, + rawAmount: Math.max(0, Math.round(modified)), + effectiveAmount: healed, + overheal: Math.max(0, Math.round(modified) - healed), + absorbed: 0, + critical: false, + }), + feedback: nextFeedback("heal", `${healed} health restored.`, { amount: healed }), + }); return healed; }, @@ -3890,11 +5918,25 @@ export const useCombatStore = create((set, get) => ({ cancelCast: (message = "Casting interrupted.") => { const cast = get().activeCast; if (!cast) return false; - set({ + set((state) => ({ activeCast: null, + combatEvents: recordCombatEvent(state.combatEvents, { + occurredAt: Date.now(), + kind: "interrupt", + sourceActorId: PLAYER_AURA_ENTITY_ID, + targetActorId: PLAYER_AURA_ENTITY_ID, + abilityId: cast.abilityId, + school: cast.school, + rawAmount: 0, + effectiveAmount: 0, + overheal: 0, + absorbed: 0, + critical: false, + outcome: "cancelled", + }), playerAnimationEvent: nextAnimationEvent("ability-cancel", cast.abilityId), feedback: nextFeedback("error", message, { abilityId: cast.abilityId, targetId: cast.targetId ?? undefined }), - }); + })); emitPlayerAbilityCancellation(cast.abilityId, Date.now(), get().playerPosition); return true; }, @@ -3967,6 +6009,8 @@ export const useCombatStore = create((set, get) => ({ nextAttackAt: 0, health: mob.maxHealth, statuses: [], + controlDiminishingReturns: {}, + tauntDiminishingReturns: { applications: 0, resetAt: 0 }, auras: [], abilityReadyAt: {}, abilityCastCounts: {}, @@ -4084,7 +6128,7 @@ export const useCombatStore = create((set, get) => ({ stableCombatUnit(`${id}:${attack.id}:${attackRevision}:target`) * eligibleActors.length, )] : resolution.targetActorId; - const targets = attack.target === "nearby-party" + const unvalidatedTargets = attack.target === "nearby-party" ? eligibleActors.filter((actorId) => { const candidate = actorPosition(runtimeState, actorId); if (!candidate) return false; @@ -4100,6 +6144,14 @@ export const useCombatStore = create((set, get) => ({ : attack.target === "primary" ? [resolution.targetActorId] : []; + const enemySpatial = combatSpatialActor(id); + const targets = unvalidatedTargets.filter((actorId) => { + const candidate = actorPosition(runtimeState, actorId); + if (!candidate || !combatHasLineOfSight(position, candidate)) return false; + return attack.target === "nearby-party" + || !enemySpatial + || isPositionInFacingArc(enemySpatial, candidate, Math.PI); + }); const presentationTargetId = targets[0] ?? resolution.targetActorId; emitEnemyAttackPresentation( mob, @@ -4139,7 +6191,8 @@ export const useCombatStore = create((set, get) => ({ const friendlyDy = candidatePosition[1] - position[1]; const friendlyDz = candidatePosition[2] - position[2]; return friendlyDx * friendlyDx + friendlyDy * friendlyDy + friendlyDz * friendlyDz - <= friendlyRange * friendlyRange; + <= friendlyRange * friendlyRange + && combatHasLineOfSight(position, candidatePosition); }) .sort((left, right) => ( (left.health / Math.max(1, left.maxHealth)) @@ -4177,6 +6230,7 @@ export const useCombatStore = create((set, get) => ({ }).auras]; } else if (effect.kind === "control") { for (const actorId of targets) { + if (hasControlImmunity(namedAuras, actorId, effect.mechanic)) continue; const control = { mechanic: effect.mechanic, endsAt: now + effect.durationMs }; if (actorId === PLAYER_AGGRO_ID) playerControl = control; else memberControls.push({ memberId: actorId, ...control }); @@ -4324,6 +6378,12 @@ export const useCombatStore = create((set, get) => ({ ? { controlledUntil: Math.max(state.controlledUntil, playerControl.endsAt), controlMechanic: playerControl.mechanic, + schoolLockedUntil: state.activeCast && playerControl.mechanic === "silence" + ? { + ...state.schoolLockedUntil, + [state.activeCast.school]: Math.max(state.schoolLockedUntil[state.activeCast.school] ?? 0, playerControl.endsAt), + } + : state.schoolLockedUntil, activeCast: null, } : {}), @@ -4344,6 +6404,20 @@ export const useCombatStore = create((set, get) => ({ impactTarget, ); } + const defendingAuras = aurasForEntity(get().auras, hit.actorId); + const reflectChance = enemyAttackKind(hit.attack) === "spell" + ? Math.min(1, defendingAuras.reduce((chance, aura) => Math.max(chance, aura.definition.reflectSpellChance ?? 0), 0)) + : 0; + if (reflectChance > 0 && stableCombatUnit(`${hit.actorId}:${hit.mob.id}:${hit.attack.id}:${hit.attackRevision}:reflect`) < reflectChance) { + get().damageMob( + hit.mob.id, + hit.amount, + now, + playerThreatSource(get(), `reflect:${hit.attack.id}`), + hit.attack.school, + ); + continue; + } if (hit.actorId === PLAYER_AGGRO_ID) { const current = get(); const defender = applyAuraStats( @@ -4383,7 +6457,10 @@ export const useCombatStore = create((set, get) => ({ const rage = gainRomRage( current.classId, current.secondaryClassId, - healthDamage > 0 && hasRomWarriorRagePool(current.classId, current.secondaryClassId) + healthDamage > 0 && ( + hasRomWarriorRagePool(current.classId, current.secondaryClassId) + || (!hasRomRagePool(current.classId, current.secondaryClassId) && current.maxResourcePools.rage !== undefined) + ) ? ROM_RAGE_PER_HIT_TAKEN : 0, current.resource, @@ -4420,6 +6497,10 @@ export const useCombatStore = create((set, get) => ({ effects: [...current.effects], auras: [...namedAbsorb.auras], summons: [...current.summons], + areaEffects: [...current.areaEffects], + combatEvents: [...current.combatEvents], + actors: { ...current.actors }, + cooldowns: { ...current.cooldowns }, health, maxHealth: current.maxHealth, shield: current.shield - absorbed, @@ -4428,7 +6509,10 @@ export const useCombatStore = create((set, get) => ({ maxResource: current.maxResource, resourcePools: { ...rage.resourcePools }, maxResourcePools: { ...current.maxResourcePools }, + lastResourceSpentAt: { ...current.lastResourceSpentAt }, comboPoints: current.comboPoints, + comboTargetId: current.comboTargetId, + deathKnightRunes: current.deathKnightRunes, progression: procProgression, totalDamage: 0, totalHealing: 0, @@ -4439,7 +6523,27 @@ export const useCombatStore = create((set, get) => ({ raceId: current.raceId, secondaryClassId: current.secondaryClassId, }; + if (healthDamage > 0) { + procWork.auras = procWork.auras.filter((aura) => !( + aura.targetId === PLAYER_AURA_ENTITY_ID + && aura.definition.utilityTags?.includes("stealth") + )); + } if (procEvent) evaluateProcsInWork(procWork, procEvent, now); + recordCombatEventInWork(procWork, { + occurredAt: now, + kind: "damage", + sourceActorId: hit.mob.id, + targetActorId: PLAYER_AURA_ENTITY_ID, + abilityId: hit.attack.id, + school: hit.attack.school, + rawAmount: combatResult.rawDamage, + effectiveAmount: healthDamage, + overheal: 0, + absorbed: namedAbsorb.absorbed + absorbed, + critical: combatResult.critical, + outcome: combatResult.outcome, + }); set({ auras: procWork.auras, mobs: procWork.mobs, @@ -4447,8 +6551,15 @@ export const useCombatStore = create((set, get) => ({ health: procWork.health, resource: procWork.resource, resourcePools: procWork.resourcePools, + cooldowns: procWork.cooldowns, + combatEvents: procWork.combatEvents, + actors: procWork.actors, lastCombatResult: combatResult, - activeCast: procWork.health <= 0 ? null : current.activeCast, + activeCast: procWork.health <= 0 + ? null + : healthDamage > 0 + ? applyWrathCastPushback(current.activeCast, now, `${hit.mob.id}:${hit.attack.id}:${hit.attackRevision}`) + : current.activeCast, autoAttackTargetId: procWork.health <= 0 ? null : current.autoAttackTargetId, nextAutoAttackAt: procWork.health <= 0 ? 0 : current.nextAutoAttackAt, playerAnimationEvent: healthDamage > 0 @@ -4465,8 +6576,98 @@ export const useCombatStore = create((set, get) => ({ appliedDamage += healthDamage; } else { const partyState = usePartyStore.getState(); - const member = partyState.members.find((candidate) => candidate.id === hit.actorId); - if (!member || member.health <= 0) continue; + const summon = get().summons.find((candidate) => candidate.id === hit.actorId); + if (summon) { + const current = get(); + const adjusted = resolveAuraDamageValue( + hit.amount, + aurasForEntity(current.auras, summon.id), + { direction: "taken", school: hit.attack.school, attackKind: enemyAttackKind(hit.attack) }, + ); + const absorbed = absorbAuraDamage(current.auras, { + targetId: summon.id, + amount: adjusted, + school: hit.attack.school, + now, + }); + const applied = Math.min(summon.health, Math.max(0, Math.round(absorbed.remainingDamage))); + set({ + auras: absorbed.auras, + summons: current.summons.flatMap((candidate) => candidate.id !== summon.id + ? [candidate] + : candidate.health - applied > 0 + ? [{ ...candidate, health: candidate.health - applied }] + : []), + combatEvents: recordCombatEvent(current.combatEvents, { + occurredAt: now, + kind: "damage", + sourceActorId: hit.mob.id, + targetActorId: summon.id, + abilityId: hit.attack.id, + school: hit.attack.school, + rawAmount: hit.amount, + effectiveAmount: applied, + overheal: 0, + absorbed: absorbed.absorbed, + critical: false, + outcome: applied > 0 ? "hit" : "absorb", + }), + }); + appliedDamage += applied; + continue; + } + const onlineActor = onlinePlayerRuntimeActor(hit.actorId); + if (onlineActor) { + const current = get(); + const adjusted = resolveAuraDamageValue( + hit.amount, + aurasForEntity(current.auras, onlineActor.id), + { direction: "taken", school: hit.attack.school, attackKind: enemyAttackKind(hit.attack) }, + ); + const absorbed = absorbAuraDamage(current.auras, { + targetId: onlineActor.id, + amount: adjusted, + school: hit.attack.school, + now, + }); + const damaged = Math.min(onlineActor.health, Math.max(0, Math.round(absorbed.remainingDamage))); + const nextActor: CombatActorState = { + ...onlineActor, + health: onlineActor.health - damaged, + alive: onlineActor.health - damaged > 0, + cast: onlineActor.health - damaged > 0 ? onlineActor.cast : null, + }; + set({ + actors: { ...current.actors, [nextActor.id]: nextActor }, + auras: absorbed.auras, + combatEvents: recordCombatEvent(current.combatEvents, { + occurredAt: now, + kind: "damage", + sourceActorId: hit.mob.id, + targetActorId: onlineActor.id, + abilityId: hit.attack.id, + school: hit.attack.school, + rawAmount: hit.amount, + effectiveAmount: damaged, + overheal: 0, + absorbed: absorbed.absorbed, + critical: false, + outcome: damaged > 0 ? "hit" : "absorb", + }), + }); + appliedDamage += damaged; + continue; + } + const storedMember = partyState.members.find((candidate) => candidate.id === hit.actorId); + if (!storedMember) continue; + const currentBeforeHit = get(); + const authoritativeActor = companionActorFromMember( + storedMember, + entityAbsorbAmount(currentBeforeHit.auras, storedMember.id), + currentBeforeHit.actors[storedMember.id], + ); + const member = memberFromCompanionActor(storedMember, authoritativeActor); + if (member.health <= 0) continue; const defender = applyAuraStats( deriveCharacterStats( member.classId, @@ -4497,10 +6698,61 @@ export const useCombatStore = create((set, get) => ({ school: hit.attack.school, now, }); - const damaged = partyState.damageMemberResolved(hit.actorId, namedAbsorb.remainingDamage); + const redirectAura = aurasForEntity(namedAbsorb.auras, hit.actorId) + .find((aura) => (aura.definition.redirectDamagePercent ?? 0) > 0); + const redirectFraction = Math.min(1, Math.max(0, redirectAura?.definition.redirectDamagePercent ?? 0)); + const redirected = redirectAura?.sourceId === PLAYER_AURA_ENTITY_ID + ? Math.round(namedAbsorb.remainingDamage * redirectFraction) + : 0; + const damaged = Math.min( + authoritativeActor.health, + Math.max(0, Math.round(namedAbsorb.remainingDamage - redirected)), + ); + let nextCast = authoritativeActor.cast; + if (damaged > 0 && nextCast && nextCast.pushbackHits < 2) { + const castingAbility = abilityById(nextCast.abilityId); + const resistance = castingAbility ? abilityPushbackResistance(castingAbility) : 0; + if (stableCombatUnit(`${member.id}:${hit.attack.id}:${hit.attackRevision}:pushback`) >= resistance) { + nextCast = { + ...nextCast, + pushbackHits: nextCast.pushbackHits + 1, + completesAt: nextCast.mode === "channel" + ? Math.max(now, nextCast.completesAt - nextCast.originalDurationMs * 0.25) + : nextCast.completesAt + 500, + }; + } + } + const nextActor: CombatActorState = { + ...authoritativeActor, + health: authoritativeActor.health - damaged, + alive: authoritativeActor.health - damaged > 0, + cast: authoritativeActor.health - damaged > 0 ? nextCast : null, + }; + mirrorCompanionActor(nextActor); + if (redirected > 0) { + const player = get(); + const transferred = Math.min(player.health, redirected); + set({ health: player.health - transferred, activeCast: player.health - transferred <= 0 ? null : player.activeCast }); + appliedDamage += transferred; + } appliedDamage += damaged; set({ + actors: { ...get().actors, [nextActor.id]: nextActor }, auras: namedAbsorb.auras, + combatEvents: recordCombatEvent(get().combatEvents, { + occurredAt: now, + kind: "damage", + sourceActorId: hit.mob.id, + targetActorId: member.id, + abilityId: hit.attack.id, + school: hit.attack.school, + rawAmount: combatResult.rawDamage, + effectiveAmount: damaged, + overheal: 0, + absorbed: namedAbsorb.absorbed, + critical: combatResult.critical, + outcome: combatResult.outcome, + }), lastCombatResult: combatResult, feedback: nextFeedback( "damage", @@ -4511,11 +6763,68 @@ export const useCombatStore = create((set, get) => ({ } } for (const control of memberControls) { - usePartyStore.getState().controlMember( - control.memberId, - control.mechanic, - control.endsAt, + const current = get(); + const summon = current.summons.find((candidate) => candidate.id === control.memberId); + if (summon) { + const nextSummon = { + ...summon, + controlledUntil: Math.max(summon.controlledUntil, control.endsAt), + cast: null, + schoolLockedUntil: control.mechanic === "silence" && summon.cast + ? { + ...summon.schoolLockedUntil, + [summon.cast.school]: Math.max(summon.schoolLockedUntil[summon.cast.school] ?? 0, control.endsAt), + } + : summon.schoolLockedUntil, + }; + set({ + summons: current.summons.map((candidate) => candidate.id === summon.id ? nextSummon : candidate), + actors: { + ...current.actors, + [summon.id]: combatActorFromSummon(nextSummon, current.level, current.auras), + }, + }); + continue; + } + const partyState = usePartyStore.getState(); + const storedMember = partyState.members.find((member) => member.id === control.memberId); + if (!storedMember) { + const onlineActor = onlinePlayerRuntimeActor(control.memberId); + if (onlineActor) { + set({ + actors: { + ...current.actors, + [onlineActor.id]: { + ...onlineActor, + controlledUntil: Math.max(onlineActor.controlledUntil, control.endsAt), + cast: null, + }, + }, + }); + } + continue; + } + const actor = companionActorFromMember( + storedMember, + entityAbsorbAmount(current.auras, storedMember.id), + current.actors[storedMember.id], ); + const nextActor: CombatActorState = { + ...actor, + controlledUntil: Math.max(actor.controlledUntil, control.endsAt), + cast: null, + schoolLockedUntil: control.mechanic === "silence" && actor.cast + ? { + ...actor.schoolLockedUntil, + [actor.cast.school]: Math.max(actor.schoolLockedUntil[actor.cast.school] ?? 0, control.endsAt), + } + : actor.schoolLockedUntil, + }; + set({ actors: { ...current.actors, [nextActor.id]: nextActor } }); + mirrorCompanionActor(nextActor); + partyState.updateMemberCombat(control.memberId, { + controlMechanic: control.mechanic, + }); } return appliedDamage; }, @@ -4530,9 +6839,9 @@ export const useCombatStore = create((set, get) => ({ set((state) => { const delta = clamp(Number.isFinite(deltaSeconds) ? deltaSeconds : 0, 0, 1); const resourceProfile = resourceProfileForClass(state.classId); - const hasNativeRomRage = hasRomRagePool(state.classId, state.secondaryClassId); + const inCombat = Object.values(state.mobs).some((mob) => mob.engaged && !mob.dead); const baseRegeneration = applyTalentModifierValue( - hasNativeRomRage && resourceProfile.type === "rage" + (resourceProfile.type === "rage" || resourceProfile.type === "runic-power") ? 0 : resourceProfile.regenerationPerSecond + state.gearStats.mp5 / 5 @@ -4547,38 +6856,46 @@ export const useCombatStore = create((set, get) => ({ "power", "regeneration", ); - let resource = clamp( - state.resource + regeneration * delta, - 0, + const activePool = advanceCombatResourcePool(normalizeActorResourcePool( + resourceProfile.type, + state.resource, state.maxResource, - ); + regeneration, + state.lastResourceSpentAt[resourceProfile.type] ?? 0, + ), { + inCombat, + actorLevel: state.level, + now, + deltaSeconds: delta, + manaSpiritRegenerationPerSecond: state.gearStats.spirit * 0.02, + }); + let resource = activePool.current; const resourcePools: Partial> = { ...state.resourcePools }; - const inCombat = Object.values(state.mobs).some((mob) => mob.engaged && !mob.dead); const hasNativeRomWarriorRage = hasRomWarriorRagePool(state.classId, state.secondaryClassId); const passiveRates: Partial> = { mana: 4, - rage: hasNativeRomRage ? 0 : 5, + rage: 0, energy: 10, focus: 6, "runic-power": 0, }; for (const [type, maximum] of Object.entries(state.maxResourcePools) as [ResourceType, number][]) { if (type === resourceProfile.type) continue; - resourcePools[type] = clamp((resourcePools[type] ?? 0) + (passiveRates[type] ?? 0) * delta, 0, maximum); + resourcePools[type] = advanceCombatResourcePool(normalizeActorResourcePool( + type, + resourcePools[type] ?? 0, + maximum, + passiveRates[type] ?? 0, + state.lastResourceSpentAt[type] ?? 0, + ), { + inCombat, + actorLevel: state.level, + now, + deltaSeconds: delta, + manaSpiritRegenerationPerSecond: 0, + }).current; } resourcePools[resourceProfile.type] = resource; - if (hasNativeRomWarriorRage && !inCombat) { - const maximum = state.maxResourcePools.rage - ?? (resourceProfile.type === "rage" ? state.maxResource : 100); - const rage = clamp( - (resourcePools.rage ?? (resourceProfile.type === "rage" ? resource : 0)) - - ROM_RAGE_DECAY_PER_SECOND * delta, - 0, - maximum, - ); - resourcePools.rage = rage; - if (resourceProfile.type === "rage") resource = rage; - } let shield = state.shield; let shieldExpiresAt = state.shieldExpiresAt; if (shield > 0 && shieldExpiresAt > 0 && now >= shieldExpiresAt) { @@ -4594,9 +6911,17 @@ export const useCombatStore = create((set, get) => ({ effects: [], auras: [...expireAuras(state.auras, now).active], summons: state.summons.filter((summon) => summon.expiresAt > now), + areaEffects: state.areaEffects.filter((effect) => effect.expiresAt > now), + combatEvents: [...state.combatEvents], + actors: { ...state.actors }, + cooldowns: { ...state.cooldowns }, health: Math.min( state.maxHealth, - state.health + (state.gearStats.healthPer5 / 5 + state.gearStats.spirit * 0.01) * delta, + state.health + resolveAuraStatValue( + state.gearStats.healthPer5 / 5 + state.gearStats.spirit * 0.01, + playerAuras, + "health-regeneration", + ) * delta, ), maxHealth: state.maxHealth, shield, @@ -4605,7 +6930,10 @@ export const useCombatStore = create((set, get) => ({ maxResource: state.maxResource, resourcePools, maxResourcePools: { ...state.maxResourcePools }, + lastResourceSpentAt: { ...state.lastResourceSpentAt }, comboPoints: state.comboPoints, + comboTargetId: state.comboTargetId, + deathKnightRunes: state.deathKnightRunes, progression, totalDamage: 0, totalHealing: 0, @@ -4625,10 +6953,15 @@ export const useCombatStore = create((set, get) => ({ autoAttackTargetId = null; nextAutoAttackAt = 0; } else { + const autoAttackTargetPosition = getMobPosition(autoAttackTargetId!); + const autoAttackSource = combatSpatialActor(PLAYER_AGGRO_ID); const canAutoAttack = ( !state.activeCast && state.controlledUntil <= now && Math.sqrt(mobRuntimeDistanceSquared(autoAttackTargetId!, state.playerPosition)) <= PLAYER_AUTO_ATTACK_RANGE + && Boolean(autoAttackTargetPosition) + && combatHasLineOfSight(state.playerPosition, autoAttackTargetPosition ?? state.playerPosition) + && (!autoAttackSource || isPositionInFacingArc(autoAttackSource, autoAttackTargetPosition ?? state.playerPosition, Math.PI)) ); if (canAutoAttack) { const profile = playerAutoAttackProfile(state); @@ -4665,7 +6998,10 @@ export const useCombatStore = create((set, get) => ({ false, { isAutoAttack: true, isDualWielding }, ); - if (result.amount > 0 && hasNativeRomWarriorRage) { + if (result.amount > 0 && ( + hasNativeRomWarriorRage + || (!hasRomRagePool(state.classId, state.secondaryClassId) && work.maxResourcePools.rage !== undefined) + )) { const rage = gainRomRage( state.classId, state.secondaryClassId, @@ -4710,7 +7046,7 @@ export const useCombatStore = create((set, get) => ({ let nextTickAt = effect.nextTickAt; while (remainingTicks > 0 && nextTickAt <= now) { const ability = abilityById(effect.sourceAbilityId); - const baseAmount = ability + const baseAmount = effect.fixedAmount ?? (ability ? equipmentAdjustedCombatAmount( effect, progression.level, @@ -4718,8 +7054,8 @@ export const useCombatStore = create((set, get) => ({ state.classId, ability, ) - : Math.max(0, Math.round(effect.coefficient * playerCombatPower(progression.level))); - const amount = ability + : Math.max(0, Math.round(effect.coefficient * playerCombatPower(progression.level)))); + const amount = ability && effect.fixedAmount === undefined ? talentAdjustedAmount( baseAmount, state.talentModifiers, @@ -4762,8 +7098,12 @@ export const useCombatStore = create((set, get) => ({ "taken", )); if (effect.targetId) { - const target = usePartyStore.getState().members.find((member) => member.id === effect.targetId); - if (target && target.health > 0) partyHotTicks.push({ + const target = work.actors[effect.targetId] + ?? ensureCompanionActorInWork(work, effect.targetId) + ?? (work.summons.some((summon) => summon.id === effect.targetId) + ? combatActorFromSummon(work.summons.find((summon) => summon.id === effect.targetId)!, progression.level, work.auras) + : null); + if (target?.alive) partyHotTicks.push({ memberId: target.id, amount: modifiedHealing, sourceActorId: effect.sourceActorId, @@ -4831,6 +7171,168 @@ export const useCombatStore = create((set, get) => ({ } } + work.areaEffects = work.areaEffects.map((area) => { + let nextTickAt = area.nextTickAt; + const catalogAbility = abilityById(area.sourceAbilityId); + const ability = catalogAbility ? abilityAtLevel(catalogAbility, state.level) : null; + while (ability && nextTickAt <= now && nextTickAt < area.expiresAt) { + const resolvedFixedKinds = new Set<"dot" | "hot">(); + for (const periodic of ability.effects) { + if (periodic.kind !== "dot" && periodic.kind !== "hot") continue; + const fixedAmount = periodic.kind === "dot" ? area.fixedDamagePerTick : area.fixedHealingPerTick; + if (fixedAmount !== undefined && resolvedFixedKinds.has(periodic.kind)) continue; + if (fixedAmount !== undefined) resolvedFixedKinds.add(periodic.kind); + const amount = fixedAmount ?? talentAdjustedAmount( + equipmentAdjustedCombatAmount(periodic, state.level, state.gearStats, state.classId, ability), + state.talentModifiers, + periodic.kind === "dot" ? "damage-percent" : "healing-percent", + ability, + true, + ); + if (periodic.kind === "dot") { + for (const id of nearbyMobRuntimeIds(area.position, area.radius)) { + const position = getMobPosition(id); + if (!position || work.mobs[id]?.dead || !combatHasLineOfSight(area.position, position)) continue; + resolveAndDamageMobInWork( + state.classId, + work, + id, + amount, + nextTickAt, + threatSourceForActor(state, area.sourceActorId, ability.id, true), + abilityAttackKind(state.classId, ability), + abilityDamageSchool(state.classId, ability), + `${area.id}:${id}:${nextTickAt}`, + ability, + true, + { canMiss: false, canCrit: false, canDodge: false, canParry: false, canBlock: false }, + ); + } + } else { + const partyMembers = usePartyStore.getState().members; + for (const friendlyId of [PLAYER_AURA_ENTITY_ID, ...partyMembers.map((member) => member.id)]) { + const position = friendlyId === PLAYER_AURA_ENTITY_ID + ? state.playerPosition + : getPartyRuntimePosition(friendlyId); + if (!position + || Math.sqrt(distanceSquared(area.position, position)) > area.radius + || !combatHasLineOfSight(area.position, position)) continue; + const member = partyMembers.find((candidate) => candidate.id === friendlyId); + const healed = member + ? healCompanionActorInWork(work, friendlyId, amount) + : Math.min(amount, work.maxHealth - work.health); + if (!member) { + work.health += healed; + work.progression.health = work.health; + } + work.totalHealing += healed; + recordCombatEventInWork(work, { + occurredAt: nextTickAt, + kind: "healing", + sourceActorId: area.sourceActorId, + targetActorId: friendlyId, + abilityId: ability.id, + rawAmount: amount, + effectiveAmount: healed, + overheal: Math.max(0, amount - healed), + absorbed: 0, + critical: false, + }); + } + } + } + nextTickAt += area.tickIntervalMs; + } + return nextTickAt === area.nextTickAt ? area : { ...area, nextTickAt }; + }); + + work.summons = work.summons.map((summon) => { + if ( + summon.health <= 0 + || summon.controlledUntil > now + || summon.nextActionAt > now + || summon.globalCooldownEndsAt > now + || summon.cast + || summon.attackDamage <= 0 + ) return summon; + const summonAbility = abilityById(summon.sourceAbilityId); + if (summon.kind === "totem" && summonAbility?.effects.some((effect) => effect.kind === "heal" || effect.kind === "hot")) { + const partyMembers = usePartyStore.getState().members; + const injured = [ + { id: PLAYER_AURA_ENTITY_ID, health: work.health, maxHealth: work.maxHealth, position: state.playerPosition }, + ...partyMembers.map((member) => ({ + id: member.id, + health: member.health, + maxHealth: member.maxHealth, + position: getPartyRuntimePosition(member.id), + })), + ].filter((candidate) => candidate.health > 0 + && candidate.health < candidate.maxHealth + && candidate.position + && Math.sqrt(distanceSquared(summon.position, candidate.position)) <= 30 + && combatHasLineOfSight(summon.position, candidate.position)) + .sort((left, right) => left.health / left.maxHealth - right.health / right.maxHealth); + const target = injured[0]; + if (target) { + const healed = target.id === PLAYER_AURA_ENTITY_ID + ? Math.min(summon.attackDamage, work.maxHealth - work.health) + : healCompanionActorInWork(work, target.id, summon.attackDamage); + if (target.id === PLAYER_AURA_ENTITY_ID) { + work.health += healed; + work.progression.health = work.health; + } + work.totalHealing += healed; + addHealingThreatInWork(work, { actorId: summon.ownerActorId, role: "healer", abilityId: summon.sourceAbilityId }, healed); + recordCombatEventInWork(work, { + occurredAt: now, + kind: "healing", + sourceActorId: summon.id, + targetActorId: target.id, + abilityId: summon.sourceAbilityId, + rawAmount: summon.attackDamage, + effectiveAmount: healed, + overheal: summon.attackDamage - healed, + absorbed: 0, + critical: false, + }); + } + return { ...summon, nextActionAt: now + Math.max(500, summon.pulseIntervalMs) }; + } + const targetId = summon.targetId && !work.mobs[summon.targetId]?.dead + ? summon.targetId + : state.selectedTargetId && !work.mobs[state.selectedTargetId]?.dead + ? state.selectedTargetId + : Object.values(work.mobs).find((mob) => mob.engaged && !mob.dead)?.id ?? null; + if (!targetId) return { ...summon, nextActionAt: now + Math.max(500, summon.pulseIntervalMs) }; + const targetPosition = getMobPosition(targetId); + let position = summon.position; + if (targetPosition) { + const dx = targetPosition[0] - position[0]; + const dz = targetPosition[2] - position[2]; + const length = Math.hypot(dx, dz); + if (summon.kind !== "totem" && length > 4) { + const step = Math.min(length - 3, 4 * delta); + const requested: CombatPosition = [position[0] + dx / length * step, position[1], position[2] + dz / length * step]; + position = projectCombatGroundPoint(requested, step, position) ?? position; + } + if ( + Math.sqrt(distanceSquared(position, targetPosition)) <= (summon.kind === "totem" ? 30 : 5) + && combatHasLineOfSight(position, targetPosition) + ) { + damageMobInWork( + state.classId, + work, + targetId, + summon.attackDamage, + now, + { actorId: summon.ownerActorId, role: "damage", abilityId: summon.sourceAbilityId }, + "physical", + ); + } + } + return { ...summon, targetId, position, nextActionAt: now + Math.max(500, summon.pulseIntervalMs) }; + }); + for (const [id, mob] of Object.entries(work.mobs)) { const statuses = mob.statuses.filter((status) => status.endsAt > now); const auras = mob.auras.filter((aura) => aura.endsAt <= 0 || aura.endsAt > now); @@ -4858,6 +7360,16 @@ export const useCombatStore = create((set, get) => ({ } } + const activeSummonIds = new Set(work.summons.map((summon) => summon.id)); + for (const [actorId, actor] of Object.entries(work.actors)) { + if (["pet", "totem", "summon"].includes(actor.kind) && !activeSummonIds.has(actorId)) { + delete work.actors[actorId]; + } + } + for (const summon of work.summons) { + work.actors[summon.id] = combatActorFromSummon(summon, progression.level, work.auras); + } + const levelled = progression.levelsGained > 0; if (autoAttackTargetId && work.mobs[autoAttackTargetId]?.dead) { autoAttackTargetId = null; @@ -4868,6 +7380,8 @@ export const useCombatStore = create((set, get) => ({ maxResource: work.maxResource, resourcePools: { ...work.resourcePools, [resourceProfile.type]: clamp(work.resource, 0, work.maxResource) }, maxResourcePools: work.maxResourcePools, + lastResourceSpentAt: work.lastResourceSpentAt, + deathKnightRunes: work.deathKnightRunes, talentModifiers: work.talentModifiers, shield: work.shield, shieldExpiresAt: work.shieldExpiresAt, @@ -4885,12 +7399,23 @@ export const useCombatStore = create((set, get) => ({ ? state.effects : work.effects, summons: work.summons, + areaEffects: work.areaEffects, + combatEvents: work.combatEvents, + actors: work.actors, + cooldowns: work.cooldowns, + schoolLockedUntil: Object.fromEntries( + Object.entries(state.schoolLockedUntil).filter(([, lockedUntil]) => (lockedUntil ?? 0) > now), + ), lastCombatResult: work.combatResults.at(-1) ?? state.lastCombatResult, selectedTargetId: state.selectedTargetId && work.mobs[state.selectedTargetId]?.dead ? null : state.selectedTargetId, + selectedFriendlyActorId: state.selectedFriendlyActorId && !work.actors[state.selectedFriendlyActorId] + ? null + : state.selectedFriendlyActorId, autoAttackTargetId, nextAutoAttackAt, playerAnimationEvent: autoAttackEvent ?? state.playerAnimationEvent, - comboPoints: state.selectedTargetId && work.mobs[state.selectedTargetId]?.dead ? 0 : state.comboPoints, + comboPoints: state.comboTargetId && work.mobs[state.comboTargetId]?.dead ? 0 : work.comboPoints, + comboTargetId: state.comboTargetId && work.mobs[state.comboTargetId]?.dead ? null : work.comboTargetId, feedback: levelled ? nextFeedback("level-up", levelUpMessage(state.classId, state.level, progression.level)) : work.combatResults.length > 0 @@ -4903,7 +7428,12 @@ export const useCombatStore = create((set, get) => ({ }); for (const tick of partyHotTicks) { - const healed = usePartyStore.getState().healMember(tick.memberId, tick.amount); + const healed = get().healActor(tick.memberId, tick.amount, { + sourceActorId: tick.sourceActorId, + abilityId: tick.sourceAbilityId, + amountAlreadyModified: true, + now, + }).effectiveAmount; if (healed > 0) { get().addHealingThreat( threatSourceForActor(get(), tick.sourceActorId, tick.sourceAbilityId, true), @@ -4925,75 +7455,149 @@ export const useCombatStore = create((set, get) => ({ let nextTickAt = cast.nextTickAt; while (ability && ticksCompleted < cast.totalTicks && nextTickAt <= now) { const target = cast.targetId ? get().mobs[cast.targetId] : null; - const targetPosition = cast.targetId ? getMobPosition(cast.targetId) : null; - const distance = cast.targetId ? Math.sqrt(mobRuntimeDistanceSquared(cast.targetId, cast.origin)) : 0; + const friendlyTarget = cast.targetId + ? usePartyStore.getState().members.find((member) => member.id === cast.targetId) + : null; + const targetPosition = cast.targetId + ? getMobPosition(cast.targetId) ?? getPartyRuntimePosition(cast.targetId) + : get().playerPosition; + const channelHostile = ability.target === "hostile" || (ability.target === "any" && Boolean(target)); + const distance = cast.targetId + ? channelHostile + ? Math.sqrt(mobRuntimeDistanceSquared(cast.targetId, cast.origin)) + : Math.sqrt(partyRuntimeDistanceSquared(cast.targetId, cast.origin)) + : 0; const minimumRange = ability ? talentAdjustedRange(ability.range.min, ability, get().talentModifiers) : 0; const maximumRange = ability ? talentAdjustedRange(ability.range.max, ability, get().talentModifiers) : 0; - if (!target || target.dead || !targetPosition || distance < minimumRange || distance > maximumRange) { - get().cancelCast(target?.dead ? "Channel ended: the target was defeated." : "Channel interrupted: target unavailable."); + const targetUnavailable = channelHostile + ? !target || target.dead || !targetPosition + : (ability.target === "friendly" || ability.target === "any") && cast.targetId + ? !friendlyTarget || friendlyTarget.health <= 0 || !targetPosition + : false; + if (targetUnavailable || distance < minimumRange || (cast.targetId !== null && distance > maximumRange)) { + get().cancelCast((target?.dead || friendlyTarget?.health === 0) + ? "Channel ended: the target was defeated." + : "Channel interrupted: target unavailable."); return; } const damageAmount = ability.effects.reduce( - (total, effect) => total + (effect.kind === "damage" + (total, effect) => total + (effect.kind === "damage" || effect.kind === "dot" ? equipmentAdjustedCombatAmount( effect, get().level, get().gearStats, get().classId, ability, - ) + ) * (effect.kind === "dot" ? effect.ticks : 1) : 0), 0, ) / cast.totalTicks; const healingAmount = ability.effects.reduce( - (total, effect) => total + (effect.kind === "heal" + (total, effect) => total + (effect.kind === "heal" || effect.kind === "hot" ? equipmentAdjustedCombatAmount( effect, get().level, get().gearStats, get().classId, ability, - ) + ) * (effect.kind === "hot" ? effect.ticks : 1) : 0), 0, ) / cast.totalTicks; - if (damageAmount > 0 && cast.targetId) { - get().damageMob( - cast.targetId, - talentAdjustedAmount( - damageAmount, - get().talentModifiers, - "damage-percent", - ability, - ), - nextTickAt, - playerThreatSource(get(), ability.id, true), - abilityDamageSchool(get().classId, ability), - { - attackKind: abilityAttackKind(get().classId, ability), - seed: `${PLAYER_AGGRO_ID}:${ability.id}:${cast.targetId}:${nextTickAt}:channel:${ticksCompleted}`, - abilityId: ability.id, - periodic: true, - rules: { - canMiss: false, - canCrit: false, - canDodge: false, - canParry: false, - canBlock: false, + if (damageAmount > 0) { + const channelCenter = channelHostile ? targetPosition ?? cast.origin : get().playerPosition; + const channelTargets = ability.radius === undefined + ? (cast.targetId && channelHostile ? [cast.targetId] : []) + : nearbyMobRuntimeIds(channelCenter, talentAdjustedRange(ability.radius, ability, get().talentModifiers)) + .filter((id) => !get().mobs[id]?.dead); + for (const channelTargetId of channelTargets) get().damageMob( + channelTargetId, + talentAdjustedAmount( + damageAmount, + get().talentModifiers, + "damage-percent", + ability, + ), + nextTickAt, + playerThreatSource(get(), ability.id, true), + abilityDamageSchool(get().classId, ability), + { + attackKind: abilityAttackKind(get().classId, ability), + seed: `${PLAYER_AGGRO_ID}:${ability.id}:${channelTargetId}:${nextTickAt}:channel:${ticksCompleted}`, + abilityId: ability.id, + periodic: true, + rules: { + canMiss: false, + canCrit: false, + canDodge: false, + canParry: false, + canBlock: false, + }, }, - }, - ); + ); } if (healingAmount > 0) { - const healed = get().healPlayer(talentAdjustedAmount( + const perTargetHealing = talentAdjustedAmount( healingAmount, get().talentModifiers, "healing-percent", ability, - )); - if (healed > 0) { - get().addHealingThreat(playerThreatSource(get(), ability.id, true), healed); + ); + let healed = 0; + if (!channelHostile && (ability.target === "friendly" || ability.target === "any") && cast.targetId) { + const targetMember = usePartyStore.getState().members.find((member) => member.id === cast.targetId); + if (targetMember) { + const current = get(); + const actor = companionActorFromMember( + targetMember, + entityAbsorbAmount(current.auras, targetMember.id), + current.actors[targetMember.id], + ); + const effective = actor.alive + ? Math.min(actor.maxHealth - actor.health, Math.max(0, Math.round(perTargetHealing))) + : 0; + if (effective > 0) { + const nextActor = { ...actor, health: actor.health + effective }; + set({ actors: { ...current.actors, [actor.id]: nextActor } }); + mirrorCompanionActor(nextActor); + healed += effective; + } + } + } else { + healed += get().healPlayer(perTargetHealing); + if (ability.radius !== undefined) { + for (const member of usePartyStore.getState().members) { + const current = get(); + const actor = companionActorFromMember( + member, + entityAbsorbAmount(current.auras, member.id), + current.actors[member.id], + ); + const effective = actor.alive + ? Math.min(actor.maxHealth - actor.health, Math.max(0, Math.round(perTargetHealing))) + : 0; + if (effective <= 0) continue; + const nextActor = { ...actor, health: actor.health + effective }; + set({ actors: { ...current.actors, [actor.id]: nextActor } }); + mirrorCompanionActor(nextActor); + healed += effective; + } + } } + if (healed > 0) get().addHealingThreat(playerThreatSource(get(), ability.id, true), healed); + } + const drainedResource = ability.effects.reduce((total, effect) => ( + effect.kind === "resource-drain" && !effect.burn ? total + effect.amount : total + ), 0) / cast.totalTicks; + if (drainedResource > 0) { + const activeResource = resourceProfileForClass(get().classId).type; + const maximum = get().maxResourcePools[activeResource] ?? get().maxResource; + const amount = ability.effects.some((effect) => effect.kind === "resource-drain" && effect.percentage) + ? maximum * drainedResource / 100 + : drainedResource; + const pools = { ...get().resourcePools }; + pools[activeResource] = clamp((pools[activeResource] ?? get().resource) + amount, 0, maximum); + set({ resource: pools[activeResource]!, resourcePools: pools }); } emitPlayerAbilityPresentation( ability, @@ -5008,24 +7612,8 @@ export const useCombatStore = create((set, get) => ({ } if (get().activeCast?.id !== cast.id) return; if (ticksCompleted >= cast.totalTicks || now >= cast.completesAt) { - set({ - activeCast: null, - playerAnimationEvent: nextAnimationEvent("ability-cancel", cast.abilityId), - feedback: nextFeedback("success", `${ability?.name ?? "Channel"} completed.`, { - abilityId: cast.abilityId, - targetId: cast.targetId ?? undefined, - }), - }); - if (ability) { - emitPlayerAbilityPresentation( - ability, - "release", - now, - get().playerPosition, - cast.targetId, - cast.targetId ? getMobPosition(cast.targetId) : get().playerPosition, - ); - } + if (ability) get().castAbility(cast.abilityId, cast.origin, now, cast); + else set({ activeCast: null }); } else if (ticksCompleted !== cast.ticksCompleted) { set({ activeCast: { ...cast, ticksCompleted, nextTickAt } }); } @@ -5055,6 +7643,8 @@ export const useCombatStore = create((set, get) => ({ corpseDespawnAt: null, experienceGranted: false, statuses: [], + controlDiminishingReturns: {}, + tauntDiminishingReturns: { applications: 0, resetAt: 0 }, auras: [], threatByActor: {}, targetActorId: null, @@ -5077,18 +7667,33 @@ export const useCombatStore = create((set, get) => ({ shield: 0, shieldExpiresAt: 0, resource: initialResourceForMaximum(state.classId, state.maxResource), + resourcePools: Object.fromEntries(Object.entries(state.maxResourcePools).map(([type, maximum]) => [ + type, + type === resourceProfileForClass(state.classId).type + ? initialResourceForMaximum(state.classId, maximum ?? state.maxResource) + : 0, + ])), + lastResourceSpentAt: {}, comboPoints: 0, + comboTargetId: null, + deathKnightRunes: state.classId === "death-knight" ? createDeathKnightRunes() : [], cooldowns: {}, globalCooldownEndsAt: 0, activeCast: null, + schoolLockedUntil: {}, playerAnimationEvent: nextAnimationEvent("ability-cancel"), autoAttackTargetId: null, nextAutoAttackAt: 0, mobs, selectedTargetId: null, + selectedFriendlyActorId: null, effects: [], auras: syncPassiveAuras([], state.abilities, state.level, state.talentRanks, Date.now()), summons: [], + areaEffects: [], + pendingGroundTarget: null, + combatEvents: [], + actors: {}, lastCombatResult: null, feedback: nextFeedback("success", "The encounter has been reset."), }; diff --git a/src/game/deathRespawn.test.ts b/src/game/deathRespawn.test.ts index 4d8a21ea..e3539e66 100644 --- a/src/game/deathRespawn.test.ts +++ b/src/game/deathRespawn.test.ts @@ -24,7 +24,7 @@ describe("death respawn", () => { useCombatStore.getState().selectMob("respawn-pack:a"); useCombatStore.getState().damageMob("respawn-pack:a", 1, 1000); expect(useCombatStore.getState().castAbility("priest-psychic-scream", [10, -50, 20], 2000).ok).toBe(true); - expect(useCombatStore.getState().resource).toBe(startingResource - 15); + expect(useCombatStore.getState().resource).toBe(startingResource - Math.round(startingResource * 0.15)); const revisionBefore = useGameStore.getState().resetRevision; useWailingEncounterStore.setState({ phase: "mutanus", phaseStartedAt: 5_000 }); diff --git a/src/game/dungeonCombatFidelity.test.ts b/src/game/dungeonCombatFidelity.test.ts new file mode 100644 index 00000000..14590580 --- /dev/null +++ b/src/game/dungeonCombatFidelity.test.ts @@ -0,0 +1,105 @@ +import { afterEach, beforeEach, describe, expect, it } from "vitest"; +import { PLAYER_AGGRO_ID } from "./aggro"; +import { useCombatStore } from "./combatStore"; +import { registerCombatSpatialProvider, resetCombatSpatialProvider } from "./combatSpatial"; +import { clearMobRuntimeRegistry, getMobPosition, setMobPosition } from "./mobRuntimeRegistry"; +import { clearPartyRuntimeRegistry, registerPartyRuntimePosition } from "./partyRuntimeRegistry"; +import { usePartyStore } from "./partyStore"; + +function registerTarget(id = "target", position: readonly [number, number, number] = [0, 0, 10]) { + useCombatStore.getState().registerMob(id, { name: id, maxHealth: 1_000, xpReward: 0 }); + setMobPosition(id, position); + useCombatStore.getState().selectMob(id); +} + +describe("dungeon combat fidelity integration", () => { + beforeEach(() => { + resetCombatSpatialProvider(); + clearMobRuntimeRegistry(); + clearPartyRuntimeRegistry(); + useCombatStore.getState().initializeCharacter({ classId: "mage", level: 10 }); + useCombatStore.getState().setPlayerPosition([0, 0, 0]); + usePartyStore.getState().initializeParty("fidelity", 10, useCombatStore.getState().health); + }); + afterEach(resetCombatSpatialProvider); + + it("rejects obstructed and rear-arc hostile casts while friendly healing ignores facing", () => { + registerTarget(); + let blocked = true; + registerCombatSpatialProvider({ + actor: (id) => id === PLAYER_AGGRO_ID + ? { id, position: [0, 0, 0], yaw: Math.PI } + : { id, position: getMobPosition(id) ?? [0, 0, 0], yaw: 0 }, + hasLineOfSight: () => !blocked, + projectGroundPoint: (point) => point, + }); + expect(useCombatStore.getState().castAbility("mage-frostbolt", { now: 1_000 })).toMatchObject({ ok: false, reason: "line-of-sight" }); + blocked = false; + expect(useCombatStore.getState().castAbility("mage-frostbolt", { now: 1_000 })).toMatchObject({ ok: false, reason: "not-facing" }); + + useCombatStore.getState().initializeCharacter({ classId: "priest", level: 10 }); + const ally = usePartyStore.getState().members[0]; + registerPartyRuntimePosition(ally.id, [0, 0, 10]); + usePartyStore.getState().selectMember(ally.id); + usePartyStore.setState((state) => ({ members: state.members.map((member) => member.id === ally.id ? { ...member, health: 1 } : member) })); + const friendlyResult = useCombatStore.getState().castAbility("wow335-priest-lesser-heal", { now: 2_000 }); + expect(friendlyResult.reason).toBeUndefined(); + }); + + it("applies only the first two direct-damage pushbacks and ignores fully absorbed hits", () => { + registerTarget(); + expect(useCombatStore.getState().castAbility("mage-frostbolt", { now: 1_000 }).ok).toBe(true); + const original = useCombatStore.getState().activeCast!.completesAt; + useCombatStore.getState().damagePlayer(1); + useCombatStore.getState().damagePlayer(1); + useCombatStore.getState().damagePlayer(1); + expect(useCombatStore.getState().activeCast).toMatchObject({ completesAt: original + 1_000, pushbackHits: 2 }); + + useCombatStore.getState().cancelCast(); + useCombatStore.setState({ globalCooldownEndsAt: 0, shield: 10_000, shieldExpiresAt: Number.MAX_SAFE_INTEGER }); + expect(useCombatStore.getState().castAbility("mage-frostbolt", { now: 5_000 }).ok).toBe(true); + const absorbedOriginal = useCombatStore.getState().activeCast!.completesAt; + useCombatStore.getState().damagePlayer(100); + expect(useCombatStore.getState().activeCast!.completesAt).toBe(absorbedOriginal); + }); + + it("creates persistent collision-safe ground effects and dynamically ticks actors in their radius", () => { + useCombatStore.getState().initializeCharacter({ classId: "paladin", level: 80 }); + registerTarget("late-target", [20, 0, 0]); + registerCombatSpatialProvider({ + actor: (id) => ({ id, position: id === PLAYER_AGGRO_ID ? [0, 0, 0] : getMobPosition(id) ?? [0, 0, 0], yaw: 0 }), + hasLineOfSight: () => true, + projectGroundPoint: (point) => [point[0], 0, point[2]], + }); + const groundResult = useCombatStore.getState().castAbility("paladin-consecration", { now: 1_000, groundPosition: [0, 3, 0] }); + expect(groundResult.reason).toBeUndefined(); + expect(useCombatStore.getState().areaEffects).toHaveLength(1); + setMobPosition("late-target", [2, 0, 0]); + const before = useCombatStore.getState().mobs["late-target"].health; + useCombatStore.getState().tick(1, 2_000); + expect(useCombatStore.getState().mobs["late-target"].health).toBeLessThan(before); + }); + + it("spends independent Death Knight runes and exposes every combatant through actor snapshots", () => { + useCombatStore.getState().initializeCharacter({ classId: "death-knight", level: 10 }); + registerTarget("rune-target", [0, 0, 10]); + expect(useCombatStore.getState().castAbility("death-knight-icy-touch", { now: 1_000 }).ok).toBe(true); + expect(useCombatStore.getState().deathKnightRunes.filter((rune) => rune.readyAt > 1_000)).toHaveLength(1); + useCombatStore.getState().synchronizeActors(); + const actors = useCombatStore.getState().actors; + expect(actors[PLAYER_AGGRO_ID].runes).toHaveLength(6); + expect(actors["rune-target"].kind).toBe("enemy"); + for (const member of usePartyStore.getState().members) expect(actors[member.id].kind).toBe("companion"); + }); + + it("emits structured effective damage and healing records", () => { + registerTarget("event-target", [0, 0, 10]); + useCombatStore.getState().damageMob("event-target", 25, 1_000); + useCombatStore.getState().damagePlayer(10); + useCombatStore.getState().healPlayer(100); + const events = useCombatStore.getState().combatEvents; + expect(events.some((event) => event.kind === "damage" && event.targetActorId === "event-target" && event.effectiveAmount > 0)).toBe(true); + expect(events.some((event) => event.kind === "healing" && event.overheal >= 0)).toBe(true); + expect(events.every((event) => event.rawAmount >= event.effectiveAmount)).toBe(true); + }); +}); diff --git a/src/game/dungeonCombatFidelityExtended.test.ts b/src/game/dungeonCombatFidelityExtended.test.ts new file mode 100644 index 00000000..ca05a7ef --- /dev/null +++ b/src/game/dungeonCombatFidelityExtended.test.ts @@ -0,0 +1,195 @@ +import { afterEach, beforeEach, describe, expect, it } from "vitest"; +import { abilitiesForClass, abilityAtLevel, abilityById, type AbilityDefinition } from "./abilityCatalog"; +import { PLAYER_AGGRO_ID } from "./aggro"; +import { useCombatStore } from "./combatStore"; +import { registerCombatSpatialProvider, resetCombatSpatialProvider } from "./combatSpatial"; +import { targetingRulesForAbility } from "./abilityRules"; +import { clearMobRuntimeRegistry, getMobPosition, setMobPosition } from "./mobRuntimeRegistry"; +import { clearPartyRuntimeRegistry } from "./partyRuntimeRegistry"; +import { usePartyStore } from "./partyStore"; + +function registerMob(id: string, position: readonly [number, number, number], boss = false): void { + useCombatStore.getState().registerMob(id, { name: id, maxHealth: 10_000, xpReward: 0, boss }); + setMobPosition(id, position); +} + +describe("extended dungeon combat fidelity", () => { + beforeEach(() => { + resetCombatSpatialProvider(); + clearMobRuntimeRegistry(); + clearPartyRuntimeRegistry(); + useCombatStore.getState().initializeCharacter({ classId: "priest", level: 80 }); + useCombatStore.getState().setPlayerPosition([0, 0, 0]); + usePartyStore.getState().initializeParty("actor-authority", 80, useCombatStore.getState().health); + useCombatStore.getState().synchronizeActors(); + }); + + afterEach(resetCombatSpatialProvider); + + it("keeps companion vitals authoritative when compatibility party records are stale", () => { + const member = usePartyStore.getState().members[0]; + const actor = useCombatStore.getState().actors[member.id]; + useCombatStore.setState((state) => ({ + actors: { ...state.actors, [member.id]: { ...actor, health: 7, alive: true } }, + })); + usePartyStore.setState((state) => ({ + members: state.members.map((candidate) => candidate.id === member.id + ? { ...candidate, health: candidate.maxHealth } + : candidate), + })); + + useCombatStore.getState().synchronizeActors(); + + expect(useCombatStore.getState().actors[member.id].health).toBe(7); + expect(usePartyStore.getState().members.find((candidate) => candidate.id === member.id)?.health).toBe(7); + }); + + it("binds combo points to the enemy that generated them", () => { + useCombatStore.getState().initializeCharacter({ classId: "rogue", level: 20 }); + registerMob("combo-a", [0, 0, 3]); + registerMob("combo-b", [1, 0, 2]); + useCombatStore.getState().selectMob("combo-a"); + expect(useCombatStore.getState().castAbility("rogue-sinister-strike", { now: 1_000 }).ok).toBe(true); + expect(useCombatStore.getState()).toMatchObject({ comboPoints: 1, comboTargetId: "combo-a" }); + + useCombatStore.setState((state) => ({ + globalCooldownEndsAt: 0, + cooldowns: {}, + resource: state.maxResource, + resourcePools: { ...state.resourcePools, energy: state.maxResource }, + })); + useCombatStore.getState().selectMob("combo-b"); + const secondStrike = useCombatStore.getState().castAbility("rogue-sinister-strike", { now: 2_000 }); + expect(secondStrike.ok, secondStrike.reason).toBe(true); + expect(useCombatStore.getState()).toMatchObject({ comboPoints: 1, comboTargetId: "combo-b" }); + }); + + it("applies boss control and taunt diminishing returns through immunity", () => { + registerMob("dr-boss", [0, 0, 3], true); + const durations: number[] = []; + for (const now of [1_000, 2_000, 3_000]) { + expect(useCombatStore.getState().controlMob("dr-boss", `stun-${now}`, "stun", 8_000, now)).toBe(true); + const status = useCombatStore.getState().mobs["dr-boss"].statuses.find((entry) => entry.kind === "stun")!; + durations.push(status.endsAt - now); + } + expect(durations).toEqual([3_000, 1_500, 750]); + expect(useCombatStore.getState().controlMob("dr-boss", "stun-immune", "stun", 8_000, 4_000)).toBe(false); + + const tauntDurations: number[] = []; + for (const now of [5_000, 6_000, 7_000]) { + expect(useCombatStore.getState().tauntMob("dr-boss", { actorId: PLAYER_AGGRO_ID, role: "tank" }, 3_000, now)).toBe(true); + tauntDurations.push(useCombatStore.getState().mobs["dr-boss"].forcedTarget!.endsAt - now); + } + expect(tauntDurations).toEqual([3_000, 1_950, 1_268]); + expect(useCombatStore.getState().tauntMob("dr-boss", { actorId: PLAYER_AGGRO_ID, role: "tank" }, 3_000, 8_000)).toBe(false); + }); + + it("moves and confirms a collision-projected ground reticle", () => { + useCombatStore.getState().initializeCharacter({ classId: "mage", level: 80 }); + const groundAbility = abilitiesForClass("mage") + .map((ability) => abilityAtLevel(ability, 80)) + .find((ability) => targetingRulesForAbility(ability).shape === "ground" && ability.range.max > 1)!; + expect(groundAbility).toBeDefined(); + registerCombatSpatialProvider({ + actor: (id) => ({ id, position: [0, 0, 0], yaw: 0 }), + hasLineOfSight: () => true, + projectGroundPoint: (point, maximumDistance, origin = [0, 0, 0]) => { + const dx = point[0] - origin[0]; + const dz = point[2] - origin[2]; + const distance = Math.hypot(dx, dz); + const scale = distance > maximumDistance ? maximumDistance / distance : 1; + return [origin[0] + dx * scale, 0, origin[2] + dz * scale]; + }, + }); + expect(useCombatStore.getState().beginGroundTarget(groundAbility.id)).toBe(true); + const before = useCombatStore.getState().pendingGroundTarget!; + expect(before.valid).toBe(true); + useCombatStore.getState().moveGroundTarget(1, 0, 0, 0.1); + const moved = useCombatStore.getState().pendingGroundTarget!; + expect(moved.position).not.toEqual(before.position); + expect(Math.hypot(moved.position[0], moved.position[2])).toBeLessThanOrEqual(moved.maximumRange); + expect(useCombatStore.getState().confirmGroundTarget(undefined, 1_000).ok).toBe(true); + expect(useCombatStore.getState().pendingGroundTarget).toBeNull(); + const activeCast = useCombatStore.getState().activeCast; + if (activeCast) useCombatStore.getState().tick(0.1, activeCast.completesAt); + expect(useCombatStore.getState().areaEffects).toHaveLength(1); + }); + + it("keeps summons targetable, credits their owner, replaces totems, and expires them", () => { + useCombatStore.getState().initializeCharacter({ classId: "rom-warden", raceId: "rom-elf", level: 20 }); + useCombatStore.getState().synchronizeActors(); + registerMob("summon-target", [0, 0, 3]); + useCombatStore.getState().selectMob("summon-target"); + expect(useCombatStore.getState().castAbility("rom-warden-primary-1", { now: 1_000 }).ok).toBe(true); + useCombatStore.getState().tick(0.1, 5_000); + const summon = useCombatStore.getState().summons[0]; + expect(summon).toBeDefined(); + expect(useCombatStore.getState().actors[summon.id]).toMatchObject({ kind: "summon", ownerId: PLAYER_AGGRO_ID, alive: true }); + expect(useCombatStore.getState().selectFriendlyActor(summon.id)).toBe(true); + + const beforeDamage = summon.health; + expect(useCombatStore.getState().damageSummon(summon.id, 5)).toBe(5); + expect(useCombatStore.getState().actors[summon.id].health).toBe(beforeDamage - 5); + expect(useCombatStore.getState().healActor(summon.id, 5, { sourceActorId: PLAYER_AGGRO_ID }).effectiveAmount).toBe(5); + + const baseAbility = abilityById("rom-warden-primary-1")!; + const combatSummonAbility: AbilityDefinition = { ...baseAbility, id: "test-guardian", name: "Test Guardian" }; + useCombatStore.getState().summonActor( + PLAYER_AGGRO_ID, + combatSummonAbility, + { kind: "summon", creatureId: 2, coefficient: 0.5, durationMs: 10_000 }, + [0, 0, 0], + "summon-target", + 6_000, + ); + useCombatStore.getState().tick(1, 7_500); + expect(useCombatStore.getState().mobs["summon-target"].threatByActor[PLAYER_AGGRO_ID]).toBeGreaterThan(0); + expect(useCombatStore.getState().mobs["summon-target"].threatByActor[summon.id] ?? 0).toBe(0); + + const totemAbility: AbilityDefinition = { ...baseAbility, id: "test-totem", name: "Test Totem" }; + const totemEffect = { kind: "summon" as const, creatureId: 1, coefficient: 0.2, durationMs: 10_000 }; + useCombatStore.getState().summonActor(PLAYER_AGGRO_ID, totemAbility, totemEffect, [0, 0, 0], null, 8_000); + useCombatStore.getState().summonActor(PLAYER_AGGRO_ID, totemAbility, totemEffect, [1, 0, 0], null, 8_100); + expect(useCombatStore.getState().summons.filter((candidate) => candidate.exclusiveGroup === `${PLAYER_AGGRO_ID}:totem`)).toHaveLength(1); + + useCombatStore.getState().tick(0.1, 20_001); + expect(useCombatStore.getState().summons.some((candidate) => candidate.id === summon.id)).toBe(false); + expect(useCombatStore.getState().actors[summon.id]).toBeUndefined(); + }); + + it("executes damaging abilities from Classic, RuneWaker, and CoA catalogs through one runtime", () => { + const cases = [ + { classId: "mage" as const, level: 20, source: "classic" }, + { classId: "rom-mage" as const, level: 20, source: "runewaker" }, + { classId: "stormbringer" as const, level: 60, source: "coa" }, + ]; + registerCombatSpatialProvider({ + actor: (id) => ({ id, position: id === PLAYER_AGGRO_ID ? [0, 0, 0] : getMobPosition(id) ?? [0, 0, 0], yaw: 0 }), + hasLineOfSight: () => true, + projectGroundPoint: (point) => point, + }); + for (const entry of cases) { + useCombatStore.getState().initializeCharacter({ classId: entry.classId, level: entry.level }); + const ability = abilitiesForClass(entry.classId) + .map((candidate) => abilityAtLevel(candidate, entry.level)) + .find((candidate) => ( + !candidate.passive + && candidate.target === "hostile" + && candidate.talentEntryId === undefined + && candidate.effects.some((effect) => effect.kind === "damage") + )); + expect(ability, `${entry.source} executable damage ability`).toBeDefined(); + const id = `${entry.source}-target`; + const range = Math.max(1, Math.min(10, ability!.range.max)); + registerMob(id, [0, 0, range]); + useCombatStore.getState().selectMob(id); + const before = useCombatStore.getState().mobs[id].health; + const cast = useCombatStore.getState().castAbility(ability!.id, { now: 1_000 }); + expect(cast.ok, `${entry.source} cast: ${cast.reason ?? "ok"}`).toBe(true); + const activeCast = useCombatStore.getState().activeCast; + if (activeCast) useCombatStore.getState().tick(0.1, activeCast.completesAt); + expect(useCombatStore.getState().mobs[id].health, `${entry.source} damage`).toBeLessThan(before); + clearMobRuntimeRegistry(); + } + }); +}); diff --git a/src/game/enemyAttacks.ts b/src/game/enemyAttacks.ts index eab105be..b71de98b 100644 --- a/src/game/enemyAttacks.ts +++ b/src/game/enemyAttacks.ts @@ -15,7 +15,7 @@ export type EnemyDamageSchool = | "shadow" | "holy"; -export type EnemyControlMechanic = "fear" | "sleep" | "root" | "stun"; +export type EnemyControlMechanic = "fear" | "sleep" | "root" | "stun" | "silence"; export type EnemyAbilityEffect = | { readonly kind: "damage"; readonly multiplier: number } diff --git a/src/game/generated/coaAbilityRuntimeCatalog.json b/src/game/generated/coaAbilityRuntimeCatalog.json index cbb62fc1..337ad7b5 100644 --- a/src/game/generated/coaAbilityRuntimeCatalog.json +++ b/src/game/generated/coaAbilityRuntimeCatalog.json @@ -1 +1 @@ -{"schemaVersion":1,"abilitiesByClass":{"barbarian":[{"id":"coa-tree-30762","classId":"barbarian","dbcSpellId":500918,"name":"Ancestral Roar","unlockLevel":1,"icon":"/assets/ui/spells/_d3threateningshout.png","sigil":"AR","description":"Ancestral RoarRank 1Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 100+0+AP*0.5.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.6580645243326824,"basePoints":100,"dieSides":7,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500918,"level":1,"description":"Ancestral RoarRank 1Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 100+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.6580645243326824,"basePoints":100,"dieSides":7,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30762},{"id":"coa-12-ancestral-spirit-47-705153","classId":"barbarian","dbcSpellId":705153,"name":"Ancestral Spirit","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Ancestral SpiritRank 1Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705153,"level":1,"description":"Ancestral SpiritRank 1Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705154,"level":1,"description":"Ancestral SpiritRank 2Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34279","classId":"barbarian","dbcSpellId":560456,"name":"Athleticism","unlockLevel":1,"icon":"/assets/ui/spells/5_run_border.png","sigil":"AT","description":"Increases your Energy regeneration by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560456,"level":1,"description":"Increases your Energy regeneration by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34279},{"id":"barbarian-barbaric-strike","classId":"barbarian","dbcSpellId":801787,"name":"Barbaric Strike","unlockLevel":1,"icon":"/assets/ui/spells/warrior_wild_strike.png","sigil":"BS","description":"Barbaric StrikeRank 160 Energy Instant6 sec cooldownRequires Weapon \"Strikes an enemy for Weapon Damage plus 2 to 3 and applies 2 stacks of Carnage.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801787,"level":1,"description":"Barbaric StrikeRank 160 Energy Instant6 sec cooldownRequires Weapon \"Strikes an enemy for Weapon Damage plus 2 to 3 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}]},{"rank":2,"spellId":501036,"level":11,"description":"Barbaric StrikeRank 260 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 5 to 6 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}]},{"rank":3,"spellId":501037,"level":21,"description":"Barbaric StrikeRank 360 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 10 to 11 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}]},{"rank":4,"spellId":501038,"level":31,"description":"Barbaric StrikeRank 460 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 18 to 19 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}]},{"rank":5,"spellId":501039,"level":41,"description":"Barbaric StrikeRank 560 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 30 to 31 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}]},{"rank":6,"spellId":501040,"level":51,"description":"Barbaric StrikeRank 660 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 48 to 49 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}]},{"rank":7,"spellId":501041,"level":61,"description":"Barbaric StrikeRank 760 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 73 to 74 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}]},{"rank":8,"spellId":501042,"level":71,"description":"Barbaric StrikeRank 860 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 107 to 108 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":17,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500917,"durationMs":0}]}]},{"id":"coa-tree-14303","classId":"barbarian","dbcSpellId":800193,"name":"Battle Rhythm","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_2h_orcwarrior_c_01.png","sigil":"BR","description":"Critical strikes with abilities now generate 5 Energy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800951,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800193,"level":1,"description":"Critical strikes with abilities now generate 5 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800951,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":14303},{"id":"coa-tree-34276","classId":"barbarian","dbcSpellId":561322,"name":"Bellowing Voice","unlockLevel":1,"icon":"/assets/ui/spells/ability_fomor_boss_shout.png","sigil":"BV","description":"Increases the effectiveness of your Shouts by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561322,"level":1,"description":"Increases the effectiveness of your Shouts by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34276},{"id":"coa-tree-30163","classId":"barbarian","dbcSpellId":804138,"name":"Berserker Axe","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_draenorcrafted_d_02_a_horde.png","sigil":"BA","description":"Berserker AxeRank 130 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","target":"hostile","range":{"min":5,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804138,"level":1,"description":"Berserker AxeRank 130 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0}]}],"talentEntryId":30163},{"id":"coa-tree-34303","classId":"barbarian","dbcSpellId":805821,"name":"Blood and Glory","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_operator_thogar.png","sigil":"BA","description":"Taking damage while at or below 35% maximum health now grants you 20% increased healing received and -10% reduced damage taken.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805822,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805821,"level":1,"description":"Taking damage while at or below 35% maximum health now grants you 20% increased healing received and -10% reduced damage taken.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805822,"durationMs":-1}]}],"talentEntryId":34303},{"id":"coa-tree-4297","classId":"barbarian","dbcSpellId":801767,"name":"Bloodbound","unlockLevel":1,"icon":"/assets/ui/spells/_d3gargantuan.png","sigil":"BL","description":"Reduces the cooldown of your Warband by -30 sec and Ancestral Roar by -5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801767,"level":1,"description":"Reduces the cooldown of your Warband by -30 sec and Ancestral Roar by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4297},{"id":"coa-tree-11302","classId":"barbarian","dbcSpellId":707583,"name":"Bloody Onslaught","unlockLevel":1,"icon":"/assets/ui/spells/inv_fishing_bait_spinefinpiranha.png","sigil":"BO","description":"Increases the duration of Onslaught by 6 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707583,"level":1,"description":"Increases the duration of Onslaught by 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11302},{"id":"coa-tree-5373","classId":"barbarian","dbcSpellId":800131,"name":"Born Killer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_trinket6oih_ironskull1.png","sigil":"BK","description":"Killing an enemy that yields experience or honor now grants you 5% increased armor penetration and movement speed for 5 seconds, stacking 20 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":802760,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800131,"level":1,"description":"Killing an enemy that yields experience or honor now grants you 5% increased armor penetration and movement speed for 5 seconds, stacking 20 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":802760,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5373},{"id":"coa-12-bottomless-tankard-47-705160","classId":"barbarian","dbcSpellId":705160,"name":"Bottomless Tankard","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_beerhat_a_01.png","sigil":"BT","description":"Bottomless TankardRank 2Reduces the cooldown of Tankard Toss by 30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705160,"level":1,"description":"Bottomless TankardRank 2Reduces the cooldown of Tankard Toss by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-12-boulderfist-41-705184","classId":"barbarian","dbcSpellId":705184,"name":"Boulderfist","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_110.png","sigil":"BO","description":"BoulderfistRank 1Reduces the Energy cost of Wrecker by 15.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705184,"level":1,"description":"BoulderfistRank 1Reduces the Energy cost of Wrecker by 15.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705185,"level":1,"description":"BoulderfistRank 2Reduces the Energy cost of Wrecker by 30.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34299","classId":"barbarian","dbcSpellId":804746,"name":"Dauntless","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate_nightmare.png","sigil":"DA","description":"Dealing damage with Whirling Advance now dispels 1 movement slowing effect from you and refunds 2 Energy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560916,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804746,"level":1,"description":"Dealing damage with Whirling Advance now dispels 1 movement slowing effect from you and refunds 2 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560916,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34299},{"id":"coa-tree-30870","classId":"barbarian","dbcSpellId":806228,"name":"Defiance","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_bloodsurge.png","sigil":"DE","description":"Attempt to defy death, reducing all damage taken by 30% to 80% based on your current missing health for 15 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":64,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806228,"level":1,"description":"Attempt to defy death, reducing all damage taken by 30% to 80% based on your current missing health for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":64,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":30870},{"id":"coa-12-empty-kegs-47-706346","classId":"barbarian","dbcSpellId":706346,"name":"Empty Kegs","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_beer_01.png","sigil":"EK","description":"Empty KegsRank 1Reduces the Energy cost of Keg Smash by 10 and increases its range by $s2yd.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706346,"level":1,"description":"Empty KegsRank 1Reduces the Energy cost of Keg Smash by 10 and increases its range by $s2yd.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706347,"level":1,"description":"Empty KegsRank 2Reduces the Energy cost of Keg Smash by 20 and increases its range by $s2yd.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6803","classId":"barbarian","dbcSpellId":705238,"name":"Entrails","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_lifedrain.png","sigil":"EN","description":"Damage dealt by bleed effects now increases your Agility by 1% for 8 seconds, stacking 10 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":783102,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705238,"level":1,"description":"Damage dealt by bleed effects now increases your Agility by 1% for 8 seconds, stacking 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":783102,"durationMs":-1}]}],"talentEntryId":6803},{"id":"coa-tree-4001","classId":"barbarian","dbcSpellId":92081,"name":"Excessive Power","unlockLevel":1,"icon":"/assets/ui/spells/_orc_06.png","sigil":"EP","description":"Level 10 Passive Increases your maximum Energy by 100%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":240,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92081,"level":1,"description":"Level 10 Passive Increases your maximum Energy by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":240,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4001},{"id":"coa-tree-29608","classId":"barbarian","dbcSpellId":706354,"name":"Face Smasher","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_innerrage.png","sigil":"FS","description":"Your ability critical strikes now reduce the cooldown of your Battle Vigor and Thick Skull by -1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":562323,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706354,"level":1,"description":"Your ability critical strikes now reduce the cooldown of your Battle Vigor and Thick Skull by -1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":562323,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29608},{"id":"coa-tree-4003","classId":"barbarian","dbcSpellId":92083,"name":"Fill Level","unlockLevel":1,"icon":"/assets/ui/spells/spell_brew_wheat.png","sigil":"FL","description":"Level 10 Passive Grants you Fill Level and the ability to manipulate a Tankard.Fill LevelYou have a magical Tankard that fills up over time, granting you 1 stack of Fill Level every 2 sec. Some of your other abilities empty your Tankard to trigger with a reduced cooldown.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92083,"level":1,"description":"Level 10 Passive Grants you Fill Level and the ability to manipulate a Tankard.Fill LevelYou have a magical Tankard that fills up over time, granting you 1 stack of Fill Level every 2 sec. Some of your other abilities empty your Tankard to trigger with a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4003},{"id":"coa-tree-29803","classId":"barbarian","dbcSpellId":560906,"name":"First Blood","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_skirmisher.png","sigil":"FB","description":"Increases all damage dealt to enemies above 80% health by 20%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":303,"miscValue":28,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560906,"level":1,"description":"Increases all damage dealt to enemies above 80% health by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":303,"miscValue":28,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29803},{"id":"coa-tree-30770","classId":"barbarian","dbcSpellId":707207,"name":"Forward Advance","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_whirlpool_b_01.png","sigil":"FA","description":"Increases the range of your Whirling Advance by 3 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707207,"level":1,"description":"Increases the range of your Whirling Advance by 3 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30770},{"id":"coa-12-frothing-41-706326","classId":"barbarian","dbcSpellId":706326,"name":"Frothing","unlockLevel":1,"icon":"/assets/ui/spells/inv_tourofdutyzuldazar.png","sigil":"FR","description":"FrothingRank 1Increases the critical strike chance of Savage Strike by 8% and causes it to strike 1 additional nearby enemy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706326,"level":1,"description":"FrothingRank 1Increases the critical strike chance of Savage Strike by 8% and causes it to strike 1 additional nearby enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":706327,"level":1,"description":"FrothingRank 2Increases the critical strike chance of Savage Strike by 15% and causes it to strike 2 additional nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4002","classId":"barbarian","dbcSpellId":92082,"name":"Headhunter","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_2h_artifactmaw_d_01.png","sigil":"HE","description":"Level 10 Passive Reduces the Energy cost of Throw Weapon, Maiming Spear, and Whirling Advance by -15.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92082,"level":1,"description":"Level 10 Passive Reduces the Energy cost of Throw Weapon, Maiming Spear, and Whirling Advance by -15.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4002},{"id":"coa-tree-29793","classId":"barbarian","dbcSpellId":804137,"name":"Headhunter's Spear","unlockLevel":1,"icon":"/assets/ui/spells/headhunting_spear.png","sigil":"HS","description":"Hurl a light spear at an enemy dealing 140% Ranged Weapon Damage plus 21 and restores 30% of your maximum Energy.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804137,"level":1,"description":"Hurl a light spear at an enemy dealing 140% Ranged Weapon Damage plus 21 and restores 30% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29793},{"id":"coa-tree-30767","classId":"barbarian","dbcSpellId":800152,"name":"Hodir's Wrath","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_icegiant_01.png","sigil":"HS","description":"Erupt with the power of Hodir, dealing 1361 + 120% AP Frost damage to nearby enemies and restoring 100% of your maximum Energy.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":4,"basePoints":1361,"dieSides":198,"pointsPerLevel":68,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800152,"level":1,"description":"Erupt with the power of Hodir, dealing 1361 + 120% AP Frost damage to nearby enemies and restoring 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":4,"basePoints":1361,"dieSides":198,"pointsPerLevel":68,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30767},{"id":"barbarian-impaling-rush","classId":"barbarian","dbcSpellId":500009,"name":"Impaling Rush","unlockLevel":1,"icon":"/assets/ui/spells/_d3furiouscharge.png","sigil":"IR","description":"Impaling RushRank 115 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500009,"level":1,"description":"Impaling RushRank 115 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":2,"spellId":501043,"level":9,"description":"Impaling RushRank 215 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":3,"spellId":501044,"level":17,"description":"Impaling RushRank 315 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec..","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":4,"spellId":501045,"level":25,"description":"Impaling RushRank 415 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":5,"spellId":501046,"level":33,"description":"Impaling RushRank 515 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":6,"spellId":501047,"level":41,"description":"Impaling RushRank 615 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":7,"spellId":501048,"level":49,"description":"Impaling RushRank 715 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":8,"spellId":501049,"level":57,"description":"Impaling RushRank 815 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":9,"spellId":501050,"level":65,"description":"Impaling RushRank 915 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]},{"rank":10,"spellId":501051,"level":73,"description":"Impaling RushRank 1015 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":10,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":500006,"durationMs":5000}]}]},{"id":"coa-12-improved-ancestral-combat-47-705209","classId":"barbarian","dbcSpellId":705209,"name":"Improved Ancestral Combat","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_82.png","sigil":"IA","description":"Improved Ancestral CombatRank 1Reduces the Energy cost of your Ancestral Combat by 10 and allows it to trigger 3 additional times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705209,"level":1,"description":"Improved Ancestral CombatRank 1Reduces the Energy cost of your Ancestral Combat by 10 and allows it to trigger 3 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705210,"level":1,"description":"Improved Ancestral CombatRank 2Reduces the Energy cost of your Ancestral Combat by 20 and allows it to trigger 6 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-12-improved-thunderous-leap-47-705215","classId":"barbarian","dbcSpellId":705215,"name":"Improved Thunderous Leap","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_iceboundfortitude.png","sigil":"IT","description":"Improved Thunderous LeapRank 2Instant castReduces the Energy cost of Thunderous Leap by 40 and its cooldown by 60 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705215,"level":1,"description":"Improved Thunderous LeapRank 2Instant castReduces the Energy cost of Thunderous Leap by 40 and its cooldown by 60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34295","classId":"barbarian","dbcSpellId":707721,"name":"Iron Gut","unlockLevel":1,"icon":"/assets/ui/spells/5_warriorskill44_border.png","sigil":"IG","description":"Reduces the duration of poison effects on you by -40%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707721,"level":1,"description":"Reduces the duration of poison effects on you by -40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34295},{"id":"coa-tree-29783","classId":"barbarian","dbcSpellId":802792,"name":"Jawbreaker","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_bastion_of_twilight_halfus_wyrmbreaker.png","sigil":"JA","description":"Attempt to break an enemy's jaw, interrupting them and preventing any spell from that school from being cast for 4 seconds.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":14000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":68,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802792,"level":1,"description":"Attempt to break an enemy's jaw, interrupting them and preventing any spell from that school from being cast for 4 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":14000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":68,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]}],"talentEntryId":29783},{"id":"coa-tree-6871","classId":"barbarian","dbcSpellId":705196,"name":"Knockout Artist","unlockLevel":1,"icon":"/assets/ui/spells/item_onepunch.png","sigil":"KA","description":"Successfully interrupting a target with Jawbreaker now increases your haste by 30% for 4 seconds and refunds half its Energy cost.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804862,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705196,"level":1,"description":"Successfully interrupting a target with Jawbreaker now increases your haste by 30% for 4 seconds and refunds half its Energy cost.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804862,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6871},{"id":"coa-tree-30166","classId":"barbarian","dbcSpellId":706804,"name":"Legacy of the Amani","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(25)_border.png","sigil":"LO","description":"Damage dealt by your Spears now has a 25% chance to cause you to quickly throw an additional spear that strikes for 40% of the damage dealt.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":707660,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706804,"level":1,"description":"Damage dealt by your Spears now has a 25% chance to cause you to quickly throw an additional spear that strikes for 40% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":707660,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30166},{"id":"coa-12-leroys-legacy-47-706350","classId":"barbarian","dbcSpellId":706350,"name":"Leroy's Legacy","unlockLevel":1,"icon":"/assets/ui/spells/_d3furiouscharge.png","sigil":"LS","description":"Leroy's LegacyRank 1Reduces the Energy cost of Whirling Advance by 100% and increases its distance by $s2yd.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706350,"level":1,"description":"Leroy's LegacyRank 1Reduces the Energy cost of Whirling Advance by 100% and increases its distance by $s2yd.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":706351,"level":1,"description":"Leroy's LegacyRank 2Reduces the Energy cost of Whirling Advance by 100% and increases its distance by $s2yd.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30162","classId":"barbarian","dbcSpellId":804139,"name":"Maiming Spear","unlockLevel":1,"icon":"/assets/ui/spells/maiming_spear.png","sigil":"MS","description":"Throw your ranged weapon at your enemy's legs, dealing 100% Ranged Weapon Damage plus 2 and slowing their movement speed by -50% for 10 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":4,"miscValue":4,"triggerSpellId":0,"durationMs":10000},{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.3}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804139,"level":1,"description":"Throw your ranged weapon at your enemy's legs, dealing 100% Ranged Weapon Damage plus 2 and slowing their movement speed by -50% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":4,"miscValue":4,"triggerSpellId":0,"durationMs":10000},{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.3}]}],"talentEntryId":30162},{"id":"coa-tree-34320","classId":"barbarian","dbcSpellId":705206,"name":"Ogre's Endurance","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_highmaul_king.png","sigil":"OS","description":"Increases your healing received by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705206,"level":1,"description":"Increases your healing received by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34320},{"id":"coa-tree-29322","classId":"barbarian","dbcSpellId":801759,"name":"Outrage","unlockLevel":1,"icon":"/assets/ui/spells/_d3frenzy.png","sigil":"OU","description":"Requires Enraged Increases your haste and critical strike chance by 20%, but increases your damage taken by 30% for 10 seconds. Physical critical strikes extend this effect by 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0.5,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801759,"level":1,"description":"Requires Enraged Increases your haste and critical strike chance by 20%, but increases your damage taken by 30% for 10 seconds. Physical critical strikes extend this effect by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":29322},{"id":"coa-tree-13168","classId":"barbarian","dbcSpellId":561314,"name":"Plugging the Hole","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_bloodfog_border.png","sigil":"PT","description":"Your Skull Smash now removes all bleed effects on the enemy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":42,"miscValue":524287,"triggerSpellId":560460,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561314,"level":1,"description":"Your Skull Smash now removes all bleed effects on the enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":42,"miscValue":524287,"triggerSpellId":560460,"durationMs":-1}]}],"talentEntryId":13168},{"id":"coa-12-punisher-41-705172","classId":"barbarian","dbcSpellId":705172,"name":"Punisher","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_bladedarmor.png","sigil":"PU","description":"PunisherRank 2Increases the damage of Javelin Toss and Crush by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705172,"level":1,"description":"PunisherRank 2Increases the damage of Javelin Toss and Crush by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-12770","classId":"barbarian","dbcSpellId":561321,"name":"Rage Whirling","unlockLevel":1,"icon":"/assets/ui/spells/5_druideskill45_border.png","sigil":"RW","description":"Increases the critical strike chance of Whirling Advance by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561321,"level":1,"description":"Increases the critical strike chance of Whirling Advance by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12770},{"id":"coa-12-rancor-41-801752","classId":"barbarian","dbcSpellId":801752,"name":"Rancor","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_artifactmagnar_d_03.png","sigil":"RA","description":"RancorRank 115 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 19 to 21 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801752,"level":1,"description":"RancorRank 115 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 19 to 21 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501019,"level":10,"description":"RancorRank 215 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 40 to 44 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501020,"level":19,"description":"RancorRank 315 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 75 to 82 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501021,"level":28,"description":"RancorRank 415 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 132 to 143 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501022,"level":37,"description":"RancorRank 515 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 218 to 234 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501023,"level":45,"description":"RancorRank 615 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 331 to 353 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501024,"level":54,"description":"RancorRank 715 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 510 to 540 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501025,"level":63,"description":"RancorRank 815 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 766 to 805 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501026,"level":72,"description":"RancorRank 915 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 1130 to 1179 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34302","classId":"barbarian","dbcSpellId":705171,"name":"Rapid Recovery","unlockLevel":1,"icon":"/assets/ui/spells/custom_warriorskill_11_border.png","sigil":"RR","description":"Your Onslaught's effect now occurs -50% faster.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705171,"level":1,"description":"Your Onslaught's effect now occurs -50% faster.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34302},{"id":"coa-tree-14304","classId":"barbarian","dbcSpellId":807861,"name":"Savage Cadence","unlockLevel":1,"icon":"/assets/ui/spells/inv_offhand_1h_artifactskulloferedar_d_05.png","sigil":"SC","description":"Direct critical strikes now extend the duration of your Unbridled Rage by 0.5 sec. This effect can occur only once per sec. Killing blows extend the duration of your Unbridled Rage by 0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":577977,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807861,"level":1,"description":"Direct critical strikes now extend the duration of your Unbridled Rage by 0.5 sec. This effect can occur only once per sec. Killing blows extend the duration of your Unbridled Rage by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":577977,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":14304},{"id":"coa-tree-6844","classId":"barbarian","dbcSpellId":800943,"name":"Savagery","unlockLevel":1,"icon":"/assets/ui/spells/ability_garrosh_hellscreams_warsong.png","sigil":"SA","description":"While below 35% health, your auto attacks, Ancestral Strike, and Throw Weapon now grant Born in Blood. Can only occur once every 2 sec. Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804347,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800943,"level":1,"description":"While below 35% health, your auto attacks, Ancestral Strike, and Throw Weapon now grant Born in Blood. Can only occur once every 2 sec. Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804347,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6844},{"id":"coa-tree-12563","classId":"barbarian","dbcSpellId":560532,"name":"Skull Smash","unlockLevel":1,"icon":"/assets/ui/spells/skullsmash2.png","sigil":"SS","description":"Pick up a rock and hurl it at an enemy's skull, disorienting them for 40 seconds (8 sec vs players). Damage taken will end this effect.","target":"hostile","range":{"min":0,"max":25},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"status","status":"slow","durationMs":40000,"magnitude":0.3},{"kind":"status","status":"fear","durationMs":40000},{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":560554,"durationMs":40000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560532,"level":1,"description":"Pick up a rock and hurl it at an enemy's skull, disorienting them for 40 seconds (8 sec vs players). Damage taken will end this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"status","status":"slow","durationMs":40000,"magnitude":0.3},{"kind":"status","status":"fear","durationMs":40000},{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":560554,"durationMs":40000}]}],"talentEntryId":12563},{"id":"coa-tree-11168","classId":"barbarian","dbcSpellId":561394,"name":"Smasher","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_eviscerate.png","sigil":"SM","description":"Removes the Energy cost from Skull Smash.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":42,"miscValue":524287,"triggerSpellId":560460,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561394,"level":1,"description":"Removes the Energy cost from Skull Smash.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":42,"miscValue":524287,"triggerSpellId":560460,"durationMs":-1}]}],"talentEntryId":11168},{"id":"coa-tree-6802","classId":"barbarian","dbcSpellId":705202,"name":"Strength of Goria","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_highmaul_butcher.png","sigil":"SO","description":"Casting Unbridled Rage now grants you Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560521,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":1,"triggerSpellId":560521,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705202,"level":1,"description":"Casting Unbridled Rage now grants you Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560521,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":1,"triggerSpellId":560521,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6802},{"id":"coa-tree-6374","classId":"barbarian","dbcSpellId":801549,"name":"Thick Skull","unlockLevel":1,"icon":"/assets/ui/spells/inv_helm_laughingskull_01.png","sigil":"TS","description":"Your thick skull makes you immune to all stun effects for 10 seconds and while active taking direct damage grants you Born in Blood. Usable while stunned.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":147,"miscValue":1024,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":2,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":524287,"triggerSpellId":560521,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801549,"level":1,"description":"Your thick skull makes you immune to all stun effects for 10 seconds and while active taking direct damage grants you Born in Blood. Usable while stunned.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":147,"miscValue":1024,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":2,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":524287,"triggerSpellId":560521,"durationMs":10000}]}],"talentEntryId":6374},{"id":"coa-12-torture-41-705241","classId":"barbarian","dbcSpellId":705241,"name":"Torture","unlockLevel":1,"icon":"/assets/ui/spells/inv_artifact_corruptedbloodofzakajz.png","sigil":"TO","description":"TortureRank 2InstantIncreases the damage of Piercing Throw, Axe Volley, and Berserker Axe by 20% against Bleeding enemies.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":112,"miscValue":20007,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705241,"level":1,"description":"TortureRank 2InstantIncreases the damage of Piercing Throw, Axe Volley, and Berserker Axe by 20% against Bleeding enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":112,"miscValue":20007,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-12-undying-41-705174","classId":"barbarian","dbcSpellId":705174,"name":"Undying","unlockLevel":1,"icon":"/assets/ui/spells/inv_helm_plate_raidwarriormythic_q_01.png","sigil":"UN","description":"UndyingRank 1Reduces damage taken by 1% at all times and the cooldown of Deathless Resolve by 30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705174,"level":1,"description":"UndyingRank 1Reduces damage taken by 1% at all times and the cooldown of Deathless Resolve by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-12-unrelenting-41-705170","classId":"barbarian","dbcSpellId":705170,"name":"Unrelenting","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_runetap.png","sigil":"UN","description":"UnrelentingRank 2Every 5 points of Energy now increases the critical strike chance of Piercing Javelin and Crush by 1%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":189,"miscValue":768,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705170,"level":1,"description":"UnrelentingRank 2Every 5 points of Energy now increases the critical strike chance of Piercing Javelin and Crush by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":189,"miscValue":768,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34291","classId":"barbarian","dbcSpellId":705169,"name":"Unrelenting","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_runetap.png","sigil":"UN","description":"Increases your Physical damage dealt and taken by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705169,"level":1,"description":"Increases your Physical damage dealt and taken by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34291},{"id":"coa-tree-6462","classId":"barbarian","dbcSpellId":706353,"name":"Unstoppable Rage","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_innerrage.png","sigil":"UR","description":"Increases the duration of Unbridled Rage by 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706353,"level":1,"description":"Increases the duration of Unbridled Rage by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6462},{"id":"coa-tree-6796","classId":"barbarian","dbcSpellId":560564,"name":"You Want Axe?","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_garrison_a_01.png","sigil":"YW","description":"While enraged, casting Spears now refreshes 3 charges of Berserker Axe and your next 3 casts cost -50% less Energy. Lasts 12 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807261,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560564,"level":1,"description":"While enraged, casting Spears now refreshes 3 charges of Berserker Axe and your next 3 casts cost -50% less Energy. Lasts 12 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807261,"durationMs":-1}]}],"talentEntryId":6796},{"id":"barbarian-smash","classId":"barbarian","dbcSpellId":801755,"name":"Smash","unlockLevel":2,"icon":"/assets/ui/spells/inv_mace_2h_revendrethquest_b_01.png","sigil":"SM","description":"SmashRank 1Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 135% Weapon Damage plus 8.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570724,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801755,"level":2,"description":"SmashRank 1Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 135% Weapon Damage plus 8.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570724,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501027,"level":10,"description":"SmashRank 2Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 13 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578277,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501028,"level":18,"description":"SmashRank 3Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 32 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578278,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501029,"level":26,"description":"SmashRank 4Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 69 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578279,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501030,"level":34,"description":"SmashRank 5Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 99 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578280,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501031,"level":42,"description":"SmashRank 6Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 131 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578281,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501032,"level":50,"description":"SmashRank 7Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 171 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578282,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501033,"level":58,"description":"SmashRank 8Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 202 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578283,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501034,"level":60,"description":"SmashRank 9Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 232 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578284,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501035,"level":66,"description":"SmashRank 10Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 279 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":578285,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-12-berserker-axe-42-804138","classId":"barbarian","dbcSpellId":804138,"name":"Berserker Axe","unlockLevel":11,"icon":"/assets/ui/spells/inv_axe_1h_draenorcrafted_d_02_a_horde.png","sigil":"BA","description":"Berserker AxeRank 130 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","target":"hostile","range":{"min":5,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804138,"level":11,"description":"Berserker AxeRank 130 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0}]},{"rank":2,"spellId":503408,"level":20,"description":"Berserker AxeRank 230 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 23+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503409,"level":28,"description":"Berserker AxeRank 330 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 35+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503410,"level":36,"description":"Berserker AxeRank 430 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 50+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503411,"level":44,"description":"Berserker AxeRank 530 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 69+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503412,"level":52,"description":"Berserker AxeRank 630 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 93+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503413,"level":60,"description":"Berserker AxeRank 730 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 125+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503414,"level":65,"description":"Berserker AxeRank 830 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 181+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":806960,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-12-hodirs-wrath-47-503313","classId":"barbarian","dbcSpellId":503313,"name":"Hodir's Wrath","unlockLevel":12,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_icegiant_01.png","sigil":"HS","description":"Hodir's WrathRank 2Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","target":"hostile","range":{"min":0,"max":0},"radius":25,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":35,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.9409289956092834,"basePoints":59,"dieSides":6,"pointsPerLevel":2.4700000286102295,"bonusPowerCoefficient":0.9409289956092834,"sourceLevel":12,"maxScalingLevel":23}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503313,"level":12,"description":"Hodir's WrathRank 2Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":35,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.9409289956092834,"basePoints":59,"dieSides":6,"pointsPerLevel":2.4700000286102295,"bonusPowerCoefficient":0.9409289956092834,"sourceLevel":12,"maxScalingLevel":23}]},{"rank":3,"spellId":503314,"level":24,"description":"Hodir's WrathRank 3Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":35,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.1659400463104248,"basePoints":98,"dieSides":7,"pointsPerLevel":3.609999895095825,"bonusPowerCoefficient":1.1659400463104248,"sourceLevel":24,"maxScalingLevel":34}]},{"rank":4,"spellId":503315,"level":35,"description":"Hodir's WrathRank 4Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":35,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.4267799854278564,"basePoints":147,"dieSides":9,"pointsPerLevel":5.320000171661377,"bonusPowerCoefficient":1.4267799854278564,"sourceLevel":35,"maxScalingLevel":46}]},{"rank":5,"spellId":503316,"level":47,"description":"Hodir's WrathRank 5Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":35,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.723960041999817,"basePoints":231,"dieSides":11,"pointsPerLevel":7.599999904632568,"bonusPowerCoefficient":1.723960041999817,"sourceLevel":47,"maxScalingLevel":57}]},{"rank":6,"spellId":503317,"level":58,"description":"Hodir's WrathRank 6Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":35,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":2.0564401149749756,"basePoints":359,"dieSides":13,"pointsPerLevel":10.449999809265137,"bonusPowerCoefficient":2.0564401149749756,"sourceLevel":58,"maxScalingLevel":69}]},{"rank":7,"spellId":503318,"level":70,"description":"Hodir's WrathRank 7Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":137,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":35,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":2.4213099479675293,"basePoints":527,"dieSides":15,"pointsPerLevel":13.869999885559082,"bonusPowerCoefficient":2.4213099479675293,"sourceLevel":70,"maxScalingLevel":80}]}]},{"id":"barbarian-barbaric-whirl","classId":"barbarian","dbcSpellId":500002,"name":"Barbaric Whirl","unlockLevel":14,"icon":"/assets/ui/spells/ability_garrosh_whirling_corruption.png","sigil":"BW","description":"Barbaric WhirlRank 130 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 3.","target":"self","range":{"min":0,"max":0},"radius":7,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500002,"level":14,"description":"Barbaric WhirlRank 130 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 3.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":500450,"level":22,"description":"Barbaric WhirlRank 230 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 10.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":500451,"level":30,"description":"Barbaric WhirlRank 330 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":500452,"level":42,"description":"Barbaric WhirlRank 430 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 31.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":500453,"level":54,"description":"Barbaric WhirlRank 530 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 53.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-12-ancestral-roar-47-500918","classId":"barbarian","dbcSpellId":500918,"name":"Ancestral Roar","unlockLevel":16,"icon":"/assets/ui/spells/_d3threateningshout.png","sigil":"AR","description":"Ancestral RoarRank 1Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 100+0+AP*0.5.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.6580645243326824,"basePoints":100,"dieSides":7,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500918,"level":16,"description":"Ancestral RoarRank 1Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 100+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.6580645243326824,"basePoints":100,"dieSides":7,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501057,"level":24,"description":"Ancestral RoarRank 2Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 190+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":2.5252649682199855,"basePoints":190,"dieSides":13,"pointsPerLevel":4.144000053405762,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501058,"level":32,"description":"Ancestral RoarRank 3Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 265+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":3.534780191191545,"basePoints":265,"dieSides":28,"pointsPerLevel":6.872000217437744,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501059,"level":40,"description":"Ancestral RoarRank 4Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 346+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":346,"dieSides":48,"pointsPerLevel":8.600000381469727,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501060,"level":48,"description":"Ancestral RoarRank 5Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 466+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":466,"dieSides":73,"pointsPerLevel":10.32800006866455,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501061,"level":56,"description":"Ancestral RoarRank 6Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 574+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":574,"dieSides":104,"pointsPerLevel":15.279999732971191,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501062,"level":60,"description":"Ancestral RoarRank 7Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 906+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":906,"dieSides":140,"pointsPerLevel":13.784000396728516,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501063,"level":64,"description":"Ancestral RoarRank 8Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 1074+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":1074,"dieSides":181,"pointsPerLevel":15.51200008392334,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":74},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501064,"level":71,"description":"Ancestral RoarRank 9Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 1563+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":1563,"dieSides":227,"pointsPerLevel":17.239999771118164,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":76},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501065,"level":78,"description":"Ancestral RoarRank 10Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 2235+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":2235,"dieSides":279,"pointsPerLevel":59.560001373291016,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":80},{"kind":"utility","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-12-mock-47-806221","classId":"barbarian","dbcSpellId":806221,"name":"Mock","unlockLevel":16,"icon":"/assets/ui/spells/spell_magic_polymorphchicken.png","sigil":"MO","description":"MockRank 115 Energy Instant cast15 sec cooldownMock all enemies in a 10 yd radius, reducing their attack power by 35 for 8 sec and applying Shattered Ego. Shattered Ego Reduces an enemy's Intellect by 20% for 8 sec.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806221,"level":16,"description":"MockRank 115 Energy Instant cast15 sec cooldownMock all enemies in a 10 yd radius, reducing their attack power by 35 for 8 sec and applying Shattered Ego. Shattered Ego Reduces an enemy's Intellect by 20% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":5,"spellId":560469,"level":54,"description":"Mock all opponents in a $a yd radius, reducing their attack power by $s1 for $d and applies Shattered Ego.@s:560912:0@","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":64}]}]},{"id":"coa-12-brutal-swing-41-500913","classId":"barbarian","dbcSpellId":500913,"name":"Brutal Swing","unlockLevel":17,"icon":"/assets/ui/spells/5_axe_border.png","sigil":"BS","description":"Brutal SwingRank 145 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 10.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500913,"level":17,"description":"Brutal SwingRank 145 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":500996,"level":24,"description":"Brutal SwingRank 245 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 17.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":806040,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":500997,"level":32,"description":"Brutal SwingRank 345 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 26.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":500998,"level":40,"description":"Brutal SwingRank 445 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 35.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":500999,"level":48,"description":"Brutal SwingRank 545 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 50.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501000,"level":56,"description":"Brutal SwingRank 645 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 61.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501001,"level":60,"description":"Brutal SwingRank 745 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 79.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501002,"level":68,"description":"Brutal SwingRank 845 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 99.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]}],"witch-doctor":[{"id":"coa-tree-30147","classId":"witch-doctor","dbcSpellId":705921,"name":"Alchemical Enhancement","unlockLevel":1,"icon":"/assets/ui/spells/inv_alchemy_71_potion4.png","sigil":"AE","description":"Increases your haste by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705921,"level":1,"description":"Increases your haste by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30147},{"id":"coa-tree-11323","classId":"witch-doctor","dbcSpellId":301297,"name":"Blatant Curse","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_removecurse.png","sigil":"BC","description":"Reduces the mana cost of your Jinxes by -25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301297,"level":1,"description":"Reduces the mana cost of your Jinxes by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11323},{"id":"coa-tree-12048","classId":"witch-doctor","dbcSpellId":572870,"name":"Blessing of Hir'eek","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_trollbatidol.png","sigil":"BO","description":"Your Hexbreak now removes an additional curse effect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":572870,"level":1,"description":"Your Hexbreak now removes an additional curse effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12048},{"id":"coa-tree-4005","classId":"witch-doctor","dbcSpellId":92085,"name":"Cauldron Brewer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_cauldron_nature.png","sigil":"CB","description":"Level 10 Passive You may now prepare Ingredients into a Cauldron, crafting a brew. Nearby allies are buffed based on the active brew. Only 1 of each Ingredient can be active at a time.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92085,"level":1,"description":"Level 10 Passive You may now prepare Ingredients into a Cauldron, crafting a brew. Nearby allies are buffed based on the active brew. Only 1 of each Ingredient can be active at a time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4005},{"id":"coa-tree-29309","classId":"witch-doctor","dbcSpellId":504840,"name":"Cleansing Idol","unlockLevel":1,"icon":"/assets/ui/spells/wd_cleansing_ward.png","sigil":"CI","description":"Drop a Cleansing Idol near you for 1 minute. Allies within 30 yds have 1 poison and disease effect removed from them every 3 sec.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50217,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504840,"level":1,"description":"Drop a Cleansing Idol near you for 1 minute. Allies within 30 yds have 1 poison and disease effect removed from them every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50217,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]}],"talentEntryId":29309},{"id":"coa-tree-5113","classId":"witch-doctor","dbcSpellId":706542,"name":"Cursed Effigy","unlockLevel":1,"icon":"/assets/ui/spells/wd_cursed_effigy.png","sigil":"CE","description":"Drop a Cursed Effigy near you for 15 seconds. Enemies within 15 yds are unable to critically strike.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50121,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":706542,"level":1,"description":"Drop a Cursed Effigy near you for 15 seconds. Enemies within 15 yds are unable to critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50121,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":5113},{"id":"coa-13-dark-magic-48-705923","classId":"witch-doctor","dbcSpellId":705923,"name":"Dark Magic","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_troll_tablet.png","sigil":"DM","description":"Dark MagicRank 2Instant castIncreases the damage of Hir'eek and Bwonsamdi spells by 6%, and boosts spell power by 21% of Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705923,"level":1,"description":"Dark MagicRank 2Instant castIncreases the damage of Hir'eek and Bwonsamdi spells by 6%, and boosts spell power by 21% of Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6048","classId":"witch-doctor","dbcSpellId":712396,"name":"Dark Mojo","unlockLevel":1,"icon":"/assets/ui/spells/_troll_06.png","sigil":"DM","description":"Increases your chance to resist magic and curse effects by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":178,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":712396,"level":1,"description":"Increases your chance to resist magic and curse effects by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":178,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6048},{"id":"coa-tree-31118","classId":"witch-doctor","dbcSpellId":602220,"name":"Death Draught","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcanepotion_border.png","sigil":"DD","description":"Drink a potent voodoo draught that slows your body to a deathlike stillness for up to 5 minutes, causing you to feign death which may trick enemies into ignoring you.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":66,"miscValue":0,"triggerSpellId":0,"durationMs":300000},{"kind":"utility","effectType":93,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":300000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":985329,"durationMs":300000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":602220,"level":1,"description":"Drink a potent voodoo draught that slows your body to a deathlike stillness for up to 5 minutes, causing you to feign death which may trick enemies into ignoring you.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":66,"miscValue":0,"triggerSpellId":0,"durationMs":300000},{"kind":"utility","effectType":93,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":300000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":985329,"durationMs":300000}]}],"talentEntryId":31118},{"id":"coa-tree-29757","classId":"witch-doctor","dbcSpellId":802756,"name":"Devotion to Bwonsamdi","unlockLevel":1,"icon":"/assets/ui/spells/inv_helmet_114.png","sigil":"DT","description":"Your direct damage now heals you for 10% of the damage done.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":570156,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":802756,"level":1,"description":"Your direct damage now heals you for 10% of the damage done.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":570156,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29757},{"id":"witch-doctor-drakkari-barrier","classId":"witch-doctor","dbcSpellId":500963,"name":"Drakkari Barrier","unlockLevel":1,"icon":"/assets/ui/spells/ivn_helm_armor_zandalaritroll_d_01.png","sigil":"DB","description":"Drakkari BarrierRank 111% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 6 to 7 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500963,"level":1,"description":"Drakkari BarrierRank 111% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 6 to 7 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":2,"spellId":501119,"level":10,"description":"Drakkari BarrierRank 211% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 17 to 21 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":3,"spellId":501120,"level":19,"description":"Drakkari BarrierRank 311% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 37 to 46 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":4,"spellId":501121,"level":28,"description":"Drakkari BarrierRank 411% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 70 to 86 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":5,"spellId":501122,"level":37,"description":"Drakkari BarrierRank 511% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 121 to 146 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":6,"spellId":501123,"level":45,"description":"Drakkari BarrierRank 611% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 188 to 223 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":7,"spellId":501124,"level":54,"description":"Drakkari BarrierRank 711% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 294 to 342 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":8,"spellId":501125,"level":63,"description":"Drakkari BarrierRank 811% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 447 to 510 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":9,"spellId":501126,"level":72,"description":"Drakkari BarrierRank 911% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 665 to 745 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]}]},{"id":"coa-tree-6049","classId":"witch-doctor","dbcSpellId":705906,"name":"For Da Loa!","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_zuldazar_loacouncil.png","sigil":"FD","description":"Transforms Allcure Elixir into Mass Allcure Elixir.Mass Allcure ElixirRemoves all poison, disease and curse effects from party and raid members within 30 yds, and grants immunity to such effects for 3 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705906,"level":1,"description":"Transforms Allcure Elixir into Mass Allcure Elixir.Mass Allcure ElixirRemoves all poison, disease and curse effects from party and raid members within 30 yds, and grants immunity to such effects for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6049},{"id":"coa-tree-29744","classId":"witch-doctor","dbcSpellId":500957,"name":"Healing Ward","unlockLevel":1,"icon":"/assets/ui/spells/inv_banner_01.png","sigil":"HW","description":"Drop a Healing Ward near you for 1 minute, healing 8 nearby allies within 30 yds for 48 + 20% SP + 12% ranged AP + 10% Spirit every 3 sec.","target":"friendly","range":{"min":0,"max":0},"radius":3.5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":50104,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500957,"level":1,"description":"Drop a Healing Ward near you for 1 minute, healing 8 nearby allies within 30 yds for 48 + 20% SP + 12% ranged AP + 10% Spirit every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":50104,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]}],"talentEntryId":29744},{"id":"coa-13-improved-jinxes-48-705842","classId":"witch-doctor","dbcSpellId":705842,"name":"Improved Jinxes","unlockLevel":1,"icon":"/assets/ui/spells/ability_shaman_totemcooldownrefund.png","sigil":"IJ","description":"Improved JinxesRank 2Increases the effectiveness of Jinxes by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705842,"level":1,"description":"Improved JinxesRank 2Increases the effectiveness of Jinxes by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-13-improved-juju-burst-48-705888","classId":"witch-doctor","dbcSpellId":705888,"name":"Improved Juju Burst","unlockLevel":1,"icon":"/assets/ui/spells/_liquidstone_poison.png","sigil":"IJ","description":"Improved Juju BurstRank 2Reduces the cooldown of Juju Burst by 4 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705888,"level":1,"description":"Improved Juju BurstRank 2Reduces the cooldown of Juju Burst by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-13-improved-revitalize-51-705852","classId":"witch-doctor","dbcSpellId":705852,"name":"Improved Revitalize","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_convection.png","sigil":"IR","description":"Improved RevitalizeRank 2Increases the radius of Revitalize by 10 yds and its healing by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705852,"level":1,"description":"Improved RevitalizeRank 2Increases the radius of Revitalize by 10 yds and its healing by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-12749","classId":"witch-doctor","dbcSpellId":681465,"name":"Jinx of Decay","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","sigil":"JO","description":"Your Lethargy Jinx now also reduces the target's periodic healing received by -30%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681465,"level":1,"description":"Your Lethargy Jinx now also reduces the target's periodic healing received by -30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12749},{"id":"coa-13-jinxweaver-48-705889","classId":"witch-doctor","dbcSpellId":705889,"name":"Jinxweaver","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_soulleech_1.png","sigil":"JI","description":"JinxweaverRank 1Reduces the cast time of Jinxes by 0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705889,"level":1,"description":"JinxweaverRank 1Reduces the cast time of Jinxes by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705890,"level":1,"description":"JinxweaverRank 2Reduces the cast time of Jinxes by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-13-juju-48-705873","classId":"witch-doctor","dbcSpellId":705873,"name":"Juju","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_abolishmagic.png","sigil":"JU","description":"JujuRank 3Instant castIncreases spell haste by 9%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":3,"spellId":705873,"level":1,"description":"JujuRank 3Instant castIncreases spell haste by 9%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29743","classId":"witch-doctor","dbcSpellId":806283,"name":"Latent Curse","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_jinx.png","sigil":"LC","description":"When your Shrinking Jinx is dispelled it now applies Misery to the dispeller.MiserySilences the target for 5 seconds and deals 9 + 60% shadow SP Shadow Damage every 1 sec for the duration.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807192,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806283,"level":1,"description":"When your Shrinking Jinx is dispelled it now applies Misery to the dispeller.MiserySilences the target for 5 seconds and deals 9 + 60% shadow SP Shadow Damage every 1 sec for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807192,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29743},{"id":"coa-13-legacy-of-zandalar-51-705849","classId":"witch-doctor","dbcSpellId":705849,"name":"Legacy of Zandalar","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_2h_zandalarquest_b_01.png","sigil":"LO","description":"Legacy of ZandalarRank 2Reduces the cooldown of Gift of the Loa by 0 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705849,"level":1,"description":"Legacy of ZandalarRank 2Reduces the cooldown of Gift of the Loa by 0 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6052","classId":"witch-doctor","dbcSpellId":705907,"name":"Loa Communion","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_soulleech_2.png","sigil":"LC","description":"Increases the damage dealt by Veil of Darkness by 100%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705907,"level":1,"description":"Increases the damage dealt by Veil of Darkness by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6052},{"id":"coa-tree-6381","classId":"witch-doctor","dbcSpellId":706368,"name":"Loa Empowerment","unlockLevel":1,"icon":"/assets/ui/spells/nhi_scrollofearth_border.png","sigil":"LE","description":"Reduces the cost of your Wujus by -50% and increases the effectiveness of Power Wuju by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706368,"level":1,"description":"Reduces the cost of your Wujus by -50% and increases the effectiveness of Power Wuju by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6381},{"id":"coa-13-loas-brew-49-801670","classId":"witch-doctor","dbcSpellId":801670,"name":"Loa's Brew","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_potion_special.png","sigil":"LS","description":"Loa's BrewRank 133% of base mana 2 sec castBrew a potion and then throw it to an ally target, restoring 57+0+Heal*0.862155 health.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":1.2784654373923938,"basePoints":57,"dieSides":8,"pointsPerLevel":0.8663409948348999,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801670,"level":1,"description":"Loa's BrewRank 133% of base mana 2 sec castBrew a potion and then throw it to an ally target, restoring 57+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":1.2784654373923938,"basePoints":57,"dieSides":8,"pointsPerLevel":0.8663409948348999,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501198,"level":8,"description":"Loa's BrewRank 233% of base mana 2.5 sec castBrew a potion and then throw it to an ally target, restoring 95+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":1.724360466003418,"basePoints":95,"dieSides":35,"pointsPerLevel":0.87260901927948,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501199,"level":18,"description":"Loa's BrewRank 333% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 231+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":3.192809890014957,"basePoints":231,"dieSides":68,"pointsPerLevel":2.8660099506378174,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501200,"level":26,"description":"Loa's BrewRank 433% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 344+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":4,"basePoints":344,"dieSides":86,"pointsPerLevel":4.149789810180664,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501201,"level":34,"description":"Loa's BrewRank 533% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 457+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":4,"basePoints":457,"dieSides":106,"pointsPerLevel":5.845059871673584,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501202,"level":42,"description":"Loa's BrewRank 633% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 599+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":4,"basePoints":599,"dieSides":129,"pointsPerLevel":7.582509994506836,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501203,"level":50,"description":"Loa's BrewRank 733% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 699+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":4,"basePoints":699,"dieSides":193,"pointsPerLevel":8.98727035522461,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501204,"level":58,"description":"Loa's BrewRank 833% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 887+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":4,"basePoints":887,"dieSides":202,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501205,"level":60,"description":"Loa's BrewRank 933% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 890+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":4,"basePoints":890,"dieSides":228,"pointsPerLevel":4.167840003967285,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":74},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501206,"level":76,"description":"Loa's BrewRank 1033% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 1422+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":4,"basePoints":1422,"dieSides":377,"pointsPerLevel":27.965999603271484,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-13-loas-strength-49-705936","classId":"witch-doctor","dbcSpellId":705936,"name":"Loa's Strength","unlockLevel":1,"icon":"/assets/ui/spells/nhi_shadoweye_border.png","sigil":"LS","description":"Loa's StrengthRank 1Increases your Agility and your Nature and Shadow damage dealt by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":40,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705936,"level":1,"description":"Loa's StrengthRank 1Increases your Agility and your Nature and Shadow damage dealt by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":40,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705937,"level":1,"description":"Loa's StrengthRank 2Increases your Agility and your Nature and Shadow damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":40,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-13-medicine-man-51-705861","classId":"witch-doctor","dbcSpellId":705861,"name":"Medicine Man","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_wispsplodegreen.png","sigil":"MM","description":"Medicine ManRank 2Increases healing done by 10% . Allows 50% of your mana regeneration to continue while casting.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":134,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705861,"level":1,"description":"Medicine ManRank 2Increases healing done by 10% . Allows 50% of your mana regeneration to continue while casting.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":134,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29301","classId":"witch-doctor","dbcSpellId":707162,"name":"Mimic Ward","unlockLevel":1,"icon":"/assets/ui/spells/5_deadshadow_border.png","sigil":"MW","description":"Summon a mimic ward for 12 seconds. For the duration when you cast Malefic Wrath and Loa's Brew the ward will also cast it on your target.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":300659,"triggerSpellId":0,"durationMs":12000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":707162,"level":1,"description":"Summon a mimic ward for 12 seconds. For the duration when you cast Malefic Wrath and Loa's Brew the ward will also cast it on your target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":300659,"triggerSpellId":0,"durationMs":12000}]}],"talentEntryId":29301},{"id":"coa-tree-29747","classId":"witch-doctor","dbcSpellId":501136,"name":"Mirage","unlockLevel":1,"icon":"/assets/ui/spells/nhi_naturehide_border.png","sigil":"MI","description":"Become invisible for 20 seconds, gaining 5 Spirits, leaving a copy of yourself behind, and reducing threat each second. Direct damage or healing done will end this effect. While invisible, you can only see other invisible targets and those who can see invisible.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":29},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":18,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":561136,"durationMs":20000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":840000,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":501136,"level":1,"description":"Become invisible for 20 seconds, gaining 5 Spirits, leaving a copy of yourself behind, and reducing threat each second. Direct damage or healing done will end this effect. While invisible, you can only see other invisible targets and those who can see invisible.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":29},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":18,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":561136,"durationMs":20000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":840000,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":29747},{"id":"coa-tree-6050","classId":"witch-doctor","dbcSpellId":705909,"name":"One Armed Waltz","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_zuljin.png","sigil":"OA","description":"Big Bad Voodoo now only reduces damage dealt by 25% and reduces damage taken by an additional -5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705909,"level":1,"description":"Big Bad Voodoo now only reduces damage dealt by 25% and reduces damage taken by an additional -5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6050},{"id":"coa-tree-12264","classId":"witch-doctor","dbcSpellId":503748,"name":"Potent Mixes","unlockLevel":1,"icon":"/assets/ui/spells/inv_potion_110.png","sigil":"PM","description":"Increases your healing done by 4% and reduces the threat generated by your spells by -15%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":103,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503748,"level":1,"description":"Increases your healing done by 4% and reduces the threat generated by your spells by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":103,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12264},{"id":"coa-tree-4004","classId":"witch-doctor","dbcSpellId":92084,"name":"Puppeteer's Threads","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_troll_voodoodoll.png","sigil":"PS","description":"Level 10 Passive Damaging abilities now leave behind Puppeteer's Threads on enemies for 10 seconds. Puppeteer’s Threads (Debuff)Damage taken from the Witch Doctor stores 15% of its value. When the effect ends the damage stored is dealt instantly.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92084,"level":1,"description":"Level 10 Passive Damaging abilities now leave behind Puppeteer's Threads on enemies for 10 seconds. Puppeteer’s Threads (Debuff)Damage taken from the Witch Doctor stores 15% of its value. When the effect ends the damage stored is dealt instantly.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4004},{"id":"coa-tree-4505","classId":"witch-doctor","dbcSpellId":806288,"name":"Reclamation","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureshot_border.png","sigil":"RE","description":"Shoot a quick voodoo arrow at an enemy dealing 100% Ranged Weapon Damage plus 15 as Nature damage and collecting a Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times. Usable while moving.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806288,"level":1,"description":"Shoot a quick voodoo arrow at an enemy dealing 100% Ranged Weapon Damage plus 15 as Nature damage and collecting a Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times. Usable while moving.","castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":4505},{"id":"coa-13-ritual-hexing-48-705840","classId":"witch-doctor","dbcSpellId":705840,"name":"Ritual Hexing","unlockLevel":1,"icon":"/assets/ui/spells/_spellcasting_shadow.png","sigil":"RH","description":"Ritual HexingRank 1Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 10% against enemies affected by Hex of Malice.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705840,"level":1,"description":"Ritual HexingRank 1Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 10% against enemies affected by Hex of Malice.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705841,"level":1,"description":"Ritual HexingRank 2Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 20% against enemies affected by Hex of Malice.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4006","classId":"witch-doctor","dbcSpellId":92086,"name":"Shadowhunter","unlockLevel":1,"icon":"/assets/ui/spells/shadowhunter.png","sigil":"SH","description":"Level 10 Passive Allows you to auto shoot with a ranged weapon. In addition, reduces the mana cost of all spells and abilities by -25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":802094,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92086,"level":1,"description":"Level 10 Passive Allows you to auto shoot with a ranged weapon. In addition, reduces the mana cost of all spells and abilities by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":802094,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4006},{"id":"coa-tree-29306","classId":"witch-doctor","dbcSpellId":500947,"name":"Slither","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_poisoncleansingtotem.png","sigil":"SL","description":"Transform into a serpent, removing all movement impairing effects and increasing movement speed by 80% for 5 seconds. You cannot attack or cast spells, but chance to be hit by ranged attacks and spells is reduced by -100% for the duration.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":2914,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":60,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500947,"level":1,"description":"Transform into a serpent, removing all movement impairing effects and increasing movement speed by 80% for 5 seconds. You cannot attack or cast spells, but chance to be hit by ranged attacks and spells is reduced by -100% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":2914,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":60,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}],"talentEntryId":29306},{"id":"coa-tree-6054","classId":"witch-doctor","dbcSpellId":705911,"name":"Spiritual Traditions","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_81_vantusrune_zuldazar.png","sigil":"ST","description":"Allows 40% of your mana regeneration to continue while casting and reduces your spell pushback suffered from damaging attacks by 70%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":149,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":134,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705911,"level":1,"description":"Allows 40% of your mana regeneration to continue while casting and reduces your spell pushback suffered from damaging attacks by 70%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":149,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":134,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6054},{"id":"coa-13-stranglethorn-style-51-705878","classId":"witch-doctor","dbcSpellId":705878,"name":"Stranglethorn Style","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_tanaanjungle.png","sigil":"SS","description":"Stranglethorn StyleRank 2Increases Nature Damage dealt by 4% and healing done by 6%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705878,"level":1,"description":"Stranglethorn StyleRank 2Increases Nature Damage dealt by 4% and healing done by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6051","classId":"witch-doctor","dbcSpellId":804226,"name":"Swift Idol","unlockLevel":1,"icon":"/assets/ui/spells/wd_swift_idol.png","sigil":"SI","description":"Drop a Swift Idol near you for 10 seconds. Allies within 30 yds gain 25% increased movement speed and their chance to resist movement impairing effects is increased by 25%.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50118,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804226,"level":1,"description":"Drop a Swift Idol near you for 10 seconds. Allies within 30 yds gain 25% increased movement speed and their chance to resist movement impairing effects is increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50118,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":6051},{"id":"coa-tree-30891","classId":"witch-doctor","dbcSpellId":706538,"name":"Touch of Mueh'zala","unlockLevel":1,"icon":"/assets/ui/spells/inv_archaeology_80_zandalari_zandalariidol.png","sigil":"TO","description":"Increases the duration of Stasis Ward's stun effect by 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706538,"level":1,"description":"Increases the duration of Stasis Ward's stun effect by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30891},{"id":"coa-tree-30203","classId":"witch-doctor","dbcSpellId":802100,"name":"Veil of Darkness","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_gathershadows.png","sigil":"VO","description":"Envelop a target in a shadowy voodoo veil, increasing the damage you deal to them by 15% for 15 seconds. If you are within 40 yds of the target you deal 195 + 10% shadow SP + 4.5% AP Shadow damage to them every 2 second.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":806473,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802100,"level":1,"description":"Envelop a target in a shadowy voodoo veil, increasing the damage you deal to them by 15% for 15 seconds. If you are within 40 yds of the target you deal 195 + 10% shadow SP + 4.5% AP Shadow damage to them every 2 second.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":806473,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":30203},{"id":"coa-tree-6042","classId":"witch-doctor","dbcSpellId":504465,"name":"Vol'jin's Vigil","unlockLevel":1,"icon":"/assets/ui/spells/inv_hand_1h_trollshaman_c_01.png","sigil":"VJ","description":"Embrace the way of Vol'jin, reducing your damage taken by -25% and healing you for 2% of your maximum health every 1 sec for 10 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":28},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":802097,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504465,"level":1,"description":"Embrace the way of Vol'jin, reducing your damage taken by -25% and healing you for 2% of your maximum health every 1 sec for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":28},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":802097,"durationMs":10000}]}],"talentEntryId":6042},{"id":"coa-tree-29749","classId":"witch-doctor","dbcSpellId":300663,"name":"Will of the Serpent","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_shortblade_54.png","sigil":"WO","description":"Your Lethargy Jinx now increases your critical strike chance against the target by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300663,"level":1,"description":"Your Lethargy Jinx now increases your critical strike chance against the target by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29749},{"id":"coa-13-wizened-51-705903","classId":"witch-doctor","dbcSpellId":705903,"name":"Wizened","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_26.png","sigil":"WI","description":"WizenedRank 1Increases your maximum mana by 5% and reduces the mana cost of spells and abilities by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705903,"level":1,"description":"WizenedRank 1Increases your maximum mana by 5% and reduces the mana cost of spells and abilities by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705904,"level":1,"description":"WizenedRank 2Increases your maximum mana by 10% and reduces the mana cost of spells and abilities by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-13-shrinking-jinx-51-806285","classId":"witch-doctor","dbcSpellId":806285,"name":"Shrinking Jinx","unlockLevel":8,"icon":"/assets/ui/spells/spell_nature_nullward.png","sigil":"SJ","description":"Shrinking JinxRank 115% of base mana Instant castCurse an enemy for 20 sec, reducing their size and their attack power by 21 and spell power by 10. Can only have 1 Jinx active on a target at a time.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":61,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":345,"miscValue":0,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806285,"level":8,"description":"Shrinking JinxRank 115% of base mana Instant castCurse an enemy for 20 sec, reducing their size and their attack power by 21 and spell power by 10. Can only have 1 Jinx active on a target at a time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":61,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":345,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]}]},{"id":"witch-doctor-hexing-strike","classId":"witch-doctor","dbcSpellId":501220,"name":"Hexing Strike","unlockLevel":9,"icon":"/assets/ui/spells/inv_knife_1h_zandalarquest_b_02.png","sigil":"HS","description":"Hexing StrikeRank 27% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 18+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":0.43158333500226337,"basePoints":18,"dieSides":4,"pointsPerLevel":1.2860000133514404,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501220,"level":9,"description":"Hexing StrikeRank 27% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 18+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":0.43158333500226337,"basePoints":18,"dieSides":4,"pointsPerLevel":1.2860000133514404,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]},{"rank":3,"spellId":501221,"level":17,"description":"Hexing StrikeRank 37% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 31+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":0.6531875096261501,"basePoints":31,"dieSides":6,"pointsPerLevel":1.718000054359436,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]},{"rank":4,"spellId":501222,"level":25,"description":"Hexing StrikeRank 47% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 51+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":0.906250019868215,"basePoints":51,"dieSides":9,"pointsPerLevel":2.1500000953674316,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]},{"rank":5,"spellId":501223,"level":33,"description":"Hexing StrikeRank 57% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 81+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":1.1958750039339066,"basePoints":81,"dieSides":13,"pointsPerLevel":2.5820000171661377,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":40},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]},{"rank":6,"spellId":501224,"level":41,"description":"Hexing StrikeRank 67% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 124+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":1.5242499851045155,"basePoints":124,"dieSides":18,"pointsPerLevel":3.0139999389648438,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":48},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]},{"rank":7,"spellId":501225,"level":49,"description":"Hexing StrikeRank 77% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 184+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":1.8976771086454391,"basePoints":184,"dieSides":24,"pointsPerLevel":3.446000099182129,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":56},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]},{"rank":8,"spellId":501226,"level":57,"description":"Hexing StrikeRank 87% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 268+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":2.3312314870180906,"basePoints":268,"dieSides":30,"pointsPerLevel":3.878000020980835,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":64},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]},{"rank":9,"spellId":501227,"level":65,"description":"Hexing StrikeRank 97% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 384+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":2.842291651169459,"basePoints":384,"dieSides":37,"pointsPerLevel":4.309999942779541,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":72},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]},{"rank":10,"spellId":501228,"level":73,"description":"Hexing StrikeRank 107% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 543+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"damage","coefficient":3.4513863921165466,"basePoints":543,"dieSides":45,"pointsPerLevel":4.742000102996826,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802903,"durationMs":0}]}]},{"id":"coa-13-soothing-juju-49-806130","classId":"witch-doctor","dbcSpellId":806130,"name":"Soothing Juju","unlockLevel":10,"icon":"/assets/ui/spells/nhi_natureslimeblast_border.png","sigil":"SJ","description":"Soothing JujuRank 1255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 26+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","target":"friendly","range":{"min":0,"max":40},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":26,"dieSides":9,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570126,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806130,"level":10,"description":"Soothing JujuRank 1255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 26+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":26,"dieSides":9,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570126,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":806909,"level":18,"description":"Soothing JujuRank 2255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 46+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":46,"dieSides":9,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570126,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":806910,"level":26,"description":"Soothing JujuRank 3255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 76+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":76,"dieSides":9,"pointsPerLevel":1,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570126,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":806911,"level":34,"description":"Soothing JujuRank 4255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 96+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":96,"dieSides":9,"pointsPerLevel":1.2666699886322021,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570126,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":806912,"level":42,"description":"Soothing JujuRank 5255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 121+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":121,"dieSides":9,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570126,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":806913,"level":50,"description":"Soothing JujuRank 6255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 156+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":156,"dieSides":9,"pointsPerLevel":2.0666699409484863,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":50,"maxScalingLevel":56},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570126,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":806914,"level":58,"description":"Soothing JujuRank 7255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 265+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":265,"dieSides":9,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570126,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-13-shadow-puppets-48-500015","classId":"witch-doctor","dbcSpellId":500015,"name":"Shadow Puppets","unlockLevel":11,"icon":"/assets/ui/spells/custom_45_voodoo_border.png","sigil":"SP","description":"Shadow PuppetsRank 115% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 25+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500015,"level":11,"description":"Shadow PuppetsRank 115% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 25+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":2,"spellId":501080,"level":18,"description":"Shadow PuppetsRank 215% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 35+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":3,"spellId":501081,"level":24,"description":"Shadow PuppetsRank 315% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 43+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":4,"spellId":501082,"level":30,"description":"Shadow PuppetsRank 415% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 53+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":5,"spellId":501083,"level":36,"description":"Shadow PuppetsRank 515% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 66+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":6,"spellId":501084,"level":42,"description":"Shadow PuppetsRank 615% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 86+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":7,"spellId":501085,"level":48,"description":"Shadow PuppetsRank 715% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 108+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":8,"spellId":501086,"level":54,"description":"Shadow PuppetsRank 815% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 133+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":9,"spellId":501087,"level":60,"description":"Shadow PuppetsRank 915% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 164+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]},{"rank":10,"spellId":501088,"level":68,"description":"Shadow PuppetsRank 1015% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 203+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801797,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":802745,"durationMs":3000}]}]},{"id":"coa-13-rage-of-bethekk-51-801672","classId":"witch-doctor","dbcSpellId":801672,"name":"Rage of Bethekk","unlockLevel":12,"icon":"/assets/ui/spells/ability_upgrademoonglaive.png","sigil":"RO","description":"Rage of BethekkRank 12% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Slash an enemy for 50% Weapon damage plus 7 to 8 Physical damage, increased by 0% for each Shadow Mark consumed.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":1,"basePoints":7,"dieSides":2,"pointsPerLevel":0.9599999785423279,"bonusPowerCoefficient":1,"sourceLevel":12,"maxScalingLevel":15},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801672,"level":12,"description":"Rage of BethekkRank 12% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Slash an enemy for 50% Weapon damage plus 7 to 8 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":1,"basePoints":7,"dieSides":2,"pointsPerLevel":0.9599999785423279,"bonusPowerCoefficient":1,"sourceLevel":12,"maxScalingLevel":15},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501229,"level":17,"description":"Rage of BethekkRank 22% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 9 to 11 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":0.298958337555329,"basePoints":9,"dieSides":3,"pointsPerLevel":1.100000023841858,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":19},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501230,"level":21,"description":"Rage of BethekkRank 32% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 16 to 20 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":0.4194444351726108,"basePoints":16,"dieSides":5,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":24},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501231,"level":26,"description":"Rage of BethekkRank 42% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 29 to 36 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":0.5813008130081301,"basePoints":29,"dieSides":8,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":29},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501232,"level":31,"description":"Rage of BethekkRank 52% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 36 to 47 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":0.6826087063637333,"basePoints":36,"dieSides":12,"pointsPerLevel":1.7000000476837158,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":34},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501233,"level":36,"description":"Rage of BethekkRank 62% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 59 to 76 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":0.8882352885077981,"basePoints":59,"dieSides":18,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":39},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501234,"level":41,"description":"Rage of BethekkRank 72% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 66 to 87 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":0.9922619163990021,"basePoints":66,"dieSides":22,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":44},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501235,"level":46,"description":"Rage of BethekkRank 82% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 86 to 113 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":1.146994559491267,"basePoints":86,"dieSides":28,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":49},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501236,"level":51,"description":"Rage of BethekkRank 92% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 119 to 156 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":1.3641413895770758,"basePoints":119,"dieSides":38,"pointsPerLevel":2.5999999046325684,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":54},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501237,"level":56,"description":"Rage of BethekkRank 102% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 139 to 186 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":1.499061020327286,"basePoints":139,"dieSides":48,"pointsPerLevel":2.799999952316284,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":501238,"level":63,"description":"Rage of BethekkRank 112% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 186 to 243 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":1.7243589743589745,"basePoints":186,"dieSides":58,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":68},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":501239,"level":69,"description":"Rage of BethekkRank 122% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 246 to 313 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":1.9853174733737158,"basePoints":246,"dieSides":68,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":13,"spellId":501240,"level":75,"description":"Rage of BethekkRank 132% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 346 to 423 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2},"effects":[{"kind":"damage","coefficient":2.3685185450094717,"basePoints":346,"dieSides":78,"pointsPerLevel":3.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":75,"maxScalingLevel":80},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-13-bad-juju-48-802087","classId":"witch-doctor","dbcSpellId":802087,"name":"Bad Juju","unlockLevel":15,"icon":"/assets/ui/spells/skill_icon_skill5_border.png","sigil":"BJ","description":"Bad JujuRank 116% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 191+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":2.522222238116794,"basePoints":191,"dieSides":1,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802087,"level":15,"description":"Bad JujuRank 116% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 191+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":2.522222238116794,"basePoints":191,"dieSides":1,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501174,"level":22,"description":"Bad JujuRank 216% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 288+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":288,"dieSides":1,"pointsPerLevel":3.713900089263916,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501175,"level":28,"description":"Bad JujuRank 316% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 359+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":359,"dieSides":1,"pointsPerLevel":5.272749900817871,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501176,"level":34,"description":"Bad JujuRank 416% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 467+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":467,"dieSides":1,"pointsPerLevel":6.694009780883789,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501177,"level":40,"description":"Bad JujuRank 516% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 545+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":545,"dieSides":1,"pointsPerLevel":8.737239837646484,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":40,"maxScalingLevel":44},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501178,"level":46,"description":"Bad JujuRank 616% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 632+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":632,"dieSides":1,"pointsPerLevel":10.795599937438965,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501179,"level":52,"description":"Bad JujuRank 716% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 703+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":703,"dieSides":1,"pointsPerLevel":13.02560043334961,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501180,"level":58,"description":"Bad JujuRank 816% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 789+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":789,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":58,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501181,"level":60,"description":"Bad JujuRank 916% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 850+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":850,"dieSides":1,"pointsPerLevel":3.595180034637451,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":60,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802926,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"witch-doctor-shadowflare","classId":"witch-doctor","dbcSpellId":801669,"name":"Shadowflare","unlockLevel":16,"icon":"/assets/ui/spells/nhi_shadowedbones_border.png","sigil":"SH","description":"ShadowflareRank 131% of base mana 2 sec castRain down shadow magic at a location, dealing 57+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","target":"hostile","range":{"min":0,"max":30},"radius":6,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801669,"level":16,"description":"ShadowflareRank 131% of base mana 2 sec castRain down shadow magic at a location, dealing 57+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":2,"spellId":501139,"level":22,"description":"ShadowflareRank 231% of base mana 2 sec castRain down shadow magic at a location, dealing 100+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":3,"spellId":501140,"level":28,"description":"ShadowflareRank 331% of base mana 2 sec castRain down shadow magic at a location, dealing 142+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":4,"spellId":501141,"level":34,"description":"ShadowflareRank 431% of base mana 2 sec castRain down shadow magic at a location, dealing 191+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":5,"spellId":501142,"level":40,"description":"ShadowflareRank 531% of base mana 2 sec castRain down shadow magic at a location, dealing 244+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":6,"spellId":501143,"level":46,"description":"ShadowflareRank 631% of base mana 2 sec castRain down shadow magic at a location, dealing 301+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":7,"spellId":501144,"level":52,"description":"ShadowflareRank 731% of base mana 2 sec castRain down shadow magic at a location, dealing 370+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":8,"spellId":501145,"level":58,"description":"ShadowflareRank 831% of base mana 2 sec castRain down shadow magic at a location, dealing 455+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":9,"spellId":501146,"level":60,"description":"ShadowflareRank 931% of base mana 2 sec castRain down shadow magic at a location, dealing 602+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":10,"spellId":501147,"level":76,"description":"ShadowflareRank 1031% of base mana 2 sec castRain down shadow magic at a location, dealing 840+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":11,"spellId":501148,"level":80,"description":"ShadowflareRank 1131% of base mana 2 sec castRain down shadow magic at a location, dealing 1031+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":12,"spellId":501149,"level":84,"description":"ShadowflareRank 1231% of base mana 2 sec castRain down shadow magic at a location, dealing 1267+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]},{"rank":13,"spellId":501150,"level":90,"description":"ShadowflareRank 1331% of base mana 2 sec castRain down shadow magic at a location, dealing 1556+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802704,"durationMs":6000}]}]},{"id":"coa-13-spirit-in-a-bottle-49-801696","classId":"witch-doctor","dbcSpellId":801696,"name":"Spirit in a Bottle","unlockLevel":16,"icon":"/assets/ui/spells/inv_trade_alchemy_dpotion_c1a.png","sigil":"SI","description":"Spirit in a BottleRank 115% of base mana 1.5 sec castSend a spirit to an ally, healing them for 109+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1.44260988953293,"basePoints":109,"dieSides":5,"pointsPerLevel":1.4476699829101562,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801696,"level":16,"description":"Spirit in a BottleRank 115% of base mana 1.5 sec castSend a spirit to an ally, healing them for 109+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1.44260988953293,"basePoints":109,"dieSides":5,"pointsPerLevel":1.4476699829101562,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501207,"level":24,"description":"Spirit in a BottleRank 215% of base mana 1.5 sec castSend a spirit to an ally, healing them for 166+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1.8957265055077708,"basePoints":166,"dieSides":7,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501208,"level":32,"description":"Spirit in a BottleRank 315% of base mana 1.5 sec castSend a spirit to an ally, healing them for 220+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":2.244255336463874,"basePoints":220,"dieSides":7,"pointsPerLevel":2.9200000762939453,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501209,"level":40,"description":"Spirit in a BottleRank 415% of base mana 1.5 sec castSend a spirit to an ally, healing them for 282+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":2.6537381836862277,"basePoints":282,"dieSides":13,"pointsPerLevel":3.7466700077056885,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501210,"level":48,"description":"Spirit in a BottleRank 515% of base mana 1.5 sec castSend a spirit to an ally, healing them for 358+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":3.1480423861710483,"basePoints":358,"dieSides":18,"pointsPerLevel":4.760000228881836,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501211,"level":56,"description":"Spirit in a BottleRank 615% of base mana 1.5 sec castSend a spirit to an ally, healing them for 380+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":4,"basePoints":380,"dieSides":24,"pointsPerLevel":15.213500022888184,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501212,"level":60,"description":"Spirit in a BottleRank 715% of base mana 1.5 sec castSend a spirit to an ally, healing them for 412+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":2.581495984395345,"basePoints":412,"dieSides":32,"pointsPerLevel":2.555609941482544,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501213,"level":68,"description":"Spirit in a BottleRank 815% of base mana 1.5 sec castSend a spirit to an ally, healing them for 514+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":2.537240330952717,"basePoints":514,"dieSides":43,"pointsPerLevel":1.4231300354003906,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"witch-doctor-voodoo-bolt","classId":"witch-doctor","dbcSpellId":501188,"name":"Voodoo Bolt","unlockLevel":16,"icon":"/assets/ui/spells/spell_nature_elementalshields.png","sigil":"VB","description":"Voodoo BoltRank 211% of base mana 1.5 sec cast20 sec cooldownInvoke Hir'eek Deals 698 to 779 Nature Damage to an enemy, and extends the duration of Hexes by 4 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":698,"dieSides":82,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501188,"level":60,"description":"Voodoo BoltRank 211% of base mana 1.5 sec cast20 sec cooldownInvoke Hir'eek Deals 698 to 779 Nature Damage to an enemy, and extends the duration of Hexes by 4 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":698,"dieSides":82,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501189,"level":16,"description":"Voodoo BoltRank 36% of base mana 1.5 sec castDeals 32 to 38 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":0.5910537678708312,"basePoints":32,"dieSides":7,"pointsPerLevel":1.2480000257492065,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501190,"level":23,"description":"Voodoo BoltRank 46% of base mana 1.5 sec castDeals 47 to 55 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":0.7563552595021432,"basePoints":47,"dieSides":9,"pointsPerLevel":1.531499981880188,"bonusPowerCoefficient":0,"sourceLevel":23,"maxScalingLevel":29},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501191,"level":30,"description":"Voodoo BoltRank 56% of base mana 1.5 sec castDeals 68 to 79 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":0.9477777904934354,"basePoints":68,"dieSides":12,"pointsPerLevel":1.815000057220459,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501192,"level":37,"description":"Voodoo BoltRank 66% of base mana 1.5 sec castDeals 88 to 102 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":1.1066955159872005,"basePoints":88,"dieSides":15,"pointsPerLevel":2.0985000133514404,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501193,"level":45,"description":"Voodoo BoltRank 76% of base mana 1.5 sec castDeals 131 to 150 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":1.3861805293295117,"basePoints":131,"dieSides":20,"pointsPerLevel":2.422499895095825,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":51},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501194,"level":52,"description":"Voodoo BoltRank 86% of base mana 1.5 sec castDeals 182 to 206 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":1.6652338540376121,"basePoints":182,"dieSides":25,"pointsPerLevel":2.7060000896453857,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501195,"level":59,"description":"Voodoo BoltRank 96% of base mana 1.5 sec castDeals 252 to 281 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":1.9949572193729985,"basePoints":252,"dieSides":30,"pointsPerLevel":2.989500045776367,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":65},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501196,"level":66,"description":"Voodoo BoltRank 106% of base mana 1.5 sec castDeals 343 to 378 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":2.372502058131214,"basePoints":343,"dieSides":36,"pointsPerLevel":3.2730000019073486,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":73},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":501197,"level":74,"description":"Voodoo BoltRank 116% of base mana 1.5 sec castDeals 482 to 525 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":2.882689106330443,"basePoints":482,"dieSides":44,"pointsPerLevel":3.5969998836517334,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4506","classId":"witch-doctor","dbcSpellId":705843,"name":"Loa Spirits","unlockLevel":20,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_ragedspirit_border.png","sigil":"LS","description":"Level 20 Passive For each active Spirit on you, you have an 5% chance for your Reclamation to cast an additional time.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707422,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705843,"level":20,"description":"Level 20 Passive For each active Spirit on you, you have an 5% chance for your Reclamation to cast an additional time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707422,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4506},{"id":"coa-tree-4533","classId":"witch-doctor","dbcSpellId":706482,"name":"Voodoo Power","unlockLevel":20,"icon":"/assets/ui/spells/spell_nature_faeriefire.png","sigil":"VP","description":"Level 20 Passive Increases your spell damage by 50% of your Spirit and your spell hit rating by 5% of your Spirit.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":128,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706482,"level":20,"description":"Level 20 Passive Increases your spell damage by 50% of your Spirit and your spell hit rating by 5% of your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":128,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4533},{"id":"coa-13-fang-of-hireek-48-501162","classId":"witch-doctor","dbcSpellId":501162,"name":"Fang of Hir'eek","unlockLevel":28,"icon":"/assets/ui/spells/inv_artifact_powerofthedarkside.png","sigil":"FO","description":"Fang of Hir'eekRank 56% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 152 to 165 Spellshadow Damage|r to an enemy.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":1.9814263425132101,"basePoints":152,"dieSides":14,"pointsPerLevel":3.4679999351501465,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":33},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":5,"spellId":501162,"level":28,"description":"Fang of Hir'eekRank 56% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 152 to 165 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":1.9814263425132101,"basePoints":152,"dieSides":14,"pointsPerLevel":3.4679999351501465,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":33},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501163,"level":34,"description":"Fang of Hir'eekRank 66% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 192 to 208 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":2.275074829049662,"basePoints":192,"dieSides":17,"pointsPerLevel":3.9539999961853027,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501164,"level":41,"description":"Fang of Hir'eekRank 76% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 274 to 295 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":2.7967916443234397,"basePoints":274,"dieSides":22,"pointsPerLevel":4.520999908447266,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":47},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501165,"level":48,"description":"Fang of Hir'eekRank 86% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 384 to 410 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":3.3927195311854126,"basePoints":384,"dieSides":27,"pointsPerLevel":5.0879998207092285,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501166,"level":54,"description":"Fang of Hir'eekRank 96% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 511 to 542 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":3.997565186542013,"basePoints":511,"dieSides":32,"pointsPerLevel":5.573999881744385,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501167,"level":61,"description":"Fang of Hir'eekRank 106% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 700 to 738 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":4,"basePoints":700,"dieSides":39,"pointsPerLevel":6.140999794006348,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":67},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":501168,"level":68,"description":"Fang of Hir'eekRank 116% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 950 to 996 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":4,"basePoints":950,"dieSides":47,"pointsPerLevel":6.708000183105469,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":73},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":501169,"level":74,"description":"Fang of Hir'eekRank 126% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 1233 to 1286 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":4,"basePoints":1233,"dieSides":54,"pointsPerLevel":7.193999767303467,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-13-mojo-beam-49-500950","classId":"witch-doctor","dbcSpellId":500950,"name":"Mojo Beam","unlockLevel":29,"icon":"/assets/ui/spells/nhi_unholybeam_border.png","sigil":"MB","description":"Mojo BeamRank 115% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 174+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":1.9199296362472302,"basePoints":174,"dieSides":1,"pointsPerLevel":2.738990068435669,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":17,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500950,"level":29,"description":"Mojo BeamRank 115% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 174+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":1.9199296362472302,"basePoints":174,"dieSides":1,"pointsPerLevel":2.738990068435669,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":17,"triggerSpellId":0,"durationMs":4000}]},{"rank":2,"spellId":501114,"level":36,"description":"Mojo BeamRank 215% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 223+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":2.1477140040179483,"basePoints":223,"dieSides":1,"pointsPerLevel":2.933340072631836,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":578112,"durationMs":4000}]},{"rank":3,"spellId":501115,"level":44,"description":"Mojo BeamRank 315% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 290+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":2.588999554262323,"basePoints":290,"dieSides":1,"pointsPerLevel":3.823930025100708,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":578112,"durationMs":4000}]},{"rank":4,"spellId":501116,"level":52,"description":"Mojo BeamRank 415% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 341+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":2.861938267797973,"basePoints":341,"dieSides":1,"pointsPerLevel":4.504799842834473,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":578112,"durationMs":4000}]},{"rank":5,"spellId":501117,"level":60,"description":"Mojo BeamRank 515% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 383+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":3.0540781995985244,"basePoints":383,"dieSides":1,"pointsPerLevel":5.069459915161133,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":578112,"durationMs":4000}]},{"rank":6,"spellId":501118,"level":68,"description":"Mojo BeamRank 615% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 455+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":3.474015262711,"basePoints":455,"dieSides":1,"pointsPerLevel":6.029850006103516,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":578112,"durationMs":4000}]},{"rank":7,"spellId":572577,"level":76,"description":"Mojo BeamRank 715% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 718+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":4,"basePoints":718,"dieSides":1,"pointsPerLevel":14.310199737548828,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":578112,"durationMs":4000}]}]},{"id":"coa-tree-4715","classId":"witch-doctor","dbcSpellId":705848,"name":"Loa's Blessing","unlockLevel":30,"icon":"/assets/ui/spells/inv_misc_fish_turtle_03.png","sigil":"LS","description":"Level 30 Passive Healing done by Loa's Brew now applies a random empowerment to the target ally.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705848,"level":30,"description":"Level 30 Passive Healing done by Loa's Brew now applies a random empowerment to the target ally.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4715},{"id":"coa-tree-4532","classId":"witch-doctor","dbcSpellId":705844,"name":"Overflowing Juju","unlockLevel":30,"icon":"/assets/ui/spells/_bannishkt_purple.png","sigil":"OJ","description":"Level 30 Passive Damage dealt by your Shadow Puppets and Puppeteer's Threads now has a 15% chance to reset the cooldown of Bad Juju and cause your next cast to incur an -10 sec reduced cooldown.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":705845,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705844,"level":30,"description":"Level 30 Passive Damage dealt by your Shadow Puppets and Puppeteer's Threads now has a 15% chance to reset the cooldown of Bad Juju and cause your next cast to incur an -10 sec reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":705845,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4532},{"id":"coa-tree-11532","classId":"witch-doctor","dbcSpellId":807296,"name":"Juju Spirits","unlockLevel":40,"icon":"/assets/ui/spells/spell_nature_bloodlust.png","sigil":"JS","description":"Level 40 Passive Increases your spell critical damage by 100% and increases the critical strike chance of Bad Juju by 5% for each active Spirit on you.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807296,"level":40,"description":"Level 40 Passive Increases your spell critical damage by 100% and increases the critical strike chance of Bad Juju by 5% for each active Spirit on you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11532},{"id":"coa-tree-4733","classId":"witch-doctor","dbcSpellId":707617,"name":"Mojo Wave","unlockLevel":40,"icon":"/assets/ui/spells/nhi_naturewave_border.png","sigil":"MW","description":"Level 40 Passive Healing with Mojo Beam now heals up to 3 of the lowest health nearby allies for 75% of the healing done and casting it grants allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":712453,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707617,"level":40,"description":"Level 40 Passive Healing with Mojo Beam now heals up to 3 of the lowest health nearby allies for 75% of the healing done and casting it grants allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":712453,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4733},{"id":"coa-tree-11133","classId":"witch-doctor","dbcSpellId":704500,"name":"Hexfire Adept","unlockLevel":50,"icon":"/assets/ui/spells/nhi_corruptionfire_border.png","sigil":"HA","description":"Level 50 Passive Casting Hexfire transforms your next Malefic Wrath within 8 seconds into Hexfire Wrath.Hexfire WrathHurl hexfire energy at an enemy and up to 2 nearby enemies, dealing cond(gt(SPFI, SPN), 306+0+SPFI*0.75, 306+0+SPN*0.75) Fire damage and cursing them for 9 seconds. The curse deals cond(gt(SPFI, SPN), 239+0+SPFI*0.1, 239+0+SPN*0.1) Fire damage every 3 sec. Spawns a Serpent Ward for 10 seconds beneath your target. Scales with modifiers to Malefic Wrath.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":503626,"durationMs":0},{"kind":"utility","effectType":6,"auraType":286,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704500,"level":50,"description":"Level 50 Passive Casting Hexfire transforms your next Malefic Wrath within 8 seconds into Hexfire Wrath.Hexfire WrathHurl hexfire energy at an enemy and up to 2 nearby enemies, dealing cond(gt(SPFI, SPN), 306+0+SPFI*0.75, 306+0+SPN*0.75) Fire damage and cursing them for 9 seconds. The curse deals cond(gt(SPFI, SPN), 239+0+SPFI*0.1, 239+0+SPN*0.1) Fire damage every 3 sec. Spawns a Serpent Ward for 10 seconds beneath your target. Scales with modifiers to Malefic Wrath.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":503626,"durationMs":0},{"kind":"utility","effectType":6,"auraType":286,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":11133},{"id":"coa-tree-13133","classId":"witch-doctor","dbcSpellId":706369,"name":"It's Da Mojo","unlockLevel":50,"icon":"/assets/ui/spells/spell_nature_giftofthewaterspirit.png","sigil":"IS","description":"Drop a Spirit Link Idol for 14 seconds. The idol redistributes the health of all party and raid members every 2 sec, such that each player ends up with the same percentage of their maximum health.","target":"hostile","range":{"min":0,"max":25},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1000,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":522106,"triggerSpellId":0,"durationMs":8500}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":706369,"level":50,"description":"Drop a Spirit Link Idol for 14 seconds. The idol redistributes the health of all party and raid members every 2 sec, such that each player ends up with the same percentage of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1000,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":522106,"triggerSpellId":0,"durationMs":8500}]}],"talentEntryId":13133},{"id":"coa-13-mojo-beam-48-501118","classId":"witch-doctor","dbcSpellId":501118,"name":"Mojo Beam","unlockLevel":68,"icon":"/assets/ui/spells/nhi_unholybeam_border.png","sigil":"MB","description":"Mojo BeamRank 615% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 455+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":3.474015262711,"basePoints":455,"dieSides":1,"pointsPerLevel":6.029850006103516,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":578112,"durationMs":4000}],"passive":false,"source":"coa-progression","ranks":[{"rank":6,"spellId":501118,"level":68,"description":"Mojo BeamRank 615% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 455+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":3.474015262711,"basePoints":455,"dieSides":1,"pointsPerLevel":6.029850006103516,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74,"ticks":4,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":578112,"durationMs":4000}]}]},{"id":"coa-13-strike-of-the-gods-48-501160","classId":"witch-doctor","dbcSpellId":501160,"name":"Strike of the Gods","unlockLevel":70,"icon":"/assets/ui/spells/nhi_unholy_blast_border.png","sigil":"SO","description":"Strike of the GodsRank 36% of base mana InstantInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus 3 Charges 12 sec recharge Deals 484 to 515 Spellshadow Damage|r to an enemy. Changing Devotions refreshes a charge.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":3.4889411440082623,"basePoints":484,"dieSides":32,"pointsPerLevel":5.573999881744385,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":74},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":501160,"level":70,"description":"Strike of the GodsRank 36% of base mana InstantInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus 3 Charges 12 sec recharge Deals 484 to 515 Spellshadow Damage|r to an enemy. Changing Devotions refreshes a charge.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":3.4889411440082623,"basePoints":484,"dieSides":32,"pointsPerLevel":5.573999881744385,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":74},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501161,"level":74,"description":"Strike of the GodsRank 46% of base mana InstantInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus 3 Charges 12 sec recharge Deals 734 to 780 Spellshadow Damage|r to an enemy. Changing Devotions refreshes a charge.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"damage","coefficient":4,"basePoints":734,"dieSides":47,"pointsPerLevel":6.140999794006348,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804107,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]}],"felsworn":[{"id":"coa-tree-29686","classId":"felsworn","dbcSpellId":803904,"name":"Annihilation","unlockLevel":1,"icon":"/assets/ui/spells/ability_boss_lordanthricystgreen.png","sigil":"AN","description":"Gorge on fel energy, guaranteeing your next direct instance of damage to critically strike, but causing it to consume 5% of your maximum health. Lasts for 5 attacks or 12 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807961,"durationMs":12000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803904,"level":1,"description":"Gorge on fel energy, guaranteeing your next direct instance of damage to critically strike, but causing it to consume 5% of your maximum health. Lasts for 5 attacks or 12 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807961,"durationMs":12000}]}],"talentEntryId":29686},{"id":"coa-tree-30301","classId":"felsworn","dbcSpellId":560822,"name":"Anti-Magic","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_antimagicshell.png","sigil":"AM","description":"When Hateforged Barrier is removed from you, you now reduce -10% of all Magic damage taken for 8 seconds. In addition, Hateforged Barrier now heals for an additional 2% of your maximum health each tick.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560822,"level":1,"description":"When Hateforged Barrier is removed from you, you now reduce -10% of all Magic damage taken for 8 seconds. In addition, Hateforged Barrier now heals for an additional 2% of your maximum health each tick.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30301},{"id":"coa-tree-33671","classId":"felsworn","dbcSpellId":706266,"name":"Armaments of the Legion","unlockLevel":1,"icon":"/assets/ui/spells/inv_plate_helmet_eredarargus_d_01.png","sigil":"AO","description":"Reduces your chance to be hit by spells by -2% and increases the absorption value of Hateforged Barrier by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":186,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":317,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706266,"level":1,"description":"Reduces your chance to be hit by spells by -2% and increases the absorption value of Hateforged Barrier by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":186,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":317,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":707844,"level":1,"description":"Reduces your chance to be hit by spells by -4% and increases the absorption value of Hateforged Barrier by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":186,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":317,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33671},{"id":"coa-tree-4009","classId":"felsworn","dbcSpellId":92089,"name":"Burning Commander","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_demonictrample.png","sigil":"BC","description":"Level 10 Passive Allows you to wield a Two-Handed Axe, Mace, Polearm or Sword in each hand and grants you additional Armor and magic resistance based on your attack power.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520261,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":500531,"durationMs":-1},{"kind":"utility","effectType":155,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92089,"level":1,"description":"Level 10 Passive Allows you to wield a Two-Handed Axe, Mace, Polearm or Sword in each hand and grants you additional Armor and magic resistance based on your attack power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520261,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":500531,"durationMs":-1},{"kind":"utility","effectType":155,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4009},{"id":"coa-tree-5685","classId":"felsworn","dbcSpellId":681376,"name":"Chaotic","unlockLevel":1,"icon":"/assets/ui/spells/nhi_chaosfire_border.png","sigil":"CH","description":"Dealing damage now has an 8% chance to increase your damage by 3% for 8 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":572782,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681376,"level":1,"description":"Dealing damage now has an 8% chance to increase your damage by 3% for 8 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":572782,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5685},{"id":"coa-tree-31294","classId":"felsworn","dbcSpellId":300465,"name":"Cunning","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_hellfire_felreaver.png","sigil":"CU","description":"Reduces the duration of movement impairing effects on you by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":232,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300465,"level":1,"description":"Reduces the duration of movement impairing effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":232,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":31294},{"id":"coa-tree-4007","classId":"felsworn","dbcSpellId":92087,"name":"Dancing Blades","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_03dual.png","sigil":"DB","description":"Level 10 Passive Critical strikes with melee abilities now trigger Dancing Blades, dealing off-hand Weapon Damage to up to 5 nearby enemies.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":112,"miscValue":20000,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92087,"level":1,"description":"Level 10 Passive Critical strikes with melee abilities now trigger Dancing Blades, dealing off-hand Weapon Damage to up to 5 nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":112,"miscValue":20000,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4007},{"id":"coa-tree-6423","classId":"felsworn","dbcSpellId":520251,"name":"Dark Teachings","unlockLevel":1,"icon":"/assets/ui/spells/_book2motif_illidan.png","sigil":"DT","description":"Increases the effectiveness of your Intuitions by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520251,"level":1,"description":"Increases the effectiveness of your Intuitions by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6423},{"id":"coa-tree-34207","classId":"felsworn","dbcSpellId":705102,"name":"Demonborn","unlockLevel":1,"icon":"/assets/ui/spells/nhi_unholyswing_border.png","sigil":"DE","description":"Increases your Energy regeneration by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705102,"level":1,"description":"Increases your Energy regeneration by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":707842,"level":1,"description":"Increases your Energy regeneration by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34207},{"id":"coa-tree-34213","classId":"felsworn","dbcSpellId":520257,"name":"Demonic Embrace","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_worldinflamesgreen.png","sigil":"DE","description":"Casting Inner Demon with at least 6 Felfury now restores 50 Energy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520258,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520257,"level":1,"description":"Casting Inner Demon with at least 6 Felfury now restores 50 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520258,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34213},{"id":"coa-tree-34203","classId":"felsworn","dbcSpellId":705108,"name":"Demonic Evasion","unlockLevel":1,"icon":"/assets/ui/spells/_monkspecialattack_dodgenightelf.png","sigil":"DE","description":"Increases your chance to dodge by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705108,"level":1,"description":"Increases your chance to dodge by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34203},{"id":"coa-tree-29400","classId":"felsworn","dbcSpellId":804613,"name":"Doomstride","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_doublejump.png","sigil":"DO","description":"Using Chaos Rush twice in a row now refreshes a charge of Chaos Rush.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807962,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804613,"level":1,"description":"Using Chaos Rush twice in a row now refreshes a charge of Chaos Rush.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807962,"durationMs":-1}]}],"talentEntryId":29400},{"id":"coa-tree-33674","classId":"felsworn","dbcSpellId":704607,"name":"Elemental Bane","unlockLevel":1,"icon":"/assets/ui/spells/spell_fel_elementaldevastation.png","sigil":"EB","description":"Increases your critical damage by 10% and additionally increases your critical strike chance by 15% while fighting Elementals.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":112,"miscValue":20008,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":163,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704607,"level":1,"description":"Increases your critical damage by 10% and additionally increases your critical strike chance by 15% while fighting Elementals.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":112,"miscValue":20008,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":163,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33674},{"id":"coa-14-empowered-felstrikes-52-705120","classId":"felsworn","dbcSpellId":705120,"name":"Empowered Felstrikes","unlockLevel":1,"icon":"/assets/ui/spells/_manaburn_fel.png","sigil":"EF","description":"Empowered FelstrikesRank 1Increases the damage of your Felstrikes by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705120,"level":1,"description":"Empowered FelstrikesRank 1Increases the damage of your Felstrikes by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-14-evil-eye-53-705151","classId":"felsworn","dbcSpellId":705151,"name":"Evil Eye","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_shadowegg.png","sigil":"EE","description":"Evil EyeRank 2Allows Felglare to stack 2 additional times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":704373,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705151,"level":1,"description":"Evil EyeRank 2Allows Felglare to stack 2 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":704373,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4008","classId":"felsworn","dbcSpellId":92088,"name":"Fel Apprentice","unlockLevel":1,"icon":"/assets/ui/spells/_auracloak_felfire.png","sigil":"FA","description":"Level 10 Passive While Inner Demon is active, your Fel Fireball will now unleash a Felstrike on your target.FelstrikeBurn an enemy for 54 + 30% SP Shadowflame Damage over 6 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801891,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803479,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92088,"level":1,"description":"Level 10 Passive While Inner Demon is active, your Fel Fireball will now unleash a Felstrike on your target.FelstrikeBurn an enemy for 54 + 30% SP Shadowflame Damage over 6 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801891,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803479,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4008},{"id":"coa-tree-6875","classId":"felsworn","dbcSpellId":705105,"name":"Fel Communion","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_moltencoregreen.png","sigil":"FC","description":"Increases your maximum Energy by 30.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705105,"level":1,"description":"Increases your maximum Energy by 30.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6875},{"id":"coa-tree-30552","classId":"felsworn","dbcSpellId":525001,"name":"Felbane","unlockLevel":1,"icon":"/assets/ui/spells/5_warlock42_border.png","sigil":"FE","description":"Curse an enemy, causing the next spell they cast within 4 seconds to be reflected onto them.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":525001,"level":1,"description":"Curse an enemy, causing the next spell they cast within 4 seconds to be reflected onto them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]}],"talentEntryId":30552},{"id":"coa-tree-33668","classId":"felsworn","dbcSpellId":560573,"name":"Felgorged","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_feldevastation.png","sigil":"FE","description":"Reduces the Energy cost of Cripple and Consume Magic by -10.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560573,"level":1,"description":"Reduces the Energy cost of Cripple and Consume Magic by -10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33668},{"id":"coa-tree-5210","classId":"felsworn","dbcSpellId":704360,"name":"Felguard","unlockLevel":1,"icon":"/assets/ui/spells/achievement_explore_argus.png","sigil":"FE","description":"Your Chaos Rush now reduces all damage taken by -3% for 5 seconds, stacking 2 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524633,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704360,"level":1,"description":"Your Chaos Rush now reduces all damage taken by -3% for 5 seconds, stacking 2 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524633,"durationMs":-1}]}],"talentEntryId":5210},{"id":"coa-tree-34212","classId":"felsworn","dbcSpellId":301287,"name":"Felheart","unlockLevel":1,"icon":"/assets/ui/spells/inv_dhmount_felsaber.png","sigil":"FE","description":"Each Felfury active now increases your haste by 1%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301287,"level":1,"description":"Each Felfury active now increases your haste by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34212},{"id":"coa-tree-11210","classId":"felsworn","dbcSpellId":707513,"name":"Felstrider","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","sigil":"FE","description":"Your Chaos Rush now increases your Energy regeneration by 10% for 5 seconds, stacking 2 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":525042,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707513,"level":1,"description":"Your Chaos Rush now increases your Energy regeneration by 10% for 5 seconds, stacking 2 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":525042,"durationMs":-1}]}],"talentEntryId":11210},{"id":"coa-tree-34205","classId":"felsworn","dbcSpellId":704374,"name":"Felwracked","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_demoniccircleteleport.png","sigil":"FE","description":"Every 3rd Twin Slice or Fel Fireball within 15 seconds now generates 1 additional Felfury.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707518,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704374,"level":1,"description":"Every 3rd Twin Slice or Fel Fireball within 15 seconds now generates 1 additional Felfury.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707518,"durationMs":-1}]}],"talentEntryId":34205},{"id":"coa-tree-34227","classId":"felsworn","dbcSpellId":804609,"name":"Gul'dan's Gift","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_2h_guldan_d_01.png","sigil":"GD","description":"Increases the effectiveness of your Skull of Gul'dan by 50%, but its cooldown is increased by 30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804609,"level":1,"description":"Increases the effectiveness of your Skull of Gul'dan by 50%, but its cooldown is increased by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34227},{"id":"coa-tree-30554","classId":"felsworn","dbcSpellId":705129,"name":"Hateforged Barrier","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_felfireward.png","sigil":"HB","description":"Manifest a barrier of pure hatred, absorbing 177 + 200% Stamina damage, scaling with your Stamina, for 30 seconds. While the barrier holds, you regenerate 2% of your maximum health every 2 sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":2.893333339691162,"basePoints":177,"dieSides":32,"pointsPerLevel":2.450000047683716,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":705130,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":705129,"level":1,"description":"Manifest a barrier of pure hatred, absorbing 177 + 200% Stamina damage, scaling with your Stamina, for 30 seconds. While the barrier holds, you regenerate 2% of your maximum health every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":2.893333339691162,"basePoints":177,"dieSides":32,"pointsPerLevel":2.450000047683716,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":705130,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]}],"talentEntryId":30554},{"id":"coa-tree-29924","classId":"felsworn","dbcSpellId":806109,"name":"Illidan's Guile","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_qirajicrystal_03.png","sigil":"IS","description":"Gorge on fel energy, becoming immune to all physical attacks and spells for 8 seconds, but during that time you cannot attack, move or cast spells. At the end of the duration, your next Chaos Rush within 5 seconds now dashes an additional 20 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":106,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":39,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":183,"auraType":4,"miscValue":0,"triggerSpellId":807235,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806109,"level":1,"description":"Gorge on fel energy, becoming immune to all physical attacks and spells for 8 seconds, but during that time you cannot attack, move or cast spells. At the end of the duration, your next Chaos Rush within 5 seconds now dashes an additional 20 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":106,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":39,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":183,"auraType":4,"miscValue":0,"triggerSpellId":807235,"durationMs":8000}]}],"talentEntryId":29924},{"id":"coa-tree-29409","classId":"felsworn","dbcSpellId":300468,"name":"Illidari Barrier","unlockLevel":1,"icon":"/assets/ui/spells/ability_vehicle_shellshieldgenerator_green.png","sigil":"IB","description":"Casting Hateforged Barrier now also creates a damage absorption shield on all nearby allies within 15 yds, absorbing 328 + 100% Stamina + 20% SP + 8% AP damage for 5 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":300469,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524635,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300468,"level":1,"description":"Casting Hateforged Barrier now also creates a damage absorption shield on all nearby allies within 15 yds, absorbing 328 + 100% Stamina + 20% SP + 8% AP damage for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":300469,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524635,"durationMs":-1}]}],"talentEntryId":29409},{"id":"coa-14-impenetrable-wards-52-705128","classId":"felsworn","dbcSpellId":705128,"name":"Impenetrable Wards","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_elementalshields.png","sigil":"IW","description":"Impenetrable WardsRank 2Increases the effectiveness of all damage absorption effects used on you by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":317,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705128,"level":1,"description":"Impenetrable WardsRank 2Increases the effectiveness of all damage absorption effects used on you by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":317,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29399","classId":"felsworn","dbcSpellId":805244,"name":"Legion March","unlockLevel":1,"icon":"/assets/ui/spells/_warlock_rueeardenteverte.png","sigil":"LM","description":"Increases the range of Chaos Rush by 3 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805244,"level":1,"description":"Increases the range of Chaos Rush by 3 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29399},{"id":"coa-tree-30553","classId":"felsworn","dbcSpellId":704613,"name":"Magic Fiend","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_darksummoning.png","sigil":"MF","description":"Increases the amount of beneficial magic effects stolen by your Consume Magic by 1.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704613,"level":1,"description":"Increases the amount of beneficial magic effects stolen by your Consume Magic by 1.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30553},{"id":"coa-tree-29367","classId":"felsworn","dbcSpellId":805248,"name":"Manaburn","unlockLevel":1,"icon":"/assets/ui/spells/_manaburn_fel.png","sigil":"MA","description":"Burn an enemy's mana equal to 200% of your Stamina. Deals damage equal to the mana drained.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":62,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805248,"level":1,"description":"Burn an enemy's mana equal to 200% of your Stamina. Deals damage equal to the mana drained.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":62,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29367},{"id":"coa-tree-7868","classId":"felsworn","dbcSpellId":524947,"name":"Mark of Chaos","unlockLevel":1,"icon":"/assets/ui/spells/70_inscription_glyph_demonhunter_minor.png","sigil":"MO","description":"Using Chaos Rush increases the next instance of direct spell or ability damage within 5 seconds by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":525027,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524947,"level":1,"description":"Using Chaos Rush increases the next instance of direct spell or ability damage within 5 seconds by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":525027,"durationMs":-1}]}],"talentEntryId":7868},{"id":"coa-tree-30565","classId":"felsworn","dbcSpellId":704612,"name":"Pact Hunter","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_metamorphasistank.png","sigil":"PH","description":"Increases the effectiveness of your Pacts by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704612,"level":1,"description":"Increases the effectiveness of your Pacts by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30565},{"id":"coa-tree-7865","classId":"felsworn","dbcSpellId":802058,"name":"Reckoning","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_felrainoffire.png","sigil":"RE","description":"For 10 seconds, your Fel Fireball is free of cost, instant cast, and strikes up to 4 targets. For the duration, your falling speed is slowed and damage dealt by your Fel Fireball increases your damage dealt by 4% for 15 seconds, stacking 4 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":521241,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524632,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802058,"level":1,"description":"For 10 seconds, your Fel Fireball is free of cost, instant cast, and strikes up to 4 targets. For the duration, your falling speed is slowed and damage dealt by your Fel Fireball increases your damage dealt by 4% for 15 seconds, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":521241,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524632,"durationMs":10000}]}],"talentEntryId":7865},{"id":"felsworn-sargeron-smite","classId":"felsworn","dbcSpellId":802060,"name":"Sargeron Smite","unlockLevel":1,"icon":"/assets/ui/spells/uico_unholy_spell_03_border.png","sigil":"SS","description":"Sargeron SmiteRank 1Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 21+0+FireP*.6+AP*.19, 21+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.2199999988079071,"basePoints":21,"dieSides":3,"pointsPerLevel":0.5,"bonusPowerCoefficient":0.2199999988079071,"sourceLevel":1,"maxScalingLevel":8}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":802060,"level":1,"description":"Sargeron SmiteRank 1Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 21+0+FireP*.6+AP*.19, 21+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.2199999988079071,"basePoints":21,"dieSides":3,"pointsPerLevel":0.5,"bonusPowerCoefficient":0.2199999988079071,"sourceLevel":1,"maxScalingLevel":8}]},{"rank":2,"spellId":501314,"level":10,"description":"Sargeron SmiteRank 2Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 31+0+FireP*.6+AP*.19, 31+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.5066666698455811,"basePoints":31,"dieSides":3,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":3,"spellId":501315,"level":16,"description":"Sargeron SmiteRank 3Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 43+0+FireP*.6+AP*.19, 43+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.6834408544724987,"basePoints":43,"dieSides":5,"pointsPerLevel":1.159999966621399,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":4,"spellId":501316,"level":26,"description":"Sargeron SmiteRank 4Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 71+0+FireP*.6+AP*.19, 71+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1.011178861788618,"basePoints":71,"dieSides":7,"pointsPerLevel":1.9375,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":5,"spellId":501317,"level":34,"description":"Sargeron SmiteRank 5Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 102+0+FireP*.6+AP*.19, 102+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1.6458042203163614,"basePoints":102,"dieSides":10,"pointsPerLevel":3.983330011367798,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":6,"spellId":501318,"level":42,"description":"Sargeron SmiteRank 6Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 150+0+FireP*.6+AP*.19, 150+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":2.192397613971554,"basePoints":150,"dieSides":14,"pointsPerLevel":5.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":7,"spellId":501319,"level":50,"description":"Sargeron SmiteRank 7Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 223+0+FireP*.6+AP*.19, 223+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":3.215384639837803,"basePoints":223,"dieSides":19,"pointsPerLevel":7.900000095367432,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":8,"spellId":501320,"level":56,"description":"Sargeron SmiteRank 8Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 344+0+FireP*.6+AP*.19, 344+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":3.871361602639928,"basePoints":344,"dieSides":27,"pointsPerLevel":8.350000381469727,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":9,"spellId":501321,"level":60,"description":"Sargeron SmiteRank 9Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 419+0+FireP*.6+AP*.19, 419+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":419,"dieSides":37,"pointsPerLevel":11.25,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":80}]}]},{"id":"coa-tree-30559","classId":"felsworn","dbcSpellId":800225,"name":"Skull of Gul'dan","unlockLevel":1,"icon":"/assets/ui/spells/inv_offhand_1h_artifactskulloferedar_d_03.png","sigil":"SO","description":"Consume the essence of the skull of Gul'dan, increasing your maximum health and Energy by 25% for 10 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800225,"level":1,"description":"Consume the essence of the skull of Gul'dan, increasing your maximum health and Energy by 25% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":30559},{"id":"coa-tree-11227","classId":"felsworn","dbcSpellId":807430,"name":"Suffering","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_negate.png","sigil":"SU","description":"Increases the duration of Skull of Gul'dan by 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807430,"level":1,"description":"Increases the duration of Skull of Gul'dan by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11227},{"id":"coa-14-untold-power-52-705113","classId":"felsworn","dbcSpellId":705113,"name":"Untold Power","unlockLevel":1,"icon":"/assets/ui/spells/ability_bossfelmagnaron_handempowered.png","sigil":"UP","description":"Untold PowerRank 2Increases your Energy regeneration by 40%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":138,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705113,"level":1,"description":"Untold PowerRank 2Increases your Energy regeneration by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":138,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34204","classId":"felsworn","dbcSpellId":705125,"name":"Warden's End","unlockLevel":1,"icon":"/assets/ui/spells/inv_fabric_felcloth_ebon.png","sigil":"WS","description":"Reduces the cooldown of Mana Burn and Illidan's Guile by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705125,"level":1,"description":"Reduces the cooldown of Mana Burn and Illidan's Guile by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34204},{"id":"coa-tree-6868","classId":"felsworn","dbcSpellId":805235,"name":"Whispers of the Pit","unlockLevel":1,"icon":"/assets/ui/spells/ability_bossmannoroth_mannorothsgaze.png","sigil":"WO","description":"Unleash fel energy upon enemies at target location, fearing them and slowing their movement speed by -80% for 8 seconds. Damage caused may interrupt the effect.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"status","status":"fear","durationMs":8000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807590,"durationMs":8000},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805235,"level":1,"description":"Unleash fel energy upon enemies at target location, fearing them and slowing their movement speed by -80% for 8 seconds. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"status","status":"fear","durationMs":8000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807590,"durationMs":8000},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3}]}],"talentEntryId":6868},{"id":"felsworn-wrathbringer","classId":"felsworn","dbcSpellId":705133,"name":"Wrathbringer","unlockLevel":1,"icon":"/assets/ui/spells/achievement_raid_tombofsargeras.png","sigil":"WR","description":"WrathbringerRank 2InstantIncreases the damage of Oblivion by 0%.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"source":"coa-progression","passive":true,"ranks":[{"rank":2,"spellId":705133,"level":1,"description":"WrathbringerRank 2InstantIncreases the damage of Oblivion by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"felsworn-betray","classId":"felsworn","dbcSpellId":804220,"name":"Betray","unlockLevel":2,"icon":"/assets/ui/spells/ability_demonhunter_spectank.png","sigil":"BE","description":"Turn on your foe with a treacherous strike that steals vitality.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.95},{"kind":"heal","coefficient":0.45}],"source":"coa-starter"},{"id":"felsworn-ruin","classId":"felsworn","dbcSpellId":801895,"name":"Ruin","unlockLevel":11,"icon":"/assets/ui/spells/inv_infernalmountgreen.png","sigil":"RU","description":"RuinRank 130 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 116+0+FireP*1, 116+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":116,"dieSides":21,"pointsPerLevel":3.3399999141693115,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801895,"level":11,"description":"RuinRank 130 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 116+0+FireP*1, 116+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":116,"dieSides":21,"pointsPerLevel":3.3399999141693115,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501292,"level":18,"description":"RuinRank 230 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 200+0+FireP*1, 200+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":2.9583333333333335,"basePoints":200,"dieSides":36,"pointsPerLevel":4.1875,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501293,"level":26,"description":"RuinRank 330 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 286+0+FireP*1, 286+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":3.540650406504065,"basePoints":286,"dieSides":53,"pointsPerLevel":4.75,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501294,"level":34,"description":"RuinRank 430 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 393+0+FireP*1, 393+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":393,"dieSides":71,"pointsPerLevel":5.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501295,"level":42,"description":"RuinRank 530 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 500+0+FireP*1, 500+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":500,"dieSides":90,"pointsPerLevel":7.25,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501296,"level":50,"description":"RuinRank 630 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 599+0+FireP*1, 599+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":599,"dieSides":111,"pointsPerLevel":13.324999809265137,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501297,"level":56,"description":"RuinRank 730 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 690+0+FireP*1, 690+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":690,"dieSides":132,"pointsPerLevel":31.850000381469727,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501298,"level":60,"description":"RuinRank 830 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 2163+0+FireP*1, 2163+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":2163,"dieSides":155,"pointsPerLevel":12.449999809265137,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501299,"level":68,"description":"RuinRank 930 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 2989+0+FireP*1, 2989+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":2989,"dieSides":173,"pointsPerLevel":7.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-14-annihilan-strike-52-801903","classId":"felsworn","dbcSpellId":801903,"name":"Annihilan Strike","unlockLevel":16,"icon":"/assets/ui/spells/inv_glaive_1h_npc_d_02.png","sigil":"AS","description":"Annihilan StrikeRank 140 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 145% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801913,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801914,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801903,"level":16,"description":"Annihilan StrikeRank 140 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 145% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801913,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801914,"durationMs":0}]},{"rank":2,"spellId":560759,"level":22,"description":"Annihilan StrikeRank 240 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 150% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801913,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801914,"durationMs":0}]},{"rank":3,"spellId":560760,"level":28,"description":"Annihilan StrikeRank 340 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 155% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801913,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801914,"durationMs":0}]},{"rank":4,"spellId":560761,"level":34,"description":"Annihilan StrikeRank 440 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 160% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801913,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801914,"durationMs":0}]},{"rank":5,"spellId":560762,"level":40,"description":"Annihilan StrikeRank 540 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 165% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801913,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801914,"durationMs":0}]},{"rank":6,"spellId":572803,"level":46,"description":"Annihilan StrikeRank 640 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 170% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801913,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801914,"durationMs":0}]},{"rank":7,"spellId":572804,"level":52,"description":"Annihilan StrikeRank 740 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 180% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801913,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801914,"durationMs":0}]}]},{"id":"coa-14-immolation-aura-57-501270","classId":"felsworn","dbcSpellId":501270,"name":"Immolation Aura","unlockLevel":22,"icon":"/assets/ui/spells/spell_fire_felimmolation.png","sigil":"IA","description":"Immolation AuraRank 215 , plus 15 per sec InstantWreathe yourself in fire for up to 1 min, dealing 35+0+FireP*.3+AP*.23 Fire Damage to nearby enemies every 3 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800208,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":226,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501270,"level":22,"description":"Immolation AuraRank 215 , plus 15 per sec InstantWreathe yourself in fire for up to 1 min, dealing 35+0+FireP*.3+AP*.23 Fire Damage to nearby enemies every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800208,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":226,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":3,"spellId":501271,"level":30,"description":"Immolation AuraRank 320 , plus 20 per sec InstantWreathe yourself in fire for up to 1 min, dealing 47+0+FireP*.3+AP*.23 Fire Damage to nearby enemies every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800208,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":226,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":4,"spellId":501272,"level":38,"description":"Immolation AuraRank 425 , plus 25 per sec InstantWreathe yourself in fire for up to 1 min, dealing 67+0+FireP*.3+AP*.23 Fire Damage to nearby enemies every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800208,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":226,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]}]},{"id":"coa-14-annihilation-53-802059","classId":"felsworn","dbcSpellId":802059,"name":"Annihilation","unlockLevel":68,"icon":"/assets/ui/spells/spell_fire_felpyroblast.png","sigil":"AN","description":"AnnihilationRank 12 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803841,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2500}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802059,"level":68,"description":"AnnihilationRank 12 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803841,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2500}]},{"rank":2,"spellId":803847,"level":76,"description":"AnnihilationRank 22 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803841,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2500}]},{"rank":3,"spellId":803848,"level":84,"description":"AnnihilationRank 32 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803841,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2500}]},{"rank":4,"spellId":803849,"level":90,"description":"AnnihilationRank 42 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803841,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":110,"miscValue":3,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2500}]}]},{"id":"coa-14-oblivion-52-800215","classId":"felsworn","dbcSpellId":800215,"name":"Oblivion","unlockLevel":68,"icon":"/assets/ui/spells/inv_staff_2h_felfireraid_d_03.png","sigil":"OB","description":"OblivionRank 12500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 115+0+AP*0.35 Shadowflame Damage, absorbing 100+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"rage","amount":2500},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":572132,"durationMs":8000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800215,"level":68,"description":"OblivionRank 12500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 115+0+AP*0.35 Shadowflame Damage, absorbing 100+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"rage","amount":2500},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":572132,"durationMs":8000}]},{"rank":2,"spellId":802400,"level":72,"description":"OblivionRank 22500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 206+0+AP*0.35 Shadowflame Damage, absorbing 140+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"rage","amount":2500},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":572132,"durationMs":8000}]},{"rank":3,"spellId":802401,"level":76,"description":"OblivionRank 32500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 286+0+AP*0.35 Shadowflame Damage, absorbing 170+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"rage","amount":2500},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":572132,"durationMs":8000}]},{"rank":4,"spellId":802402,"level":80,"description":"OblivionRank 42500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 356+0+AP*0.35 Shadowflame Damage, absorbing 200+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"rage","amount":2500},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":572132,"durationMs":8000}]},{"rank":5,"spellId":802403,"level":84,"description":"OblivionRank 52500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 446+0+AP*0.35 Shadowflame Damage, absorbing 250+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"rage","amount":2500},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":572132,"durationMs":8000}]},{"rank":6,"spellId":802404,"level":90,"description":"OblivionRank 62500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 586+0+AP*0.35 Shadowflame Damage, absorbing 300+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"rage","amount":2500},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":301,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":572132,"durationMs":8000}]}]}],"witch-hunter":[{"id":"coa-15-agile-steps-58-705521","classId":"witch-hunter","dbcSpellId":705521,"name":"Agile Steps","unlockLevel":1,"icon":"/assets/ui/spells/inv_boot_cloth_nzothraidmythic_d_01.png","sigil":"AS","description":"Agile StepsRank 1Reduces the cooldown of Vault by 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705521,"level":1,"description":"Agile StepsRank 1Reduces the cooldown of Vault by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705522,"level":1,"description":"Agile StepsRank 2Reduces the cooldown of Vault by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]},{"rank":3,"spellId":705523,"level":1,"description":"Agile StepsRank 3InstantReduces the cooldown of Vault by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34556","classId":"witch-hunter","dbcSpellId":705498,"name":"Alchemical Research","unlockLevel":1,"icon":"/assets/ui/spells/inv_enchant_alchemistcauldron.png","sigil":"AR","description":"Increases the effectiveness of your Tonics by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705498,"level":1,"description":"Increases the effectiveness of your Tonics by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":707862,"level":1,"description":"Increases the effectiveness of your Tonics by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34556},{"id":"coa-tree-4010","classId":"witch-hunter","dbcSpellId":92091,"name":"Boltslinger","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_crossbow_21.png","sigil":"BO","description":"Level 10 Passive You may now cast Darkslayer while moving. Ranged attacks and abilities now have a 25% chance to shoot an additional shot, dealing 20% ranged AP Physical damage and generating 5 Rage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":500159,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504247,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92091,"level":1,"description":"Level 10 Passive You may now cast Darkslayer while moving. Ranged attacks and abilities now have a 25% chance to shoot an additional shot, dealing 20% ranged AP Physical damage and generating 5 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":500159,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504247,"durationMs":-1}]}],"talentEntryId":4010},{"id":"coa-tree-34588","classId":"witch-hunter","dbcSpellId":501380,"name":"Brand of the Unworthy","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_overwhelmed.png","sigil":"BO","description":"Expose an enemy's darkest faults, incapacitating them for 40 seconds (8 sec vs players). Damage caused will end this effect. Only usable on Humanoids, Demons, and Undead.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":40000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":501380,"level":1,"description":"Expose an enemy's darkest faults, incapacitating them for 40 seconds (8 sec vs players). Damage caused will end this effect. Only usable on Humanoids, Demons, and Undead.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":40000}]}],"talentEntryId":34588},{"id":"coa-tree-6622","classId":"witch-hunter","dbcSpellId":802269,"name":"Burrow Bolt","unlockLevel":1,"icon":"/assets/ui/spells/burrow bolt.png","sigil":"BB","description":"Shoot a bolt with a rope attached to it at an enemy dealing 6 + 25% AP Physical damage and pulling them to you.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"rage","amount":13},"effects":[{"kind":"damage","coefficient":0.3466666666666667,"basePoints":6,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":802270,"durationMs":200},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":200}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802269,"level":1,"description":"Shoot a bolt with a rope attached to it at an enemy dealing 6 + 25% AP Physical damage and pulling them to you.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"rage","amount":13},"effects":[{"kind":"damage","coefficient":0.3466666666666667,"basePoints":6,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":802270,"durationMs":200},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":200}]}],"talentEntryId":6622},{"id":"coa-tree-6415","classId":"witch-hunter","dbcSpellId":680529,"name":"Combat Training","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_2h_blood_c_01.png","sigil":"CT","description":"Increases your Physical damage dealt and parry chance by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":47,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680529,"level":1,"description":"Increases your Physical damage dealt and parry chance by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":47,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":681484,"level":1,"description":"Increases your Physical damage dealt and parry chance by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":47,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6415},{"id":"coa-tree-34555","classId":"witch-hunter","dbcSpellId":806195,"name":"Dark Intuition","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_darkness.png","sigil":"DI","description":"Whenever you parry or dodge an attack, your attack speed is increased by 5%, and your parry chance by 2% for 15 seconds, stacking 2 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806194,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806195,"level":1,"description":"Whenever you parry or dodge an attack, your attack speed is increased by 5%, and your parry chance by 2% for 15 seconds, stacking 2 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806194,"durationMs":-1}]}],"talentEntryId":34555},{"id":"coa-tree-11218","classId":"witch-hunter","dbcSpellId":802011,"name":"Dark Souls","unlockLevel":1,"icon":"/assets/ui/spells/nhi_shadowbreath_border.png","sigil":"DS","description":"Increases the duration of Tonics by 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":802011,"level":1,"description":"Increases the duration of Tonics by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11218},{"id":"coa-15-darkfeast-59-500092","classId":"witch-hunter","dbcSpellId":500092,"name":"Darkfeast","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate_nightborne.png","sigil":"DA","description":"DarkfeastRank 130 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 24+(PL*3.84-1*3.84).","target":"friendly","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":24,"dieSides":10,"pointsPerLevel":3.8399999141693115,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":1,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500092,"level":1,"description":"DarkfeastRank 130 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 24+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":24,"dieSides":10,"pointsPerLevel":3.8399999141693115,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":1,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501370,"level":17,"description":"DarkfeastRank 230 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 80+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":2.39356662829717,"basePoints":80,"dieSides":29,"pointsPerLevel":7.987199783325195,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501371,"level":33,"description":"DarkfeastRank 330 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 222+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":222,"dieSides":69,"pointsPerLevel":12.134400367736816,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501372,"level":49,"description":"DarkfeastRank 430 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 509+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":509,"dieSides":130,"pointsPerLevel":16.281600952148438,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501373,"level":65,"description":"DarkfeastRank 530 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 1041+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":1041,"dieSides":212,"pointsPerLevel":20.428800582885742,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-15-dawn-blade-60-802024","classId":"witch-hunter","dbcSpellId":802024,"name":"Dawn Blade","unlockLevel":1,"icon":"/assets/ui/spells/novart_passivemastery_(5)_border.png","sigil":"DB","description":"Dawn BladeRank 130 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 14+0+FireP*0.35+AP*0.25 as Holyfire Damage.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.2916666666666667,"basePoints":14,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802024,"level":1,"description":"Dawn BladeRank 130 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 14+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.2916666666666667,"basePoints":14,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":802248,"level":8,"description":"Dawn BladeRank 230 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 20+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.2898550724637681,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":802249,"level":18,"description":"Dawn BladeRank 330 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 32+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.3282828282828283,"basePoints":32,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":26},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":802250,"level":28,"description":"Dawn BladeRank 430 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 44+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.3449612403100775,"basePoints":44,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":802251,"level":38,"description":"Dawn BladeRank 530 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 58+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.3836477987421384,"basePoints":58,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":802252,"level":48,"description":"Dawn BladeRank 630 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 76+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.4312169312169312,"basePoints":76,"dieSides":12,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":56},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":574342,"level":58,"description":"Dawn BladeRank 730 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 98+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.4840182648401826,"basePoints":98,"dieSides":17,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":574343,"level":60,"description":"Dawn BladeRank 830 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 128+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.62,"basePoints":128,"dieSides":24,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":80},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6529","classId":"witch-hunter","dbcSpellId":681450,"name":"Death Trap","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_traplauncher.png","sigil":"DT","description":"Place a death trap on the ground lasting 1 minute that will curse the first enemy to approach it, marking them for death, causing them to take 3100 + 100% AP Shadow damage after 1 minute.","target":"self","range":{"min":0,"max":0},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":19},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":506252,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":681450,"level":1,"description":"Place a death trap on the ground lasting 1 minute that will curse the first enemy to approach it, marking them for death, causing them to take 3100 + 100% AP Shadow damage after 1 minute.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":19},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":506252,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]}],"talentEntryId":6529},{"id":"coa-15-enchanted-armor-60-705488","classId":"witch-hunter","dbcSpellId":705488,"name":"Enchanted Armor","unlockLevel":1,"icon":"/assets/ui/spells/spell_magic_magearmor.png","sigil":"EA","description":"Enchanted ArmorRank 2Witchmail increases Armor contribution from items by 60%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705488,"level":1,"description":"Enchanted ArmorRank 2Witchmail increases Armor contribution from items by 60%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4012","classId":"witch-hunter","dbcSpellId":92094,"name":"Flames of Sin","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_shadowandflame.png","sigil":"FO","description":"Level 10 Passive Using Dawn Blade now grants you Flames of Sin for 3 sec, causing your auto attacks to deal an additional 30% of the damage dealt as Fire damage. Granting yourself Flames of Sin in this way while it's already active will increase the current duration by 3 sec.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803710,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92094,"level":1,"description":"Level 10 Passive Using Dawn Blade now grants you Flames of Sin for 3 sec, causing your auto attacks to deal an additional 30% of the damage dealt as Fire damage. Granting yourself Flames of Sin in this way while it's already active will increase the current duration by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803710,"durationMs":-1}]}],"talentEntryId":4012},{"id":"coa-15-headshots-59-705466","classId":"witch-hunter","dbcSpellId":705466,"name":"Headshots","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_magtheridonshead.png","sigil":"HE","description":"HeadshotsRank 2Increases critical strike damage by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":163,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705466,"level":1,"description":"HeadshotsRank 2Increases critical strike damage by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":163,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4011","classId":"witch-hunter","dbcSpellId":92093,"name":"Houndmaster","unlockLevel":1,"icon":"/assets/ui/spells/custom_14_summon_dogs_border.png","sigil":"HO","description":"Level 10 Passive Your ranged auto attacks now generate Rage. In addition, teaches you Houndmaster's Whistle.Houndmaster's WhistleSummons a permanent Shadowhound companion to aid you in combat. Your Shadowhound receives 25% of healing done to you.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":680244,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92093,"level":1,"description":"Level 10 Passive Your ranged auto attacks now generate Rage. In addition, teaches you Houndmaster's Whistle.Houndmaster's WhistleSummons a permanent Shadowhound companion to aid you in combat. Your Shadowhound receives 25% of healing done to you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":680244,"durationMs":-1}]}],"talentEntryId":4011},{"id":"coa-15-hunter-in-the-night-58-705493","classId":"witch-hunter","dbcSpellId":705493,"name":"Hunter in the Night","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_crossbow_05.png","sigil":"HI","description":"Hunter in the NightRank 1Reduces the cost of Slash by 5%, and Flintlock Shot by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705493,"level":1,"description":"Hunter in the NightRank 1Reduces the cost of Slash by 5%, and Flintlock Shot by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-15-nefarious-accuracy-59-705454","classId":"witch-hunter","dbcSpellId":705454,"name":"Nefarious Accuracy","unlockLevel":1,"icon":"/assets/ui/spells/ability_ironmaidens_convulsiveshadows.png","sigil":"NA","description":"Nefarious AccuracyRank 2Increases critical strike chance by 0% and boosts the effect of Blasting Powder by 0%","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705454,"level":1,"description":"Nefarious AccuracyRank 2Increases critical strike chance by 0% and boosts the effect of Blasting Powder by 0%","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34592","classId":"witch-hunter","dbcSpellId":789256,"name":"Night Walker","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcanespeed_border.png","sigil":"NW","description":"Increases the base range of Vault by 3 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":789256,"level":1,"description":"Increases the base range of Vault by 3 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34592},{"id":"coa-tree-34593","classId":"witch-hunter","dbcSpellId":707230,"name":"Purified Bola","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_90_bola.png","sigil":"PB","description":"Your Bola Throw now has 2 charges, deals additional damage, and lasts 2 additional sec, but now costs 10 Rage instead of mana.Purified Bola Throw2 Charges, 15 sec recharge Throw a bola at an enemy, dealing 348 + 40% AP Holy damage and slowing movement speed by -60% for 8 seconds.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707230,"level":1,"description":"Your Bola Throw now has 2 charges, deals additional damage, and lasts 2 additional sec, but now costs 10 Rage instead of mana.Purified Bola Throw2 Charges, 15 sec recharge Throw a bola at an enemy, dealing 348 + 40% AP Holy damage and slowing movement speed by -60% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34593},{"id":"coa-15-pursuer-of-evil-60-706242","classId":"witch-hunter","dbcSpellId":706242,"name":"Pursuer of Evil","unlockLevel":1,"icon":"/assets/ui/spells/ability_cheapshot.png","sigil":"PO","description":"Pursuer of EvilRank 1Increases melee and ranged haste by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706242,"level":1,"description":"Pursuer of EvilRank 1Increases melee and ranged haste by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":706243,"level":1,"description":"Pursuer of EvilRank 2Increases melee and ranged haste by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34558","classId":"witch-hunter","dbcSpellId":705528,"name":"Regenerative Elixirs","unlockLevel":1,"icon":"/assets/ui/spells/inv_potion_55.png","sigil":"RE","description":"Drinking Tonics now also restores 30 Rage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":521232,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705528,"level":1,"description":"Drinking Tonics now also restores 30 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":521232,"durationMs":-1}]}],"talentEntryId":34558},{"id":"coa-tree-9415","classId":"witch-hunter","dbcSpellId":681092,"name":"Resilient to Darkness","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_engravedscimitarpommel.png","sigil":"RT","description":"Direct Magic damage taken now heals you and restores mana to you equal to 3% of the damage done.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":681270,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681092,"level":1,"description":"Direct Magic damage taken now heals you and restores mana to you equal to 3% of the damage done.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":681270,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9415},{"id":"coa-tree-34557","classId":"witch-hunter","dbcSpellId":804024,"name":"Slayer of Darkness","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_retribution.png","sigil":"SO","description":"Increases damage dealt by 5% when fighting Demons or Undead. Additionally, direct damage dealt with spells or abilities now has a 10% chance to deal 151 Holy damage.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":168,"miscValue":36,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804025,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804024,"level":1,"description":"Increases damage dealt by 5% when fighting Demons or Undead. Additionally, direct damage dealt with spells or abilities now has a 10% chance to deal 151 Holy damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":168,"miscValue":36,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804025,"durationMs":-1}]}],"talentEntryId":34557},{"id":"coa-tree-31006","classId":"witch-hunter","dbcSpellId":804068,"name":"Slayer's Mark","unlockLevel":1,"icon":"/assets/ui/spells/ability_blackhand_marked4death.png","sigil":"SS","description":"Mark an enemy, increasing the attack power of all attackers against that target by 150 and your critical strike chance against them by 3%, increasing by 3% every 1 sec for 8 seconds. For the duration, the enemy is unable to stealth.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":41,"miscValue":5,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804073,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804068,"level":1,"description":"Mark an enemy, increasing the attack power of all attackers against that target by 150 and your critical strike chance against them by 3%, increasing by 3% every 1 sec for 8 seconds. For the duration, the enemy is unable to stealth.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":41,"miscValue":5,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804073,"durationMs":8000}]}],"talentEntryId":31006},{"id":"coa-tree-30738","classId":"witch-hunter","dbcSpellId":805756,"name":"Smoke Grenade","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_pyriumgrenade.png","sigil":"SG","description":"Throw down a smoke grenade, enemies are unable to target into or out of the Smoke for 8 seconds. All allies in the Smoke area gain 40% increased movement speed and all enemies have their movement speed slowed by -60%.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":11},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"utility","effectType":27,"auraType":336,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":336,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805756,"level":1,"description":"Throw down a smoke grenade, enemies are unable to target into or out of the Smoke for 8 seconds. All allies in the Smoke area gain 40% increased movement speed and all enemies have their movement speed slowed by -60%.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":11},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"utility","effectType":27,"auraType":336,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":336,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}],"talentEntryId":30738},{"id":"coa-tree-29952","classId":"witch-hunter","dbcSpellId":680253,"name":"Trap Card","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_tarot_6omagecard.png","sigil":"TC","description":"Increases the duration of your Traps by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680253,"level":1,"description":"Increases the duration of your Traps by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29952},{"id":"coa-tree-34587","classId":"witch-hunter","dbcSpellId":705526,"name":"Trickster","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_smoke.png","sigil":"TR","description":"Reduces the cooldown of Smoke Grenade by -30 sec and increases its duration by 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705526,"level":1,"description":"Reduces the cooldown of Smoke Grenade by -30 sec and increases its duration by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34587},{"id":"coa-tree-30736","classId":"witch-hunter","dbcSpellId":803638,"name":"Vampire Hunter","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(60)_border.png","sigil":"VH","description":"When an enemy applies a curse to you, your Magic damage taken is reduced by -10% for 8 seconds. The damage reduction is increased by 5% and duration is increased by 2 seconds for every curse active.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":803638,"level":1,"description":"When an enemy applies a curse to you, your Magic damage taken is reduced by -10% for 8 seconds. The damage reduction is increased by 5% and duration is increased by 2 seconds for every curse active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30736},{"id":"coa-tree-29986","classId":"witch-hunter","dbcSpellId":802276,"name":"Vampiric Tonic","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_potione5.png","sigil":"VT","description":"Drink a vampiric tonic, allowing Physical damage dealt to heal you equal to 20% of the damage dealt for 10 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":802271,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802276,"level":1,"description":"Drink a vampiric tonic, allowing Physical damage dealt to heal you equal to 20% of the damage dealt for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":802271,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":29986},{"id":"coa-tree-29150","classId":"witch-hunter","dbcSpellId":500085,"name":"Vault","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_vengefulretreat2.png","sigil":"VA","description":"Dash in the direction you are moving. Distance scales with movement speed. Not usable while rooted.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":600},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":600},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":600}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500085,"level":1,"description":"Dash in the direction you are moving. Distance scales with movement speed. Not usable while rooted.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":600},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":600},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":600}]}],"talentEntryId":29150},{"id":"coa-tree-34595","classId":"witch-hunter","dbcSpellId":705534,"name":"Vengeful Intent","unlockLevel":1,"icon":"/assets/ui/spells/_diablo3_cleave_deathknight.png","sigil":"VI","description":"Whenever you take direct damage you have a 10% chance to strike back for 75% Weapon Damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520265,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705534,"level":1,"description":"Whenever you take direct damage you have a 10% chance to strike back for 75% Weapon Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520265,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34595},{"id":"coa-tree-6413","classId":"witch-hunter","dbcSpellId":802278,"name":"Witchblood Tonic","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_potione2.png","sigil":"WT","description":"Drink a shadowy tonic, removing all curse effects from you and reducing all Magic damage taken by -40% for 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":38,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802278,"level":1,"description":"Drink a shadowy tonic, removing all curse effects from you and reducing all Magic damage taken by -40% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":38,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":6413},{"id":"witch-hunter-caltrops","classId":"witch-hunter","dbcSpellId":503679,"name":"Caltrops","unlockLevel":2,"icon":"/assets/ui/spells/caltrops2.png","sigil":"CA","description":"Scatter vicious spikes that bleed and slow nearby enemies.","target":"self","range":{"min":0,"max":0},"radius":7,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"dot","coefficient":0.22,"ticks":5,"intervalMs":1500,"tag":"caltrops"},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.35}],"source":"coa-starter"},{"id":"coa-15-surging-tonic-60-802279","classId":"witch-hunter","dbcSpellId":802279,"name":"Surging Tonic","unlockLevel":6,"icon":"/assets/ui/spells/trade_alchemy_potione3.png","sigil":"ST","description":"Surging TonicRank 1Instant cast2 min cooldownDrink a bitter tonic, reducing the cost of all abilities by 20% for 15 sec. Only 1 Tonic can be active at a time.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802279,"level":6,"description":"Surging TonicRank 1Instant cast2 min cooldownDrink a bitter tonic, reducing the cost of all abilities by 20% for 15 sec. Only 1 Tonic can be active at a time.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-15-vicious-mockery-501-802013","classId":"witch-hunter","dbcSpellId":802013,"name":"Vicious Mockery","unlockLevel":10,"icon":"/assets/ui/spells/spell_misc_emotionangry.png","sigil":"VM","description":"Vicious MockeryRank 13% of base mana Instant8 sec cooldownTaunt an enemy to attack you for 3 sec. If the target is a Demon or Undead, they take 1+AP*0.35 additional Shadow damage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"utility","effectType":114,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"taunt","durationMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":501383,"durationMs":3000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802013,"level":10,"description":"Vicious MockeryRank 13% of base mana Instant8 sec cooldownTaunt an enemy to attack you for 3 sec. If the target is a Demon or Undead, they take 1+AP*0.35 additional Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"utility","effectType":114,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"taunt","durationMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":501383,"durationMs":3000}]}]},{"id":"witch-hunter-witchbane","classId":"witch-hunter","dbcSpellId":800165,"name":"Witchbane","unlockLevel":11,"icon":"/assets/ui/spells/_d3rapidfire.png","sigil":"WI","description":"WitchbaneRank 140 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(20+0+RAP*0.15) Physical damage over 3 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":704342,"durationMs":3000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800165,"level":11,"description":"WitchbaneRank 140 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(20+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":704342,"durationMs":3000}]},{"rank":2,"spellId":520211,"level":20,"description":"WitchbaneRank 240 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(29+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":704342,"durationMs":3000}]},{"rank":3,"spellId":520212,"level":28,"description":"WitchbaneRank 340 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(39+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":704342,"durationMs":3000}]},{"rank":4,"spellId":520213,"level":36,"description":"WitchbaneRank 440 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(53+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":704342,"durationMs":3000}]},{"rank":5,"spellId":578297,"level":44,"description":"WitchbaneRank 540 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(71+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":704342,"durationMs":3000}]},{"rank":6,"spellId":574319,"level":52,"description":"WitchbaneRank 640 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(95+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":704342,"durationMs":3000}]},{"rank":7,"spellId":574320,"level":60,"description":"WitchbaneRank 740 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(130+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":704342,"durationMs":3000}]}]},{"id":"coa-15-heartstop-bolt-58-800163","classId":"witch-hunter","dbcSpellId":800163,"name":"Heartstop Bolt","unlockLevel":15,"icon":"/assets/ui/spells/inv_ammo_arrow_04.png","sigil":"HB","description":"Heartstop BoltRank 14% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+41+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"damage","coefficient":0.8694444444444445,"basePoints":41,"dieSides":8,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":24},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800163,"level":15,"description":"Heartstop BoltRank 14% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+41+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"damage","coefficient":0.8694444444444445,"basePoints":41,"dieSides":8,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":24},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":2,"spellId":520206,"level":26,"description":"Heartstop BoltRank 24% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+80+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"damage","coefficient":1.1260162601626016,"basePoints":80,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":3,"spellId":520207,"level":36,"description":"Heartstop BoltRank 34% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+120+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"damage","coefficient":1.3137254901960784,"basePoints":120,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":4,"spellId":520208,"level":44,"description":"Heartstop BoltRank 44% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+160+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"damage","coefficient":1.463276836158192,"basePoints":160,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":5,"spellId":520209,"level":50,"description":"Heartstop BoltRank 54% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+210+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"damage","coefficient":1.6538461538461537,"basePoints":210,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":6,"spellId":520210,"level":58,"description":"Heartstop BoltRank 64% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+333+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"damage","coefficient":2.1164383561643834,"basePoints":333,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}]},{"id":"coa-15-damnation-58-520062","classId":"witch-hunter","dbcSpellId":520062,"name":"Damnation","unlockLevel":17,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DA","description":"DamnationRank 125 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 6+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":520062,"level":17,"description":"DamnationRank 125 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 6+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":520214,"level":24,"description":"DamnationRank 225 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 35+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":520215,"level":34,"description":"DamnationRank 325 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 73+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":520216,"level":44,"description":"DamnationRank 425 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 121+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":520217,"level":54,"description":"DamnationRank 525 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 181+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"witch-hunter-shadow-shot","classId":"witch-hunter","dbcSpellId":560048,"name":"Shadow Shot","unlockLevel":17,"icon":"/assets/ui/spells/_smallgun_purple.png","sigil":"SS","description":"Shadow ShotRank 1999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 8+0+RAP*0.15 as Shadow Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":560048,"level":17,"description":"Shadow ShotRank 1999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 8+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":561146,"level":26,"description":"Shadow ShotRank 2999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 12+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":561147,"level":34,"description":"Shadow ShotRank 3999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 16+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":561148,"level":42,"description":"Shadow ShotRank 4999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 23+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":561149,"level":50,"description":"Shadow ShotRank 5999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 33+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":561153,"level":58,"description":"Shadow ShotRank 6999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 47+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-15-tormentor-58-800162","classId":"witch-hunter","dbcSpellId":800162,"name":"Tormentor","unlockLevel":17,"icon":"/assets/ui/spells/inv_ammo_arrow_05.png","sigil":"TO","description":"TormentorRank 120 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 5+0+ShaP*.175, 5+0+HolP*.175) Twilight Damage plus (14*1000/2)*(9+0+RAP*0.125) over 14 sec.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.1781302091355125,"basePoints":9,"dieSides":1,"pointsPerLevel":0.476500004529953,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":7,"intervalMs":2000,"tag":"spell-800162"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.08,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800162,"level":17,"description":"TormentorRank 120 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 5+0+ShaP*.175, 5+0+HolP*.175) Twilight Damage plus (14*1000/2)*(9+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.1781302091355125,"basePoints":9,"dieSides":1,"pointsPerLevel":0.476500004529953,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":7,"intervalMs":2000,"tag":"spell-800162"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.08,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22}]},{"rank":2,"spellId":501344,"level":24,"description":"TormentorRank 220 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 10+0+ShaP*.175, 10+0+HolP*.175) Twilight Damage plus (14*1000/2)*(16+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.260841976883065,"basePoints":16,"dieSides":1,"pointsPerLevel":0.6049379706382751,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30,"ticks":7,"intervalMs":2000,"tag":"spell-501344"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.08547008547008547,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":3,"spellId":501345,"level":32,"description":"TormentorRank 320 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 16+0+ShaP*.175, 16+0+HolP*.175) Twilight Damage plus (14*1000/2)*(23+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.3256878277934189,"basePoints":23,"dieSides":1,"pointsPerLevel":0.7163119912147522,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"ticks":7,"intervalMs":2000,"tag":"spell-501345"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.12056737588652482,"basePoints":16,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":4,"spellId":501346,"level":40,"description":"TormentorRank 420 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 19+0+ShaP*.175, 19+0+HolP*.175) Twilight Damage plus (14*1000/2)*(30+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.40671224305123993,"basePoints":30,"dieSides":1,"pointsPerLevel":0.9276880025863647,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46,"ticks":7,"intervalMs":2000,"tag":"spell-501346"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.12424242424242424,"basePoints":19,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46}]},{"rank":5,"spellId":501347,"level":48,"description":"TormentorRank 520 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 24+0+ShaP*.175, 24+0+HolP*.175) Twilight Damage plus (14*1000/2)*(37+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.4897659140289145,"basePoints":37,"dieSides":1,"pointsPerLevel":1.1576199531555176,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54,"ticks":7,"intervalMs":2000,"tag":"spell-501347"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.13756613756613756,"basePoints":24,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":6,"spellId":501348,"level":56,"description":"TormentorRank 620 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 29+0+ShaP*.175, 29+0+HolP*.175) Twilight Damage plus (14*1000/2)*(44+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.5712037422287632,"basePoints":44,"dieSides":1,"pointsPerLevel":1.3868999481201172,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58,"ticks":7,"intervalMs":2000,"tag":"spell-501348"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.14788732394366197,"basePoints":29,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":7,"spellId":501349,"level":60,"description":"TormentorRank 720 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 36+0+ShaP*.175, 36+0+HolP*.175) Twilight Damage plus (14*1000/2)*(52+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.6572551070319281,"basePoints":52,"dieSides":1,"pointsPerLevel":1.598039984703064,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":60,"ticks":7,"intervalMs":2000,"tag":"spell-501349"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.17333333333333334,"basePoints":36,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":60}]},{"rank":8,"spellId":501350,"level":62,"description":"TormentorRank 820 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 44+0+ShaP*.175, 44+0+HolP*.175) Twilight Damage plus (14*1000/2)*(60+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.7406428448565594,"basePoints":60,"dieSides":1,"pointsPerLevel":1.7917499542236328,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":64,"ticks":7,"intervalMs":2000,"tag":"spell-501350"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.21212121212121213,"basePoints":44,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":64}]},{"rank":9,"spellId":501351,"level":66,"description":"TormentorRank 920 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 52+0+ShaP*.175, 52+0+HolP*.175) Twilight Damage plus (14*1000/2)*(68+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.7967321921768502,"basePoints":68,"dieSides":1,"pointsPerLevel":1.9031200408935547,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":68,"ticks":7,"intervalMs":2000,"tag":"spell-501351"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.23868312757201646,"basePoints":52,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":68}]},{"rank":10,"spellId":501352,"level":70,"description":"TormentorRank 1020 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 59+0+ShaP*.175, 59+0+HolP*.175) Twilight Damage plus (14*1000/2)*(110+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":1.016476453519335,"basePoints":110,"dieSides":1,"pointsPerLevel":2.1314499378204346,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":72,"ticks":7,"intervalMs":2000,"tag":"spell-501352"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.25882352941176473,"basePoints":59,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":72}]},{"rank":11,"spellId":501353,"level":74,"description":"TormentorRank 1120 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 70+0+ShaP*.175, 70+0+HolP*.175) Twilight Damage plus (14*1000/2)*(145+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":1.1928410440794983,"basePoints":145,"dieSides":1,"pointsPerLevel":2.34443998336792,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":76,"ticks":7,"intervalMs":2000,"tag":"spell-501353"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.29213483146067415,"basePoints":70,"dieSides":17,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":76}]},{"rank":12,"spellId":501354,"level":78,"description":"TormentorRank 1220 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 88+0+ShaP*.175, 88+0+HolP*.175) Twilight Damage plus (14*1000/2)*(206+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":1.4249218116951672,"basePoints":206,"dieSides":1,"pointsPerLevel":2.455810070037842,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":78,"ticks":7,"intervalMs":2000,"tag":"spell-501354"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.35304659498207885,"basePoints":88,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":78}]},{"rank":13,"spellId":501355,"level":80,"description":"TormentorRank 1320 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 97+0+ShaP*.175, 97+0+HolP*.175) Twilight Damage plus (14*1000/2)*(291+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":1.7697375648900082,"basePoints":291,"dieSides":1,"pointsPerLevel":2.6671900749206543,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":7,"intervalMs":2000,"tag":"spell-501355"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"damage","coefficient":0.38070175438596493,"basePoints":97,"dieSides":24,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80}]}]},{"id":"witch-hunter-bola-throw","classId":"witch-hunter","dbcSpellId":501337,"name":"Bola Throw","unlockLevel":20,"icon":"/assets/ui/spells/_d3bolashot.png","sigil":"BT","description":"Bola ThrowRank 23% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 44+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"damage","coefficient":0.6009523800441197,"basePoints":44,"dieSides":4,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501337,"level":20,"description":"Bola ThrowRank 23% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 44+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"damage","coefficient":0.6009523800441197,"basePoints":44,"dieSides":4,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":3,"spellId":501338,"level":28,"description":"Bola ThrowRank 33% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 66+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"damage","coefficient":0.7914728785670081,"basePoints":66,"dieSides":6,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":4,"spellId":501339,"level":36,"description":"Bola ThrowRank 43% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 97+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"damage","coefficient":1.0130718954248366,"basePoints":97,"dieSides":9,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":5,"spellId":501340,"level":44,"description":"Bola ThrowRank 53% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 128+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"damage","coefficient":1.2088135676195393,"basePoints":128,"dieSides":11,"pointsPerLevel":1.840000033378601,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":6,"spellId":501341,"level":52,"description":"Bola ThrowRank 63% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 191+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"damage","coefficient":1.5616915546246428,"basePoints":191,"dieSides":18,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":7,"spellId":501342,"level":60,"description":"Bola ThrowRank 73% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 247+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"damage","coefficient":1.8262222120496963,"basePoints":247,"dieSides":24,"pointsPerLevel":2.5399999618530273,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":8,"spellId":501343,"level":68,"description":"Bola ThrowRank 83% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 369+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":3},"effects":[{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.3},{"kind":"damage","coefficient":2.3387148906906923,"basePoints":369,"dieSides":36,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}]}],"stormbringer":[{"id":"coa-tree-34916","classId":"stormbringer","dbcSpellId":807462,"name":"Aether Mastery","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_netherstorm_01.png","sigil":"AM","description":"Allows 30% of your mana regeneration to continue while casting and increases your critical strike chance by 2%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":134,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807462,"level":1,"description":"Allows 30% of your mana regeneration to continue while casting and increases your critical strike chance by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":134,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":807887,"level":1,"description":"Allows 60% of your mana regeneration to continue while casting and increases your critical strike chance by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":134,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34916},{"id":"coa-16-aethermancy-62-705690","classId":"stormbringer","dbcSpellId":705690,"name":"Aethermancy","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_improvedreincarnation.png","sigil":"AE","description":"AethermancyRank 1Increases the critical strike chance of your Invigorating Surge by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705690,"level":1,"description":"AethermancyRank 1Increases the critical strike chance of your Invigorating Surge by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705691,"level":1,"description":"AethermancyRank 2Increases the critical strike chance of your Invigorating Surge by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":7,"triggerSpellId":0,"durationMs":80000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":80000}]}]},{"id":"coa-tree-34931","classId":"stormbringer","dbcSpellId":705690,"name":"Aethermancy","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_improvedreincarnation.png","sigil":"AE","description":"AethermancyRank 1Increases the critical strike chance of your Invigorating Surge by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705690,"level":1,"description":"AethermancyRank 1Increases the critical strike chance of your Invigorating Surge by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705691,"level":1,"description":"AethermancyRank 2Increases the critical strike chance of your Invigorating Surge by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":7,"triggerSpellId":0,"durationMs":80000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":80000}]}],"talentEntryId":34931},{"id":"coa-tree-4014","classId":"stormbringer","dbcSpellId":92097,"name":"Air Elemental","unlockLevel":1,"icon":"/assets/ui/spells/inv_progenitorelemental_black.png","sigil":"AE","description":"Level 10 Passive Teaches you Summon: Air Elemental.Summon: Air ElementalCall an Air Elemental to aid you in combat that gains a stack of Invigoration whenever it deals damage. InvigorationIncreases the damage of your Air Elemental by 3% for 15 seconds, stacking 10 times. Additional applications do not refresh duration.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92097,"level":1,"description":"Level 10 Passive Teaches you Summon: Air Elemental.Summon: Air ElementalCall an Air Elemental to aid you in combat that gains a stack of Invigoration whenever it deals damage. InvigorationIncreases the damage of your Air Elemental by 3% for 15 seconds, stacking 10 times. Additional applications do not refresh duration.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4014},{"id":"coa-tree-34694","classId":"stormbringer","dbcSpellId":705675,"name":"Airing Out","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_wrathofair_totem.png","sigil":"AO","description":"Reduces the duration of incapacitate and disorient effects by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":232,"miscValue":30,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705675,"level":1,"description":"Reduces the duration of incapacitate and disorient effects by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":232,"miscValue":30,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34694},{"id":"coa-tree-34919","classId":"stormbringer","dbcSpellId":707053,"name":"Altered Course","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(55)_border.png","sigil":"AC","description":"Casting Discharge now increases your movement speed by 20% for 6 seconds, stacking 2 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707219,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707053,"level":1,"description":"Casting Discharge now increases your movement speed by 20% for 6 seconds, stacking 2 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707219,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34919},{"id":"coa-tree-34935","classId":"stormbringer","dbcSpellId":705720,"name":"Aviana's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/inv_eagle2windmount_white.png","sigil":"AS","description":"Reduces your total threat generated by -30% and increases the range of Gust of Wind by 3 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":103,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705720,"level":1,"description":"Reduces your total threat generated by -30% and increases the range of Gust of Wind by 3 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":103,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34935},{"id":"coa-tree-29138","classId":"stormbringer","dbcSpellId":500041,"name":"Body of Lightning","unlockLevel":1,"icon":"/assets/ui/spells/_d3stormarmor.png","sigil":"BO","description":"Depletes 25 Static Infuse an ally with lightning for 12 seconds, regenerating 15% of their maximum mana plus 1% every 1 sec. While active, damage dealt deals an additional 75 + 15% nature SP Nature damage to nearby enemies","target":"friendly","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800406,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":21,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500041,"level":1,"description":"Depletes 25 Static Infuse an ally with lightning for 12 seconds, regenerating 15% of their maximum mana plus 1% every 1 sec. While active, damage dealt deals an additional 75 + 15% nature SP Nature damage to nearby enemies","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800406,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":21,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]}],"talentEntryId":29138},{"id":"coa-16-breezeway-62-705701","classId":"stormbringer","dbcSpellId":705701,"name":"Breezeway","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_lens_flare.png","sigil":"BR","description":"BreezewayRank 2Increases the damage done by Wind Blast and Air Elemental's Windpelt by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705701,"level":1,"description":"BreezewayRank 2Increases the damage done by Wind Blast and Air Elemental's Windpelt by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29814","classId":"stormbringer","dbcSpellId":804826,"name":"Charge","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_staticshock.png","sigil":"CH","description":"Charge yourself with electricity, generating 100 Static and increasing your spell haste by 30% for your next cast. Lasts 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803101,"durationMs":10000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":100,"triggerSpellId":803102,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804826,"level":1,"description":"Charge yourself with electricity, generating 100 Static and increasing your spell haste by 30% for your next cast. Lasts 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803101,"durationMs":10000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":100,"triggerSpellId":803102,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":29814},{"id":"coa-tree-31263","classId":"stormbringer","dbcSpellId":801838,"name":"Cloudburst","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_volatileair.png","sigil":"CL","description":"Create a mighty gust of wind that knocks away all nearby enemies.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":32991,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801838,"level":1,"description":"Create a mighty gust of wind that knocks away all nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":32991,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":31263},{"id":"coa-tree-12919","classId":"stormbringer","dbcSpellId":570722,"name":"Concentrated Static","unlockLevel":1,"icon":"/assets/ui/spells/nhi_spirituallightning_border.png","sigil":"CS","description":"Casting Discharge now restores 5% more mana.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":570722,"level":1,"description":"Casting Discharge now restores 5% more mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12919},{"id":"coa-tree-4015","classId":"stormbringer","dbcSpellId":92098,"name":"Conductive","unlockLevel":1,"icon":"/assets/ui/spells/ability_shawaterelemental_reform.png","sigil":"CO","description":"Level 10 Passive Shock now grants Conductive for 1 minute, stacking 6 times. Torrential Wrath consumes all stacks of Conductive to trigger Conduction. Conduction (Damage)Deals cond(gt(SPFR, SPN), 202*1+SPFR*0.585, 202*1+SPN*0.35) Frost Damage, increased by 25% for each stack of Conductive consumed.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":567560,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92098,"level":1,"description":"Level 10 Passive Shock now grants Conductive for 1 minute, stacking 6 times. Torrential Wrath consumes all stacks of Conductive to trigger Conduction. Conduction (Damage)Deals cond(gt(SPFR, SPN), 202*1+SPFR*0.585, 202*1+SPN*0.35) Frost Damage, increased by 25% for each stack of Conductive consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":567560,"durationMs":-1}]}],"talentEntryId":4015},{"id":"coa-16-conductivity-61-705647","classId":"stormbringer","dbcSpellId":705647,"name":"Conductivity","unlockLevel":1,"icon":"/assets/ui/spells/inv_leather_raidmonkmythic_r_01_bracer.png","sigil":"CO","description":"ConductivityRank 2InstantIncreases the chance that Nature Damage effects trigger Lightning Rod by 8%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705647,"level":1,"description":"ConductivityRank 2InstantIncreases the chance that Nature Damage effects trigger Lightning Rod by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30878","classId":"stormbringer","dbcSpellId":300595,"name":"Conjuration Mastery","unlockLevel":1,"icon":"/assets/ui/spells/custom_shamanskill_30_border.png","sigil":"CM","description":"Your Conjure Storm now refunds 10 Static.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804084,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300595,"level":1,"description":"Your Conjure Storm now refunds 10 Static.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804084,"durationMs":-1}]}],"talentEntryId":30878},{"id":"coa-tree-4013","classId":"stormbringer","dbcSpellId":92096,"name":"Electrocutioner","unlockLevel":1,"icon":"/assets/ui/spells/nhi_frozenlightning_border.png","sigil":"EL","description":"Level 10 Passive Dealing spell damage now has a 5% chance to grant you Electrocutioner.Electrocutioner (Proc)Resets the cooldown of Electrocute and makes your next usable regardless of the target's health percentage. Chance increases based on Static level.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804592,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92096,"level":1,"description":"Level 10 Passive Dealing spell damage now has a 5% chance to grant you Electrocutioner.Electrocutioner (Proc)Resets the cooldown of Electrocute and makes your next usable regardless of the target's health percentage. Chance increases based on Static level.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804592,"durationMs":-1}]}],"talentEntryId":4013},{"id":"coa-tree-34922","classId":"stormbringer","dbcSpellId":705672,"name":"Exhale","unlockLevel":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0000s_0000_elemental_border.png","sigil":"EX","description":"Depletes 20 Static Release the pressure from nearby allies, dispelling 1 movement slowing effect, repeating every 3 sec for 9 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":520496,"durationMs":9000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":-20,"triggerSpellId":803102,"durationMs":9000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":705672,"level":1,"description":"Depletes 20 Static Release the pressure from nearby allies, dispelling 1 movement slowing effect, repeating every 3 sec for 9 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":520496,"durationMs":9000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":-20,"triggerSpellId":803102,"durationMs":9000}]}],"talentEntryId":34922},{"id":"coa-tree-29139","classId":"stormbringer","dbcSpellId":806307,"name":"Eye of the Storm","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_unrelentingstorm.png","sigil":"EO","description":"Mark an enemy for 4 seconds. Every 1 sec, enemies near them take cond(gt(SPFR, SPN), 11+0+SPFR*0.42, 11+0+SPN*0.42) Nature damage. At the end of the duration, enemies near them also take cond(gt(SPFR, SPN), 42+0+SPFR*0.64, 42+0+SPN*0.64) Nature damage and are rooted for 4 seconds.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"channel","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":806455,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":806308,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806307,"level":1,"description":"Mark an enemy for 4 seconds. Every 1 sec, enemies near them take cond(gt(SPFR, SPN), 11+0+SPFR*0.42, 11+0+SPN*0.42) Nature damage. At the end of the duration, enemies near them also take cond(gt(SPFR, SPN), 42+0+SPFR*0.64, 42+0+SPN*0.64) Nature damage and are rooted for 4 seconds.","castMode":"channel","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":806455,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":806308,"durationMs":4000}]}],"talentEntryId":29139},{"id":"coa-tree-34915","classId":"stormbringer","dbcSpellId":806100,"name":"Fog","unlockLevel":1,"icon":"/assets/ui/spells/5_shamanskill41nobg_border.png","sigil":"FO","description":"Concentrate elemental magic to create an 8 yd wide cloudy barrier at your feet for 8 seconds. Enemies are unable to target into or out of the Fog.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":65,"auraType":336,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":300831,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":336,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806100,"level":1,"description":"Concentrate elemental magic to create an 8 yd wide cloudy barrier at your feet for 8 seconds. Enemies are unable to target into or out of the Fog.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":65,"auraType":336,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":300831,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":336,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}],"talentEntryId":34915},{"id":"coa-16-fusion-61-705640","classId":"stormbringer","dbcSpellId":705640,"name":"Fusion","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_abolishmagic.png","sigil":"FU","description":"FusionRank 2Increases the damage of Arm of Thorim by 4% for each stack of Flux on the target.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705640,"level":1,"description":"FusionRank 2Increases the damage of Arm of Thorim by 4% for each stack of Flux on the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34638","classId":"stormbringer","dbcSpellId":567542,"name":"Heavy Winds","unlockLevel":1,"icon":"/assets/ui/spells/inv_elemental_mote_air01.png","sigil":"HW","description":"Increases the pushback reduction provided by Stabilizing Pressure by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":567542,"level":1,"description":"Increases the pushback reduction provided by Stabilizing Pressure by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34638},{"id":"coa-tree-34938","classId":"stormbringer","dbcSpellId":705693,"name":"Improved Body of Lightning","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_ancestralawakening.png","sigil":"IB","description":"Reduces the cooldown of your Body of Lightning by -30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":21,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705693,"level":1,"description":"Reduces the cooldown of your Body of Lightning by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":21,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34938},{"id":"coa-16-improved-flux-61-705641","classId":"stormbringer","dbcSpellId":705641,"name":"Improved Flux","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_arcane04.png","sigil":"IF","description":"Improved FluxRank 1Increases the effectiveness of Flux by 15% and allows it to stack 1 additional times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705641,"level":1,"description":"Improved FluxRank 1Increases the effectiveness of Flux by 15% and allows it to stack 1 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705642,"level":1,"description":"Improved FluxRank 2Increases the effectiveness of Flux by 30% and allows it to stack 2 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-16-improved-lightning-rod-61-705656","classId":"stormbringer","dbcSpellId":705656,"name":"Improved Lightning Rod","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_ghostironrod.png","sigil":"IL","description":"Improved Lightning RodRank 2Allows Lightning Rod to stack 2 additional times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705656,"level":1,"description":"Improved Lightning RodRank 2Allows Lightning Rod to stack 2 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-16-improved-vortex-63-705648","classId":"stormbringer","dbcSpellId":705648,"name":"Improved Vortex","unlockLevel":1,"icon":"/assets/ui/spells/_monkability_tornado_xuenwhite.png","sigil":"IV","description":"Improved VortexRank 1Reduces the cooldown of Vortex by 15 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705648,"level":1,"description":"Improved VortexRank 1Reduces the cooldown of Vortex by 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705649,"level":1,"description":"Improved VortexRank 2Reduces the cooldown of Vortex by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":1000}]}]},{"id":"coa-tree-29830","classId":"stormbringer","dbcSpellId":705661,"name":"Invigorating Winds","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicstrike_border.png","sigil":"IW","description":"Envelop an ally in invigorating winds, granting them immunity to silence and interrupt effects and causes them to take no pushback from damaging attacks for 20 seconds.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":705661,"level":1,"description":"Envelop an ally in invigorating winds, granting them immunity to silence and interrupt effects and causes them to take no pushback from damaging attacks for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":29830},{"id":"coa-tree-11926","classId":"stormbringer","dbcSpellId":707652,"name":"Ionic Aura","unlockLevel":1,"icon":"/assets/ui/spells/nhi_lightning_universe_border.png","sigil":"IA","description":"Increases the maximum mana, Rage, Energy, Focus, and Runic Power of allies within 40 yds by 3%.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":65,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":65,"auraType":132,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707652,"level":1,"description":"Increases the maximum mana, Rage, Energy, Focus, and Runic Power of allies within 40 yds by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":65,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":65,"auraType":132,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11926},{"id":"coa-16-lingering-lightning-63-705651","classId":"stormbringer","dbcSpellId":705651,"name":"Lingering Lightning","unlockLevel":1,"icon":"/assets/ui/spells/shaman_pvp_staticcling.png","sigil":"LL","description":"Lingering LightningRank 1Increases the durations of Thunder Orbs, Conjure Storm and Body of Lightning by 3 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705651,"level":1,"description":"Lingering LightningRank 1Increases the durations of Thunder Orbs, Conjure Storm and Body of Lightning by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"stormbringer-megawatt-missile","classId":"stormbringer","dbcSpellId":500045,"name":"Megawatt Missile","unlockLevel":1,"icon":"/assets/ui/spells/nhi_lightning_bolt_border.png","sigil":"MM","description":"Megawatt MissileRank 119% of base mana 3 sec cast10 sec cooldownInflicts 38 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1,"basePoints":38,"dieSides":9,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":1,"sourceLevel":1,"maxScalingLevel":8},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500045,"level":1,"description":"Megawatt MissileRank 119% of base mana 3 sec cast10 sec cooldownInflicts 38 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1,"basePoints":38,"dieSides":9,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":1,"sourceLevel":1,"maxScalingLevel":8},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501476,"level":9,"description":"Megawatt MissileRank 219% of base mana 3 sec cast10 sec cooldownInflicts 66 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1.3748368057939742,"basePoints":66,"dieSides":12,"pointsPerLevel":3.0542500019073486,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501477,"level":17,"description":"Megawatt MissileRank 319% of base mana 3 sec cast10 sec cooldownInflicts 124 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":2.097544233004252,"basePoints":124,"dieSides":17,"pointsPerLevel":4.080249786376953,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501478,"level":25,"description":"Megawatt MissileRank 419% of base mana 3 sec cast10 sec cooldownInflicts 193 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":2.7638020435969035,"basePoints":193,"dieSides":23,"pointsPerLevel":5.106249809265137,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501479,"level":33,"description":"Megawatt MissileRank 519% of base mana 3 sec cast10 sec cooldownInflicts 268 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":3.3705850309795804,"basePoints":268,"dieSides":31,"pointsPerLevel":6.13224983215332,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":40},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501480,"level":41,"description":"Megawatt MissileRank 619% of base mana 3 sec cast10 sec cooldownInflicts 369 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":369,"dieSides":41,"pointsPerLevel":7.158249855041504,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501481,"level":49,"description":"Megawatt MissileRank 719% of base mana 3 sec cast10 sec cooldownInflicts 503 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":503,"dieSides":53,"pointsPerLevel":8.184249877929688,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501482,"level":57,"description":"Megawatt MissileRank 819% of base mana 3 sec cast10 sec cooldownInflicts 742 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":742,"dieSides":66,"pointsPerLevel":9.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":64},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501483,"level":65,"description":"Megawatt MissileRank 919% of base mana 3 sec cast10 sec cooldownInflicts 1035 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":1035,"dieSides":81,"pointsPerLevel":13.67140007019043,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":72},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501484,"level":73,"description":"Megawatt MissileRank 1019% of base mana 3 sec cast10 sec cooldownInflicts 1373 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":1373,"dieSides":98,"pointsPerLevel":18.142900466918945,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-16-power-of-air-62-705696","classId":"stormbringer","dbcSpellId":705696,"name":"Power of Air","unlockLevel":1,"icon":"/assets/ui/spells/sha_inv_elemental_primal_shadow.png","sigil":"PO","description":"Power of AirRank 1Increases the damage your Air Elemental deals by 20%.","target":"hostile","range":{"min":0,"max":50000},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705696,"level":1,"description":"Power of AirRank 1Increases the damage your Air Elemental deals by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705697,"level":1,"description":"Power of AirRank 2Instant castIncreases the damage your Air Elemental deals by 12%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":3,"spellId":705698,"level":1,"description":"Power of AirRank 3Instant castIncreases the damage your Air Elemental deals by 18%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30406","classId":"stormbringer","dbcSpellId":800699,"name":"Power Surge","unlockLevel":1,"icon":"/assets/ui/spells/nhi_manaballs_border.png","sigil":"PS","description":"Your Storm Ascendance now increases Nature damage dealt by an additional 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800699,"level":1,"description":"Your Storm Ascendance now increases Nature damage dealt by an additional 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30406},{"id":"coa-tree-30868","classId":"stormbringer","dbcSpellId":807233,"name":"Predictable Weather","unlockLevel":1,"icon":"/assets/ui/spells/nhi_magicvortex_border.png","sigil":"PW","description":"Every 30 sec, your next Storm Alert or Torrential Wrath is instant cast.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807481,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807233,"level":1,"description":"Every 30 sec, your next Storm Alert or Torrential Wrath is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807481,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30868},{"id":"coa-16-spellstorm-mastery-61-705659","classId":"stormbringer","dbcSpellId":705659,"name":"Spellstorm Mastery","unlockLevel":1,"icon":"/assets/ui/spells/inv_hand_1h_artifactstormfist_d_01dual.png","sigil":"SM","description":"Spellstorm MasteryRank 1Increases the effectiveness of your Aegis spells by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705659,"level":1,"description":"Spellstorm MasteryRank 1Increases the effectiveness of your Aegis spells by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705660,"level":1,"description":"Spellstorm MasteryRank 2Increases the effectiveness of your Aegis spells by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34956","classId":"stormbringer","dbcSpellId":705659,"name":"Spellstorm Mastery","unlockLevel":1,"icon":"/assets/ui/spells/inv_hand_1h_artifactstormfist_d_01dual.png","sigil":"SM","description":"Spellstorm MasteryRank 1Increases the effectiveness of your Aegis spells by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705659,"level":1,"description":"Spellstorm MasteryRank 1Increases the effectiveness of your Aegis spells by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705660,"level":1,"description":"Spellstorm MasteryRank 2Increases the effectiveness of your Aegis spells by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34956},{"id":"coa-tree-12317","classId":"stormbringer","dbcSpellId":804040,"name":"Storm Channeling","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_elementaloath.png","sigil":"SC","description":"While Stormcloak is active your Armor is now increased by 500% of your Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804040,"level":1,"description":"While Stormcloak is active your Armor is now increased by 500% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12317},{"id":"coa-tree-29410","classId":"stormbringer","dbcSpellId":705677,"name":"Storm Rider","unlockLevel":1,"icon":"/assets/ui/spells/rogue_burstofspeed.png","sigil":"SR","description":"Reduces the cooldown of Gale Guard and Cloudburst by -5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705677,"level":1,"description":"Reduces the cooldown of Gale Guard and Cloudburst by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29410},{"id":"coa-tree-34926","classId":"stormbringer","dbcSpellId":705689,"name":"Storm Sorcery","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcaneburst_border.png","sigil":"SS","description":"Increases the effectiveness of Call of the Winds and Call of the Storm by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705689,"level":1,"description":"Increases the effectiveness of Call of the Winds and Call of the Storm by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34926},{"id":"coa-tree-34650","classId":"stormbringer","dbcSpellId":567533,"name":"Storm Warning","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_02.png","sigil":"SW","description":"Reduces the cast time of Storm Alert by -0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":567533,"level":1,"description":"Reduces the cast time of Storm Alert by -0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34650},{"id":"coa-tree-29341","classId":"stormbringer","dbcSpellId":804833,"name":"Stormcloak","unlockLevel":1,"icon":"/assets/ui/spells/_castercloak_arcanes.png","sigil":"ST","description":"Cover yourself in a barrier of volatile energy for 15 seconds, causing all attacks against you to have a 50% chance to deal half damage and generate 10 Static. Stormcloak has a 60% chance to resist dispel effects.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":1},{"kind":"shield","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804084,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804833,"level":1,"description":"Cover yourself in a barrier of volatile energy for 15 seconds, causing all attacks against you to have a 50% chance to deal half damage and generate 10 Static. Stormcloak has a 60% chance to resist dispel effects.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":1},{"kind":"shield","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804084,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":29341},{"id":"coa-16-studious-63-705658","classId":"stormbringer","dbcSpellId":705658,"name":"Studious","unlockLevel":1,"icon":"/assets/ui/spells/_ldaknowledge.png","sigil":"ST","description":"StudiousRank 2Increases maximum mana by 6% and Intellect by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705658,"level":1,"description":"StudiousRank 2Increases maximum mana by 6% and Intellect by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6556","classId":"stormbringer","dbcSpellId":705657,"name":"Studious","unlockLevel":1,"icon":"/assets/ui/spells/_ldaknowledge.png","sigil":"ST","description":"Reduces the cast time of Shock by -15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705657,"level":1,"description":"Reduces the cast time of Shock by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6556},{"id":"coa-tree-34920","classId":"stormbringer","dbcSpellId":300596,"name":"Surge Overload","unlockLevel":1,"icon":"/assets/ui/spells/nhi_lightning_punch_border.png","sigil":"SO","description":"Your Body of Lightning now regenerates 1% additional maximum mana per tick.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300596,"level":1,"description":"Your Body of Lightning now regenerates 1% additional maximum mana per tick.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34920},{"id":"coa-tree-34917","classId":"stormbringer","dbcSpellId":301219,"name":"Thunder Grip","unlockLevel":1,"icon":"/assets/ui/spells/ability_thunderking_balllightning.png","sigil":"TG","description":"Direct damage dealt now has a 30% chance to apply Thunder Grip to enemies.Thunder GripPrevents enemies from mounting, fleeing, and increasing their movement speed above normal movement speed for 8 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":301220,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301219,"level":1,"description":"Direct damage dealt now has a 30% chance to apply Thunder Grip to enemies.Thunder GripPrevents enemies from mounting, fleeing, and increasing their movement speed above normal movement speed for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":301220,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34917},{"id":"coa-tree-30906","classId":"stormbringer","dbcSpellId":804591,"name":"Thunder King","unlockLevel":1,"icon":"/assets/ui/spells/nhi_hammerofthunder_border.png","sigil":"TK","description":"For 20 seconds, your Call Lightning strikes 3 additional nearby enemies, your movement speed is increased by 25%, and you generate 5 Static every 1 sec. While active, damaging critical strikes deal bonus Spellstorm Damage scaling with your spell power, and grant Raging Storm.Raging StormIncreases spell haste by 3%, stacking 10 times.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800020,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804044,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804591,"level":1,"description":"For 20 seconds, your Call Lightning strikes 3 additional nearby enemies, your movement speed is increased by 25%, and you generate 5 Static every 1 sec. While active, damaging critical strikes deal bonus Spellstorm Damage scaling with your spell power, and grant Raging Storm.Raging StormIncreases spell haste by 3%, stacking 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800020,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804044,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":30906},{"id":"coa-16-unbound-elementalist-62-705703","classId":"stormbringer","dbcSpellId":705703,"name":"Unbound Elementalist","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_murmur.png","sigil":"UE","description":"Unbound ElementalistRank 2Instant castIncreases the effectiveness of your Unshackle by 50%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705703,"level":1,"description":"Unbound ElementalistRank 2Instant castIncreases the effectiveness of your Unshackle by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34690","classId":"stormbringer","dbcSpellId":806412,"name":"Waterfall","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_2h_artifactaegwynsstaff_d_03.png","sigil":"WA","description":"Dealing critical damage now reduces all of your cooldowns by -0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807661,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806412,"level":1,"description":"Dealing critical damage now reduces all of your cooldowns by -0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807661,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34690},{"id":"coa-tree-34924","classId":"stormbringer","dbcSpellId":503596,"name":"Wind Shift","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_windfury.png","sigil":"WS","description":"Increases your spell haste by 2% and reduces spell pushback suffered from damaging attacks by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503596,"level":1,"description":"Increases your spell haste by 2% and reduces spell pushback suffered from damaging attacks by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":504879,"level":1,"description":"Increases your spell haste by 4% and reduces spell pushback suffered from damaging attacks by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34924},{"id":"stormbringer-electrocute","classId":"stormbringer","dbcSpellId":801844,"name":"Electrocute","unlockLevel":4,"icon":"/assets/ui/spells/inv_misc_stormlordsfavor.png","sigil":"EL","description":"ElectrocuteRank 125% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 25+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":0.687079295777438,"basePoints":25,"dieSides":4,"pointsPerLevel":3.165879964828491,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":8},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801844,"level":4,"description":"ElectrocuteRank 125% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 25+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":0.687079295777438,"basePoints":25,"dieSides":4,"pointsPerLevel":3.165879964828491,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":8},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":2,"spellId":501421,"level":10,"description":"ElectrocuteRank 225% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 67+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":1.0433783976236979,"basePoints":67,"dieSides":9,"pointsPerLevel":0.7253379821777344,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":3,"spellId":501422,"level":18,"description":"ElectrocuteRank 325% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 113+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":1.4620420186206549,"basePoints":113,"dieSides":13,"pointsPerLevel":1.4301199913024902,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":4,"spellId":501423,"level":26,"description":"ElectrocuteRank 425% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 189+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":2.1078144941872696,"basePoints":189,"dieSides":18,"pointsPerLevel":2.375430107116699,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":5,"spellId":501424,"level":34,"description":"ElectrocuteRank 525% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 272+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":2.7415332210307217,"basePoints":272,"dieSides":23,"pointsPerLevel":3.5295701026916504,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":6,"spellId":501425,"level":42,"description":"ElectrocuteRank 625% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 360+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":3.4205137386656643,"basePoints":360,"dieSides":28,"pointsPerLevel":5.033520221710205,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":7,"spellId":501426,"level":50,"description":"ElectrocuteRank 725% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 451+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":4,"basePoints":451,"dieSides":34,"pointsPerLevel":10.035499572753906,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":8,"spellId":501427,"level":56,"description":"ElectrocuteRank 825% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 545+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":4,"basePoints":545,"dieSides":39,"pointsPerLevel":24.45199966430664,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":9,"spellId":501428,"level":60,"description":"ElectrocuteRank 925% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 612+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":3.823020443386502,"basePoints":612,"dieSides":45,"pointsPerLevel":3.769659996032715,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":10,"spellId":501429,"level":68,"description":"ElectrocuteRank 1025% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 754+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":4,"basePoints":754,"dieSides":50,"pointsPerLevel":7.7233099937438965,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":72},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":11,"spellId":501430,"level":74,"description":"ElectrocuteRank 1125% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 873+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":4,"basePoints":873,"dieSides":62,"pointsPerLevel":19.6117000579834,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":76},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":12,"spellId":501431,"level":78,"description":"ElectrocuteRank 1225% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 1001+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":3.7025089605734767,"basePoints":1001,"dieSides":65,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":78},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]},{"rank":13,"spellId":501432,"level":80,"description":"ElectrocuteRank 1325% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 1049+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":3.9333268801371255,"basePoints":1049,"dieSides":68,"pointsPerLevel":0.48122701048851013,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":804084,"durationMs":0}]}]},{"id":"stormbringer-stormforged-strike","classId":"stormbringer","dbcSpellId":500193,"name":"Stormforged Strike","unlockLevel":4,"icon":"/assets/ui/spells/trade_archaeology_staffofsorcerer_than_thaurissan.png","sigil":"SS","description":"Drive a storm-charged weapon into your foe.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.55}],"source":"coa-starter"},{"id":"coa-16-conjure-storm-61-800227","classId":"stormbringer","dbcSpellId":800227,"name":"Conjure Storm","unlockLevel":8,"icon":"/assets/ui/spells/warrior_talent_icon_thunderstruck.png","sigil":"CS","description":"Conjure StormRank 1Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 15+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(10+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.34299999475479126,"basePoints":15,"dieSides":8,"pointsPerLevel":0.2005710005760193,"bonusPowerCoefficient":0.34299999475479126,"sourceLevel":8,"maxScalingLevel":16},{"kind":"dot","coefficient":0.12200000137090683,"basePoints":10,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0.12200000137090683,"sourceLevel":8,"maxScalingLevel":16,"ticks":6,"intervalMs":2000,"tag":"spell-800227"},{"kind":"utility","effectType":27,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800227,"level":8,"description":"Conjure StormRank 1Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 15+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(10+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.34299999475479126,"basePoints":15,"dieSides":8,"pointsPerLevel":0.2005710005760193,"bonusPowerCoefficient":0.34299999475479126,"sourceLevel":8,"maxScalingLevel":16},{"kind":"dot","coefficient":0.12200000137090683,"basePoints":10,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0.12200000137090683,"sourceLevel":8,"maxScalingLevel":16,"ticks":6,"intervalMs":2000,"tag":"spell-800227"},{"kind":"utility","effectType":27,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":12000}]},{"rank":2,"spellId":501415,"level":18,"description":"Conjure StormRank 2Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 55+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(17+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7547642462181322,"basePoints":55,"dieSides":11,"pointsPerLevel":0.817870020866394,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"dot","coefficient":0.18181818181818182,"basePoints":17,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24,"ticks":6,"intervalMs":2000,"tag":"spell-501415"},{"kind":"utility","effectType":27,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":12000}]},{"rank":3,"spellId":501416,"level":26,"description":"Conjure StormRank 3Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 95+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(31+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.118901795488063,"basePoints":95,"dieSides":14,"pointsPerLevel":1.3894200325012207,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"dot","coefficient":0.26422764227642276,"basePoints":31,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32,"ticks":6,"intervalMs":2000,"tag":"spell-501416"},{"kind":"utility","effectType":27,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":12000}]},{"rank":4,"spellId":501417,"level":34,"description":"Conjure StormRank 4Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 152+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(46+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.6014323915754045,"basePoints":152,"dieSides":20,"pointsPerLevel":2.173840045928955,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"dot","coefficient":0.32653061224489793,"basePoints":46,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":6,"intervalMs":2000,"tag":"spell-501417"},{"kind":"utility","effectType":27,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":12000}]},{"rank":5,"spellId":501418,"level":42,"description":"Conjure StormRank 5Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 219+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(63+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.1229659632632605,"basePoints":219,"dieSides":28,"pointsPerLevel":3.107789993286133,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"dot","coefficient":0.3830409356725146,"basePoints":63,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48,"ticks":6,"intervalMs":2000,"tag":"spell-501418"},{"kind":"utility","effectType":27,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":12000}]},{"rank":6,"spellId":501419,"level":50,"description":"Conjure StormRank 6Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 294+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(83+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.6778538386027018,"basePoints":294,"dieSides":37,"pointsPerLevel":4.203629970550537,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56},{"kind":"dot","coefficient":0.441025641025641,"basePoints":83,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56,"ticks":6,"intervalMs":2000,"tag":"spell-501419"},{"kind":"utility","effectType":27,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":12000}]},{"rank":7,"spellId":501420,"level":58,"description":"Conjure StormRank 7Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 387+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(104+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.7004129418499394,"basePoints":387,"dieSides":49,"pointsPerLevel":3.110179901123047,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66},{"kind":"dot","coefficient":0.4885844748858447,"basePoints":104,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66,"ticks":6,"intervalMs":2000,"tag":"spell-501420"},{"kind":"utility","effectType":27,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":12000}]}]},{"id":"coa-16-storm-alert-62-707044","classId":"stormbringer","dbcSpellId":707044,"name":"Storm Alert","unlockLevel":8,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SA","description":"Storm AlertRank 123% of base mana 2 sec castDisturb an enemy with a vision of the coming storm, fearing them for 10 sec. Can only affect 1 enemy at a time. Damage caused may interrupt the effect.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"status","status":"fear","durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":707044,"level":8,"description":"Storm AlertRank 123% of base mana 2 sec castDisturb an enemy with a vision of the coming storm, fearing them for 10 sec. Can only affect 1 enemy at a time. Damage caused may interrupt the effect.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"status","status":"fear","durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-16-torrential-wrath-63-804017","classId":"stormbringer","dbcSpellId":804017,"name":"Torrential Wrath","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TW","description":"Torrential WrathRank 12.5 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 111+0+FroP*1, 111+0+NatP*1.5) Frost damage, scaling with your haste rating.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.811999994913737,"basePoints":111,"dieSides":10,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":15},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804017,"level":10,"description":"Torrential WrathRank 12.5 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 111+0+FroP*1, 111+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.811999994913737,"basePoints":111,"dieSides":10,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":15},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3}]},{"rank":2,"spellId":503352,"level":16,"description":"Torrential WrathRank 22.5 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 192+0+FroP*1, 192+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.7376343921948503,"basePoints":192,"dieSides":15,"pointsPerLevel":3.4749999046325684,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]},{"rank":3,"spellId":503353,"level":22,"description":"Torrential WrathRank 33 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 301+0+FroP*1, 301+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.735001263317761,"basePoints":301,"dieSides":30,"pointsPerLevel":4.503870010375977,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]},{"rank":4,"spellId":503354,"level":28,"description":"Torrential WrathRank 43 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 419+0+FroP*1, 419+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":419,"dieSides":43,"pointsPerLevel":7.574999809265137,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]},{"rank":5,"spellId":503355,"level":34,"description":"Torrential WrathRank 53 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 531+0+FroP*1, 531+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":531,"dieSides":57,"pointsPerLevel":9.139049530029297,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]},{"rank":6,"spellId":503356,"level":40,"description":"Torrential WrathRank 63 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 646+0+FroP*1, 646+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":646,"dieSides":72,"pointsPerLevel":11.810700416564941,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]},{"rank":7,"spellId":503357,"level":46,"description":"Torrential WrathRank 73 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 767+0+FroP*1, 767+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":767,"dieSides":88,"pointsPerLevel":14.957099914550781,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]},{"rank":8,"spellId":503358,"level":52,"description":"Torrential WrathRank 83 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 900+0+FroP*1, 900+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":900,"dieSides":104,"pointsPerLevel":18.065799713134766,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]},{"rank":9,"spellId":503359,"level":58,"description":"Torrential WrathRank 93 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 990+0+FroP*1, 990+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":990,"dieSides":120,"pointsPerLevel":21.892099380493164,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]},{"rank":10,"spellId":503360,"level":64,"description":"Torrential WrathRank 103 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 1119+0+FroP*1, 1119+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1119,"dieSides":131,"pointsPerLevel":13.37969970703125,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":567560,"durationMs":0}]}]},{"id":"coa-16-arm-of-thorim-61-801847","classId":"stormbringer","dbcSpellId":801847,"name":"Arm of Thorim","unlockLevel":11,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0002s_0000_lightning_border.png","sigil":"AO","description":"Arm of ThorimRank 11 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 135+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5709999799728394,"basePoints":135,"dieSides":13,"pointsPerLevel":1.9333300590515137,"bonusPowerCoefficient":0.5709999799728394,"sourceLevel":11,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801847,"level":11,"description":"Arm of ThorimRank 11 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 135+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5709999799728394,"basePoints":135,"dieSides":13,"pointsPerLevel":1.9333300590515137,"bonusPowerCoefficient":0.5709999799728394,"sourceLevel":11,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]},{"rank":2,"spellId":501433,"level":16,"description":"Arm of ThorimRank 21 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 161+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.1483870885705434,"basePoints":161,"dieSides":17,"pointsPerLevel":1.9249999523162842,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]},{"rank":3,"spellId":501434,"level":22,"description":"Arm of ThorimRank 31 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 255+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.995731903626038,"basePoints":255,"dieSides":23,"pointsPerLevel":3.0239200592041016,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]},{"rank":4,"spellId":501435,"level":28,"description":"Arm of ThorimRank 41 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 359+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.7472347510877504,"basePoints":359,"dieSides":30,"pointsPerLevel":3.924760103225708,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]},{"rank":5,"spellId":501436,"level":34,"description":"Arm of ThorimRank 51 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 463+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":463,"dieSides":42,"pointsPerLevel":4.483429908752441,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]},{"rank":6,"spellId":501437,"level":40,"description":"Arm of ThorimRank 61 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 579+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":579,"dieSides":57,"pointsPerLevel":6.245880126953125,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]},{"rank":7,"spellId":567518,"level":46,"description":"Arm of ThorimRank 71 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 725+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":725,"dieSides":59,"pointsPerLevel":8.323200225830078,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]},{"rank":8,"spellId":567519,"level":52,"description":"Arm of ThorimRank 81 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 876+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":876,"dieSides":70,"pointsPerLevel":10.43690013885498,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]},{"rank":9,"spellId":567520,"level":58,"description":"Arm of ThorimRank 91 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 1033+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1033,"dieSides":99,"pointsPerLevel":9.23820972442627,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":570339,"durationMs":3000}]}]},{"id":"coa-16-updraft-62-802354","classId":"stormbringer","dbcSpellId":802354,"name":"Updraft","unlockLevel":11,"icon":"/assets/ui/spells/spell_frost_windwalkon.png","sigil":"UP","description":"UpdraftRank 1Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/2)*(16+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":16,"dieSides":1,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":11,"maxScalingLevel":16,"ticks":10,"intervalMs":2000,"tag":"spell-802354"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704202,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802354,"level":11,"description":"UpdraftRank 1Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/2)*(16+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":16,"dieSides":1,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":11,"maxScalingLevel":16,"ticks":10,"intervalMs":2000,"tag":"spell-802354"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704202,"durationMs":20000}]},{"rank":2,"spellId":570161,"level":18,"description":"UpdraftRank 2Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(24+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":24,"dieSides":1,"pointsPerLevel":0.11302299797534943,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":18,"maxScalingLevel":24,"ticks":7,"intervalMs":3000,"tag":"spell-570161"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704202,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704218,"durationMs":20000}]},{"rank":3,"spellId":570162,"level":26,"description":"UpdraftRank 3Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(36+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":36,"dieSides":1,"pointsPerLevel":0.12219999730587006,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":26,"maxScalingLevel":32,"ticks":7,"intervalMs":3000,"tag":"spell-570162"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704202,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704218,"durationMs":20000}]},{"rank":4,"spellId":570163,"level":34,"description":"UpdraftRank 4Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(55+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":55,"dieSides":1,"pointsPerLevel":0.18199999630451202,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":34,"maxScalingLevel":40,"ticks":7,"intervalMs":3000,"tag":"spell-570163"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704202,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704218,"durationMs":20000}]},{"rank":5,"spellId":570164,"level":42,"description":"UpdraftRank 5Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(75+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":75,"dieSides":1,"pointsPerLevel":0.27923598885536194,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":42,"maxScalingLevel":48,"ticks":7,"intervalMs":3000,"tag":"spell-570164"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704202,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704218,"durationMs":20000}]},{"rank":6,"spellId":570165,"level":50,"description":"UpdraftRank 6Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(95+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":95,"dieSides":1,"pointsPerLevel":0.3481059968471527,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":50,"maxScalingLevel":56,"ticks":7,"intervalMs":3000,"tag":"spell-570165"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704202,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704218,"durationMs":20000}]},{"rank":7,"spellId":570166,"level":58,"description":"UpdraftRank 7Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(115+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":115,"dieSides":1,"pointsPerLevel":0.348922997713089,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":58,"maxScalingLevel":80,"ticks":7,"intervalMs":3000,"tag":"spell-570166"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704202,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":704218,"durationMs":20000}]}]},{"id":"stormbringer-aeroblast","classId":"stormbringer","dbcSpellId":801839,"name":"Aeroblast","unlockLevel":13,"icon":"/assets/ui/spells/ability_skyreach_flash_bang.png","sigil":"AE","description":"AeroblastRank 12 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 109+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":109,"dieSides":9,"pointsPerLevel":2.0347800254821777,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":13,"maxScalingLevel":18}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801839,"level":13,"description":"AeroblastRank 12 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 109+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":109,"dieSides":9,"pointsPerLevel":2.0347800254821777,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":13,"maxScalingLevel":18}]},{"rank":2,"spellId":501450,"level":20,"description":"AeroblastRank 22.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 163+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.957142857142857,"basePoints":163,"dieSides":11,"pointsPerLevel":1.875,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501451,"level":30,"description":"AeroblastRank 32.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 363+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.970564439561632,"basePoints":363,"dieSides":16,"pointsPerLevel":5.517539978027344,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501452,"level":38,"description":"AeroblastRank 42.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 512+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":512,"dieSides":20,"pointsPerLevel":7.79617977142334,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501453,"level":46,"description":"AeroblastRank 52.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 683+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":683,"dieSides":26,"pointsPerLevel":10.398099899291992,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501454,"level":54,"description":"AeroblastRank 62.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 878+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":878,"dieSides":31,"pointsPerLevel":40.206298828125,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501455,"level":58,"description":"AeroblastRank 72.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 978+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":978,"dieSides":38,"pointsPerLevel":6.214360237121582,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501456,"level":66,"description":"AeroblastRank 82.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 1227+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1227,"dieSides":40,"pointsPerLevel":8.528429985046387,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501457,"level":74,"description":"AeroblastRank 92.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 1459+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1459,"dieSides":44,"pointsPerLevel":16.64109992980957,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":78},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501458,"level":80,"description":"AeroblastRank 102.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 1627+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1627,"dieSides":48,"pointsPerLevel":0.6889579892158508,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"utility","effectType":3,"auraType":23,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-16-forked-lightning-61-801851","classId":"stormbringer","dbcSpellId":801851,"name":"Forked Lightning","unlockLevel":15,"icon":"/assets/ui/spells/spell_nature_lightningoverload.png","sigil":"FL","description":"Forked LightningRank 137% of base mana 2 sec castShoot lightning at an enemy, dealing 69+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"damage","coefficient":1.0320211079385546,"basePoints":69,"dieSides":6,"pointsPerLevel":1.4254599809646606,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801851,"level":15,"description":"Forked LightningRank 137% of base mana 2 sec castShoot lightning at an enemy, dealing 69+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"damage","coefficient":1.0320211079385546,"basePoints":69,"dieSides":6,"pointsPerLevel":1.4254599809646606,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20}]},{"rank":2,"spellId":501438,"level":22,"description":"Forked LightningRank 237% of base mana 2 sec castShoot lightning at an enemy, dealing 128+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"damage","coefficient":1.5825084759308412,"basePoints":128,"dieSides":11,"pointsPerLevel":1.939020037651062,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28}]},{"rank":3,"spellId":501439,"level":30,"description":"Forked LightningRank 337% of base mana 2 sec castShoot lightning at an enemy, dealing 193+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"damage","coefficient":2.1377555423312717,"basePoints":193,"dieSides":17,"pointsPerLevel":2.9198999404907227,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36}]},{"rank":4,"spellId":501440,"level":38,"description":"Forked LightningRank 437% of base mana 2 sec castShoot lightning at an enemy, dealing 280+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"damage","coefficient":2.84325860581308,"basePoints":280,"dieSides":24,"pointsPerLevel":4.2257399559021,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44}]},{"rank":5,"spellId":501441,"level":46,"description":"Forked LightningRank 537% of base mana 2 sec castShoot lightning at an enemy, dealing 385+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"damage","coefficient":3.6449023804377987,"basePoints":385,"dieSides":30,"pointsPerLevel":5.815589904785156,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52}]},{"rank":6,"spellId":582303,"level":54,"description":"Forked LightningRank 637% of base mana 2 sec castShoot lightning at an enemy, dealing 507+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"damage","coefficient":4,"basePoints":507,"dieSides":38,"pointsPerLevel":22.909099578857422,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56}]},{"rank":7,"spellId":582304,"level":58,"description":"Forked LightningRank 737% of base mana 2 sec castShoot lightning at an enemy, dealing 572+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37},"effects":[{"kind":"damage","coefficient":2.9852709552468775,"basePoints":572,"dieSides":48,"pointsPerLevel":1.004729986190796,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":80}]}]},{"id":"coa-16-volt-61-500928","classId":"stormbringer","dbcSpellId":500928,"name":"Volt","unlockLevel":15,"icon":"/assets/ui/spells/shaman_pvp_staticcling.png","sigil":"VO","description":"VoltRank 115% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(25+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.33291666905085243,"basePoints":25,"dieSides":2,"pointsPerLevel":0.29750001430511475,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":6,"intervalMs":3000,"tag":"spell-500928"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":18000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500928,"level":15,"description":"VoltRank 115% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(25+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.33291666905085243,"basePoints":25,"dieSides":2,"pointsPerLevel":0.29750001430511475,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":6,"intervalMs":3000,"tag":"spell-500928"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":8,"triggerSpellId":0,"durationMs":18000}]},{"rank":2,"spellId":501403,"level":22,"description":"VoltRank 215% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(39+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.4851801749822256,"basePoints":39,"dieSides":2,"pointsPerLevel":0.6524999737739563,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":6,"intervalMs":3000,"tag":"spell-501403"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":3,"spellId":501404,"level":28,"description":"VoltRank 315% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(53+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.603526422219683,"basePoints":53,"dieSides":3,"pointsPerLevel":0.8519610166549683,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":6,"intervalMs":3000,"tag":"spell-501404"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":4,"spellId":501405,"level":34,"description":"VoltRank 415% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(68+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.7363945578231292,"basePoints":68,"dieSides":5,"pointsPerLevel":1.125,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":6,"intervalMs":3000,"tag":"spell-501405"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":5,"spellId":501406,"level":40,"description":"VoltRank 515% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(85+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.8806060733217181,"basePoints":85,"dieSides":6,"pointsPerLevel":1.4450000524520874,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":6,"intervalMs":3000,"tag":"spell-501406"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":6,"spellId":501407,"level":46,"description":"VoltRank 615% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(100+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":1.0190985763007825,"basePoints":100,"dieSides":8,"pointsPerLevel":1.8042399883270264,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":6,"intervalMs":3000,"tag":"spell-501407"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":7,"spellId":501408,"level":52,"description":"VoltRank 715% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(122+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":1.1946204882949145,"basePoints":122,"dieSides":11,"pointsPerLevel":2.1753599643707275,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":6,"intervalMs":3000,"tag":"spell-501408"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":8,"spellId":501409,"level":58,"description":"VoltRank 815% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(145+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":1.4154777940549808,"basePoints":145,"dieSides":14,"pointsPerLevel":2.7325799465179443,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62,"ticks":6,"intervalMs":3000,"tag":"spell-501409"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":9,"spellId":501410,"level":64,"description":"VoltRank 915% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(162+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":1.5766116757936115,"basePoints":162,"dieSides":17,"pointsPerLevel":3.1821401119232178,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":68,"ticks":6,"intervalMs":3000,"tag":"spell-501410"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":10,"spellId":501411,"level":70,"description":"VoltRank 1015% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(190+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":1.0161290547427009,"basePoints":190,"dieSides":20,"pointsPerLevel":0.8516129851341248,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80,"ticks":6,"intervalMs":3000,"tag":"spell-501411"},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":500936,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]}]},{"id":"coa-16-gale-62-804036","classId":"stormbringer","dbcSpellId":804036,"name":"Gale","unlockLevel":17,"icon":"/assets/ui/spells/inv_tradeskillitem_sorcererswind_tong.png","sigil":"GA","description":"GaleRank 129% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 53+0+NatP*0.42 Nature damage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29},"effects":[{"kind":"damage","coefficient":0.7022619694471359,"basePoints":53,"dieSides":7,"pointsPerLevel":0.6715970039367676,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804036,"level":17,"description":"GaleRank 129% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 53+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29},"effects":[{"kind":"damage","coefficient":0.7022619694471359,"basePoints":53,"dieSides":7,"pointsPerLevel":0.6715970039367676,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":570138,"level":26,"description":"GaleRank 229% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 99+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29},"effects":[{"kind":"damage","coefficient":1.0841200060960723,"basePoints":99,"dieSides":13,"pointsPerLevel":1.0902600288391113,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":570139,"level":36,"description":"GaleRank 329% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 173+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29},"effects":[{"kind":"damage","coefficient":1.6357236687653984,"basePoints":173,"dieSides":19,"pointsPerLevel":1.8962700366973877,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":44},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":570140,"level":46,"description":"GaleRank 429% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 259+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29},"effects":[{"kind":"damage","coefficient":2.2020765314988098,"basePoints":259,"dieSides":24,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":570141,"level":56,"description":"GaleRank 529% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 362+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29},"effects":[{"kind":"damage","coefficient":2.1812296630071364,"basePoints":362,"dieSides":31,"pointsPerLevel":1.5643199682235718,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-16-kiss-of-the-clouds-62-500039","classId":"stormbringer","dbcSpellId":500039,"name":"Kiss of the Clouds","unlockLevel":17,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0003s_0000_wind_border.png","sigil":"KO","description":"Kiss of the CloudsRank 1Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+101+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500039,"level":17,"description":"Kiss of the CloudsRank 1Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+101+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0}]},{"rank":2,"spellId":501442,"level":26,"description":"Kiss of the CloudsRank 2Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+185+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501443,"level":34,"description":"Kiss of the CloudsRank 3Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+260+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501444,"level":42,"description":"Kiss of the CloudsRank 4Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+347+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501445,"level":50,"description":"Kiss of the CloudsRank 5Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+458+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501446,"level":58,"description":"Kiss of the CloudsRank 6Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+610+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0}]},{"rank":7,"spellId":501447,"level":66,"description":"Kiss of the CloudsRank 7Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+764+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0}]},{"rank":8,"spellId":501448,"level":74,"description":"Kiss of the CloudsRank 8Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+925+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501449,"level":80,"description":"Kiss of the CloudsRank 9Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+1153+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":127,"triggerSpellId":500292,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]}],"knight-of-xoroth":[{"id":"coa-tree-30701","classId":"knight-of-xoroth","dbcSpellId":805679,"name":"Black Shield","unlockLevel":1,"icon":"/assets/ui/spells/spell_warlock_soulburn_haunt.png","sigil":"BS","description":"Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 860 damage, increased by 20% per Demon's Blood stack, for 30 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805679,"level":1,"description":"Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 860 damage, increased by 20% per Demon's Blood stack, for 30 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30701},{"id":"coa-tree-34064","classId":"knight-of-xoroth","dbcSpellId":300395,"name":"Boiling Blood","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodboil_border.png","sigil":"BB","description":"Casting Suffuse now increases your healing received by 25% for the first 6 seconds of it's duration.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":300394,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300395,"level":1,"description":"Casting Suffuse now increases your healing received by 25% for the first 6 seconds of it's duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":300394,"durationMs":-1}]}],"talentEntryId":34064},{"id":"coa-tree-4018","classId":"knight-of-xoroth","dbcSpellId":92104,"name":"Brimstone Buckler","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_improveddemonictactics.png","sigil":"BB","description":"Level 10 Passive Successful blocks now have a 30% chance to summon 1 Hellfire Imp to aid you in battle for 12 seconds. Can only occur once every 3 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":562029,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805966,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92104,"level":1,"description":"Level 10 Passive Successful blocks now have a 30% chance to summon 1 Hellfire Imp to aid you in battle for 12 seconds. Can only occur once every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":562029,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805966,"durationMs":-1}]}],"talentEntryId":4018},{"id":"coa-tree-30178","classId":"knight-of-xoroth","dbcSpellId":300387,"name":"Brimstone's Blood","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fireghost_border.png","sigil":"BS","description":"Increases the chance of gaining a stack of Demon's Blood by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300387,"level":1,"description":"Increases the chance of gaining a stack of Demon's Blood by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30178},{"id":"coa-tree-29623","classId":"knight-of-xoroth","dbcSpellId":680723,"name":"Brute Strength","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_strength.png","sigil":"BS","description":"Increases your critical damage dealt with Physical attacks by 10% and increases the range of Flesh Hook, Chains of Malice, and Chainwhip by 5 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":163,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680723,"level":1,"description":"Increases your critical damage dealt with Physical attacks by 10% and increases the range of Flesh Hook, Chains of Malice, and Chainwhip by 5 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":163,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29623},{"id":"coa-tree-6394","classId":"knight-of-xoroth","dbcSpellId":704185,"name":"Chain Warden","unlockLevel":1,"icon":"/assets/ui/spells/warlock_sacrificial_pact.png","sigil":"CW","description":"Reduces the cooldown of Chains of Malice by -30 sec, and allows Flesh Hook and Chainwhip to strike up to 2 additional enemies near your primary target.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704185,"level":1,"description":"Reduces the cooldown of Chains of Malice by -30 sec, and allows Flesh Hook and Chainwhip to strike up to 2 additional enemies near your primary target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6394},{"id":"coa-tree-30668","classId":"knight-of-xoroth","dbcSpellId":803185,"name":"Chains of Malice","unlockLevel":1,"icon":"/assets/ui/spells/nhi_nightmarechain_border.png","sigil":"CO","description":"Lock an enemy down with magical chains, stunning them and dragging them with you for 5 seconds. Every 1 sec, the enemy will suffer 16 Physical damage. Enemies that cannot be stunned or rooted cannot be dragged.","target":"hostile","range":{"min":0,"max":15},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.0949999988079071,"basePoints":16,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0.0949999988079071,"sourceLevel":28,"ticks":5,"intervalMs":1000,"tag":"spell-803185"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"stun","durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803185,"level":1,"description":"Lock an enemy down with magical chains, stunning them and dragging them with you for 5 seconds. Every 1 sec, the enemy will suffer 16 Physical damage. Enemies that cannot be stunned or rooted cannot be dragged.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.0949999988079071,"basePoints":16,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0.0949999988079071,"sourceLevel":28,"ticks":5,"intervalMs":1000,"tag":"spell-803185"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"stun","durationMs":5000}]}],"talentEntryId":30668},{"id":"coa-tree-4016","classId":"knight-of-xoroth","dbcSpellId":92100,"name":"Crusher","unlockLevel":1,"icon":"/assets/ui/spells/warrior_skullbanner.png","sigil":"CR","description":"Level 10 Passive Doubles the base Weapon Damage dealt by Infernal Strike and increases all critical damage dealt by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":163,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92100,"level":1,"description":"Level 10 Passive Doubles the base Weapon Damage dealt by Infernal Strike and increases all critical damage dealt by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":163,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4016},{"id":"coa-tree-31701","classId":"knight-of-xoroth","dbcSpellId":805669,"name":"Demon Heart","unlockLevel":1,"icon":"/assets/ui/spells/inv_ragnaros_heart.png","sigil":"DH","description":"Embrace your inner demon, instantly generating 6 stacks of Demonfire and 50 Rage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":175,"auraType":0,"miscValue":6,"triggerSpellId":500906,"durationMs":0},{"kind":"resource","amount":500},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805669,"level":1,"description":"Embrace your inner demon, instantly generating 6 stacks of Demonfire and 50 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":175,"auraType":0,"miscValue":6,"triggerSpellId":500906,"durationMs":0},{"kind":"resource","amount":500},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":31701},{"id":"coa-tree-34060","classId":"knight-of-xoroth","dbcSpellId":302581,"name":"Demonskin","unlockLevel":1,"icon":"/assets/ui/spells/inv_wand_1h_firelandsraid_d_01.png","sigil":"DE","description":"Each stack of Demon's Blood also increases your Armor by 1%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":302581,"level":1,"description":"Each stack of Demon's Blood also increases your Armor by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34060},{"id":"coa-tree-30013","classId":"knight-of-xoroth","dbcSpellId":706502,"name":"Dread","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_incinerate.png","sigil":"DR","description":"Damage dealt now has a 15% chance to grant a stack of Dread. At 10 stacks, your next Meatsaw transforms into Annihilation for 8 seconds.AnnihilationAnnihilate up to 10 enemies in a frontal cone, dealing 150% Weapon Damage plus 353 as Shadowflame Damage and generating 4 Demonfire. Deals 20% increased damage if you are above 75% health or below 35% health. Scales with modifiers to Infernal Strike.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707131,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706502,"level":1,"description":"Damage dealt now has a 15% chance to grant a stack of Dread. At 10 stacks, your next Meatsaw transforms into Annihilation for 8 seconds.AnnihilationAnnihilate up to 10 enemies in a frontal cone, dealing 150% Weapon Damage plus 353 as Shadowflame Damage and generating 4 Demonfire. Deals 20% increased damage if you are above 75% health or below 35% health. Scales with modifiers to Infernal Strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707131,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30013},{"id":"knight-of-xoroth-flameblade","classId":"knight-of-xoroth","dbcSpellId":704968,"name":"Flameblade","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_1h_draenorraid_d_01.png","sigil":"FL","description":"FlamebladeRank 2InstantIncreases the damage of Infernal Strike and Flames of Xoroth by 20%.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":704968,"level":1,"description":"FlamebladeRank 2InstantIncreases the damage of Infernal Strike and Flames of Xoroth by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4017","classId":"knight-of-xoroth","dbcSpellId":92101,"name":"Greater Imp","unlockLevel":1,"icon":"/assets/ui/spells/5_sumimparmy_border.png","sigil":"GI","description":"Level 10 Passive Teaches you Summon: Greater Imp and increases your expertise by 10. Summon: Greater ImpSummon a Greater Imp to aid you in combat. Greater Imp has various combat abilities that provide excellent single target damage and control.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":240,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92101,"level":1,"description":"Level 10 Passive Teaches you Summon: Greater Imp and increases your expertise by 10. Summon: Greater ImpSummon a Greater Imp to aid you in combat. Greater Imp has various combat abilities that provide excellent single target damage and control.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":240,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4017},{"id":"coa-tree-34090","classId":"knight-of-xoroth","dbcSpellId":704956,"name":"Heart of Xoroth","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_sanguinaryvein.png","sigil":"HO","description":"Allows Demon's Blood to stack 5 additional times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704956,"level":1,"description":"Allows Demon's Blood to stack 5 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34090},{"id":"coa-tree-5453","classId":"knight-of-xoroth","dbcSpellId":807247,"name":"Hellbound Charge","unlockLevel":1,"icon":"/assets/ui/spells/_crimsondeathcharger_64x.png","sigil":"HC","description":"2 Charges, 60 sec recharge Briefly jump atop your Xorothian Warsteed, increasing your movement speed by 70% for 3 seconds. Usable while indoors, but you cannot use your Mounted Combat abilities while riding your Warsteed in this way.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":3000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":807247,"level":1,"description":"2 Charges, 60 sec recharge Briefly jump atop your Xorothian Warsteed, increasing your movement speed by 70% for 3 seconds. Usable while indoors, but you cannot use your Mounted Combat abilities while riding your Warsteed in this way.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":3000}]}],"talentEntryId":5453},{"id":"coa-tree-34096","classId":"knight-of-xoroth","dbcSpellId":680216,"name":"Hellbreaker","unlockLevel":1,"icon":"/assets/ui/spells/ability_blackhand_marked4death.png","sigil":"HE","description":"Casting Unleash Pestilence now removes all active movement impairing effects from you.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":680217,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680216,"level":1,"description":"Casting Unleash Pestilence now removes all active movement impairing effects from you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":680217,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34096},{"id":"knight-of-xoroth-hellhaul","classId":"knight-of-xoroth","dbcSpellId":503142,"name":"Hellhaul","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathknight_deathchain.png","sigil":"HE","description":"HellhaulRank 2Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 3 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.08,"basePoints":3,"dieSides":1,"pointsPerLevel":0.27880001068115234,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":20,"ticks":20,"intervalMs":250,"tag":"spell-503142"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"root","durationMs":5000}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":503142,"level":1,"description":"HellhaulRank 2Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 3 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.08,"basePoints":3,"dieSides":1,"pointsPerLevel":0.27880001068115234,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":20,"ticks":20,"intervalMs":250,"tag":"spell-503142"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"root","durationMs":5000}]},{"rank":3,"spellId":503143,"level":21,"description":"HellhaulRank 3Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 5 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.12150740568284635,"basePoints":5,"dieSides":1,"pointsPerLevel":0.38679999113082886,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":30,"ticks":20,"intervalMs":250,"tag":"spell-503143"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"root","durationMs":5000}]},{"rank":4,"spellId":503144,"level":31,"description":"HellhaulRank 4Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 8 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.16912173944107,"basePoints":8,"dieSides":1,"pointsPerLevel":0.49480000138282776,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":40,"ticks":20,"intervalMs":250,"tag":"spell-503144"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"root","durationMs":5000}]},{"rank":5,"spellId":503145,"level":41,"description":"HellhaulRank 5Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 13 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.2244928599823089,"basePoints":13,"dieSides":1,"pointsPerLevel":0.6028000116348267,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":50,"ticks":20,"intervalMs":250,"tag":"spell-503145"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"root","durationMs":5000}]},{"rank":6,"spellId":503146,"level":51,"description":"HellhaulRank 6Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 22 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.2941959575571195,"basePoints":22,"dieSides":1,"pointsPerLevel":0.7107999920845032,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60,"ticks":20,"intervalMs":250,"tag":"spell-503146"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"root","durationMs":5000}]},{"rank":7,"spellId":503147,"level":61,"description":"HellhaulRank 7Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 36 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.3769596417744954,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8187999725341797,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70,"ticks":20,"intervalMs":250,"tag":"spell-503147"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"root","durationMs":5000}]},{"rank":8,"spellId":503148,"level":71,"description":"HellhaulRank 8Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 59 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.48373178641001385,"basePoints":59,"dieSides":1,"pointsPerLevel":0.926800012588501,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80,"ticks":20,"intervalMs":250,"tag":"spell-503148"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":1,"triggerSpellId":803186,"durationMs":5000},{"kind":"status","status":"root","durationMs":5000}]}]},{"id":"coa-17-hellish-rebuke-66-804010","classId":"knight-of-xoroth","dbcSpellId":804010,"name":"Hellish Rebuke","unlockLevel":1,"icon":"/assets/ui/spells/inv_bow_1h_firelandsraid_d_01.png","sigil":"HR","description":"Hellish RebukeRank 120 Rage Instant cast20 sec cooldownNext time you take damage, unleash a blast of hellfire upon enemies within 0 yds of the attacker, dealing 6+3.0 Points Per Level Fire damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804011,"durationMs":-1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804346,"durationMs":-1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804010,"level":1,"description":"Hellish RebukeRank 120 Rage Instant cast20 sec cooldownNext time you take damage, unleash a blast of hellfire upon enemies within 0 yds of the attacker, dealing 6+3.0 Points Per Level Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804011,"durationMs":-1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804346,"durationMs":-1}]},{"rank":2,"spellId":503309,"level":17,"description":"Hellish RebukeRank 220 Rage Instant cast20 sec cooldownThe next time you take damage, unleash a blast of Hellfire upon enemies within 0 yards of the attacker, dealing 1 to 3 Fire damage. Oath of Defiance: Gains 2 additional charges, and reduces all damage you take by 5% for 5 sec. This ability scales with your Strength and Spell Power.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804011,"durationMs":-1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804346,"durationMs":-1}]},{"rank":3,"spellId":503310,"level":33,"description":"Hellish RebukeRank 320 Rage Instant cast20 sec cooldownThe next time you take damage, unleash a blast of Hellfire upon enemies within 0 yards of the attacker, dealing 1 to 3 Fire damage. Oath of Defiance: Gains 2 additional charges, and reduces all damage you take by 5% for 5 sec. This ability scales with your Strength and Spell Power.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804011,"durationMs":-1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804346,"durationMs":-1}]},{"rank":4,"spellId":503311,"level":49,"description":"Hellish RebukeRank 420 Rage Instant cast20 sec cooldownThe next time you take damage, unleash a blast of Hellfire upon enemies within 0 yards of the attacker, dealing 1 to 3 Fire damage. Oath of Defiance: Gains 2 additional charges, and reduces all damage you take by 5% for 5 sec. This ability scales with your Strength and Spell Power.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804011,"durationMs":-1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804346,"durationMs":-1}]},{"rank":5,"spellId":503312,"level":65,"description":"Hellish RebukeRank 520 Rage Instant cast20 sec cooldownThe next time you take damage, unleash a blast of Hellfire upon enemies within 0 yards of the attacker, dealing 1 to 3 Fire damage. Oath of Defiance: Gains 2 additional charges, and reduces all damage you take by 5% for 5 sec. This ability scales with your Strength and Spell Power.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804011,"durationMs":-1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804346,"durationMs":-1}]}]},{"id":"coa-17-hellsmelted-armor-66-706569","classId":"knight-of-xoroth","dbcSpellId":706569,"name":"Hellsmelted Armor","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_windsofwoe.png","sigil":"HA","description":"Hellsmelted ArmorRank 1Each Hellfire Imp active now increases your chance to block by 1%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706569,"level":1,"description":"Hellsmelted ArmorRank 1Each Hellfire Imp active now increases your chance to block by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706570,"level":1,"description":"Hellsmelted ArmorRank 2Reduces damage taken by 4% and increases Stamina by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6393","classId":"knight-of-xoroth","dbcSpellId":704991,"name":"Hellstriker","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_80.png","sigil":"HE","description":"Direct critical strikes now increase the duration of Hellrider on you by 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":680727,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704991,"level":1,"description":"Direct critical strikes now increase the duration of Hellrider on you by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":680727,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6393},{"id":"coa-17-improved-gore-64-705011","classId":"knight-of-xoroth","dbcSpellId":705011,"name":"Improved Gore","unlockLevel":1,"icon":"/assets/ui/spells/inv_knife_1h_pvppandarias1_c_02.png","sigil":"IG","description":"Improved GoreRank 2Increases the damage of Gore by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705011,"level":1,"description":"Improved GoreRank 2Increases the damage of Gore by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6929","classId":"knight-of-xoroth","dbcSpellId":805693,"name":"Infernal Steel","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_02.png","sigil":"IS","description":"Casting Skulltaker with 6 Demonfire stacks now causes your next Hellmaw within 15 seconds to tick -25% faster and cost -50% less Rage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520021,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805693,"level":1,"description":"Casting Skulltaker with 6 Demonfire stacks now causes your next Hellmaw within 15 seconds to tick -25% faster and cost -50% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520021,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6929},{"id":"coa-tree-30016","classId":"knight-of-xoroth","dbcSpellId":520294,"name":"Juggernaut","unlockLevel":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0004s_0000_armor_border.png","sigil":"JU","description":"Consume all of your Demon's Blood to become a juggernaut, reducing all damage taken by -30% for 10 seconds. For the duration, you heal every 3 sec for 6 + 10% AP, increased per Demon's Blood stack consumed.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":60,"ticks":4,"intervalMs":2500},{"kind":"utility","effectType":6,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520294,"level":1,"description":"Consume all of your Demon's Blood to become a juggernaut, reducing all damage taken by -30% for 10 seconds. For the duration, you heal every 3 sec for 6 + 10% AP, increased per Demon's Blood stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":60,"ticks":4,"intervalMs":2500},{"kind":"utility","effectType":6,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":30016},{"id":"coa-17-legionwake-66-706568","classId":"knight-of-xoroth","dbcSpellId":706568,"name":"Legionwake","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_draenorraid_d_03.png","sigil":"LE","description":"LegionwakeRank 2This node has no effect. It will be removed with the next patch. Do not take rank 2. Remain calm.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706568,"level":1,"description":"LegionwakeRank 2This node has no effect. It will be removed with the next patch. Do not take rank 2. Remain calm.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34114","classId":"knight-of-xoroth","dbcSpellId":706590,"name":"Omen of Rage","unlockLevel":1,"icon":"/assets/ui/spells/custom_06_summon_demon_border.png","sigil":"OO","description":"Periodic damage and healing done has a 10% chance to grant a stack of Demonfire.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524912,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706590,"level":1,"description":"Periodic damage and healing done has a 10% chance to grant a stack of Demonfire.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524912,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34114},{"id":"coa-tree-34069","classId":"knight-of-xoroth","dbcSpellId":300376,"name":"Rage of Xoroth","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_focusedrage.png","sigil":"RO","description":"Your critical strikes now enrage you, increasing your melee attack speed by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805799,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300376,"level":1,"description":"Your critical strikes now enrage you, increasing your melee attack speed by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805799,"durationMs":-1}]}],"talentEntryId":34069},{"id":"coa-tree-34074","classId":"knight-of-xoroth","dbcSpellId":300384,"name":"Ragefist","unlockLevel":1,"icon":"/assets/ui/spells/inv_relics_totemofrage.png","sigil":"RA","description":"Increases your maximum Rage by 10 and reduces the duration of disarm effects against you by -15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":35,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300384,"level":1,"description":"Increases your maximum Rage by 10 and reduces the duration of disarm effects against you by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":35,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":301356,"level":1,"description":"Increases your maximum Rage by 20 and reduces the duration of disarm effects against you by -30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":35,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34074},{"id":"coa-tree-34094","classId":"knight-of-xoroth","dbcSpellId":704987,"name":"Spiked Chains","unlockLevel":1,"icon":"/assets/ui/spells/creatureportrait_blackrock_chainsofwoe.png","sigil":"SC","description":"Your Chainwhip now deals 321 + 30% AP additional Physical damage, increased by 100% on Humanoids.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806219,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":112,"miscValue":20014,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704987,"level":1,"description":"Your Chainwhip now deals 321 + 30% AP additional Physical damage, increased by 100% on Humanoids.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806219,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":112,"miscValue":20014,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34094},{"id":"coa-tree-7099","classId":"knight-of-xoroth","dbcSpellId":801063,"name":"Suffuse","unlockLevel":1,"icon":"/assets/ui/spells/diabloanniversary_achievement.png","sigil":"SU","description":"Embrace your mortal body, restoring 200 + 10% Stamina + 5% AP health every 3 sec, scaling with Stamina and defense rating. Lasts 3 sec for each Demonfire consumed.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801064,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801063,"level":1,"description":"Embrace your mortal body, restoring 200 + 10% Stamina + 5% AP health every 3 sec, scaling with Stamina and defense rating. Lasts 3 sec for each Demonfire consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801064,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":7099},{"id":"coa-tree-34075","classId":"knight-of-xoroth","dbcSpellId":706566,"name":"Suffusion of Essence","unlockLevel":1,"icon":"/assets/ui/spells/inv_trinket_firelands_03.png","sigil":"SO","description":"Increases the duration of Suffuse by 2 sec for each Demonfire consumed.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706566,"level":1,"description":"Increases the duration of Suffuse by 2 sec for each Demonfire consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34075},{"id":"coa-17-superheated-blade-64-706329","classId":"knight-of-xoroth","dbcSpellId":706329,"name":"Superheated Blade","unlockLevel":1,"icon":"/assets/ui/spells/polearm_2h_deathwingraiddw_d_01.png","sigil":"SB","description":"Superheated BladeRank 1Increases Armor penetration rating by 8% of Strength and Strength by 2%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":16777216,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706329,"level":1,"description":"Superheated BladeRank 1Increases Armor penetration rating by 8% of Strength and Strength by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":16777216,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29610","classId":"knight-of-xoroth","dbcSpellId":705020,"name":"War Pig","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathwing_assualtaspects.png","sigil":"WP","description":"Increases your Physical damage dealt by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705020,"level":1,"description":"Increases your Physical damage dealt by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29610},{"id":"coa-17-xorothian-empowerment-65-704995","classId":"knight-of-xoroth","dbcSpellId":704995,"name":"Xorothian Empowerment","unlockLevel":1,"icon":"/assets/ui/spells/achievement_firelands_raid_ragnaros.png","sigil":"XE","description":"Xorothian EmpowermentRank 2This node has no effect. It will be removed with the next patch. Do not take rank 2. Remain calm.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":704995,"level":1,"description":"Xorothian EmpowermentRank 2This node has no effect. It will be removed with the next patch. Do not take rank 2. Remain calm.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30695","classId":"knight-of-xoroth","dbcSpellId":801061,"name":"Xorothian Sigil","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_ahnqirajtrinket_04.png","sigil":"XS","description":"Create a demonic sigil that protects party members within 20 yds of you, causing them to deflect the next harmful spell cast against them within 3 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801061,"level":1,"description":"Create a demonic sigil that protects party members within 20 yds of you, causing them to deflect the next harmful spell cast against them within 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30695},{"id":"coa-tree-29437","classId":"knight-of-xoroth","dbcSpellId":300382,"name":"Xorothian Strength","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_demonicpact.png","sigil":"XS","description":"Increases your Strength by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300382,"level":1,"description":"Increases your Strength by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":570100,"level":1,"description":"Increases your Strength by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29437},{"id":"knight-of-xoroth-unleash-hellfire","classId":"knight-of-xoroth","dbcSpellId":705001,"name":"Unleash Hellfire","unlockLevel":2,"icon":"/assets/ui/spells/inv_elemental_primal_fire.png","sigil":"UH","description":"Release hellfire in every direction.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":9000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.05}],"source":"coa-starter"},{"id":"knight-of-xoroth-chain-grab","classId":"knight-of-xoroth","dbcSpellId":800606,"name":"Chain Grab","unlockLevel":4,"icon":"/assets/ui/spells/spell_shadow_unholystrength.png","sigil":"CG","description":"Snare a foe in Xorothian chains and force its attention.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"status","status":"pulled","durationMs":700},{"kind":"taunt","durationMs":3000}],"source":"coa-starter"},{"id":"coa-17-hellfire-form-65-503300","classId":"knight-of-xoroth","dbcSpellId":503300,"name":"Hellfire Form","unlockLevel":9,"icon":"/assets/ui/spells/ability_racial_foregedinflames.png","sigil":"HF","description":"Hellfire FormRank 2Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 10 to 15 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503300,"level":9,"description":"Hellfire FormRank 2Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 10 to 15 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]},{"rank":3,"spellId":503301,"level":17,"description":"Hellfire FormRank 3Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 19 to 28 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]},{"rank":4,"spellId":503302,"level":25,"description":"Hellfire FormRank 4Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 34 to 49 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]},{"rank":5,"spellId":503303,"level":33,"description":"Hellfire FormRank 5Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 56 to 79 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]},{"rank":6,"spellId":503304,"level":41,"description":"Hellfire FormRank 6Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 88 to 121 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]},{"rank":7,"spellId":503305,"level":49,"description":"Hellfire FormRank 7Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 133 to 177 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]},{"rank":8,"spellId":503306,"level":57,"description":"Hellfire FormRank 8Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 96 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]},{"rank":9,"spellId":503307,"level":65,"description":"Hellfire FormRank 9Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 284 to 356 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]},{"rank":10,"spellId":503308,"level":73,"description":"Hellfire FormRank 10Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 404 to 493 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":56,"miscValue":50299,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804007,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000}]}]},{"id":"coa-17-demonfeast-64-501491","classId":"knight-of-xoroth","dbcSpellId":501491,"name":"Demonfeast","unlockLevel":10,"icon":"/assets/ui/spells/inv_axe_1h_nzothraid_d_02.png","sigil":"DE","description":"DemonfeastRank 220 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 22 to 30 Life, healing you for 150% of the damage dealt by this effect.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501491,"level":10,"description":"DemonfeastRank 220 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 22 to 30 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501492,"level":19,"description":"DemonfeastRank 320 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 45 to 60 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501493,"level":28,"description":"DemonfeastRank 420 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 82 to 107 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501494,"level":37,"description":"DemonfeastRank 520 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 139 to 177 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501495,"level":45,"description":"DemonfeastRank 620 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 215 to 267 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501496,"level":54,"description":"DemonfeastRank 720 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 335 to 405 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501497,"level":63,"description":"DemonfeastRank 820 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 507 to 598 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501498,"level":72,"description":"DemonfeastRank 920 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 752 to 866 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-17-meatsaw-64-800340","classId":"knight-of-xoroth","dbcSpellId":800340,"name":"Meatsaw","unlockLevel":12,"icon":"/assets/ui/spells/ability_butcher_whirl.png","sigil":"ME","description":"MeatsawRank 145 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 50% Weapon Damage plus 8.","target":"hostile","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800340,"level":12,"description":"MeatsawRank 145 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 50% Weapon Damage plus 8.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501508,"level":24,"description":"MeatsawRank 245 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 59% Weapon Damage plus 8 to 15.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501509,"level":36,"description":"MeatsawRank 345 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 60% Weapon Damage plus 25.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501510,"level":48,"description":"MeatsawRank 445 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 53% Weapon Damage plus 32 to 67.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":578119,"level":58,"description":"MeatsawRank 545 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 55% Weapon Damage plus 51 to 86.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-17-shieldgore-66-804353","classId":"knight-of-xoroth","dbcSpellId":804353,"name":"Shieldgore","unlockLevel":12,"icon":"/assets/ui/spells/inv_shield_draenorraid_d_02.png","sigil":"SH","description":"ShieldgoreRank 135 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 21+0+AP*.35 High Threat Fire Damage, scaling with your block value.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.29012345679012347,"basePoints":21,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804353,"level":12,"description":"ShieldgoreRank 135 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 21+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.29012345679012347,"basePoints":21,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}]},{"rank":2,"spellId":806869,"level":18,"description":"ShieldgoreRank 235 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 26+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.2878787878787879,"basePoints":26,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24}]},{"rank":3,"spellId":806870,"level":26,"description":"ShieldgoreRank 335 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 30+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.2845528455284553,"basePoints":30,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32}]},{"rank":4,"spellId":806871,"level":34,"description":"ShieldgoreRank 435 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 38+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.30612244897959184,"basePoints":38,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":5,"spellId":806872,"level":42,"description":"ShieldgoreRank 535 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 69+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.4590643274853801,"basePoints":69,"dieSides":20,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48}]},{"rank":6,"spellId":806873,"level":50,"description":"ShieldgoreRank 635 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 95+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.558974358974359,"basePoints":95,"dieSides":29,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":7,"spellId":806874,"level":58,"description":"ShieldgoreRank 735 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 122+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.6461187214611872,"basePoints":122,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66}]}]},{"id":"coa-17-seeking-flame-65-805671","classId":"knight-of-xoroth","dbcSpellId":805671,"name":"Seeking Flame","unlockLevel":15,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SF","description":"Seeking FlameRank 120 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 63+0+FireP*0.336188+AP*0.33 Fire damage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.3236988915337458,"basePoints":63,"dieSides":5,"pointsPerLevel":3.6088600158691406,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500906,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805671,"level":15,"description":"Seeking FlameRank 120 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 63+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.3236988915337458,"basePoints":63,"dieSides":5,"pointsPerLevel":3.6088600158691406,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500906,"durationMs":0}]},{"rank":2,"spellId":560664,"level":24,"description":"Seeking FlameRank 220 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 113+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.63563964713333,"basePoints":113,"dieSides":10,"pointsPerLevel":3.0779099464416504,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500906,"durationMs":0}]},{"rank":3,"spellId":560665,"level":34,"description":"Seeking FlameRank 320 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 174+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":2.161333603112876,"basePoints":174,"dieSides":15,"pointsPerLevel":4.021059989929199,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500906,"durationMs":0}]},{"rank":4,"spellId":560666,"level":44,"description":"Seeking FlameRank 420 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 264+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":2.3624293548239153,"basePoints":264,"dieSides":20,"pointsPerLevel":3.2874999046325684,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":52},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500906,"durationMs":0}]},{"rank":5,"spellId":560667,"level":54,"description":"Seeking FlameRank 520 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 368+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":368,"dieSides":24,"pointsPerLevel":9.175000190734863,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500906,"durationMs":0}]},{"rank":6,"spellId":560668,"level":60,"description":"Seeking FlameRank 620 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 702+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":702,"dieSides":35,"pointsPerLevel":5.462500095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500906,"durationMs":0}]}]},{"id":"coa-17-curse-of-xoroth-66-503472","classId":"knight-of-xoroth","dbcSpellId":503472,"name":"Curse of Xoroth","unlockLevel":17,"icon":"/assets/ui/spells/inv_shield_1h_nzothraid_d_01.png","sigil":"CO","description":"Curse of XorothRank 2Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 7 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.14658333485325178,"basePoints":7,"dieSides":1,"pointsPerLevel":0.41600000858306885,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32,"ticks":5,"intervalMs":2000,"tag":"spell-503472"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804170,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503472,"level":17,"description":"Curse of XorothRank 2Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 7 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.14658333485325178,"basePoints":7,"dieSides":1,"pointsPerLevel":0.41600000858306885,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32,"ticks":5,"intervalMs":2000,"tag":"spell-503472"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804170,"durationMs":10000}]},{"rank":3,"spellId":503473,"level":33,"description":"Curse of XorothRank 3Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 14 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.24205556222134167,"basePoints":14,"dieSides":1,"pointsPerLevel":0.6320000290870667,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48,"ticks":5,"intervalMs":2000,"tag":"spell-503473"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804170,"durationMs":10000}]},{"rank":4,"spellId":503474,"level":49,"description":"Curse of XorothRank 4Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 30 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.37266666411111754,"basePoints":30,"dieSides":1,"pointsPerLevel":0.8479999899864197,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64,"ticks":5,"intervalMs":2000,"tag":"spell-503474"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804170,"durationMs":10000}]},{"rank":5,"spellId":503475,"level":65,"description":"Curse of XorothRank 5Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 62 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dot","coefficient":0.5465000028411547,"basePoints":62,"dieSides":1,"pointsPerLevel":1.0640000104904175,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80,"ticks":5,"intervalMs":2000,"tag":"spell-503475"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804170,"durationMs":10000}]}]},{"id":"coa-17-chainwhip-66-503361","classId":"knight-of-xoroth","dbcSpellId":503361,"name":"Chainwhip","unlockLevel":20,"icon":"/assets/ui/spells/_enslavespell_fire.png","sigil":"CH","description":"ChainwhipRank 210 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 15+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","target":"hostile","range":{"min":0,"max":15},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.31833332833789646,"basePoints":15,"dieSides":3,"pointsPerLevel":0.8712499737739563,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"utility","effectType":63,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"status","status":"interrupt","durationMs":2000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503361,"level":20,"description":"ChainwhipRank 210 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 15+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.31833332833789646,"basePoints":15,"dieSides":3,"pointsPerLevel":0.8712499737739563,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"utility","effectType":63,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"status","status":"interrupt","durationMs":2000}]},{"rank":3,"spellId":503362,"level":30,"description":"ChainwhipRank 310 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 25+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.46861111323038734,"basePoints":25,"dieSides":5,"pointsPerLevel":1.2087500095367432,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":38},{"kind":"utility","effectType":63,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"status","status":"interrupt","durationMs":2000}]},{"rank":4,"spellId":503363,"level":40,"description":"ChainwhipRank 410 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 44+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.6627272692593661,"basePoints":44,"dieSides":8,"pointsPerLevel":1.5462499856948853,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"utility","effectType":63,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"status","status":"interrupt","durationMs":2000}]},{"rank":5,"spellId":503364,"level":50,"description":"ChainwhipRank 510 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 73+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.8830128107315455,"basePoints":73,"dieSides":11,"pointsPerLevel":1.8837499618530273,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":58},{"kind":"utility","effectType":63,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"status","status":"interrupt","durationMs":2000}]},{"rank":6,"spellId":503365,"level":60,"description":"ChainwhipRank 610 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 118+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.1412222374810113,"basePoints":118,"dieSides":12,"pointsPerLevel":2.221250057220459,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":63,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"status","status":"interrupt","durationMs":2000}]},{"rank":7,"spellId":503366,"level":70,"description":"ChainwhipRank 710 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 185+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.4612254666347129,"basePoints":185,"dieSides":18,"pointsPerLevel":2.5587499141693115,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":78},{"kind":"utility","effectType":63,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"status","status":"interrupt","durationMs":2000}]},{"rank":8,"spellId":503367,"level":80,"description":"ChainwhipRank 810 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 283+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.853333336010314,"basePoints":283,"dieSides":28,"pointsPerLevel":2.896250009536743,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"utility","effectType":63,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"status","status":"interrupt","durationMs":2000}]}]}],"guardian":[{"id":"coa-18-banner-boy-68-705358","classId":"guardian","dbcSpellId":705358,"name":"Banner Boy","unlockLevel":1,"icon":"/assets/ui/spells/achievement_bg_captureflag_wsg.png","sigil":"BB","description":"Banner BoyRank 1Reduces the Energy cost of Banners by 10.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":705358,"level":1,"description":"Banner BoyRank 1Reduces the Energy cost of Banners by 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-11797","classId":"guardian","dbcSpellId":803683,"name":"Battle Drums","unlockLevel":1,"icon":"/assets/ui/spells/inv_archaeology_70_tauren_drum.png","sigil":"BD","description":"Place down 3 Battle Drums around you for 1 minute. Allies may click on the drums to increase their critical strike chance, haste, damage, and healing done by 10% and causes their damage dealt to trigger a Sound of War for their next 5 instances of damage or 30 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803683,"level":1,"description":"Place down 3 Battle Drums around you for 1 minute. Allies may click on the drums to increase their critical strike chance, haste, damage, and healing done by 10% and causes their damage dealt to trigger a Sound of War for their next 5 instances of damage or 30 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000}]}],"talentEntryId":11797},{"id":"guardian-battle-rush","classId":"guardian","dbcSpellId":802197,"name":"Battle Rush","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_skirmisher.png","sigil":"BR","description":"Battle RushRank 1Instant cast30 sec cooldownCharge an enemy, dealing 16+0+AP*0.09996 Physical damage and stunning them for 1 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":40,"triggerSpellId":0,"durationMs":1000},{"kind":"damage","coefficient":0.3348214291036129,"basePoints":16,"dieSides":1,"pointsPerLevel":0.07142859697341919,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":22},{"kind":"status","status":"stun","durationMs":1000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":802197,"level":1,"description":"Battle RushRank 1Instant cast30 sec cooldownCharge an enemy, dealing 16+0+AP*0.09996 Physical damage and stunning them for 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":40,"triggerSpellId":0,"durationMs":1000},{"kind":"damage","coefficient":0.3348214291036129,"basePoints":16,"dieSides":1,"pointsPerLevel":0.07142859697341919,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":22},{"kind":"status","status":"stun","durationMs":1000}]},{"rank":2,"spellId":501546,"level":24,"description":"Battle RushRank 2Instant cast30 sec cooldownCharge an enemy, dealing 31+0+AP*0.09996 Physical damage and stunning them for 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":40,"triggerSpellId":0,"durationMs":1000},{"kind":"damage","coefficient":0.30891336742629355,"basePoints":31,"dieSides":1,"pointsPerLevel":0.21428599953651428,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":38},{"kind":"status","status":"stun","durationMs":1000}]},{"rank":3,"spellId":501547,"level":40,"description":"Battle RushRank 3Instant cast30 sec cooldownCharge an enemy, dealing 60+0+AP*0.09996 Physical damage and stunning them for 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":40,"triggerSpellId":0,"durationMs":1000},{"kind":"damage","coefficient":0.4658009716958711,"basePoints":60,"dieSides":1,"pointsPerLevel":0.42142900824546814,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":54},{"kind":"status","status":"stun","durationMs":1000}]},{"rank":4,"spellId":501548,"level":56,"description":"Battle RushRank 4Instant cast30 sec cooldownCharge an enemy, dealing 119+0+AP*0.09996 Physical damage and stunning them for 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":40,"triggerSpellId":0,"durationMs":1000},{"kind":"damage","coefficient":0.8172143076507139,"basePoints":119,"dieSides":1,"pointsPerLevel":0.9833329916000366,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":68},{"kind":"status","status":"stun","durationMs":1000}]}]},{"id":"coa-tree-30057","classId":"guardian","dbcSpellId":800313,"name":"Brace","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_safeguard.png","sigil":"BR","description":"Brace Instant3 min cooldownFortify your defenses, reducing all damage taken by 50% and gaining immunity to stun effects for 10 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":12,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800313,"level":1,"description":"Brace Instant3 min cooldownFortify your defenses, reducing all damage taken by 50% and gaining immunity to stun effects for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":12,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":30057},{"id":"coa-tree-29431","classId":"guardian","dbcSpellId":802188,"name":"Counter Stance","unlockLevel":1,"icon":"/assets/ui/spells/counterstanceguardian.png","sigil":"CS","description":"You automatically parry the next attack against you. Lasts for 5 attacks or 15 seconds. When you expend a charge you deal 275 damage to attackers and heal for 366 + 100% AP health.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":47,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":501535,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802188,"level":1,"description":"You automatically parry the next attack against you. Lasts for 5 attacks or 15 seconds. When you expend a charge you deal 275 damage to attackers and heal for 366 + 100% AP health.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":47,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":501535,"durationMs":15000}]}],"talentEntryId":29431},{"id":"coa-18-crashing-force-69-705328","classId":"guardian","dbcSpellId":705328,"name":"Crashing Force","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_124.png","sigil":"CF","description":"Crashing ForceRank 1Increases the damage of Linebreaker by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":705328,"level":1,"description":"Crashing ForceRank 1Increases the damage of Linebreaker by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-18-deflector-67-706337","classId":"guardian","dbcSpellId":706337,"name":"Deflector","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_30.png","sigil":"DE","description":"DeflectorRank 2Reduces the cooldown of your Raise Shield by 2 sec and reduces its Energy cost by 10.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706337,"level":1,"description":"DeflectorRank 2Reduces the cooldown of your Raise Shield by 2 sec and reduces its Energy cost by 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34422","classId":"guardian","dbcSpellId":706336,"name":"Deflector","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_shieldreflection.png","sigil":"DE","description":"Reduces the cooldown of your Raise Shield by -5 sec and reduces its Energy cost by -10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706336,"level":1,"description":"Reduces the cooldown of your Raise Shield by -5 sec and reduces its Energy cost by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34422},{"id":"coa-18-dirty-tactics-69-705325","classId":"guardian","dbcSpellId":705325,"name":"Dirty Tactics","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(17)_border.png","sigil":"DT","description":"Dirty TacticsRank 1Increases damage dealt by 1% and Armor penetration by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":280,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705325,"level":1,"description":"Dirty TacticsRank 1Increases damage dealt by 1% and Armor penetration by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":280,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705326,"level":1,"description":"Dirty TacticsRank 2Increases damage dealt by 2% and Armor penetration by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":280,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-18-endurance-68-705339","classId":"guardian","dbcSpellId":705339,"name":"Endurance","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_soulburn_border.png","sigil":"EN","description":"EnduranceRank 1Increases your maximum Energy by 10.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":35,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705339,"level":1,"description":"EnduranceRank 1Increases your maximum Energy by 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":35,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705340,"level":1,"description":"EnduranceRank 2Increases your maximum Energy by 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":35,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34421","classId":"guardian","dbcSpellId":705316,"name":"Energetic","unlockLevel":1,"icon":"/assets/ui/spells/novart_passivemastery_(8)_border.png","sigil":"EN","description":"Restores 5 of your Energy every 3 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":24,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705316,"level":1,"description":"Restores 5 of your Energy every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":24,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34421},{"id":"coa-18-feats-of-glory-68-803960","classId":"guardian","dbcSpellId":803960,"name":"Feats of Glory","unlockLevel":1,"icon":"/assets/ui/spells/achievement_pvp_legion01.png","sigil":"FO","description":"Feats of GloryRank 117% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803960,"level":1,"description":"Feats of GloryRank 117% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":2,"spellId":503207,"level":11,"description":"Feats of GloryRank 217% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":3,"spellId":503208,"level":21,"description":"Feats of GloryRank 317% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":4,"spellId":503209,"level":31,"description":"Feats of GloryRank 417% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":5,"spellId":503210,"level":41,"description":"Feats of GloryRank 517% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":6,"spellId":503211,"level":51,"description":"Feats of GloryRank 617% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":7,"spellId":503212,"level":61,"description":"Feats of GloryRank 717% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":8,"spellId":503213,"level":71,"description":"Feats of GloryRank 817% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]}]},{"id":"coa-18-feats-of-honor-68-803959","classId":"guardian","dbcSpellId":803959,"name":"Feats of Honor","unlockLevel":1,"icon":"/assets/ui/spells/achievement_pvp_legion03.png","sigil":"FO","description":"Feats of HonorRank 117% of base energy Instant cast10 sec cooldownIncrease an ally's Armor by 28 to 39 for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803959,"level":1,"description":"Feats of HonorRank 117% of base energy Instant cast10 sec cooldownIncrease an ally's Armor by 28 to 39 for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":2,"spellId":503204,"level":21,"description":"Feats of HonorRank 217% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":3,"spellId":503205,"level":41,"description":"Feats of HonorRank 317% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]},{"rank":4,"spellId":503206,"level":61,"description":"Feats of HonorRank 417% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803958,"durationMs":600000}]}]},{"id":"coa-18-feats-of-strength-68-503200","classId":"guardian","dbcSpellId":503200,"name":"Feats of Strength","unlockLevel":1,"icon":"/assets/ui/spells/achievement_pvp_legion04.png","sigil":"FO","description":"Feats of StrengthRank 220 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503200,"level":1,"description":"Feats of StrengthRank 220 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":503201,"level":17,"description":"Feats of StrengthRank 320 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":503202,"level":34,"description":"Feats of StrengthRank 420 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":503203,"level":1,"description":"Feats of StrengthRank 520 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-18-flexible-banners-68-705319","classId":"guardian","dbcSpellId":705319,"name":"Flexible Banners","unlockLevel":1,"icon":"/assets/ui/spells/inv_banner_tolbarad_alliance.png","sigil":"FB","description":"Flexible BannersRank 2Reduces the cooldown of Banner abilities by 8 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705319,"level":1,"description":"Flexible BannersRank 2Reduces the cooldown of Banner abilities by 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-18-gallant-67-705367","classId":"guardian","dbcSpellId":705367,"name":"Gallant","unlockLevel":1,"icon":"/assets/ui/spells/inv_chest_plate04.png","sigil":"GA","description":"GallantRank 1Increases Stamina by 5% and healing received by 3% and your Raise Shield's cooldown is reduced by 3 sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":705367,"level":1,"description":"GallantRank 1Increases Stamina by 5% and healing received by 3% and your Raise Shield's cooldown is reduced by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34426","classId":"guardian","dbcSpellId":802870,"name":"Grand Entrance","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_stalwartprotector.png","sigil":"GE","description":"Leap into the air, becoming immune to crowd control effects, and then crash back down with incredible speed at your enemy. Upon landing, deal 400% Weapon Damage to enemies in the impact area, plus an additional 611 + 77.25% AP over 6 seconds, ignoring Armor and knocking them into the air.","target":"hostile","range":{"min":0,"max":10},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":802871,"durationMs":2000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803293,"durationMs":2000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802870,"level":1,"description":"Leap into the air, becoming immune to crowd control effects, and then crash back down with incredible speed at your enemy. Upon landing, deal 400% Weapon Damage to enemies in the impact area, plus an additional 611 + 77.25% AP over 6 seconds, ignoring Armor and knocking them into the air.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":802871,"durationMs":2000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803293,"durationMs":2000}]}],"talentEntryId":34426},{"id":"coa-18-hammer-of-honor-67-705374","classId":"guardian","dbcSpellId":705374,"name":"Hammer of Honor","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_1h_kultirasquest_b_01.png","sigil":"HO","description":"Hammer of HonorRank 1Forgehammer applies your Honorguard damage to the target every 1 sec for 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705374,"level":1,"description":"Hammer of HonorRank 1Forgehammer applies your Honorguard damage to the target every 1 sec for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705375,"level":1,"description":"Hammer of HonorRank 2Causes Forgehammer to apply your Honorguard damage to the target every 1 sec for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-18-heros-decree-68-803964","classId":"guardian","dbcSpellId":803964,"name":"Hero's Decree","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_scrollunrolled02b.png","sigil":"HS","description":"Hero's DecreeRank 125 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby party members. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803965,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803964,"level":1,"description":"Hero's DecreeRank 125 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby party members. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803965,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":15000}]},{"rank":2,"spellId":503224,"level":21,"description":"Hero's DecreeRank 225 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby allies. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560514,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":503225,"level":41,"description":"Hero's DecreeRank 325 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby allies. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560514,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":503226,"level":61,"description":"Hero's DecreeRank 425 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby allies. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560514,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-tree-29797","classId":"guardian","dbcSpellId":801774,"name":"Hero's March","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_drum_03.png","sigil":"HS","description":"Beat the drums of war, causing your auto attacks to trigger a Sound of War and increasing your haste by 15% for 15 seconds. In addition, allies within 10 yds of you have a 5% chance to trigger a Sound of War on any damage dealt.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":572612,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":138,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801774,"level":1,"description":"Beat the drums of war, causing your auto attacks to trigger a Sound of War and increasing your haste by 15% for 15 seconds. In addition, allies within 10 yds of you have a 5% chance to trigger a Sound of War on any damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":572612,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":138,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":29797},{"id":"coa-tree-30316","classId":"guardian","dbcSpellId":804661,"name":"Heroic Deeds","unlockLevel":1,"icon":"/assets/ui/spells/ability_paladin_touchedbylight.png","sigil":"HD","description":"Increases the reputation gains of your allies within 30 yds by 5% and reduces damage you take by -3%.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":128,"auraType":156,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804661,"level":1,"description":"Increases the reputation gains of your allies within 30 yds by 5% and reduces damage you take by -3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":128,"auraType":156,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30316},{"id":"coa-tree-34429","classId":"guardian","dbcSpellId":705377,"name":"Honorable Demeanor","unlockLevel":1,"icon":"/assets/ui/spells/ability_toughness.png","sigil":"HD","description":"Whenever you block an attack your Strength and Stamina are increased by 2% for 10 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524931,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705377,"level":1,"description":"Whenever you block an attack your Strength and Stamina are increased by 2% for 10 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524931,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34429},{"id":"coa-18-improved-feats-of-strength-68-705360","classId":"guardian","dbcSpellId":705360,"name":"Improved Feats of Strength","unlockLevel":1,"icon":"/assets/ui/spells/achievement_pvp_legion08.png","sigil":"IF","description":"Improved Feats of StrengthRank 1Increases the effectiveness of Feats of Strength by 5% and the chance to proc its effect by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705360,"level":1,"description":"Improved Feats of StrengthRank 1Increases the effectiveness of Feats of Strength by 5% and the chance to proc its effect by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-18-inspiring-speech-hidden-68-503216","classId":"guardian","dbcSpellId":503216,"name":"Inspiring Speech Hidden","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(77)_border.png","sigil":"IS","description":"Inspiring Speech HiddenRank 4InstantUtter your most Inspiring Speech, reducing an allies damage taken by 0% for until cancelled. Can be used while moving. Also reduces the damage taken of party and raid members within 0|r yds that are affected by Motivation, and cleanses 1 harmful Magic Effect from them.","target":"friendly","range":{"min":0,"max":50000},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":503215,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-progression","ranks":[{"rank":4,"spellId":503216,"level":1,"description":"Inspiring Speech HiddenRank 4InstantUtter your most Inspiring Speech, reducing an allies damage taken by 0% for until cancelled. Can be used while moving. Also reduces the damage taken of party and raid members within 0|r yds that are affected by Motivation, and cleanses 1 harmful Magic Effect from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":503215,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34419","classId":"guardian","dbcSpellId":705378,"name":"Knight's Advantage","unlockLevel":1,"icon":"/assets/ui/spells/achievement_legionpvp2tier1.png","sigil":"KS","description":"Increases your damage dealt against Humanoids by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":168,"miscValue":64,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705378,"level":1,"description":"Increases your damage dealt against Humanoids by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":168,"miscValue":64,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34419},{"id":"coa-tree-12431","classId":"guardian","dbcSpellId":504151,"name":"Knight's Calling","unlockLevel":1,"icon":"/assets/ui/spells/custom_paladinskill_32_border.png","sigil":"KS","description":"Embrace your calling, restoring 15% of your maximum health and Energy, repeating every 5 sec for 10 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":20,"miscValue":0,"triggerSpellId":504693,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":24,"miscValue":3,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504151,"level":1,"description":"Embrace your calling, restoring 15% of your maximum health and Energy, repeating every 5 sec for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":20,"miscValue":0,"triggerSpellId":504693,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":24,"miscValue":3,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":12431},{"id":"coa-tree-30433","classId":"guardian","dbcSpellId":704150,"name":"Light Nets","unlockLevel":1,"icon":"/assets/ui/spells/hunter_pvp_trackersnet.png","sigil":"LN","description":"Increases the range of your Net Throw by 15 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704150,"level":1,"description":"Increases the range of your Net Throw by 15 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30433},{"id":"coa-tree-29970","classId":"guardian","dbcSpellId":300543,"name":"Make Room! I'm Here.","unlockLevel":1,"icon":"/assets/ui/spells/achievement_featsofstrength_gladiator_08.png","sigil":"MR","description":"Increases the duration of Standard of Valiance and Broad Sweep by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300543,"level":1,"description":"Increases the duration of Standard of Valiance and Broad Sweep by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29970},{"id":"coa-tree-34404","classId":"guardian","dbcSpellId":705315,"name":"Master of Arms","unlockLevel":1,"icon":"/assets/ui/spells/novart_passivemastery_(35)_border.png","sigil":"MO","description":"Your Turn the Blade now guarantees you to parry 1 additional attack and the duration of its parry window is increased by 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705315,"level":1,"description":"Your Turn the Blade now guarantees you to parry 1 additional attack and the duration of its parry window is increased by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34404},{"id":"coa-tree-34415","classId":"guardian","dbcSpellId":503532,"name":"Myrmidon","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_challange.png","sigil":"MY","description":"Removes the Energy cost of Glorious Arena and increases its damage dealt by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503532,"level":1,"description":"Removes the Energy cost of Glorious Arena and increases its damage dealt by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34415},{"id":"coa-tree-29430","classId":"guardian","dbcSpellId":802304,"name":"Net Throw","unlockLevel":1,"icon":"/assets/ui/spells/ability_ensnare.png","sigil":"NT","description":"Toss a weighted net at an enemy that roots them for 4 seconds. While active, the target cannot dodge attacks.","target":"hostile","range":{"min":0,"max":15},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802304,"level":1,"description":"Toss a weighted net at an enemy that roots them for 4 seconds. While active, the target cannot dodge attacks.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]}],"talentEntryId":29430},{"id":"coa-tree-7311","classId":"guardian","dbcSpellId":802296,"name":"Pit Fighter","unlockLevel":1,"icon":"/assets/ui/spells/spell_warrior_gladiatorstance.png","sigil":"PF","description":"Increases the movement speed slow of your Standard of Valiance by -15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":802296,"level":1,"description":"Increases the movement speed slow of your Standard of Valiance by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7311},{"id":"coa-tree-34403","classId":"guardian","dbcSpellId":801219,"name":"Press the Attack","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(50)_border.png","sigil":"PT","description":"Raise your shield and press the attack, dealing 75% Weapon Damage plus 83 to enemies in front of you and draining 10 Energy every 1 sec. Lasts 5 seconds. While active you gain 100% increased block chance and you may block, dodge, and parry while channeling.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"channel","castTimeMs":5000,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":263,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801218,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801219,"level":1,"description":"Raise your shield and press the attack, dealing 75% Weapon Damage plus 83 to enemies in front of you and draining 10 Energy every 1 sec. Lasts 5 seconds. While active you gain 100% increased block chance and you may block, dodge, and parry while channeling.","castMode":"channel","castTimeMs":5000,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":263,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801218,"durationMs":5000}]}],"talentEntryId":34403},{"id":"coa-tree-6817","classId":"guardian","dbcSpellId":300542,"name":"Press the Line!","unlockLevel":1,"icon":"/assets/ui/spells/5_archerskill20_border.png","sigil":"PT","description":"While Line Formation is active, your movement speed cannot be reduced below 115%, but its cost is increased by 30 Energy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300542,"level":1,"description":"While Line Formation is active, your movement speed cannot be reduced below 115%, but its cost is increased by 30 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6817},{"id":"coa-18-pulverize-69-800311","classId":"guardian","dbcSpellId":800311,"name":"Pulverize","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_shieldbash.png","sigil":"PU","description":"PulverizeRank 145 Energy InstantRequires Shields Slam an enemy with your shield, dealing 3+0+AP*0.355 Physical damage.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.08333333333333333,"basePoints":3,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800311,"level":1,"description":"PulverizeRank 145 Energy InstantRequires Shields Slam an enemy with your shield, dealing 3+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.08333333333333333,"basePoints":3,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":2,"spellId":802439,"level":8,"description":"PulverizeRank 245 Energy InstantRequires Shields Slam an enemy with your shield, dealing 8+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.13043478260869565,"basePoints":8,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":14},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":3,"spellId":802440,"level":16,"description":"PulverizeRank 345 Energy InstantRequires Shields Slam an enemy with your shield, dealing 28+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.3225806451612903,"basePoints":28,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":4,"spellId":802441,"level":24,"description":"PulverizeRank 445 Energy InstantRequires Shields Slam an enemy with your shield, dealing 47+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.4188034188034188,"basePoints":47,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":5,"spellId":802442,"level":32,"description":"PulverizeRank 545 Energy InstantRequires Shields Slam an enemy with your shield, dealing 77+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.549645390070922,"basePoints":77,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":6,"spellId":802443,"level":40,"description":"PulverizeRank 645 Energy InstantRequires Shields Slam an enemy with your shield, dealing 122+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.7424242424242424,"basePoints":122,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":7,"spellId":573286,"level":50,"description":"PulverizeRank 745 Energy InstantRequires Shields Slam an enemy with your shield, dealing 196+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1.0076923076923077,"basePoints":196,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":8,"spellId":573292,"level":60,"description":"PulverizeRank 845 Energy InstantRequires Shields Slam an enemy with your shield, dealing 314+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1.3955555555555557,"basePoints":314,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]}]},{"id":"guardian-raise-shield","classId":"guardian","dbcSpellId":500168,"name":"Raise Shield","unlockLevel":1,"icon":"/assets/ui/spells/custom_17_shield_border.png","sigil":"RS","description":"Raise your shield to absorb the next assault.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"shield","coefficient":1.9,"durationMs":12000}],"source":"coa-starter"},{"id":"coa-tree-29996","classId":"guardian","dbcSpellId":801121,"name":"Recuperation","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_shielded.png","sigil":"RE","description":"Taking Physical damage or blocking a physical attack now restores 2 Energy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803135,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801121,"level":1,"description":"Taking Physical damage or blocking a physical attack now restores 2 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803135,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29996},{"id":"coa-tree-6363","classId":"guardian","dbcSpellId":300927,"name":"Reflective Shield","unlockLevel":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0003s_0000_fire_border.png","sigil":"RS","description":"Raise your shield and reflect the next harmful spell cast on you within 3 seconds. While active, being hit by a spell restores 20 Energy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":500256,"durationMs":3000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":300927,"level":1,"description":"Raise your shield and reflect the next harmful spell cast on you within 3 seconds. While active, being hit by a spell restores 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":500256,"durationMs":3000}]}],"talentEntryId":6363},{"id":"coa-tree-29427","classId":"guardian","dbcSpellId":804892,"name":"Refuse To Die","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate.png","sigil":"RT","description":"Casting Advance now resets the cooldown of Raise Shield.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807191,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804892,"level":1,"description":"Casting Advance now resets the cooldown of Raise Shield.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807191,"durationMs":-1}]}],"talentEntryId":29427},{"id":"coa-tree-34425","classId":"guardian","dbcSpellId":705343,"name":"Relentless","unlockLevel":1,"icon":"/assets/ui/spells/garrison_building_salvageyard.png","sigil":"RE","description":"Your Pulverizes or Rams now ignores -15% of the target's Armor.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":13,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705343,"level":1,"description":"Your Pulverizes or Rams now ignores -15% of the target's Armor.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":13,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34425},{"id":"coa-tree-6818","classId":"guardian","dbcSpellId":706806,"name":"Resolve","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_gladiatorsresolve.png","sigil":"RE","description":"Increases the duration of your Raise Shield by 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706806,"level":1,"description":"Increases the duration of your Raise Shield by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6818},{"id":"coa-tree-29639","classId":"guardian","dbcSpellId":705370,"name":"Shield Wall","unlockLevel":1,"icon":"/assets/ui/spells/ability_defend.png","sigil":"SW","description":"Increases your Armor contribution from your shield by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705370,"level":1,"description":"Increases your Armor contribution from your shield by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":707814,"level":1,"description":"Increases your Armor contribution from your shield by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29639},{"id":"coa-tree-29972","classId":"guardian","dbcSpellId":802198,"name":"Shrug It Off","unlockLevel":1,"icon":"/assets/ui/spells/5_warriorskill18_border.png","sigil":"SI","description":"Instantly escape the effects of any root or slow and become immune to movement slowing effects for 3 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":108,"auraType":0,"miscValue":7,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":11,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":3000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802198,"level":1,"description":"Instantly escape the effects of any root or slow and become immune to movement slowing effects for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":108,"auraType":0,"miscValue":7,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":11,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":3000}]}],"talentEntryId":29972},{"id":"coa-tree-29429","classId":"guardian","dbcSpellId":806134,"name":"Standard Bearer","unlockLevel":1,"icon":"/assets/ui/spells/inv_banner_02.png","sigil":"SB","description":"Increases the range of Standards by 10 yds and increases the effectiveness of your Honor by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806134,"level":1,"description":"Increases the range of Standards by 10 yds and increases the effectiveness of your Honor by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29429},{"id":"coa-tree-29796","classId":"guardian","dbcSpellId":500263,"name":"Standard of Rallying","unlockLevel":1,"icon":"/assets/ui/spells/standard_valiance.png","sigil":"SO","description":"Throw down a Standard of Rallying for 5 minutes, reducing damage taken by -3% and the duration of stun effects on them by -30% on all allies within 30 yds.","target":"hostile","range":{"min":0,"max":25},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50055,"triggerSpellId":0,"durationMs":300000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801504,"durationMs":300000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":300000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500263,"level":1,"description":"Throw down a Standard of Rallying for 5 minutes, reducing damage taken by -3% and the duration of stun effects on them by -30% on all allies within 30 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50055,"triggerSpellId":0,"durationMs":300000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801504,"durationMs":300000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":300000}]}],"talentEntryId":29796},{"id":"coa-tree-34427","classId":"guardian","dbcSpellId":706639,"name":"Sturdy","unlockLevel":1,"icon":"/assets/ui/spells/novart_shield_(3)_border.png","sigil":"ST","description":"Increases your maximum health by 6%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706639,"level":1,"description":"Increases your maximum health by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34427},{"id":"coa-18-sturdy-constitution-68-706335","classId":"guardian","dbcSpellId":706335,"name":"Sturdy Constitution","unlockLevel":1,"icon":"/assets/ui/spells/achievement_legionpvp6tier2.png","sigil":"SC","description":"Sturdy ConstitutionRank 2Increases Strength and Stamina by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706335,"level":1,"description":"Sturdy ConstitutionRank 2Increases Strength and Stamina by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4021","classId":"guardian","dbcSpellId":92107,"name":"Tempo","unlockLevel":1,"icon":"/assets/ui/spells/achievement_guildperk_everyones_a_hero.png","sigil":"TE","description":"Level 10 Passive Casting Ballads now grants Tempo, stacking 3 times. Upon reaching 3 stacks of Tempo, you consume them to perform a Sound of War, striking all enemies within 8 yds for 71 + 12.74% AP Magic damage.Tempo (Proc)Critical strike chance increased by 2%, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":42,"miscValue":0,"triggerSpellId":572611,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92107,"level":1,"description":"Level 10 Passive Casting Ballads now grants Tempo, stacking 3 times. Upon reaching 3 stacks of Tempo, you consume them to perform a Sound of War, striking all enemies within 8 yds for 71 + 12.74% AP Magic damage.Tempo (Proc)Critical strike chance increased by 2%, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":42,"miscValue":0,"triggerSpellId":572611,"durationMs":-1}]}],"talentEntryId":4021},{"id":"coa-tree-34405","classId":"guardian","dbcSpellId":807346,"name":"Thick Shields","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_1h_newplayer_a_01.png","sigil":"TS","description":"Increases your block value by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":150,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807346,"level":1,"description":"Increases your block value by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":150,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":34405},{"id":"coa-tree-29971","classId":"guardian","dbcSpellId":704513,"name":"Unstoppable","unlockLevel":1,"icon":"/assets/ui/spells/_d3furiouscharge.png","sigil":"UN","description":"Reduces the cooldown of Battle Rush by -5 sec and Advance by -30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704513,"level":1,"description":"Reduces the cooldown of Battle Rush by -5 sec and Advance by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29971},{"id":"coa-tree-30100","classId":"guardian","dbcSpellId":524694,"name":"Valiant Warrior","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_shielded.png","sigil":"VW","description":"Critical strikes with Ram now have a 50% chance to strike again for 100% of the damage dealt.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":524091,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524694,"level":1,"description":"Critical strikes with Ram now have a 50% chance to strike again for 100% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":524091,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30100},{"id":"coa-tree-30059","classId":"guardian","dbcSpellId":705330,"name":"Warstopper","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_thunderstruck.png","sigil":"WA","description":"Reduces the Energy cost of Standard of Valiance by -20.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705330,"level":1,"description":"Reduces the Energy cost of Standard of Valiance by -20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30059},{"id":"guardian-ram","classId":"guardian","dbcSpellId":802284,"name":"Ram","unlockLevel":2,"icon":"/assets/ui/spells/novart_passivemastery_(11)_border.png","sigil":"RA","description":"RamRank 130 Energy Instant10 sec cooldownRequires Shields Ram an enemy with your shield, dealing 9+0+AP*0.385 Physical damage, scaling with your block value, and reduces the target's Armor by 4% for 20 sec, stacking up to 5 times.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.18627450980392157,"basePoints":9,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":8},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807179,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":802284,"level":2,"description":"RamRank 130 Energy Instant10 sec cooldownRequires Shields Ram an enemy with your shield, dealing 9+0+AP*0.385 Physical damage, scaling with your block value, and reduces the target's Armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.18627450980392157,"basePoints":9,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":8},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807179,"durationMs":0}]}]},{"id":"coa-18-reprisal-69-800316","classId":"guardian","dbcSpellId":800316,"name":"Reprisal","unlockLevel":6,"icon":"/assets/ui/spells/inv_sword_29.png","sigil":"RE","description":"ReprisalRank 1InstantRequires Melee Weapon 2 Charges, 6 sec recharge Counterattack an enemy, dealing 105% Weapon Damage plus 12 and restoring 20 Energy. Only usable after blocking an attack.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800316,"level":6,"description":"ReprisalRank 1InstantRequires Melee Weapon 2 Charges, 6 sec recharge Counterattack an enemy, dealing 105% Weapon Damage plus 12 and restoring 20 Energy. Only usable after blocking an attack.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-18-broad-sweep-69-805150","classId":"guardian","dbcSpellId":805150,"name":"Broad Sweep","unlockLevel":8,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BS","description":"Broad SweepRank 150 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 70% Weapon Damage plus 6 and reduces their attack power by 25 for 10 sec.","target":"self","range":{"min":0,"max":0},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805150,"level":8,"description":"Broad SweepRank 150 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 70% Weapon Damage plus 6 and reduces their attack power by 25 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":2,"spellId":504177,"level":16,"description":"Broad SweepRank 250 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 70% Weapon Damage plus 9 and reduces their attack power by 50 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":504178,"level":24,"description":"Broad SweepRank 350 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 75% Weapon Damage plus 14 and reduces their attack power by 95 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":504179,"level":32,"description":"Broad SweepRank 450 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 75% Weapon Damage plus 23 and reduces their attack power by 140 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":504180,"level":40,"description":"Broad SweepRank 550 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 80% Weapon Damage plus 32 and reduces their attack power by 175 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":504181,"level":48,"description":"Broad SweepRank 650 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 80% Weapon Damage plus 43 and reduces their attack power by 200 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":504182,"level":56,"description":"Broad SweepRank 750 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 85% Weapon Damage plus 56 and reduces their attack power by 225 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":121,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-18-ballad-of-the-conqueror-68-801776","classId":"guardian","dbcSpellId":801776,"name":"Ballad of the Conqueror","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_drum_06.png","sigil":"BO","description":"Ballad of the ConquerorRank 140 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 12+0+AP*.3 Magic damage to an enemy, ignoring resistances.","target":"hostile","range":{"min":0,"max":5},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.17333333333333334,"basePoints":12,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801776,"level":10,"description":"Ballad of the ConquerorRank 140 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 12+0+AP*.3 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.17333333333333334,"basePoints":12,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501068,"level":16,"description":"Ballad of the ConquerorRank 240 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 22+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.24193548387096775,"basePoints":22,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501069,"level":22,"description":"Ballad of the ConquerorRank 340 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 32+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.2972972972972973,"basePoints":32,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501070,"level":28,"description":"Ballad of the ConquerorRank 440 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 48+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.4069767441860465,"basePoints":48,"dieSides":10,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501071,"level":34,"description":"Ballad of the ConquerorRank 540 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 70+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.5204081632653061,"basePoints":70,"dieSides":14,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501072,"level":40,"description":"Ballad of the ConquerorRank 640 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 98+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.6515151515151515,"basePoints":98,"dieSides":20,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501073,"level":46,"description":"Ballad of the ConquerorRank 740 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 137+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.8224043715846995,"basePoints":137,"dieSides":28,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501074,"level":52,"description":"Ballad of the ConquerorRank 840 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 191+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.044776119402985,"basePoints":191,"dieSides":39,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":574340,"level":58,"description":"Ballad of the ConquerorRank 940 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 266+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.3356164383561644,"basePoints":266,"dieSides":54,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524797,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-18-ballad-of-the-dragonslayer-68-801772","classId":"guardian","dbcSpellId":801772,"name":"Ballad of the Dragonslayer","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_drum_07.png","sigil":"BO","description":"Ballad of the DragonslayerRank 150 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 7+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 25 for 10 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.1,"basePoints":7,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801772,"level":10,"description":"Ballad of the DragonslayerRank 150 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 7+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 25 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.1,"basePoints":7,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":2,"spellId":501066,"level":16,"description":"Ballad of the DragonslayerRank 250 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 13+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 40 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.13978494623655913,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":501067,"level":22,"description":"Ballad of the DragonslayerRank 350 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 19+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 70 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.17567567567567569,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":6,"auraType":344,"miscValue":17,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":572717,"level":28,"description":"Ballad of the DragonslayerRank 450 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 29+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 100 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.2441860465116279,"basePoints":29,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":6,"auraType":344,"miscValue":17,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":572718,"level":34,"description":"Ballad of the DragonslayerRank 550 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 43+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 125 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.3163265306122449,"basePoints":43,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":6,"auraType":344,"miscValue":17,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":572719,"level":40,"description":"Ballad of the DragonslayerRank 650 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 59+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 160 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.39090909090909093,"basePoints":59,"dieSides":12,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"utility","effectType":6,"auraType":344,"miscValue":17,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":574341,"level":46,"description":"Ballad of the DragonslayerRank 750 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 83+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 180 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.4972677595628415,"basePoints":83,"dieSides":17,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":6,"auraType":344,"miscValue":17,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":8,"spellId":574363,"level":52,"description":"Ballad of the DragonslayerRank 850 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 114+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 200 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.6218905472636815,"basePoints":114,"dieSides":23,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":6,"auraType":344,"miscValue":17,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":9,"spellId":574364,"level":58,"description":"Ballad of the DragonslayerRank 950 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 158+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 225 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.7922374429223744,"basePoints":158,"dieSides":32,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"utility","effectType":6,"auraType":344,"miscValue":17,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-tree-4019","classId":"guardian","dbcSpellId":92105,"name":"Footman's Calling","unlockLevel":10,"icon":"/assets/ui/spells/_human_06.png","sigil":"FS","description":"Level 10 Passive Your damage taken is reduced by -10% while Tower Formation or Line Formation is active. In addition, your threat generated from Physical Damage dealt is increased significantly while Tower Formation or Line Formation is active.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92105,"level":10,"description":"Level 10 Passive Your damage taken is reduced by -10% while Tower Formation or Line Formation is active. In addition, your threat generated from Physical Damage dealt is increased significantly while Tower Formation or Line Formation is active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4019},{"id":"coa-tree-4020","classId":"guardian","dbcSpellId":92106,"name":"Glory","unlockLevel":10,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0001s_0000_warrior_border.png","sigil":"GL","description":"Level 10 Passive Your Ram now grants you a stack of Glory for 30 seconds. At 3 stacks, your next Ram within 30 seconds deals 150% increased damage.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":802302,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":542238,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":542265,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92106,"level":10,"description":"Level 10 Passive Your Ram now grants you a stack of Glory for 30 seconds. At 3 stacks, your next Ram within 30 seconds deals 150% increased damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":802302,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":542238,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":542265,"durationMs":-1}]}],"talentEntryId":4020},{"id":"guardian-heavy-blow","classId":"guardian","dbcSpellId":803129,"name":"Heavy Blow","unlockLevel":11,"icon":"/assets/ui/spells/spell_paladin_hammerofwrath.png","sigil":"HB","description":"Heavy BlowRank 1Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 23+0+AP*0.45 High Threat Physical damage, scaling with defense rating.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":23,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0.75,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":803129,"level":11,"description":"Heavy BlowRank 1Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 23+0+AP*0.45 High Threat Physical damage, scaling with defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":23,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0.75,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]},{"rank":2,"spellId":503119,"level":18,"description":"Heavy BlowRank 2Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 44+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.45454545454545453,"basePoints":44,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]},{"rank":3,"spellId":503120,"level":26,"description":"Heavy BlowRank 3Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 68+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.573170731707317,"basePoints":68,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]},{"rank":4,"spellId":503121,"level":34,"description":"Heavy BlowRank 4Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 106+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.7517006802721088,"basePoints":106,"dieSides":10,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]},{"rank":5,"spellId":503122,"level":42,"description":"Heavy BlowRank 5Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 141+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.8742690058479532,"basePoints":141,"dieSides":18,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]},{"rank":6,"spellId":503123,"level":50,"description":"Heavy BlowRank 6Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 226+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1.2282051282051283,"basePoints":226,"dieSides":28,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]},{"rank":7,"spellId":503124,"level":58,"description":"Heavy BlowRank 7Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 282+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1.3675799086757991,"basePoints":282,"dieSides":36,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]},{"rank":8,"spellId":503125,"level":60,"description":"Heavy BlowRank 8Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 357+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1.6866666666666668,"basePoints":357,"dieSides":46,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]},{"rank":9,"spellId":503126,"level":68,"description":"Heavy BlowRank 9Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 564+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":2.4076305220883536,"basePoints":564,"dieSides":72,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76},{"kind":"utility","effectType":63,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803131,"durationMs":0}]}]},{"id":"coa-18-brace-67-501528","classId":"guardian","dbcSpellId":501528,"name":"Brace","unlockLevel":14,"icon":"/assets/ui/spells/ability_warrior_safeguard.png","sigil":"BR","description":"BraceRank 2999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802892,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":37,"miscValue":98,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501528,"level":14,"description":"BraceRank 2999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802892,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":37,"miscValue":98,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":501529,"level":21,"description":"BraceRank 3999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802892,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":37,"miscValue":98,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":501530,"level":31,"description":"BraceRank 4999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802892,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":37,"miscValue":98,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":501531,"level":41,"description":"BraceRank 5999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802892,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":37,"miscValue":98,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":501532,"level":51,"description":"BraceRank 6999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802892,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":37,"miscValue":98,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":501533,"level":61,"description":"BraceRank 7999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802892,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":37,"miscValue":98,"triggerSpellId":0,"durationMs":10000}]},{"rank":8,"spellId":501534,"level":71,"description":"BraceRank 8999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":802892,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":37,"miscValue":98,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-18-hammer-of-kings-67-803132","classId":"guardian","dbcSpellId":803132,"name":"Hammer of Kings","unlockLevel":15,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyhammer_border.png","sigil":"HO","description":"Hammer of KingsRank 140 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 76+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.800000011920929,"basePoints":76,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":15,"maxScalingLevel":20},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803132,"level":15,"description":"Hammer of KingsRank 140 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 76+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.800000011920929,"basePoints":76,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":15,"maxScalingLevel":20},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503127,"level":22,"description":"Hammer of KingsRank 240 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 97+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.9144144144144144,"basePoints":97,"dieSides":10,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":27},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503128,"level":29,"description":"Hammer of KingsRank 340 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 126+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.053030303030303,"basePoints":126,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503129,"level":36,"description":"Hammer of KingsRank 440 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 164+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.1993464052287581,"basePoints":164,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":41},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503130,"level":43,"description":"Hammer of KingsRank 540 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 212+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.3764367816091954,"basePoints":212,"dieSides":56,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503131,"level":50,"description":"Hammer of KingsRank 640 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 275+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.594871794871795,"basePoints":275,"dieSides":73,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":55},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503132,"level":57,"description":"Hammer of KingsRank 740 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 358+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.8773148148148149,"basePoints":358,"dieSides":96,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":62},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503133,"level":64,"description":"Hammer of KingsRank 840 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 464+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":2.2130801687763713,"basePoints":464,"dieSides":122,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":69},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":503134,"level":71,"description":"Hammer of KingsRank 940 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 603+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":2.62984496124031,"basePoints":603,"dieSides":152,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":78},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-18-advance-487-500170","classId":"guardian","dbcSpellId":500170,"name":"Advance","unlockLevel":20,"icon":"/assets/ui/spells/_d3sprint.png","sigil":"AD","description":"AdvanceRank 1Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement-impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 66+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500170,"level":20,"description":"AdvanceRank 1Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement-impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 66+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":2,"spellId":503344,"level":26,"description":"AdvanceRank 2Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 118+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":3,"spellId":503345,"level":32,"description":"AdvanceRank 3Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 199+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":4,"spellId":503346,"level":38,"description":"AdvanceRank 4Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 266+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":5,"spellId":503347,"level":44,"description":"AdvanceRank 5Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 355+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":6,"spellId":503348,"level":50,"description":"AdvanceRank 6Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 456+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":7,"spellId":503349,"level":56,"description":"AdvanceRank 7Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 572+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":8,"spellId":503350,"level":60,"description":"AdvanceRank 8Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 645+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":9,"spellId":503351,"level":62,"description":"AdvanceRank 9Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 801+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":801160,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}]},{"id":"coa-tree-4718","classId":"guardian","dbcSpellId":804046,"name":"Bulwark","unlockLevel":20,"icon":"/assets/ui/spells/inv_shield_06.png","sigil":"BU","description":"Level 20 Passive Increases your block value by 25% and your hit rating by 5% of your Stamina.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":150,"miscValue":16,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":224,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804046,"level":20,"description":"Level 20 Passive Increases your block value by 25% and your hit rating by 5% of your Stamina.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":150,"miscValue":16,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":224,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4718},{"id":"coa-18-shield-of-denial-487-704159","classId":"guardian","dbcSpellId":704159,"name":"Shield of Denial","unlockLevel":20,"icon":"/assets/ui/spells/inv_shield_64.png","sigil":"SO","description":"Shield of DenialRank 115 Energy Instant30 sec cooldownToss a shield at an enemy that bounces to up 2 nearby enemies, dealing 55+0+AP*.33 Physical damage and interrupting their spellcast, preventing any spell from that school of magic from being cast for 3 sec.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":68,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"damage","coefficient":0.7619047619047619,"basePoints":55,"dieSides":1,"pointsPerLevel":1.25,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":704159,"level":20,"description":"Shield of DenialRank 115 Energy Instant30 sec cooldownToss a shield at an enemy that bounces to up 2 nearby enemies, dealing 55+0+AP*.33 Physical damage and interrupting their spellcast, preventing any spell from that school of magic from being cast for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":68,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"damage","coefficient":0.7619047619047619,"basePoints":55,"dieSides":1,"pointsPerLevel":1.25,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24}]}]},{"id":"coa-tree-4220","classId":"guardian","dbcSpellId":524885,"name":"Shield Training","unlockLevel":20,"icon":"/assets/ui/spells/inv_shield_20.png","sigil":"ST","description":"Level 20 Passive Increases your block rating by 10% of your Strength.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":16,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524885,"level":20,"description":"Level 20 Passive Increases your block rating by 10% of your Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":16,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4220},{"id":"coa-18-freedom-68-503222","classId":"guardian","dbcSpellId":503222,"name":"Freedom","unlockLevel":28,"icon":"/assets/ui/spells/ability_pvp_gladiatormedallion.png","sigil":"FR","description":"FreedomRank 230 Energy Instant40 sec cooldownInstantly breaks an ally free of any stun or snare effects and grants immunity to such effects for 5 sec. Dispels 2 harmful magic effects from the ally.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":12,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503222,"level":28,"description":"FreedomRank 230 Energy Instant40 sec cooldownInstantly breaks an ally free of any stun or snare effects and grants immunity to such effects for 5 sec. Dispels 2 harmful magic effects from the ally.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":12,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":5000}]},{"rank":3,"spellId":503223,"level":54,"description":"FreedomRank 330 Energy Instant40 sec cooldownInstantly breaks an ally free of any stun or snare effects and grants immunity to such effects for 5 sec. Dispels 2 harmful magic effects from the ally.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":12,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":5000}]}]},{"id":"coa-tree-12224","classId":"guardian","dbcSpellId":707633,"name":"Experienced Combatant","unlockLevel":30,"icon":"/assets/ui/spells/5_assassinskill06_border.png","sigil":"EC","description":"Level 30 Passive Increases your attack power by 20% of your Strength.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":268,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707633,"level":30,"description":"Level 30 Passive Increases your attack power by 20% of your Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":268,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12224},{"id":"coa-tree-4716","classId":"guardian","dbcSpellId":705331,"name":"Iron Barrier","unlockLevel":30,"icon":"/assets/ui/spells/inv_shoulder_plate_pvpwarrior_c_01.png","sigil":"IB","description":"Level 30 Passive Your successful blocks now have a 50% chance to critically block for twice the normal amount.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":253,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705331,"level":30,"description":"Level 30 Passive Your successful blocks now have a 50% chance to critically block for twice the normal amount.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":253,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4716},{"id":"coa-18-inspiring-speech-68-503217","classId":"guardian","dbcSpellId":503217,"name":"Inspiring Speech","unlockLevel":37,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0010s_0000_light-1_border.png","sigil":"IS","description":"Inspiring SpeechRank 535 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","target":"hostile","range":{"min":0,"max":15},"radius":40,"castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803962,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":5,"spellId":503217,"level":37,"description":"Inspiring SpeechRank 535 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803962,"durationMs":0}]},{"rank":6,"spellId":503218,"level":45,"description":"Inspiring SpeechRank 635 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803962,"durationMs":0}]},{"rank":7,"spellId":503219,"level":54,"description":"Inspiring SpeechRank 735 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803962,"durationMs":0}]},{"rank":8,"spellId":503220,"level":63,"description":"Inspiring SpeechRank 835 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803962,"durationMs":0}]},{"rank":9,"spellId":503221,"level":72,"description":"Inspiring SpeechRank 935 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803962,"durationMs":0}]}]},{"id":"coa-tree-4710","classId":"guardian","dbcSpellId":570713,"name":"Experienced Soldier","unlockLevel":40,"icon":"/assets/ui/spells/ability_golemthunderclap.png","sigil":"ES","description":"Level 40 Passive Melee attacks now reduce the cooldown of Brace by -1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704414,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":570713,"level":40,"description":"Level 40 Passive Melee attacks now reduce the cooldown of Brace by -1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704414,"durationMs":-1}]}],"talentEntryId":4710},{"id":"coa-tree-4224","classId":"guardian","dbcSpellId":807297,"name":"Shield Combat","unlockLevel":40,"icon":"/assets/ui/spells/ability_warrior_victoryrush.png","sigil":"SC","description":"Level 40 Passive Casting Ram and Pulverize now increases your attack power based on your block rating for 6 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":705381,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807297,"level":40,"description":"Level 40 Passive Casting Ram and Pulverize now increases your attack power based on your block rating for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":705381,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4224},{"id":"coa-18-counter-stance-67-501536","classId":"guardian","dbcSpellId":501536,"name":"Counter Stance","unlockLevel":41,"icon":"/assets/ui/spells/ability_warrior_vigilance.png","sigil":"CS","description":"Counter StanceRank 3Instant1 min cooldownRequires Shields You are granted 8 charges of Counter Stance, increasing your chance to block by 15% and your block value by 20% for 15 sec and dealing 125 to 168 damage to attackers whenever you take Physical Damage or block a physical attack. Each attack expends a charge.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":150,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":501536,"level":41,"description":"Counter StanceRank 3Instant1 min cooldownRequires Shields You are granted 8 charges of Counter Stance, increasing your chance to block by 15% and your block value by 20% for 15 sec and dealing 125 to 168 damage to attackers whenever you take Physical Damage or block a physical attack. Each attack expends a charge.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":150,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":501537,"level":61,"description":"Counter StanceRank 4Instant1 min cooldownRequires Shields You are granted 8 charges of Counter Stance, increasing your chance to block by 15% and your block value by 20% for 15 sec and dealing 304 to 388 damage to attackers whenever you take Physical Damage or block a physical attack. Each attack expends a charge.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":150,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-tree-4225","classId":"guardian","dbcSpellId":704322,"name":"Favor","unlockLevel":50,"icon":"/assets/ui/spells/warrior_talent_icon_angermanagement.png","sigil":"FA","description":"Level 50 Passive Critical strikes and killing blows now grant you Favor for 1 minute, stacking 20 times. At 20 stacks, your next auto attack deals an additional 500% Weapon Damage, consuming the stacks.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707821,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704322,"level":50,"description":"Level 50 Passive Critical strikes and killing blows now grant you Favor for 1 minute, stacking 20 times. At 20 stacks, your next auto attack deals an additional 500% Weapon Damage, consuming the stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707821,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4225},{"id":"coa-tree-12710","classId":"guardian","dbcSpellId":707621,"name":"High Guard","unlockLevel":50,"icon":"/assets/ui/spells/custom_warriorskill_03_border.png","sigil":"HG","description":"Level 50 Passive After using Raise Shield, Advance or Battle Rush, you are granted High Guard.High Guard (Buff)Your next Heavy Blow within 15 seconds triggers no cooldown and allows the use of Reprisal as if you had recently blocked an attack.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504586,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707621,"level":50,"description":"Level 50 Passive After using Raise Shield, Advance or Battle Rush, you are granted High Guard.High Guard (Buff)Your next Heavy Blow within 15 seconds triggers no cooldown and allows the use of Reprisal as if you had recently blocked an attack.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504586,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12710},{"id":"coa-18-hammer-of-kings-500-503134","classId":"guardian","dbcSpellId":503134,"name":"Hammer of Kings","unlockLevel":71,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyhammer_border.png","sigil":"HO","description":"Hammer of KingsRank 940 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 603+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":2.62984496124031,"basePoints":603,"dieSides":152,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":78},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":9,"spellId":503134,"level":71,"description":"Hammer of KingsRank 940 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 603+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":2.62984496124031,"basePoints":603,"dieSides":152,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":78},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]}],"templar":[{"id":"coa-19-alertness-71-706321","classId":"templar","dbcSpellId":706321,"name":"Alertness","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_powerinfusion.png","sigil":"AL","description":"AlertnessRank 1Reduces damage taken by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706321,"level":1,"description":"AlertnessRank 1Reduces damage taken by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706322,"level":1,"description":"AlertnessRank 2Reduces Physical Damage taken by 4% and increases the range of Benediction by 10 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34375","classId":"templar","dbcSpellId":801457,"name":"Binding Scripture","unlockLevel":1,"icon":"/assets/ui/spells/_d3breathofheaven.png","sigil":"BS","description":"Healing an ally now redirects 10% of their damage taken to you and reduces your damage taken by -5% for 10 seconds, stacking 3 times.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":705309,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801457,"level":1,"description":"Healing an ally now redirects 10% of their damage taken to you and reduces your damage taken by -5% for 10 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":705309,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34375},{"id":"coa-tree-29704","classId":"templar","dbcSpellId":803872,"name":"Blade of Faith","unlockLevel":1,"icon":"/assets/ui/spells/holy_blade_templar.png","sigil":"BO","description":"Unleash a devastating Oath Breaker on an enemy dealing 119 + 140% SP + 70% AP Holy damage over 21 seconds. This ability can critically strike. Consumes your Oaths, dealing additional damage for each consumed.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"dot","coefficient":0.2709999978542328,"basePoints":17,"dieSides":1,"pointsPerLevel":0.25,"bonusPowerCoefficient":0.2709999978542328,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000,"tag":"spell-803872"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803872,"level":1,"description":"Unleash a devastating Oath Breaker on an enemy dealing 119 + 140% SP + 70% AP Holy damage over 21 seconds. This ability can critically strike. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"dot","coefficient":0.2709999978542328,"basePoints":17,"dieSides":1,"pointsPerLevel":0.25,"bonusPowerCoefficient":0.2709999978542328,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000,"tag":"spell-803872"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]}],"talentEntryId":29704},{"id":"coa-tree-34395","classId":"templar","dbcSpellId":301311,"name":"Blessed Padding","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_powerwordshield.png","sigil":"BP","description":"Increases your Armor contribution from mail items by 50% and reduces damage taken from area of effect attacks by -10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":229,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301311,"level":1,"description":"Increases your Armor contribution from mail items by 50% and reduces damage taken from area of effect attacks by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":229,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":301360,"level":1,"description":"Increases your Armor contribution from mail items by 100% and reduces damage taken from area of effect attacks by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":229,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34395},{"id":"coa-tree-29714","classId":"templar","dbcSpellId":704180,"name":"Blessed Strikes","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_vindication.png","sigil":"BS","description":"Reduces the Energy cost of your Oath Breakers by -10.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704180,"level":1,"description":"Reduces the Energy cost of your Oath Breakers by -10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29714},{"id":"coa-19-chastise-494-803157","classId":"templar","dbcSpellId":803157,"name":"Chastise","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CH","description":"ChastiseRank 125 Energy InstantUnleash an Oath Breaker, blasting an enemy for 10+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","target":"hostile","range":{"min":0,"max":15},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.23697916666666666,"basePoints":10,"dieSides":3,"pointsPerLevel":0.375,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803157,"level":1,"description":"ChastiseRank 125 Energy InstantUnleash an Oath Breaker, blasting an enemy for 10+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.23697916666666666,"basePoints":10,"dieSides":3,"pointsPerLevel":0.375,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503135,"level":8,"description":"ChastiseRank 225 Energy InstantUnleash an Oath Breaker, blasting an enemy for 15+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.2840579696323561,"basePoints":15,"dieSides":3,"pointsPerLevel":0.44999998807907104,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503136,"level":18,"description":"ChastiseRank 325 Energy InstantUnleash an Oath Breaker, blasting an enemy for 32+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.48888889105633054,"basePoints":32,"dieSides":5,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503137,"level":26,"description":"ChastiseRank 425 Energy InstantUnleash an Oath Breaker, blasting an enemy for 68+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.7463414659345053,"basePoints":68,"dieSides":7,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503138,"level":34,"description":"ChastiseRank 525 Energy InstantUnleash an Oath Breaker, blasting an enemy for 101+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.9489795918367347,"basePoints":101,"dieSides":10,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503139,"level":42,"description":"ChastiseRank 625 Energy InstantUnleash an Oath Breaker, blasting an enemy for 151+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":1.2616959064327486,"basePoints":151,"dieSides":15,"pointsPerLevel":1.375,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503140,"level":50,"description":"ChastiseRank 725 Energy InstantUnleash an Oath Breaker, blasting an enemy for 226+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":1.6,"basePoints":226,"dieSides":23,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":58},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503141,"level":60,"description":"ChastiseRank 825 Energy InstantUnleash an Oath Breaker, blasting an enemy for 338+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":1.9755555555555555,"basePoints":338,"dieSides":34,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-19-combat-training-70-706319","classId":"templar","dbcSpellId":706319,"name":"Combat Training","unlockLevel":1,"icon":"/assets/ui/spells/ability_monk_quipunch.png","sigil":"CT","description":"Combat TrainingRank 1Increases the effectiveness of Oaths by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706319,"level":1,"description":"Combat TrainingRank 1Increases the effectiveness of Oaths by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34341","classId":"templar","dbcSpellId":707754,"name":"Courage","unlockLevel":1,"icon":"/assets/ui/spells/ability_karoz_leap.png","sigil":"CO","description":"Increases your movement speed and reduces the duration of movement slowing effects on you by -10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707754,"level":1,"description":"Increases your movement speed and reduces the duration of movement slowing effects on you by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":712466,"level":1,"description":"Increases your movement speed and reduces the duration of movement slowing effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34341},{"id":"coa-tree-5156","classId":"templar","dbcSpellId":705256,"name":"Determined","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_heroism.png","sigil":"DE","description":"Your Temple Guardian now makes your next ability within 5 seconds free of cost.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705256,"level":1,"description":"Your Temple Guardian now makes your next ability within 5 seconds free of cost.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5156},{"id":"coa-tree-31314","classId":"templar","dbcSpellId":806153,"name":"Divine Force","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_pathofdevout.png","sigil":"DF","description":"Leap at an enemy with divine force, stunning them for 6 seconds, dealing 20 + 100% SP + 55% AP Holy damage, and interrupting non-player spellcasting for 3 seconds.","target":"hostile","range":{"min":0,"max":15},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807890,"durationMs":0},{"kind":"utility","effectType":42,"auraType":0,"miscValue":28,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.36666666666666664,"basePoints":20,"dieSides":1,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806153,"level":1,"description":"Leap at an enemy with divine force, stunning them for 6 seconds, dealing 20 + 100% SP + 55% AP Holy damage, and interrupting non-player spellcasting for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807890,"durationMs":0},{"kind":"utility","effectType":42,"auraType":0,"miscValue":28,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.36666666666666664,"basePoints":20,"dieSides":1,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}]}],"talentEntryId":31314},{"id":"coa-19-fight-club-70-705269","classId":"templar","dbcSpellId":705269,"name":"Fight Club","unlockLevel":1,"icon":"/assets/ui/spells/5_paladinskill18_border.png","sigil":"FC","description":"Fight ClubRank 1Increases Physical damage dealt by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":166,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705269,"level":1,"description":"Fight ClubRank 1Increases Physical damage dealt by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":166,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705270,"level":1,"description":"Fight ClubRank 2Increases Physical Damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34349","classId":"templar","dbcSpellId":705268,"name":"Final Prayer","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedlife.png","sigil":"FP","description":"Doubles the healing done to you by Testament of Fortitude and Testament of Faith.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705268,"level":1,"description":"Doubles the healing done to you by Testament of Fortitude and Testament of Faith.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34349},{"id":"coa-19-flaming-edge-72-705257","classId":"templar","dbcSpellId":705257,"name":"Flaming Edge","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_volatilefire.png","sigil":"FE","description":"Flaming EdgeRank 1Causes enemies affected by Bladegrease to take 10% increased damage from Burning Thrust. Periodic damage of Flaming Blade of Lantresor increased by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705257,"level":1,"description":"Flaming EdgeRank 1Causes enemies affected by Bladegrease to take 10% increased damage from Burning Thrust. Periodic damage of Flaming Blade of Lantresor increased by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29259","classId":"templar","dbcSpellId":801481,"name":"Glory","unlockLevel":1,"icon":"/assets/ui/spells/_d3innersanctuary.png","sigil":"GL","description":"Bring glory to the holy light, increasing your attack speed by 30% for 5 seconds. After the duration, you gain Downfall. DownfallYou heal for 50% of all damage dealt for 5 seconds. After the duration, you gain Redemption.RedemptionIncreases attack speed by 30% and you heal for 50% of all damage dealt for 5 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":138,"miscValue":1,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801482,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801481,"level":1,"description":"Bring glory to the holy light, increasing your attack speed by 30% for 5 seconds. After the duration, you gain Downfall. DownfallYou heal for 50% of all damage dealt for 5 seconds. After the duration, you gain Redemption.RedemptionIncreases attack speed by 30% and you heal for 50% of all damage dealt for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":138,"miscValue":1,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801482,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}],"talentEntryId":29259},{"id":"coa-19-guidance-72-706324","classId":"templar","dbcSpellId":706324,"name":"Guidance","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_power.png","sigil":"GU","description":"GuidanceRank 2Increases Agility by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706324,"level":1,"description":"GuidanceRank 2Increases Agility by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34356","classId":"templar","dbcSpellId":524747,"name":"Holy Crusader","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holyring_border.png","sigil":"HC","description":"Reduces the cooldown of Divine Force by -30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524747,"level":1,"description":"Reduces the cooldown of Divine Force by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34356},{"id":"coa-19-honed-edge-72-706310","classId":"templar","dbcSpellId":706310,"name":"Honed Edge","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_fourblades.png","sigil":"HE","description":"Honed EdgeRank 1Increases the damage dealt by Follow Ups by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706310,"level":1,"description":"Honed EdgeRank 1Increases the damage dealt by Follow Ups by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34368","classId":"templar","dbcSpellId":705287,"name":"Improved Benediction","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_improvedresistanceauras.png","sigil":"IB","description":"Benediction now grants your target armor based on your Agility and Stamina for 15 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705287,"level":1,"description":"Benediction now grants your target armor based on your Agility and Stamina for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34368},{"id":"coa-19-improved-engrave-fists-70-705260","classId":"templar","dbcSpellId":705260,"name":"Improved Engrave Fists","unlockLevel":1,"icon":"/assets/ui/spells/inv__fistofthewhitetiger.png","sigil":"IE","description":"Improved Engrave FistsRank 1Engrave Fists grants an additional 10% of your Agility and Intellect as attack power.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":268,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705260,"level":1,"description":"Improved Engrave FistsRank 1Engrave Fists grants an additional 10% of your Agility and Intellect as attack power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":268,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-19-improved-engrave-fists-none-706316","classId":"templar","dbcSpellId":706316,"name":"Improved Engrave Fists","unlockLevel":1,"icon":"/assets/ui/spells/inv__fistofthewhitetiger.png","sigil":"IE","description":"Improved Engrave FistsRank 2Engrave Fists grants an additional 20% of your Agility and Intellect as attack power.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":268,"miscValue":3,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706316,"level":1,"description":"Improved Engrave FistsRank 2Engrave Fists grants an additional 20% of your Agility and Intellect as attack power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":268,"miscValue":3,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-19-improved-mend-ward-71-705310","classId":"templar","dbcSpellId":705310,"name":"Improved Mend Ward","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IM","description":"Improved Mend WardRank 1Reduces the cooldown of Mend Ward by 30 sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705310,"level":1,"description":"Improved Mend WardRank 1Reduces the cooldown of Mend Ward by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705311,"level":1,"description":"Improved Mend WardRank 2Reduces the cooldown of Mend Ward by 60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34347","classId":"templar","dbcSpellId":524767,"name":"Judgement of the Gods","unlockLevel":1,"icon":"/assets/ui/spells/custom_skill_161_border.png","sigil":"JO","description":"Increases the critical strike chance of Titanstrike by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524767,"level":1,"description":"Increases the critical strike chance of Titanstrike by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34347},{"id":"coa-tree-34377","classId":"templar","dbcSpellId":706359,"name":"Judicator","unlockLevel":1,"icon":"/assets/ui/spells/ability_thunderclap.png","sigil":"JU","description":"Increases your parry and dodge chance by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":47,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706359,"level":1,"description":"Increases your parry and dodge chance by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":47,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34377},{"id":"coa-tree-4023","classId":"templar","dbcSpellId":92109,"name":"Keeping the Oath","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_2h_nazmirraid_d_01.png","sigil":"KT","description":"Level 10 Passive You now delay 40% of direct damage taken, instead taking it over 8 seconds. In addition, you no longer consume your Oaths with Oath Breakers.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":200,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":202,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":681170,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92109,"level":1,"description":"Level 10 Passive You now delay 40% of direct damage taken, instead taking it over 8 seconds. In addition, you no longer consume your Oaths with Oath Breakers.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":200,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":202,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":681170,"durationMs":-1}]}],"talentEntryId":4023},{"id":"coa-19-lasting-markings-70-705262","classId":"templar","dbcSpellId":705262,"name":"Lasting Markings","unlockLevel":1,"icon":"/assets/ui/spells/70_inscription_vantus_rune_light.png","sigil":"LM","description":"Lasting MarkingsRank 1Increases the duration of Engrave Runes effects by 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705262,"level":1,"description":"Lasting MarkingsRank 1Increases the duration of Engrave Runes effects by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30611","classId":"templar","dbcSpellId":705266,"name":"Liberty","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_weaponscroll03.png","sigil":"LI","description":"Reduces the cooldown of your Libram spells by -30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":107,"miscValue":21,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705266,"level":1,"description":"Reduces the cooldown of your Libram spells by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":107,"miscValue":21,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30611},{"id":"coa-tree-5713","classId":"templar","dbcSpellId":805423,"name":"Libram of Fervor","unlockLevel":1,"icon":"/assets/ui/spells/_book2motif_tyr.png","sigil":"LO","description":"Read from your Libram of Fervor, granting you spell power equal to 30% of your Agility and attack power equal to 30% of your Intellect for 20 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":268,"miscValue":3,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":175,"miscValue":127,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805423,"level":1,"description":"Read from your Libram of Fervor, granting you spell power equal to 30% of your Agility and attack power equal to 30% of your Intellect for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":268,"miscValue":3,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":175,"miscValue":127,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":5713},{"id":"coa-tree-34340","classId":"templar","dbcSpellId":801461,"name":"Libram of Tenacity","unlockLevel":1,"icon":"/assets/ui/spells/_book2motif_lordaeroncorrupted.png","sigil":"LO","description":"Read from your Libram of Tenacity, reducing your Physical Damage taken by -30% for 20 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":16},{"kind":"utility","effectType":6,"auraType":87,"miscValue":1,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801461,"level":1,"description":"Read from your Libram of Tenacity, reducing your Physical Damage taken by -30% for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":16},{"kind":"utility","effectType":6,"auraType":87,"miscValue":1,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":34340},{"id":"coa-tree-29707","classId":"templar","dbcSpellId":804928,"name":"Mark of Aggramar","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_holyguidance.png","sigil":"MO","description":"Reduces the Energy cost of your Testaments by -50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804928,"level":1,"description":"Reduces the Energy cost of your Testaments by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29707},{"id":"coa-19-martial-paladin-70-705250","classId":"templar","dbcSpellId":705250,"name":"Martial Paladin","unlockLevel":1,"icon":"/assets/ui/spells/inv_glaive_1h_artifactaldrochi_d_01dual.png","sigil":"MP","description":"Martial PaladinRank 1Increases your Agility by 5% and your chance to hit by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705250,"level":1,"description":"Martial PaladinRank 1Increases your Agility by 5% and your chance to hit by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705251,"level":1,"description":"Martial PaladinRank 2Increases your Agility by 10% and your chance to hit by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29706","classId":"templar","dbcSpellId":300530,"name":"Martyr","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_fanaticism.png","sigil":"MA","description":"Increases the effectiveness of Gift of Zeal by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300530,"level":1,"description":"Increases the effectiveness of Gift of Zeal by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29706},{"id":"coa-19-power-in-holy-abdicationer-71-705267","classId":"templar","dbcSpellId":705267,"name":"Power In Holy Abdicationer","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedlife.png","sigil":"PI","description":"Power In Holy AbdicationerRank 1Reduces the cooldown of Holy Abdication by 2 sec and boosts its healing by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705267,"level":1,"description":"Power In Holy AbdicationerRank 1Reduces the cooldown of Holy Abdication by 2 sec and boosts its healing by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-19-powerful-strikes-72-705254","classId":"templar","dbcSpellId":705254,"name":"Powerful Strikes","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_2h_nazmirraid_d_01.png","sigil":"PS","description":"Powerful StrikesRank 1Increases the damage of Templar Strike by 5% and its critical strike chance by 2%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":705254,"level":1,"description":"Powerful StrikesRank 1Increases the damage of Templar Strike by 5% and its critical strike chance by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30063","classId":"templar","dbcSpellId":680953,"name":"Profound Enlightenment","unlockLevel":1,"icon":"/assets/ui/spells/nhi_corruptionmind_border.png","sigil":"PE","description":"Attain enlightenment, reducing the remaining cooldown of Testaments by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":192,"auraType":0,"miscValue":500678,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":192,"auraType":0,"miscValue":801478,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":192,"auraType":0,"miscValue":1397742,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680953,"level":1,"description":"Attain enlightenment, reducing the remaining cooldown of Testaments by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":192,"auraType":0,"miscValue":500678,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":192,"auraType":0,"miscValue":801478,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":192,"auraType":0,"miscValue":1397742,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30063},{"id":"coa-19-radiance-70-706317","classId":"templar","dbcSpellId":706317,"name":"Radiance","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_49.png","sigil":"RA","description":"RadianceRank 1Increases the damage of Righteous Lunge by 0%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706317,"level":1,"description":"RadianceRank 1Increases the damage of Righteous Lunge by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"templar-righteous-lunge","classId":"templar","dbcSpellId":801443,"name":"Righteous Lunge","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_2h_artifactashbringerpurified_d_02.png","sigil":"RL","description":"Righteous LungeRank 140 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 80% Weapon Damage plus 9 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801443,"level":1,"description":"Righteous LungeRank 140 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 80% Weapon Damage plus 9 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501570,"level":10,"description":"Righteous LungeRank 240 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 90% Weapon Damage plus 16 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501571,"level":18,"description":"Righteous LungeRank 340 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 100% Weapon Damage plus 34 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501572,"level":26,"description":"Righteous LungeRank 440 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 110% Weapon Damage plus 78 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501573,"level":34,"description":"Righteous LungeRank 540 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 125% Weapon Damage plus 107 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501574,"level":42,"description":"Righteous LungeRank 640 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 135% Weapon Damage plus 144 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-19-runes-of-power-70-705264","classId":"templar","dbcSpellId":705264,"name":"Runes of Power","unlockLevel":1,"icon":"/assets/ui/spells/_inscriptionstones_orange.png","sigil":"RO","description":"Runes of PowerRank 1Increases the damage and healing of your Engrave Runes effects by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705264,"level":1,"description":"Runes of PowerRank 1Increases the damage and healing of your Engrave Runes effects by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705265,"level":1,"description":"Runes of PowerRank 2Increases the damage and healing of your Engrave Runes effects by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"templar-sacred-slam","classId":"templar","dbcSpellId":803169,"name":"Sacred Slam","unlockLevel":1,"icon":"/assets/ui/spells/ability_monk_powerstrikes.png","sigil":"SS","description":"Slam the target with a sacred martial strike.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.15}],"source":"coa-starter"},{"id":"coa-tree-34379","classId":"templar","dbcSpellId":705278,"name":"Sacred Style","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_pureofheart.png","sigil":"SS","description":"Increases your Holy healing done and received by 8%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705278,"level":1,"description":"Increases your Holy healing done and received by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34379},{"id":"coa-tree-34357","classId":"templar","dbcSpellId":525024,"name":"Scarlet Judicator","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_challange_yellow.png","sigil":"SJ","description":"Your Divine Force now strikes 2 additional enemies near the primary target.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525024,"level":1,"description":"Your Divine Force now strikes 2 additional enemies near the primary target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34357},{"id":"coa-tree-4024","classId":"templar","dbcSpellId":92111,"name":"Scourgebane","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firesword_border.png","sigil":"SC","description":"Level 10 Passive Direct damage dealt now has a 20% chance to strike an enemy with Scourgebane, dealing an additional 162 + 25% SP + 15% AP Holyflame Damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807414,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92111,"level":1,"description":"Level 10 Passive Direct damage dealt now has a 20% chance to strike an enemy with Scourgebane, dealing an additional 162 + 25% SP + 15% AP Holyflame Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807414,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4024},{"id":"coa-tree-34352","classId":"templar","dbcSpellId":801465,"name":"Silverhand Incantation","unlockLevel":1,"icon":"/assets/ui/spells/5_paladinskill06_border.png","sigil":"SI","description":"Chant a silverhand incantation and toss a holy hammer at your target, charging you to them and removing Sacred Restraint from you and them if they are an ally. Upon reaching your target you deal 300 + 200% AP Holy damage to all nearby enemies and heal nearby allies for the same amount.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":801501,"durationMs":0},{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801465,"level":1,"description":"Chant a silverhand incantation and toss a holy hammer at your target, charging you to them and removing Sacred Restraint from you and them if they are an ally. Upon reaching your target you deal 300 + 200% AP Holy damage to all nearby enemies and heal nearby allies for the same amount.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":148,"auraType":0,"miscValue":0,"triggerSpellId":801501,"durationMs":0},{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":34352},{"id":"coa-tree-34345","classId":"templar","dbcSpellId":681009,"name":"Sturdy","unlockLevel":1,"icon":"/assets/ui/spells/spell_monk_envelopingmist.png","sigil":"ST","description":"Increases your maximum health and Energy by 5%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681009,"level":1,"description":"Increases your maximum health and Energy by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":681537,"level":1,"description":"Increases your maximum health and Energy by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34345},{"id":"coa-tree-34337","classId":"templar","dbcSpellId":707385,"name":"Tenacious Defender","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_sealoffury.png","sigil":"TD","description":"Casting Libram of Tenacity now also heals you for 20% of your maximum health.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707385,"level":1,"description":"Casting Libram of Tenacity now also heals you for 20% of your maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34337},{"id":"coa-tree-34402","classId":"templar","dbcSpellId":500678,"name":"Testament of Fortitude","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holymeditation_border.png","sigil":"TO","description":"Meditate for 15 seconds, restoring 5% of your maximum health every 1 sec and reducing damage taken by -50%. Each second you will also remove 1 disease effect from yourself. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"channel","castTimeMs":15000,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":1,"triggerSpellId":500690,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":102208,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500678,"level":1,"description":"Meditate for 15 seconds, restoring 5% of your maximum health every 1 sec and reducing damage taken by -50%. Each second you will also remove 1 disease effect from yourself. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments.","castMode":"channel","castTimeMs":15000,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":1,"triggerSpellId":500690,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":102208,"durationMs":15000}]}],"talentEntryId":34402},{"id":"coa-tree-6375","classId":"templar","dbcSpellId":560649,"name":"Tyr's Guard","unlockLevel":1,"icon":"/assets/ui/spells/inv_jewelry_talisman_01.png","sigil":"TS","description":"Testament of Hope now summons an additional copy of yourself.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":42,"miscValue":0,"triggerSpellId":524616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560649,"level":1,"description":"Testament of Hope now summons an additional copy of yourself.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":42,"miscValue":0,"triggerSpellId":524616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6375},{"id":"coa-19-vitality-none-705312","classId":"templar","dbcSpellId":705312,"name":"Vitality","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessingofstamina.png","sigil":"VI","description":"VitalityRank 2Increases Stamina by 8% and Armor by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705312,"level":1,"description":"VitalityRank 2Increases Stamina by 8% and Armor by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4022","classId":"templar","dbcSpellId":92108,"name":"Zealotry","unlockLevel":1,"icon":"/assets/ui/spells/custom_paladinskill_24_border.png","sigil":"ZE","description":"Level 10 Passive Your off-hand auto attacks now trigger Zealotry.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":128,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801450,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92108,"level":1,"description":"Level 10 Passive Your off-hand auto attacks now trigger Zealotry.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":128,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801450,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4022},{"id":"coa-19-benediction-71-801448","classId":"templar","dbcSpellId":801448,"name":"Benediction","unlockLevel":2,"icon":"/assets/ui/spells/priest_icon_innewill.png","sigil":"BE","description":"BenedictionRank 120 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 6+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","target":"friendly","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":0.213725489728591,"basePoints":6,"dieSides":8,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":8}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801448,"level":2,"description":"BenedictionRank 120 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 6+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":0.213725489728591,"basePoints":6,"dieSides":8,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":8}]},{"rank":2,"spellId":803373,"level":10,"description":"BenedictionRank 220 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 17+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":0.548000005086263,"basePoints":17,"dieSides":10,"pointsPerLevel":1.9600000381469727,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}]},{"rank":3,"spellId":803374,"level":18,"description":"BenedictionRank 320 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 36+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":0.790707077642884,"basePoints":36,"dieSides":15,"pointsPerLevel":1.9600000381469727,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24}]},{"rank":4,"spellId":803375,"level":26,"description":"BenedictionRank 420 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 56+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":0.8018211484924564,"basePoints":56,"dieSides":20,"pointsPerLevel":1.2740000486373901,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32}]},{"rank":5,"spellId":803376,"level":34,"description":"BenedictionRank 520 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 116+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":1.1790204194127296,"basePoints":116,"dieSides":29,"pointsPerLevel":1.2740000486373901,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":6,"spellId":803377,"level":42,"description":"BenedictionRank 620 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 190+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":1.614854629973919,"basePoints":190,"dieSides":40,"pointsPerLevel":1.5866700410842896,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48}]},{"rank":7,"spellId":803378,"level":50,"description":"BenedictionRank 720 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 246+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":1.9324794720380734,"basePoints":246,"dieSides":56,"pointsPerLevel":2.0666699409484863,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":8,"spellId":578276,"level":58,"description":"BenedictionRank 820 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 283+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":801409,"durationMs":0},{"kind":"heal","coefficient":1.9527853830764283,"basePoints":283,"dieSides":56,"pointsPerLevel":2.0199999809265137,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66}]}]},{"id":"coa-19-gift-of-zeal-494-706634","classId":"templar","dbcSpellId":706634,"name":"Gift of Zeal","unlockLevel":2,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"Gift of ZealRank 1InstantPlaces a Gift on a friendly target, increasing Agility by 3 for 30 min.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":1,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706634,"level":2,"description":"Gift of ZealRank 1InstantPlaces a Gift on a friendly target, increasing Agility by 3 for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":1,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-19-testament-of-faith-494-801478","classId":"templar","dbcSpellId":801478,"name":"Testament of Faith","unlockLevel":8,"icon":"/assets/ui/spells/_d3blindingflash.png","sigil":"TO","description":"Testament of FaithRank 150 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 152+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","target":"friendly","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":1.2000000476837158,"basePoints":152,"dieSides":5,"pointsPerLevel":2.0133299827575684,"bonusPowerCoefficient":1.2000000476837158,"sourceLevel":8,"maxScalingLevel":14},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801478,"level":8,"description":"Testament of FaithRank 150 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 152+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":1.2000000476837158,"basePoints":152,"dieSides":5,"pointsPerLevel":2.0133299827575684,"bonusPowerCoefficient":1.2000000476837158,"sourceLevel":8,"maxScalingLevel":14},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501601,"level":16,"description":"Testament of FaithRank 250 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 316+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":316,"dieSides":8,"pointsPerLevel":4.139999866485596,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501602,"level":22,"description":"Testament of FaithRank 350 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 621+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":621,"dieSides":14,"pointsPerLevel":3.1500000953674316,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501603,"level":32,"description":"Testament of FaithRank 450 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 1002+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":1002,"dieSides":23,"pointsPerLevel":6.053329944610596,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501604,"level":40,"description":"Testament of FaithRank 550 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 1981+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":1981,"dieSides":35,"pointsPerLevel":7.266670227050781,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501605,"level":48,"description":"Testament of FaithRank 650 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 2751+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":2751,"dieSides":49,"pointsPerLevel":6.78000020980835,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":56},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501606,"level":58,"description":"Testament of FaithRank 750 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 3401+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":3401,"dieSides":68,"pointsPerLevel":6.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":68},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-19-vindication-70-801446","classId":"templar","dbcSpellId":801446,"name":"Vindication","unlockLevel":11,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VI","description":"VindicationRank 135 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 31+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5012820546443646,"basePoints":31,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801446,"level":11,"description":"VindicationRank 135 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 31+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5012820546443646,"basePoints":31,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16}]},{"rank":2,"spellId":501589,"level":18,"description":"VindicationRank 235 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 42+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5959595959595959,"basePoints":42,"dieSides":8,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":26},{"kind":"utility","effectType":3,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501590,"level":28,"description":"VindicationRank 335 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 58+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.7054263565891473,"basePoints":58,"dieSides":11,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"utility","effectType":3,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501591,"level":36,"description":"VindicationRank 435 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 81+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.8725490196078431,"basePoints":81,"dieSides":16,"pointsPerLevel":1.25,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":3,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501592,"level":44,"description":"VindicationRank 535 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 113+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.0706214689265536,"basePoints":113,"dieSides":22,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":3,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501593,"level":52,"description":"VindicationRank 635 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 157+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.308457711442786,"basePoints":157,"dieSides":31,"pointsPerLevel":1.75,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":3,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":573324,"level":60,"description":"VindicationRank 735 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 233+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.6022222222222222,"basePoints":233,"dieSides":46,"pointsPerLevel":1.75,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":3,"auraType":344,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]}]},{"id":"templar-holy-cleave","classId":"templar","dbcSpellId":801445,"name":"Holy Cleave","unlockLevel":12,"icon":"/assets/ui/spells/nhi_holyslash_border.png","sigil":"HC","description":"Holy CleaveRank 135 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 60% Weapon Damage plus 1 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","target":"self","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801445,"level":12,"description":"Holy CleaveRank 135 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 60% Weapon Damage plus 1 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501582,"level":18,"description":"Holy CleaveRank 235 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 65% Weapon Damage plus 9 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501583,"level":24,"description":"Holy CleaveRank 335 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 70% Weapon Damage plus 19 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":524287,"triggerSpellId":804078,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":4,"spellId":501584,"level":30,"description":"Holy CleaveRank 435 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 75% Weapon Damage plus 32 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":524287,"triggerSpellId":804078,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":5,"spellId":501585,"level":36,"description":"Holy CleaveRank 535 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 75% Weapon Damage plus 54 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":524287,"triggerSpellId":804078,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":6,"spellId":501586,"level":42,"description":"Holy CleaveRank 635 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 80% Weapon Damage plus 75 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":524287,"triggerSpellId":804078,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":7,"spellId":501587,"level":48,"description":"Holy CleaveRank 735 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 80% Weapon Damage plus 107 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":524287,"triggerSpellId":804078,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":8,"spellId":501588,"level":54,"description":"Holy CleaveRank 835 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 85% Weapon Damage plus 140 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":120231,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":524287,"triggerSpellId":804078,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]}]},{"id":"templar-righteous-upheaval","classId":"templar","dbcSpellId":501562,"name":"Righteous Upheaval","unlockLevel":13,"icon":"/assets/ui/spells/_monkability_uplift_yellow.png","sigil":"RU","description":"Righteous UpheavalRank 135 Energy Instant20 sec cooldownRequires One-Handed Melee Weapon Unleash a dominating Oath Breaker, dealing 31+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.4523809523809524,"basePoints":31,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":501562,"level":13,"description":"Righteous UpheavalRank 135 Energy Instant20 sec cooldownRequires One-Handed Melee Weapon Unleash a dominating Oath Breaker, dealing 31+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.4523809523809524,"basePoints":31,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18}]},{"rank":2,"spellId":501563,"level":20,"description":"Righteous UpheavalRank 235 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 42+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.49047619047619045,"basePoints":42,"dieSides":20,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26}]},{"rank":3,"spellId":501564,"level":28,"description":"Righteous UpheavalRank 335 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 60+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5736434108527132,"basePoints":60,"dieSides":29,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34}]},{"rank":4,"spellId":501565,"level":36,"description":"Righteous UpheavalRank 435 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 82+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.6633986928104575,"basePoints":82,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42}]},{"rank":5,"spellId":501566,"level":44,"description":"Righteous UpheavalRank 535 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 111+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.7796610169491526,"basePoints":111,"dieSides":55,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50}]},{"rank":6,"spellId":572021,"level":52,"description":"Righteous UpheavalRank 635 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 147+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.9104477611940298,"basePoints":147,"dieSides":73,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58}]},{"rank":7,"spellId":572027,"level":60,"description":"Righteous UpheavalRank 735 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 192+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.0622222222222222,"basePoints":192,"dieSides":95,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68}]}]},{"id":"coa-19-spiritual-ascension-71-500688","classId":"templar","dbcSpellId":500688,"name":"Spiritual Ascension","unlockLevel":20,"icon":"/assets/ui/spells/ability_paladin_selflesshealer.png","sigil":"SA","description":"Spiritual AscensionRank 12 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":18,"auraType":0,"miscValue":635,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500688,"level":20,"description":"Spiritual AscensionRank 12 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":18,"auraType":0,"miscValue":635,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":500757,"level":50,"description":"Spiritual AscensionRank 22 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":18,"auraType":0,"miscValue":833,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":500758,"level":60,"description":"Spiritual AscensionRank 32 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":18,"auraType":0,"miscValue":1030,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":500759,"level":70,"description":"Spiritual AscensionRank 42 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":18,"auraType":0,"miscValue":1250,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":500760,"level":80,"description":"Spiritual AscensionRank 52 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":18,"auraType":0,"miscValue":1750,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-19-temple-guardian-71-801165","classId":"templar","dbcSpellId":801165,"name":"Temple Guardian","unlockLevel":22,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TG","description":"Temple GuardianRank 115 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 102+0+AP*0.805+HolP*0.85.","target":"friendly","range":{"min":5,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":1.1609909985516522,"basePoints":102,"dieSides":7,"pointsPerLevel":1.0850000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30},{"kind":"heal","coefficient":1.1609909985516522,"basePoints":102,"dieSides":7,"pointsPerLevel":1.0850000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801165,"level":22,"description":"Temple GuardianRank 115 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 102+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":1.1609909985516522,"basePoints":102,"dieSides":7,"pointsPerLevel":1.0850000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30},{"kind":"heal","coefficient":1.1609909985516522,"basePoints":102,"dieSides":7,"pointsPerLevel":1.0850000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30}]},{"rank":2,"spellId":803792,"level":30,"description":"Temple GuardianRank 215 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 286+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":2.3974074010495787,"basePoints":286,"dieSides":7,"pointsPerLevel":1.1549999713897705,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":40},{"kind":"heal","coefficient":2.3974074010495787,"basePoints":286,"dieSides":7,"pointsPerLevel":1.1549999713897705,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":40}]},{"rank":3,"spellId":803793,"level":40,"description":"Temple GuardianRank 315 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 402+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":2.751515157294996,"basePoints":402,"dieSides":7,"pointsPerLevel":1.225000023841858,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"heal","coefficient":2.751515157294996,"basePoints":402,"dieSides":7,"pointsPerLevel":1.225000023841858,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48}]},{"rank":4,"spellId":803794,"level":48,"description":"Temple GuardianRank 415 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 596+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":3.498201047301923,"basePoints":596,"dieSides":7,"pointsPerLevel":1.2949999570846558,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"heal","coefficient":3.498201047301923,"basePoints":596,"dieSides":7,"pointsPerLevel":1.2949999570846558,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":5,"spellId":803795,"level":54,"description":"Temple GuardianRank 515 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 726+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":3.8778260894443677,"basePoints":726,"dieSides":7,"pointsPerLevel":1.3650000095367432,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60},{"kind":"heal","coefficient":3.8778260894443677,"basePoints":726,"dieSides":7,"pointsPerLevel":1.3650000095367432,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60}]},{"rank":6,"spellId":803796,"level":60,"description":"Temple GuardianRank 615 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 881+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":4,"basePoints":881,"dieSides":7,"pointsPerLevel":1.434999942779541,"bonusPowerCoefficient":0,"sourceLevel":60},{"kind":"heal","coefficient":4,"basePoints":881,"dieSides":7,"pointsPerLevel":1.434999942779541,"bonusPowerCoefficient":0,"sourceLevel":60}]}]},{"id":"coa-19-titanstrike-72-806521","classId":"templar","dbcSpellId":806521,"name":"Titanstrike","unlockLevel":34,"icon":"/assets/ui/spells/nhi_holythrow_border.png","sigil":"TI","description":"TitanstrikeRank 115 Energy Instant cast8 sec cooldownCall down the wrath of the gods on an injured enemy, dealing 356+0+AP*0.2+HolP*1 Holy Damage, healing you equal to the damage dealt, and extending the duration of your Oath Chain by 5 sec. Only usable on enemies below 35% health.","target":"hostile","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":707896,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806521,"level":34,"description":"TitanstrikeRank 115 Energy Instant cast8 sec cooldownCall down the wrath of the gods on an injured enemy, dealing 356+0+AP*0.2+HolP*1 Holy Damage, healing you equal to the damage dealt, and extending the duration of your Oath Chain by 5 sec. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":707896,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":806834,"level":42,"description":"Call down the wrath of the gods on an injured enemy, dealing ${$m1+0+$AP*0.2+$sph*1} Holy Damage, healing you equal to the damage dealt, and extending the duration of your Oath Chain by $/1000;707896s1 sec. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":707896,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":806835,"level":52,"description":"Call down the wrath of the gods on an injured enemy, dealing ${$m1+0+$AP*0.2+$sph*1} Holy Damage, healing you equal to the damage dealt, and extending the duration of your Oath Chain by $/1000;707896s1 sec. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":707896,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-19-flaming-blade-72-801451","classId":"templar","dbcSpellId":801451,"name":"Flaming Blade","unlockLevel":62,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0000s_0000_sword_border.png","sigil":"FB","description":"Flaming BladeRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 50+PL*0.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 27 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.15000000596046448,"basePoints":3,"dieSides":1,"pointsPerLevel":0.1599999964237213,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":62,"maxScalingLevel":63,"ticks":9,"intervalMs":2000,"tag":"spell-801451"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801451,"level":62,"description":"Flaming BladeRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 50+PL*0.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 27 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.15000000596046448,"basePoints":3,"dieSides":1,"pointsPerLevel":0.1599999964237213,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":62,"maxScalingLevel":63,"ticks":9,"intervalMs":2000,"tag":"spell-801451"}]},{"rank":2,"spellId":501594,"level":64,"description":"Flaming BladeRank 2InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 100+PL*1+(FireP+AP)*0.67 and causing the target to bleed for an additional 45 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.09638481301094409,"basePoints":5,"dieSides":1,"pointsPerLevel":0.27880001068115234,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":65,"ticks":9,"intervalMs":2000,"tag":"spell-501594"}]},{"rank":3,"spellId":501595,"level":66,"description":"Flaming BladeRank 3InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 190+PL*1.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 81 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.16925431695985205,"basePoints":9,"dieSides":1,"pointsPerLevel":0.4867999851703644,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":67,"ticks":9,"intervalMs":2000,"tag":"spell-501595"}]},{"rank":4,"spellId":501596,"level":68,"description":"Flaming BladeRank 4InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 250+PL*2.0+(FireP+AP)*0.67 and causing the target to bleed for an additional 117 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.2419534189155303,"basePoints":13,"dieSides":1,"pointsPerLevel":0.6948000192642212,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":69,"ticks":9,"intervalMs":2000,"tag":"spell-501596"}]},{"rank":5,"spellId":501597,"level":70,"description":"Flaming BladeRank 5InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 380+PL*2.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 189 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.302729411686168,"basePoints":21,"dieSides":1,"pointsPerLevel":0.8027999997138977,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":71,"ticks":9,"intervalMs":2000,"tag":"spell-501597"}]},{"rank":6,"spellId":501598,"level":72,"description":"Flaming BladeRank 6InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 572+PL*3.0+(FireP+AP)*0.67 and causing the target to bleed for an additional 207 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.3393777723056603,"basePoints":23,"dieSides":1,"pointsPerLevel":0.9107999801635742,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":74,"ticks":9,"intervalMs":2000,"tag":"spell-501598"}]},{"rank":7,"spellId":501599,"level":76,"description":"Flaming BladeRank 7InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 901+PL*3.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 261 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.4158728236243838,"basePoints":29,"dieSides":1,"pointsPerLevel":1.112280011177063,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78,"ticks":9,"intervalMs":2000,"tag":"spell-501599"}]},{"rank":8,"spellId":501600,"level":80,"description":"Flaming BladeRank 8InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 1386+PL*4+(FireP+AP)*0.67 and causing the target to bleed for an additional 351 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.4807017610784163,"basePoints":39,"dieSides":1,"pointsPerLevel":1.225000023841858,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":9,"intervalMs":2000,"tag":"spell-501600"}]}]},{"id":"coa-19-flaming-blade-70-72-801451","classId":"templar","dbcSpellId":801451,"name":"Flaming Blade","unlockLevel":62,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0000s_0000_sword_border.png","sigil":"FB","description":"Flaming BladeRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 50+PL*0.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 27 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.15000000596046448,"basePoints":3,"dieSides":1,"pointsPerLevel":0.1599999964237213,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":62,"maxScalingLevel":63,"ticks":9,"intervalMs":2000,"tag":"spell-801451"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801451,"level":62,"description":"Flaming BladeRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 50+PL*0.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 27 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.15000000596046448,"basePoints":3,"dieSides":1,"pointsPerLevel":0.1599999964237213,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":62,"maxScalingLevel":63,"ticks":9,"intervalMs":2000,"tag":"spell-801451"}]},{"rank":2,"spellId":501594,"level":64,"description":"Flaming BladeRank 2InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 100+PL*1+(FireP+AP)*0.67 and causing the target to bleed for an additional 45 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.09638481301094409,"basePoints":5,"dieSides":1,"pointsPerLevel":0.27880001068115234,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":65,"ticks":9,"intervalMs":2000,"tag":"spell-501594"}]},{"rank":3,"spellId":501595,"level":66,"description":"Flaming BladeRank 3InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 190+PL*1.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 81 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.16925431695985205,"basePoints":9,"dieSides":1,"pointsPerLevel":0.4867999851703644,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":67,"ticks":9,"intervalMs":2000,"tag":"spell-501595"}]},{"rank":4,"spellId":501596,"level":68,"description":"Flaming BladeRank 4InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 250+PL*2.0+(FireP+AP)*0.67 and causing the target to bleed for an additional 117 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.2419534189155303,"basePoints":13,"dieSides":1,"pointsPerLevel":0.6948000192642212,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":69,"ticks":9,"intervalMs":2000,"tag":"spell-501596"}]},{"rank":5,"spellId":501597,"level":70,"description":"Flaming BladeRank 5InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 380+PL*2.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 189 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.302729411686168,"basePoints":21,"dieSides":1,"pointsPerLevel":0.8027999997138977,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":71,"ticks":9,"intervalMs":2000,"tag":"spell-501597"}]},{"rank":6,"spellId":501598,"level":72,"description":"Flaming BladeRank 6InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 572+PL*3.0+(FireP+AP)*0.67 and causing the target to bleed for an additional 207 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.3393777723056603,"basePoints":23,"dieSides":1,"pointsPerLevel":0.9107999801635742,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":74,"ticks":9,"intervalMs":2000,"tag":"spell-501598"}]},{"rank":7,"spellId":501599,"level":76,"description":"Flaming BladeRank 7InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 901+PL*3.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 261 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.4158728236243838,"basePoints":29,"dieSides":1,"pointsPerLevel":1.112280011177063,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78,"ticks":9,"intervalMs":2000,"tag":"spell-501599"}]},{"rank":8,"spellId":501600,"level":80,"description":"Flaming BladeRank 8InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 1386+PL*4+(FireP+AP)*0.67 and causing the target to bleed for an additional 351 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"dot","coefficient":0.4807017610784163,"basePoints":39,"dieSides":1,"pointsPerLevel":1.225000023841858,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":9,"intervalMs":2000,"tag":"spell-501600"}]}]},{"id":"coa-19-divine-fury-70-501567","classId":"templar","dbcSpellId":501567,"name":"Divine Fury","unlockLevel":68,"icon":"/assets/ui/spells/nhi_hammeroflight_border.png","sigil":"DF","description":"Divine FuryRank 2Instant cast35 sec cooldownRequires 3 Oaths Unleash a devastating Oath Breaker, dealing 143+0+HolP*0.85+AP*.355 Holy Damage to an enemy and up to 4 nearby enemies and increasing damage they take from you by 10% for 20 sec. Also gains the Oaths of each Follow Up used in the chain.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.9693975812460045,"basePoints":143,"dieSides":6,"pointsPerLevel":1.409999966621399,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501567,"level":68,"description":"Divine FuryRank 2Instant cast35 sec cooldownRequires 3 Oaths Unleash a devastating Oath Breaker, dealing 143+0+HolP*0.85+AP*.355 Holy Damage to an enemy and up to 4 nearby enemies and increasing damage they take from you by 10% for 20 sec. Also gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.9693975812460045,"basePoints":143,"dieSides":6,"pointsPerLevel":1.409999966621399,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]},{"rank":3,"spellId":501568,"level":76,"description":"Divine FuryRank 3Instant cast35 sec cooldownRequires 3 Oaths Unleash a devastating Oath Breaker, dealing 276+0+HolP*0.85+AP*.355 Holy Damage to an enemy and up to 4 nearby enemies and increasing damage they take from you by 10% for 20 sec. Also gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1.6528205207852653,"basePoints":276,"dieSides":14,"pointsPerLevel":2.2200000286102295,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]},{"rank":4,"spellId":501569,"level":80,"description":"Divine FuryRank 4Instant cast35 sec cooldownRequires 3 Oaths Unleash a devastating Oath Breaker, dealing 211+0+HolP*0.85+AP*.355 Holy Damage to an enemy and up to 2 nearby enemies and increasing damage they take from you by 10% for 20 sec. Also gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1.6382456060041461,"basePoints":211,"dieSides":28,"pointsPerLevel":3.0299999713897705,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]}]}],"bloodmage":[{"id":"coa-tree-29871","classId":"bloodmage","dbcSpellId":504285,"name":"Alacrity","unlockLevel":1,"icon":"/assets/ui/spells/5_run_border.png","sigil":"AL","description":"Increases all primary stats by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504285,"level":1,"description":"Increases all primary stats by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":504893,"level":1,"description":"Increases all primary stats by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29871},{"id":"coa-20-atheranns-wickedness-73-704642","classId":"bloodmage","dbcSpellId":704642,"name":"Atherann's Wickedness","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_destructivesoul.png","sigil":"AS","description":"Atherann's WickednessRank 1Increases your Shadow damage dealt by 4% and increases your hit chance by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":32,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704642,"level":1,"description":"Atherann's WickednessRank 1Increases your Shadow damage dealt by 4% and increases your hit chance by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":32,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704643,"level":1,"description":"Atherann's WickednessRank 2Increases the damage of Atherann's Anguish by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-8215","classId":"bloodmage","dbcSpellId":504627,"name":"Blood Bond","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodsacrifice_border.png","sigil":"BB","description":"Bond yourself to an ally for 30 minutes, causing direct damage taken by the ally to generate 1 Rage and 3% base health and redirect their threat generated to you. In addition, while out of combat, you and your bonded ally have 30% increased movement speed.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":505325,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":505169,"durationMs":1800000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504627,"level":1,"description":"Bond yourself to an ally for 30 minutes, causing direct damage taken by the ally to generate 1 Rage and 3% base health and redirect their threat generated to you. In addition, while out of combat, you and your bonded ally have 30% increased movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":505325,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":505169,"durationMs":1800000}]}],"talentEntryId":8215},{"id":"coa-tree-29484","classId":"bloodmage","dbcSpellId":804199,"name":"Blood Moon","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_earth.png","sigil":"BM","description":"Your Animated Blood now spawns an additional amalgam.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804199,"level":1,"description":"Your Animated Blood now spawns an additional amalgam.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29484},{"id":"coa-tree-31117","classId":"bloodmage","dbcSpellId":801955,"name":"Blood Pact","unlockLevel":1,"icon":"/assets/ui/spells/ability_xavius_darkeningsoul.png","sigil":"BP","description":"Invoke a blood pact, exchanging health for enhanced reflexes, increasing your chance to dodge and reducing the chance for ranged attacks to hit you by 50% for 12 seconds. While active you can dodge or parry while casting.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":185,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":49,"miscValue":127,"triggerSpellId":0,"durationMs":12000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801955,"level":1,"description":"Invoke a blood pact, exchanging health for enhanced reflexes, increasing your chance to dodge and reducing the chance for ranged attacks to hit you by 50% for 12 seconds. While active you can dodge or parry while casting.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":185,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":49,"miscValue":127,"triggerSpellId":0,"durationMs":12000}]}],"talentEntryId":31117},{"id":"coa-tree-6630","classId":"bloodmage","dbcSpellId":560254,"name":"Blood Rush","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_bloodyeye.png","sigil":"BR","description":"Periodic damage dealt now has a 20% chance to grant you Blood Rush. Can only occur once every 5 sec.Blood RushIncreases your haste by 20% for 5 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504551,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560254,"level":1,"description":"Periodic damage dealt now has a 20% chance to grant you Blood Rush. Can only occur once every 5 sec.Blood RushIncreases your haste by 20% for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504551,"durationMs":-1}]}],"talentEntryId":6630},{"id":"coa-tree-31215","classId":"bloodmage","dbcSpellId":804858,"name":"Blood Trails","unlockLevel":1,"icon":"/assets/ui/spells/uico_blood_spell_07_border.png","sigil":"BT","description":"Periodic damage and healing now causes targets to spill a pool of blood beneath them. Allies in a Cursed Form who move through the pools of blood gain Trail of Blood for 6 seconds.Trail of BloodMovement speed cannot be reduced below 80%. Movement speed increased by 20%. Damage dealt increased by 5%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804857,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804858,"level":1,"description":"Periodic damage and healing now causes targets to spill a pool of blood beneath them. Allies in a Cursed Form who move through the pools of blood gain Trail of Blood for 6 seconds.Trail of BloodMovement speed cannot be reduced below 80%. Movement speed increased by 20%. Damage dealt increased by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804857,"durationMs":0}]}],"talentEntryId":31215},{"id":"coa-tree-34969","classId":"bloodmage","dbcSpellId":504263,"name":"Blood Veil","unlockLevel":1,"icon":"/assets/ui/spells/nhi_blood_drain_border.png","sigil":"BV","description":"Create a magical veil around an ally, absorbing 50% of incoming damage, up to a maximum of 511 + 150% Spirit + 75% AP for 8 seconds.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"shield","coefficient":0.3546099290780142,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"durationMs":8000},{"kind":"shield","coefficient":4,"basePoints":511,"dieSides":1,"pointsPerLevel":7.685999870300293,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"durationMs":8000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504263,"level":1,"description":"Create a magical veil around an ally, absorbing 50% of incoming damage, up to a maximum of 511 + 150% Spirit + 75% AP for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"shield","coefficient":0.3546099290780142,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"durationMs":8000},{"kind":"shield","coefficient":4,"basePoints":511,"dieSides":1,"pointsPerLevel":7.685999870300293,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"durationMs":8000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}],"talentEntryId":34969},{"id":"coa-tree-4969","classId":"bloodmage","dbcSpellId":806423,"name":"Bloodleaper","unlockLevel":1,"icon":"/assets/ui/spells/inv_boot_cloth_raidwarlock_r_01.png","sigil":"BL","description":"Reduces the cooldown of your Lunge by -10 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806423,"level":1,"description":"Reduces the cooldown of your Lunge by -10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4969},{"id":"coa-tree-29876","classId":"bloodmage","dbcSpellId":801961,"name":"Bloodmoon Power","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_rogue_bloodyeye_nightmare.png","sigil":"BP","description":"Your Liquify now cleanses all negative effects when used.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801961,"level":1,"description":"Your Liquify now cleanses all negative effects when used.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29876},{"id":"coa-tree-34628","classId":"bloodmage","dbcSpellId":705742,"name":"Bloody Sacrifice","unlockLevel":1,"icon":"/assets/ui/spells/_sacrificialdagger_blood.png","sigil":"BS","description":"Increases your healing received by 15%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705742,"level":1,"description":"Increases your healing received by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34628},{"id":"coa-20-dark-curse-none-560252","classId":"bloodmage","dbcSpellId":560252,"name":"Dark Curse","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_cannibalize.png","sigil":"DC","description":"Dark CurseRank 2Increases critical strike chance by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560252,"level":1,"description":"Dark CurseRank 2Increases critical strike chance by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-20-dark-hide-75-705730","classId":"bloodmage","dbcSpellId":705730,"name":"Dark Hide","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DH","description":"Dark HideRank 1Reduces damage taken by 3% and increases Stamina by 2%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":705730,"level":1,"description":"Dark HideRank 1Reduces damage taken by 3% and increases Stamina by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-5907","classId":"bloodmage","dbcSpellId":704621,"name":"Easy Prey","unlockLevel":1,"icon":"/assets/ui/spells/ability_mount_epicbatmount.png","sigil":"EP","description":"Increases the duration of Hemostasis by 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704621,"level":1,"description":"Increases the duration of Hemostasis by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5907},{"id":"coa-tree-4027","classId":"bloodmage","dbcSpellId":92114,"name":"Eternal Curse","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_viciousness.png","sigil":"EC","description":"Level 10 Passive Teaches you Eternal Curse.Eternal Curse (Cursed Form)Embrace your eternal curse, entering a Cursed Form, reducing your damage dealt by -10% and increasing your threat generated by 80%, plus an additional 50% from damage dealt by spells that cost health. While active your armor contribution from items is increased by 400% and your total Stamina is increased by 25%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92114,"level":1,"description":"Level 10 Passive Teaches you Eternal Curse.Eternal Curse (Cursed Form)Embrace your eternal curse, entering a Cursed Form, reducing your damage dealt by -10% and increasing your threat generated by 80%, plus an additional 50% from damage dealt by spells that cost health. While active your armor contribution from items is increased by 400% and your total Stamina is increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4027},{"id":"coa-tree-29629","classId":"bloodmage","dbcSpellId":801952,"name":"Fleshcraft","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodtear_border.png","sigil":"FL","description":"Mend blood and bone, healing an ally for 50% of their maximum health and applies Sated. SatedCannot be affected by Fleshcraft for 3 minutes.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":50},"effects":[{"kind":"heal","coefficient":1,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1},{"kind":"utility","effectType":137,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801952,"level":1,"description":"Mend blood and bone, healing an ally for 50% of their maximum health and applies Sated. SatedCannot be affected by Fleshcraft for 3 minutes.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":50},"effects":[{"kind":"heal","coefficient":1,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1},{"kind":"utility","effectType":137,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29629},{"id":"coa-20-gnash-none-704658","classId":"bloodmage","dbcSpellId":704658,"name":"Gnash","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_deathpact.png","sigil":"GN","description":"GnashRank 2Increases the damage caused when you apply Grimclaw by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704658,"level":1,"description":"GnashRank 2Increases the damage caused when you apply Grimclaw by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-20-heightened-reflexes-75-704627","classId":"bloodmage","dbcSpellId":704627,"name":"Heightened Reflexes","unlockLevel":1,"icon":"/assets/ui/spells/inv_skinning_80_coarsefur.png","sigil":"HR","description":"Heightened ReflexesRank 1Increases your chance to dodge by 4% and your expertise by 5.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":240,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704627,"level":1,"description":"Heightened ReflexesRank 1Increases your chance to dodge by 4% and your expertise by 5.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":240,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704628,"level":1,"description":"Heightened ReflexesRank 2Increases your chance to dodge by 8% and your expertise by 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":49,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":240,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-20-improved-arugals-blessing-73-705743","classId":"bloodmage","dbcSpellId":705743,"name":"Improved Arugal's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/ability_xavius_darkeningsoul.png","sigil":"IA","description":"Improved Arugal's BlessingRank 1Reduces the cooldown of Arugal's Blessing by 5 sec and increases its duration by 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":705743,"level":1,"description":"Improved Arugal's BlessingRank 1Reduces the cooldown of Arugal's Blessing by 5 sec and increases its duration by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-9970","classId":"bloodmage","dbcSpellId":706617,"name":"Life Scent","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_garrote.png","sigil":"LS","description":"Increases your stealth detection significantly.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706617,"level":1,"description":"Increases your stealth detection significantly.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":9970},{"id":"coa-tree-33688","classId":"bloodmage","dbcSpellId":806310,"name":"Liquify","unlockLevel":1,"icon":"/assets/ui/spells/ability_ironmaidens_corruptedblood.png","sigil":"LI","description":"Requires Mortal Form Dissipate into a pool of blood, making you immune to damage from spells and attacks, but preventing you from attacking or casting spells and slowing your movement speed by -30% for 6 seconds. Usable while stunned, feared or confused.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":263,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":40,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.3}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806310,"level":1,"description":"Requires Mortal Form Dissipate into a pool of blood, making you immune to damage from spells and attacks, but preventing you from attacking or casting spells and slowing your movement speed by -30% for 6 seconds. Usable while stunned, feared or confused.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":263,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":40,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.3}]}],"talentEntryId":33688},{"id":"coa-tree-30846","classId":"bloodmage","dbcSpellId":504292,"name":"Mortal Wounds","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_death.png","sigil":"MW","description":"Your direct harmful critical strikes with spells and abilities now cause the target to bleed for 306 + 6% AP + 30% SP over 6 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504291,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504292,"level":1,"description":"Your direct harmful critical strikes with spells and abilities now cause the target to bleed for 306 + 6% AP + 30% SP over 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504291,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30846},{"id":"coa-tree-29370","classId":"bloodmage","dbcSpellId":300226,"name":"Nightmare","unlockLevel":1,"icon":"/assets/ui/spells/_deathcoilv2_blood.png","sigil":"NI","description":"While above 50% maximum health, abilities that cost Rage now consume 2% of your maximum health to damage or heal your target for an additional 10% of the value.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":301273,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300226,"level":1,"description":"While above 50% maximum health, abilities that cost Rage now consume 2% of your maximum health to damage or heal your target for an additional 10% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":301273,"durationMs":-1}]}],"talentEntryId":29370},{"id":"coa-tree-9905","classId":"bloodmage","dbcSpellId":681078,"name":"Pooled Vitality","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_food_legion_gooamber_pool.png","sigil":"PV","description":"Level 10 Passive Spells that cost health now grant a stack of Pooled Vitality, stacking 10 times. Mortal Form spells that cost Rage consume 10 stacks of Pooled Vitality to become empowered.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681078,"level":1,"description":"Level 10 Passive Spells that cost health now grant a stack of Pooled Vitality, stacking 10 times. Mortal Form spells that cost Rage consume 10 stacks of Pooled Vitality to become empowered.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9905},{"id":"coa-tree-34964","classId":"bloodmage","dbcSpellId":300590,"name":"Predator","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_summonfelhunter.png","sigil":"PR","description":"Your Sanguine Mend now heals 1 additional nearby target. Increases the critical damage of Claw Sweep and Sanguine Rupture by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300590,"level":1,"description":"Your Sanguine Mend now heals 1 additional nearby target. Increases the critical damage of Claw Sweep and Sanguine Rupture by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34964},{"id":"coa-20-ravenous-bite-packleader-75-560365","classId":"bloodmage","dbcSpellId":560365,"name":"Ravenous Bite (Packleader)","unlockLevel":1,"icon":"/assets/ui/spells/artifactability_feraldruid_ashamanesbite.png","sigil":"RB","description":"Ravenous Bite (Packleader)Rank 1InstantA strong bite that causes 15 to 17 Physical Damage and heals you for the same amount. Generates additional threat.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804091,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":560365,"level":1,"description":"Ravenous Bite (Packleader)Rank 1InstantA strong bite that causes 15 to 17 Physical Damage and heals you for the same amount. Generates additional threat.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804091,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-20-regenerative-power-none-706597","classId":"bloodmage","dbcSpellId":706597,"name":"Regenerative Power","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_gem_bloodstone_01.png","sigil":"RP","description":"Regenerative PowerRank 2Increases damage and healing done by 6%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706597,"level":1,"description":"Regenerative PowerRank 2Increases damage and healing done by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"bloodmage-sanguine-mend","classId":"bloodmage","dbcSpellId":802310,"name":"Sanguine Mend","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodhealth_border.png","sigil":"SM","description":"Sanguine MendRank 120 Rage 2 sec castRequires Mortal Form Mend an ally's wounds, healing them for 24+0+Spi*0.25+AP*.2+SP*.58.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0.5458333343267441,"basePoints":24,"dieSides":3,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":14},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":802310,"level":1,"description":"Sanguine MendRank 120 Rage 2 sec castRequires Mortal Form Mend an ally's wounds, healing them for 24+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0.5458333343267441,"basePoints":24,"dieSides":3,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":14},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":504079,"level":10,"description":"Sanguine MendRank 220 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 55+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1.1533333333333333,"basePoints":55,"dieSides":14,"pointsPerLevel":2.5,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":504080,"level":16,"description":"Sanguine MendRank 320 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 125+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1.967741935483871,"basePoints":125,"dieSides":21,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":504081,"level":26,"description":"Sanguine MendRank 420 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 240+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.5536585164263967,"basePoints":240,"dieSides":14,"pointsPerLevel":2.5999999046325684,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":504082,"level":36,"description":"Sanguine MendRank 520 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 347+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":3.0935947443145553,"basePoints":347,"dieSides":29,"pointsPerLevel":3.119999885559082,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":44},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":504083,"level":46,"description":"Sanguine MendRank 620 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 585+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":585,"dieSides":32,"pointsPerLevel":6.920000076293945,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":504084,"level":52,"description":"Sanguine MendRank 720 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 776+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":776,"dieSides":45,"pointsPerLevel":5.506669998168945,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":504085,"level":56,"description":"Sanguine MendRank 820 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 945+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":945,"dieSides":52,"pointsPerLevel":6.639999866485596,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":504086,"level":64,"description":"Sanguine MendRank 920 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 759+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":759,"dieSides":98,"pointsPerLevel":7.893330097198486,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34965","classId":"bloodmage","dbcSpellId":504098,"name":"Saturating Sutures","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_bloodysatyrscepter.png","sigil":"SS","description":"Your periodic damage and healing has a 15% chance to reduce the cost your next Sanguine Mend by -100% for 8 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504137,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504098,"level":1,"description":"Your periodic damage and healing has a 15% chance to reduce the cost your next Sanguine Mend by -100% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504137,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34965},{"id":"coa-tree-29543","classId":"bloodmage","dbcSpellId":801074,"name":"Scarlet Delirium","unlockLevel":1,"icon":"/assets/ui/spells/nhi_blooddrop_(2)_border.png","sigil":"SD","description":"Requires Mortal Form Flood the minds of up to 5 nearby enemies with visions of unraveling flesh, fearing them for 40 seconds (8 sec versus players) while draining their life essence, siphoning 8 + 15% SP health every 3 sec. Damage caused may interrupt the effect.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"status","status":"fear","durationMs":40000},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":40000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":40000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801074,"level":1,"description":"Requires Mortal Form Flood the minds of up to 5 nearby enemies with visions of unraveling flesh, fearing them for 40 seconds (8 sec versus players) while draining their life essence, siphoning 8 + 15% SP health every 3 sec. Damage caused may interrupt the effect.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"status","status":"fear","durationMs":40000},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":40000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":40000}]}],"talentEntryId":29543},{"id":"coa-tree-33715","classId":"bloodmage","dbcSpellId":806177,"name":"Shadow Howl","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_howlofterror.png","sigil":"SH","description":"Let loose a dark howl that inspires your allies, granting immunity to movement impairing effects to all allies for 6 seconds.","target":"hostile","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":7,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806177,"level":1,"description":"Let loose a dark howl that inspires your allies, granting immunity to movement impairing effects to all allies for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":11,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":7,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}],"talentEntryId":33715},{"id":"coa-tree-4025","classId":"bloodmage","dbcSpellId":92112,"name":"Thirst","unlockLevel":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_blood_0003s_0000_hand_border.png","sigil":"TH","description":"Level 10 Passive Spells that cost health now grant Thirst. Reaching 10 stacks makes you Insatiable, reducing your damage dealt by -30% every 3 sec until Thirst ends. ThirstGenerates 5 Rage and then increases the health costs of your spells by 5% and increases their damage by 3%. Stacks 10 times.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706613,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92112,"level":1,"description":"Level 10 Passive Spells that cost health now grant Thirst. Reaching 10 stacks makes you Insatiable, reducing your damage dealt by -30% every 3 sec until Thirst ends. ThirstGenerates 5 Rage and then increases the health costs of your spells by 5% and increases their damage by 3%. Stacks 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706613,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4025},{"id":"coa-tree-34966","classId":"bloodmage","dbcSpellId":705734,"name":"Transfusion","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodboil_border.png","sigil":"TR","description":"Swap health percentages with an ally. Increases the lower health percentage of the two to 40%, if below that amount.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":77,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":705734,"level":1,"description":"Swap health percentages with an ally. Increases the lower health percentage of the two to 40%, if below that amount.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":77,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":34966},{"id":"coa-tree-4525","classId":"bloodmage","dbcSpellId":804726,"name":"Vampiric Fang","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_bloodhaze_border.png","sigil":"VF","description":"Vampiric FangRank 120 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 36+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8320512955005352,"basePoints":36,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804726,"level":1,"description":"Vampiric FangRank 120 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 36+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8320512955005352,"basePoints":36,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":4525},{"id":"coa-tree-7283","classId":"bloodmage","dbcSpellId":504088,"name":"Vampiric Pools","unlockLevel":1,"icon":"/assets/ui/spells/warlock_bloodstone.png","sigil":"VP","description":"When Liquify ends, you now leech 474 + 100% SP health from nearby enemies.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504088,"level":1,"description":"When Liquify ends, you now leech 474 + 100% SP health from nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7283},{"id":"coa-tree-30334","classId":"bloodmage","dbcSpellId":560074,"name":"Veins of Vengeance","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_sanguinaryvein.png","sigil":"VO","description":"Increases your chance to resist curse effects by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560074,"level":1,"description":"Increases your chance to resist curse effects by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30334},{"id":"coa-20-vicious-maw-75-704619","classId":"bloodmage","dbcSpellId":704619,"name":"Vicious Maw","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_furyintheblood.png","sigil":"VM","description":"Vicious MawRank 2Grants a 20% chance to trigger a Worgen Bite against enemies who strike you with a melee attack while Ironfur is active.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":800491,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":32,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":704619,"level":1,"description":"Vicious MawRank 2Grants a 20% chance to trigger a Worgen Bite against enemies who strike you with a melee attack while Ironfur is active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":800491,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":32,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-20-visceral-vitality-73-704687","classId":"bloodmage","dbcSpellId":704687,"name":"Visceral Vitality","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_boilingblood.png","sigil":"VV","description":"Visceral VitalityRank 1Increases all healing done by Lifedrinker by 10% and its tick rate by 5%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704687,"level":1,"description":"Visceral VitalityRank 1Increases all healing done by Lifedrinker by 10% and its tick rate by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29173","classId":"bloodmage","dbcSpellId":804207,"name":"Wicked Howl","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_bloodmaw_border.png","sigil":"WH","description":"Let loose a wicked howl, increasing your maximum health by 30% for 20 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804207,"level":1,"description":"Let loose a wicked howl, increasing your maximum health by 30% for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":17},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":29173},{"id":"bloodmage-blood-shield","classId":"bloodmage","dbcSpellId":504296,"name":"Blood Shield","unlockLevel":4,"icon":"/assets/ui/spells/inv_shield_1h_revendrethquest_b_01.png","sigil":"BS","description":"Coagulate blood magic into a protective barrier.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"shield","coefficient":2,"durationMs":12000}],"source":"coa-starter"},{"id":"coa-20-bloodfang-bite-74-800156","classId":"bloodmage","dbcSpellId":800156,"name":"Bloodfang Bite","unlockLevel":6,"icon":"/assets/ui/spells/spell_deathknight_gnaw_ghoul.png","sigil":"BB","description":"Bloodfang BiteRank 130 Rage InstantBite an enemy, dealing 37+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.6031746031746031,"basePoints":37,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800156,"level":6,"description":"Bloodfang BiteRank 130 Rage InstantBite an enemy, dealing 37+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.6031746031746031,"basePoints":37,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501695,"level":12,"description":"Bloodfang BiteRank 230 Rage InstantBite an enemy, dealing 90+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":1.123456790123457,"basePoints":90,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501696,"level":18,"description":"Bloodfang BiteRank 330 Rage InstantBite an enemy, dealing 145+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":1.47979797979798,"basePoints":145,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501697,"level":24,"description":"Bloodfang BiteRank 430 Rage InstantBite an enemy, dealing 203+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":1.7564102564102564,"basePoints":203,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503613,"level":30,"description":"Bloodfang BiteRank 530 Rage InstantBite an enemy, dealing 278+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":2.085185185185185,"basePoints":278,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503614,"level":34,"description":"Bloodfang BiteRank 630 Rage InstantBite an enemy, dealing 347+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":2.3945578231292517,"basePoints":347,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503615,"level":42,"description":"Bloodfang BiteRank 730 Rage InstantBite an enemy, dealing 412+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":2.4502923976608186,"basePoints":412,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"bloodmage-bloodmoon-blast","classId":"bloodmage","dbcSpellId":501607,"name":"Bloodmoon Blast","unlockLevel":6,"icon":"/assets/ui/spells/ability_revendreth_warlock.png","sigil":"BB","description":"Bloodmoon BlastRank 27% of base 2 sec castRequires Mortal Form Blast an enemy for 41+ShaP*0.466229 Shadow damage and generates Rage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":0.8412701553768582,"basePoints":41,"dieSides":5,"pointsPerLevel":1.6666699647903442,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501607,"level":6,"description":"Bloodmoon BlastRank 27% of base 2 sec castRequires Mortal Form Blast an enemy for 41+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":0.8412701553768582,"basePoints":41,"dieSides":5,"pointsPerLevel":1.6666699647903442,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501608,"level":14,"description":"Bloodmoon BlastRank 37% of base 2 sec castRequires Mortal Form Blast an enemy for 66+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":1.3264367662627121,"basePoints":66,"dieSides":13,"pointsPerLevel":3.0999999046325684,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501609,"level":22,"description":"Bloodmoon BlastRank 47% of base 2 sec castRequires Mortal Form Blast an enemy for 107+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":1.4644144333160676,"basePoints":107,"dieSides":12,"pointsPerLevel":2.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501610,"level":30,"description":"Bloodmoon BlastRank 57% of base 2 sec castRequires Mortal Form Blast an enemy for 158+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":1.8511111153496635,"basePoints":158,"dieSides":21,"pointsPerLevel":2.7300000190734863,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501611,"level":38,"description":"Bloodmoon BlastRank 67% of base 2 sec castRequires Mortal Form Blast an enemy for 215+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":2.184487189886705,"basePoints":215,"dieSides":25,"pointsPerLevel":3.166670083999634,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501612,"level":46,"description":"Bloodmoon BlastRank 77% of base 2 sec castRequires Mortal Form Blast an enemy for 286+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":2.710382513661202,"basePoints":286,"dieSides":30,"pointsPerLevel":4.25,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501613,"level":54,"description":"Bloodmoon BlastRank 87% of base 2 sec castRequires Mortal Form Blast an enemy for 383+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":4,"basePoints":383,"dieSides":43,"pointsPerLevel":8.574999809265137,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501614,"level":60,"description":"Bloodmoon BlastRank 97% of base 2 sec castRequires Mortal Form Blast an enemy for 513+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"damage","coefficient":4,"basePoints":513,"dieSides":56,"pointsPerLevel":7.683330059051514,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":142,"auraType":0,"miscValue":1,"triggerSpellId":804092,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"bloodmage-ravenous-strike","classId":"bloodmage","dbcSpellId":500123,"name":"Ravenous Strike","unlockLevel":6,"icon":"/assets/ui/spells/artifactability_feraldruid_ashamanesbite.png","sigil":"RS","description":"Ravenous StrikeRank 18% of base InstantStrike an enemy, dealing 19+0+AP*0.2+SP*.2 Physical damage and generating Rage.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500123,"level":6,"description":"Ravenous StrikeRank 18% of base InstantStrike an enemy, dealing 19+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501671,"level":12,"description":"Ravenous StrikeRank 28% of base InstantStrike an enemy, dealing 27+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501672,"level":18,"description":"Ravenous StrikeRank 38% of base InstantStrike an enemy, dealing 36+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501673,"level":24,"description":"Ravenous StrikeRank 48% of base InstantStrike an enemy, dealing 52+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501674,"level":30,"description":"Ravenous StrikeRank 58% of base InstantStrike an enemy, dealing 66+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501675,"level":36,"description":"Ravenous StrikeRank 68% of base InstantStrike an enemy, dealing 91+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501676,"level":42,"description":"Ravenous StrikeRank 78% of base InstantStrike an enemy, dealing 119+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501677,"level":48,"description":"Ravenous StrikeRank 88% of base InstantStrike an enemy, dealing 144+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501678,"level":54,"description":"Ravenous StrikeRank 98% of base InstantStrike an enemy, dealing 179+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501679,"level":60,"description":"Ravenous StrikeRank 108% of base InstantStrike an enemy, dealing 249+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":805352,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4026","classId":"bloodmage","dbcSpellId":92113,"name":"Unchained","unlockLevel":10,"icon":"/assets/ui/spells/nhi_foreshadowblood_border.png","sigil":"UN","description":"Level 10 Passive Your damaging Mortal Form spells can now be cast while moving.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807528,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":112,"miscValue":20000,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92113,"level":10,"description":"Level 10 Passive Your damaging Mortal Form spells can now be cast while moving.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807528,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":112,"miscValue":20000,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4026},{"id":"coa-20-vampyr-bite-486-801563","classId":"bloodmage","dbcSpellId":801563,"name":"Vampyr Bite","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_monsterfang_02.png","sigil":"VB","description":"Vampyr BiteRank 18 sec castBrings a dead player back to life with 70% health and mana. For the next 20 sec, the target takes 50% increased healing, but being damaged ends the effect. Cannot be cast when in combat.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":18,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":27616,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801563,"level":10,"description":"Vampyr BiteRank 18 sec castBrings a dead player back to life with 70% health and mana. For the next 20 sec, the target takes 50% increased healing, but being damaged ends the effect. Cannot be cast when in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":18,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":27616,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":20000}]}]},{"id":"coa-20-rotclaw-75-804197","classId":"bloodmage","dbcSpellId":804197,"name":"Rotclaw","unlockLevel":11,"icon":"/assets/ui/spells/5_clawstrike_border.png","sigil":"RO","description":"RotclawRank 110% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 28+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(6+0+AP*0.115) Shadow damage over 4 sec.","target":"hostile","range":{"min":0,"max":0},"radius":12,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.38602564099411935,"basePoints":28,"dieSides":5,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"dot","coefficient":0.08474358971206805,"basePoints":6,"dieSides":2,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16,"ticks":4,"intervalMs":1000,"tag":"spell-804197"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804197,"level":11,"description":"RotclawRank 110% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 28+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(6+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.38602564099411935,"basePoints":28,"dieSides":5,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"dot","coefficient":0.08474358971206805,"basePoints":6,"dieSides":2,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16,"ticks":4,"intervalMs":1000,"tag":"spell-804197"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":2,"spellId":503476,"level":18,"description":"RotclawRank 210% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 42+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(11+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.4614141413735019,"basePoints":42,"dieSides":8,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"dot","coefficient":0.1129292928886534,"basePoints":11,"dieSides":1,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22,"ticks":4,"intervalMs":1000,"tag":"spell-503476"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":3,"spellId":503477,"level":24,"description":"RotclawRank 310% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 55+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(19+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.5105982905524409,"basePoints":55,"dieSides":10,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":26},{"kind":"dot","coefficient":0.1644444443985947,"basePoints":19,"dieSides":1,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":26,"ticks":4,"intervalMs":1000,"tag":"spell-503477"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":4,"spellId":503478,"level":28,"description":"RotclawRank 410% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 70+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(28+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.5641860464631125,"basePoints":70,"dieSides":6,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"dot","coefficient":0.21922480615303497,"basePoints":28,"dieSides":1,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":4,"intervalMs":1000,"tag":"spell-503478"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":5,"spellId":503479,"level":34,"description":"RotclawRank 510% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 91+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(36+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.645170067975513,"basePoints":91,"dieSides":8,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":36},{"kind":"dot","coefficient":0.2472108843020436,"basePoints":36,"dieSides":1,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":36,"ticks":4,"intervalMs":1000,"tag":"spell-503479"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":6,"spellId":503480,"level":38,"description":"RotclawRank 610% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 118+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(45+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.7771698112406258,"basePoints":118,"dieSides":11,"pointsPerLevel":0.014999999664723873,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42},{"kind":"dot","coefficient":0.2866037735047768,"basePoints":45,"dieSides":1,"pointsPerLevel":0.014999999664723873,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42,"ticks":4,"intervalMs":1000,"tag":"spell-503480"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":7,"spellId":503481,"level":44,"description":"RotclawRank 710% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 152+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(59+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.8992090394646771,"basePoints":152,"dieSides":14,"pointsPerLevel":0.014999999664723873,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":46},{"kind":"dot","coefficient":0.3370621468093099,"basePoints":59,"dieSides":1,"pointsPerLevel":0.014999999664723873,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":46,"ticks":4,"intervalMs":1000,"tag":"spell-503481"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":8,"spellId":503482,"level":48,"description":"RotclawRank 810% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 181+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(76+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.0050793649658325,"basePoints":181,"dieSides":17,"pointsPerLevel":0.019999999552965164,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"dot","coefficient":0.40719576708223454,"basePoints":76,"dieSides":1,"pointsPerLevel":0.019999999552965164,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52,"ticks":4,"intervalMs":1000,"tag":"spell-503482"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":9,"spellId":503483,"level":54,"description":"RotclawRank 910% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 202+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(90+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.0245410626853146,"basePoints":202,"dieSides":19,"pointsPerLevel":0.019999999552965164,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56},{"kind":"dot","coefficient":0.43999999988338223,"basePoints":90,"dieSides":1,"pointsPerLevel":0.019999999552965164,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56,"ticks":4,"intervalMs":1000,"tag":"spell-503483"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":10,"spellId":503484,"level":58,"description":"RotclawRank 1010% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 220+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(107+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.0545662101443227,"basePoints":220,"dieSides":20,"pointsPerLevel":0.02500000037252903,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62},{"kind":"dot","coefficient":0.4952054795507155,"basePoints":107,"dieSides":1,"pointsPerLevel":0.02500000037252903,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62,"ticks":4,"intervalMs":1000,"tag":"spell-503484"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":11,"spellId":503485,"level":64,"description":"RotclawRank 1110% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 267+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(120+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.1853164555151252,"basePoints":267,"dieSides":25,"pointsPerLevel":0.029999999329447746,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":74},{"kind":"dot","coefficient":0.514430379565758,"basePoints":120,"dieSides":1,"pointsPerLevel":0.029999999329447746,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":74,"ticks":4,"intervalMs":1000,"tag":"spell-503485"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":12,"spellId":503486,"level":76,"description":"RotclawRank 1210% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 572+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(141+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":2.199780219531321,"basePoints":572,"dieSides":52,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"dot","coefficient":0.5276190473701491,"basePoints":141,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80,"ticks":4,"intervalMs":1000,"tag":"spell-503486"},{"kind":"utility","effectType":6,"auraType":338,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]}]},{"id":"coa-20-vampiric-fang-73-804726","classId":"bloodmage","dbcSpellId":804726,"name":"Vampiric Fang","unlockLevel":11,"icon":"/assets/ui/spells/custom_t_bloodhaze_border.png","sigil":"VF","description":"Vampiric FangRank 120 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 36+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8320512955005352,"basePoints":36,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804726,"level":11,"description":"Vampiric FangRank 120 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 36+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8320512955005352,"basePoints":36,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":504093,"level":18,"description":"Vampiric FangRank 220 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 59+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.825252520917642,"basePoints":59,"dieSides":14,"pointsPerLevel":0.8999999761581421,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":504094,"level":24,"description":"Vampiric FangRank 320 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 82+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.9430769284566244,"basePoints":82,"dieSides":14,"pointsPerLevel":0.9100000262260437,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":504095,"level":32,"description":"Vampiric FangRank 420 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 110+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.092368781989348,"basePoints":110,"dieSides":15,"pointsPerLevel":1.156999945640564,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":504096,"level":38,"description":"Vampiric FangRank 520 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 148+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.313761000363332,"basePoints":148,"dieSides":22,"pointsPerLevel":1.3259999752044678,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":504097,"level":46,"description":"Vampiric FangRank 620 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 199+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.600459015434557,"basePoints":199,"dieSides":32,"pointsPerLevel":1.7039999961853027,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":553271,"level":54,"description":"Vampiric FangRank 720 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 268+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.8382415448985814,"basePoints":268,"dieSides":42,"pointsPerLevel":1.7039999961853027,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":553272,"level":60,"description":"Vampiric FangRank 820 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 361+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":2.1721777767605253,"basePoints":361,"dieSides":52,"pointsPerLevel":1.7039999961853027,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-20-claw-sweep-486-500169","classId":"bloodmage","dbcSpellId":500169,"name":"Claw Sweep","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"Claw SweepRank 130 Rage InstantSwipe at nearby enemies, dealing 19+0+AP*.2+SP*0.2 Physical damage.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.24074074074074073,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500169,"level":12,"description":"Claw SweepRank 130 Rage InstantSwipe at nearby enemies, dealing 19+0+AP*.2+SP*0.2 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.24074074074074073,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-20-sanguine-rupture-486-800774","classId":"bloodmage","dbcSpellId":800774,"name":"Sanguine Rupture","unlockLevel":12,"icon":"/assets/ui/spells/inv_artifact_bloodoftheassassinated.png","sigil":"SR","description":"Sanguine RuptureRank 114% of base Instant castRequires Mortal Form Explode with boiling blood, dealing 17+0+ShaP*0.35 Shadow damage to enemies and generating Rage for each enemy hit.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":14},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800775,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":561304,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800774,"level":12,"description":"Sanguine RuptureRank 114% of base Instant castRequires Mortal Form Explode with boiling blood, dealing 17+0+ShaP*0.35 Shadow damage to enemies and generating Rage for each enemy hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":14},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800775,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":561304,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-20-bloodthorns-73-802313","classId":"bloodmage","dbcSpellId":802313,"name":"Bloodthorns","unlockLevel":14,"icon":"/assets/ui/spells/ability_xavius_nightmareblades.png","sigil":"BL","description":"BloodthornsRank 1Instant castBloodthorns sprout from an ally for 30 min, causing 6+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802313,"level":14,"description":"BloodthornsRank 1Instant castBloodthorns sprout from an ally for 30 min, causing 6+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":2,"spellId":501662,"level":16,"description":"BloodthornsRank 2Instant castBloodthorns sprout from an ally for 30 min, causing 7+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":3,"spellId":501663,"level":26,"description":"BloodthornsRank 3Instant castBloodthorns sprout from an ally for 30 min, causing 10+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":4,"spellId":501664,"level":36,"description":"BloodthornsRank 4Instant castBloodthorns sprout from an ally for 30 min, causing 13+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":5,"spellId":501665,"level":46,"description":"BloodthornsRank 5Instant castBloodthorns sprout from an ally for 30 min, causing 16+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":6,"spellId":501666,"level":56,"description":"BloodthornsRank 6Instant castBloodthorns sprout from an ally for 30 min, causing 19+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":7,"spellId":501667,"level":60,"description":"BloodthornsRank 7Instant castBloodthorns sprout from an ally for 30 min, causing 22+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":8,"spellId":501668,"level":66,"description":"BloodthornsRank 8Instant castBloodthorns sprout from an ally for 30 min, causing 35+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":9,"spellId":501669,"level":76,"description":"BloodthornsRank 9Instant castBloodthorns sprout from an ally for 30 min, causing 73+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":10,"spellId":501670,"level":80,"description":"BloodthornsRank 10Instant castBloodthorns sprout from an ally for 30 min, causing 73+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-20-shadowfang-ritual-73-501625","classId":"bloodmage","dbcSpellId":501625,"name":"Shadowfang Ritual","unlockLevel":14,"icon":"/assets/ui/spells/spell_shadow_vampiricaura.png","sigil":"SR","description":"Shadowfang RitualRank 230 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 57 to 75, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"utility","effectType":64,"auraType":23,"miscValue":0,"triggerSpellId":800786,"durationMs":0},{"kind":"heal","coefficient":1.6287448049961835,"basePoints":57,"dieSides":19,"pointsPerLevel":5.407199859619141,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501625,"level":14,"description":"Shadowfang RitualRank 230 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 57 to 75, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"utility","effectType":64,"auraType":23,"miscValue":0,"triggerSpellId":800786,"durationMs":0},{"kind":"heal","coefficient":1.6287448049961835,"basePoints":57,"dieSides":19,"pointsPerLevel":5.407199859619141,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501626,"level":28,"description":"Shadowfang RitualRank 330 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 144 to 184, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"utility","effectType":64,"auraType":23,"miscValue":0,"triggerSpellId":800786,"durationMs":0},{"kind":"heal","coefficient":3.0357086122498034,"basePoints":144,"dieSides":41,"pointsPerLevel":8.128800392150879,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":40},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501627,"level":41,"description":"Shadowfang RitualRank 430 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 299 to 370, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"utility","effectType":64,"auraType":23,"miscValue":0,"triggerSpellId":800786,"durationMs":0},{"kind":"heal","coefficient":4,"basePoints":299,"dieSides":72,"pointsPerLevel":10.656000137329102,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501628,"level":54,"description":"Shadowfang RitualRank 530 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 565 to 677, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"utility","effectType":64,"auraType":23,"miscValue":0,"triggerSpellId":800786,"durationMs":0},{"kind":"heal","coefficient":4,"basePoints":565,"dieSides":113,"pointsPerLevel":13.183199882507324,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":67},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501629,"level":68,"description":"Shadowfang RitualRank 630 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 1038 to 1205, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"utility","effectType":64,"auraType":23,"miscValue":0,"triggerSpellId":800786,"durationMs":0},{"kind":"heal","coefficient":4,"basePoints":1038,"dieSides":168,"pointsPerLevel":15.904800415039062,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-20-dark-liturgy-500-800781","classId":"bloodmage","dbcSpellId":800781,"name":"Dark Liturgy","unlockLevel":15,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DL","description":"Dark LiturgyRank 115% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 77+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","target":"friendly","range":{"min":0,"max":30},"radius":25,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":1.1629111197259692,"basePoints":77,"dieSides":5,"pointsPerLevel":1.710800051689148,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706623,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800781,"level":15,"description":"Dark LiturgyRank 115% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 77+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":1.1629111197259692,"basePoints":77,"dieSides":5,"pointsPerLevel":1.710800051689148,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706623,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501623,"level":20,"description":"Dark LiturgyRank 215% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 102+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":1.433142834617978,"basePoints":102,"dieSides":5,"pointsPerLevel":2.3239998817443848,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"utility","effectType":64,"auraType":4,"miscValue":0,"triggerSpellId":706623,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501624,"level":30,"description":"Dark LiturgyRank 315% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 172+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":1.7829066594441731,"basePoints":172,"dieSides":8,"pointsPerLevel":2.1730799674987793,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":64,"auraType":4,"miscValue":0,"triggerSpellId":706623,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503611,"level":38,"description":"Dark LiturgyRank 415% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 232+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":2.230547434129055,"basePoints":232,"dieSides":12,"pointsPerLevel":3.0830800533294678,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":4,"miscValue":0,"triggerSpellId":706623,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503612,"level":48,"description":"Dark LiturgyRank 515% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 302+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":2.7095237610832092,"basePoints":302,"dieSides":18,"pointsPerLevel":4.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":64,"auraType":4,"miscValue":0,"triggerSpellId":706623,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":572575,"level":56,"description":"Dark LiturgyRank 615% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 379+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":3.3769014385384573,"basePoints":379,"dieSides":23,"pointsPerLevel":5.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":64},{"kind":"utility","effectType":64,"auraType":4,"miscValue":0,"triggerSpellId":706623,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-20-vampyrs-kiss-500-504275","classId":"bloodmage","dbcSpellId":504275,"name":"Vampyr's Kiss","unlockLevel":15,"icon":"/assets/ui/spells/nhi_kiss_border.png","sigil":"VS","description":"Vampyr's KissRank 120% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 168 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.4777777777777778,"basePoints":28,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":6,"intervalMs":5000,"tag":"spell-504275"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504275,"level":15,"description":"Vampyr's KissRank 120% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 168 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.4777777777777778,"basePoints":28,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":6,"intervalMs":5000,"tag":"spell-504275"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":2,"spellId":504276,"level":22,"description":"Vampyr's KissRank 220% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 342 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":0.70675676148217,"basePoints":57,"dieSides":1,"pointsPerLevel":0.9750000238418579,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28,"ticks":6,"intervalMs":5000,"tag":"spell-504276"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":3,"spellId":504277,"level":30,"description":"Vampyr's KissRank 320% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 540 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":1.1722222434149847,"basePoints":90,"dieSides":1,"pointsPerLevel":2.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34,"ticks":6,"intervalMs":5000,"tag":"spell-504277"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":4,"spellId":504278,"level":36,"description":"Vampyr's KissRank 420% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 732 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":1.332679761001487,"basePoints":122,"dieSides":1,"pointsPerLevel":2.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42,"ticks":6,"intervalMs":5000,"tag":"spell-504278"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":5,"spellId":504279,"level":44,"description":"Vampyr's KissRank 520% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 1152 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":2.2033898305084745,"basePoints":192,"dieSides":1,"pointsPerLevel":4.5,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48,"ticks":6,"intervalMs":5000,"tag":"spell-504279"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":6,"spellId":504280,"level":50,"description":"Vampyr's KissRank 620% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 1458 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":2.4,"basePoints":243,"dieSides":1,"pointsPerLevel":4.5,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56,"ticks":6,"intervalMs":5000,"tag":"spell-504280"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":7,"spellId":504281,"level":58,"description":"Vampyr's KissRank 720% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 2034 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"dot","coefficient":3.136986301369863,"basePoints":339,"dieSides":1,"pointsPerLevel":6,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":6,"intervalMs":5000,"tag":"spell-504281"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]}]},{"id":"coa-20-hematophage-73-501640","classId":"bloodmage","dbcSpellId":501640,"name":"Hematophage","unlockLevel":16,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_bloodbite_border.png","sigil":"HE","description":"HematophageRank 27% of base 1.5 sec castRequires Mortal Form Infest an enemy with blood parasites, dealing 33+0+ShaP*.35 Shadow Damage and causing them to bleed for (12*1000/2)*(18+0+ShaP*0.1) over 12 sec. Periodic damage from this spell can critically strike.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"dot","coefficient":0.39430193747243575,"basePoints":18,"dieSides":3,"pointsPerLevel":1.1043800115585327,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21,"ticks":6,"intervalMs":2000,"tag":"spell-501640"},{"kind":"damage","coefficient":0.46021505581435335,"basePoints":33,"dieSides":3,"pointsPerLevel":0.550000011920929,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501640,"level":16,"description":"HematophageRank 27% of base 1.5 sec castRequires Mortal Form Infest an enemy with blood parasites, dealing 33+0+ShaP*.35 Shadow Damage and causing them to bleed for (12*1000/2)*(18+0+ShaP*0.1) over 12 sec. Periodic damage from this spell can critically strike.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":7},"effects":[{"kind":"dot","coefficient":0.39430193747243575,"basePoints":18,"dieSides":3,"pointsPerLevel":1.1043800115585327,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21,"ticks":6,"intervalMs":2000,"tag":"spell-501640"},{"kind":"damage","coefficient":0.46021505581435335,"basePoints":33,"dieSides":3,"pointsPerLevel":0.550000011920929,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}]}]},{"id":"coa-20-sanguinary-offering-486-706630","classId":"bloodmage","dbcSpellId":706630,"name":"Sanguinary Offering","unlockLevel":16,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_death.png","sigil":"SO","description":"Sanguinary OfferingRank 1Instant castEnact a sanguinary ritual with an ally, increasing their Stamina by 8. Lasts 30 min.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":2,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706630,"level":16,"description":"Sanguinary OfferingRank 1Instant castEnact a sanguinary ritual with an ally, increasing their Stamina by 8. Lasts 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":2,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-tree-4526","classId":"bloodmage","dbcSpellId":706599,"name":"Cunning of Atherann","unlockLevel":20,"icon":"/assets/ui/spells/atherann2.png","sigil":"CO","description":"Level 20 Passive Increases your spell damage by 25% of your Stamina and Spirit.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706599,"level":20,"description":"Level 20 Passive Increases your spell damage by 25% of your Stamina and Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4526},{"id":"coa-tree-11206","classId":"bloodmage","dbcSpellId":680684,"name":"Fleshbending","unlockLevel":20,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_rottenflesh_border.png","sigil":"FL","description":"Your critical strikes now increase the critical strike chance of all party and raid members by 5% for 10 seconds. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":582766,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680684,"level":20,"description":"Your critical strikes now increase the critical strike chance of all party and raid members by 5% for 10 seconds. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":582766,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11206},{"id":"coa-tree-4127","classId":"bloodmage","dbcSpellId":500445,"name":"Forbidden Power","unlockLevel":20,"icon":"/assets/ui/spells/5_bull_border.png","sigil":"FP","description":"Level 20 Passive Increases your spell critical strike rating by 30% of your Agility and spell hit rating by 5% of your Agility.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":500445,"level":20,"description":"Level 20 Passive Increases your spell critical strike rating by 30% of your Agility and spell hit rating by 5% of your Agility.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4127},{"id":"coa-tree-11237","classId":"bloodmage","dbcSpellId":704632,"name":"Invigorated Flesh","unlockLevel":20,"icon":"/assets/ui/spells/ability_butcher_exsanguination.png","sigil":"IF","description":"Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":65,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704632,"level":20,"description":"Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":65,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11237},{"id":"coa-tree-4627","classId":"bloodmage","dbcSpellId":301064,"name":"Uncanny Movement","unlockLevel":20,"icon":"/assets/ui/spells/spell_shadow_spectralsight.png","sigil":"UM","description":"Level 20 Passive Increases your Agility by 25% and your hit rating by 5% of your Agility. In addition, Claw Sweep now generates additional threat.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":224,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":2,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301064,"level":20,"description":"Level 20 Passive Increases your Agility by 25% and your hit rating by 5% of your Agility. In addition, Claw Sweep now generates additional threat.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":224,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":2,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4627},{"id":"coa-20-hypovolemic-shock-486-572305","classId":"bloodmage","dbcSpellId":572305,"name":"Hypovolemic Shock","unlockLevel":22,"icon":"/assets/ui/spells/uico_blood_spell_08_border.png","sigil":"HS","description":"Hypovolemic ShockRank 115% of base InstantInduce your blood into an enemy to shock their nervous system, reducing their attack power by 60 for 15 sec and removing 1 enrage effect.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":99,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":652375,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":572305,"level":22,"description":"Hypovolemic ShockRank 115% of base InstantInduce your blood into an enemy to shock their nervous system, reducing their attack power by 60 for 15 sec and removing 1 enrage effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":99,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":652375,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-20-crimson-tide-500-504282","classId":"bloodmage","dbcSpellId":504282,"name":"Crimson Tide","unlockLevel":27,"icon":"/assets/ui/spells/nhi_blood_slash_border.png","sigil":"CT","description":"Crimson TideRank 140 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(33+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":0.43301586688510957,"basePoints":33,"dieSides":2,"pointsPerLevel":0.7799999713897705,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32,"ticks":5,"intervalMs":3000,"tag":"spell-504282"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504282,"level":27,"description":"Crimson TideRank 140 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(33+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":0.43301586688510957,"basePoints":33,"dieSides":2,"pointsPerLevel":0.7799999713897705,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32,"ticks":5,"intervalMs":3000,"tag":"spell-504282"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":2,"spellId":504129,"level":34,"description":"Crimson TideRank 240 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(41+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":0.646530599010234,"basePoints":41,"dieSides":3,"pointsPerLevel":1.559999942779541,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":5,"intervalMs":3000,"tag":"spell-504129"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":504130,"level":40,"description":"Crimson TideRank 340 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(54+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":0.8406060421105587,"basePoints":54,"dieSides":4,"pointsPerLevel":2.0799999237060547,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":5,"intervalMs":3000,"tag":"spell-504130"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":504131,"level":46,"description":"Crimson TideRank 440 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(73+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":1.0158470185076605,"basePoints":73,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":5,"intervalMs":3000,"tag":"spell-504131"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":504132,"level":52,"description":"Crimson TideRank 540 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(99+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":1.6870647259612581,"basePoints":99,"dieSides":8,"pointsPerLevel":4.550000190734863,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":54,"ticks":5,"intervalMs":3000,"tag":"spell-504132"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":6,"spellId":504133,"level":56,"description":"Crimson TideRank 640 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(135+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":2.2896713113560923,"basePoints":135,"dieSides":12,"pointsPerLevel":6.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58,"ticks":5,"intervalMs":3000,"tag":"spell-504133"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":7,"spellId":504134,"level":60,"description":"Crimson TideRank 740 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(351+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":2.6644444698757597,"basePoints":351,"dieSides":15,"pointsPerLevel":4.025000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":5,"intervalMs":3000,"tag":"spell-504134"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":8,"spellId":504135,"level":66,"description":"Crimson TideRank 840 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(458+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":3.3430040893240722,"basePoints":458,"dieSides":20,"pointsPerLevel":5.224999904632568,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":70,"ticks":5,"intervalMs":3000,"tag":"spell-504135"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":9,"spellId":504136,"level":72,"description":"Crimson TideRank 940 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(765+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":3.920306487101705,"basePoints":765,"dieSides":26,"pointsPerLevel":3.4124999046325684,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":5,"intervalMs":3000,"tag":"spell-504136"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-tree-4128","classId":"bloodmage","dbcSpellId":804849,"name":"Blood Shards","unlockLevel":30,"icon":"/assets/ui/spells/uico_blood_spell_02_border.png","sigil":"BS","description":"Level 30 Passive Shadow Damage dealt now generates 1 Blood Shard, plus 1 additional if it critically strikes, for 10 minutes, up to 8. Dealing damage with Veinburst will now expend all stacks of Blood Shards, each dealing 18 + 9% AP + 15% SP Arcane damage to your target.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":506640,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804849,"level":30,"description":"Level 30 Passive Shadow Damage dealt now generates 1 Blood Shard, plus 1 additional if it critically strikes, for 10 minutes, up to 8. Dealing damage with Veinburst will now expend all stacks of Blood Shards, each dealing 18 + 9% AP + 15% SP Arcane damage to your target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":506640,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4128},{"id":"coa-tree-12906","classId":"bloodmage","dbcSpellId":685028,"name":"Blood-Cursed Armor","unlockLevel":30,"icon":"/assets/ui/spells/spell_shadow_curseoftounges.png","sigil":"BC","description":"You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":65,"auraType":22,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":685028,"level":30,"description":"You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":65,"auraType":22,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12906},{"id":"coa-tree-9906","classId":"bloodmage","dbcSpellId":684331,"name":"Blood-Cursed Weapons","unlockLevel":30,"icon":"/assets/ui/spells/5_assassinskill09_border.png","sigil":"BC","description":"Casting Crimson Tide now additionally increases the haste of all party and raid members by 5% for 15 seconds. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":685029,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":684331,"level":30,"description":"Casting Crimson Tide now additionally increases the haste of all party and raid members by 5% for 15 seconds. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":685029,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9906},{"id":"coa-tree-11528","classId":"bloodmage","dbcSpellId":805591,"name":"Bloodsores","unlockLevel":30,"icon":"/assets/ui/spells/ability_deathknight_desolation.png","sigil":"BL","description":"Level 30 Passive Periodic damage dealt now has a 20% chance to apply a Bloodsore to your target for 8 seconds, stacking 5 times. BloodsoreIncreases the damage of your next Sanguine Rupture and Bloodmoon Blast against the target by 10% for 8 seconds, stacking 5 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805592,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805591,"level":30,"description":"Level 30 Passive Periodic damage dealt now has a 20% chance to apply a Bloodsore to your target for 8 seconds, stacking 5 times. BloodsoreIncreases the damage of your next Sanguine Rupture and Bloodmoon Blast against the target by 10% for 8 seconds, stacking 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805592,"durationMs":-1}]}],"talentEntryId":11528},{"id":"coa-tree-4629","classId":"bloodmage","dbcSpellId":704661,"name":"Feral Strength","unlockLevel":30,"icon":"/assets/ui/spells/nhi_unholy_wounds_border.png","sigil":"FS","description":"Level 30 Passive While in Eternal Curse, you now gain 50% more attack power from Agility and Strength.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704661,"level":30,"description":"Level 30 Passive While in Eternal Curse, you now gain 50% more attack power from Agility and Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4629},{"id":"coa-20-night-hunters-howl-74-501680","classId":"bloodmage","dbcSpellId":501680,"name":"Night Hunter's Howl","unlockLevel":38,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"NH","description":"Night Hunter's HowlRank 225 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 98+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.8065251629307585,"basePoints":98,"dieSides":23,"pointsPerLevel":0.5062500238418579,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520459,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501680,"level":38,"description":"Night Hunter's HowlRank 225 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 98+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.8065251629307585,"basePoints":98,"dieSides":23,"pointsPerLevel":0.5062500238418579,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520459,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":3,"spellId":501681,"level":48,"description":"Night Hunter's HowlRank 325 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 137+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.9846560816285471,"basePoints":137,"dieSides":32,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":56},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520459,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":4,"spellId":501682,"level":58,"description":"Night Hunter's HowlRank 425 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 191+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.2318493182256343,"basePoints":191,"dieSides":44,"pointsPerLevel":0.987500011920929,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520459,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":5,"spellId":501683,"level":68,"description":"Night Hunter's Howlrank 525 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 267+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.464457834580816,"basePoints":267,"dieSides":62,"pointsPerLevel":0.987500011920929,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":78},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520459,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":6,"spellId":501684,"level":51,"description":"Night Hunter's HowlRank 625 Rage Instant cast8 sec cooldownHowl into the souls of nearby enemies, slowing their movement speed by 60% for 6 sec, and dealing 309+0+AP*0.258+SP*0.368973 Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":2.7402399284671053,"basePoints":309,"dieSides":15,"pointsPerLevel":4.442500114440918,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":7,"spellId":501685,"level":61,"description":"Night Hunter's HowlRank 725 Rage Instant cast8 sec cooldownHowl into the souls of nearby enemies, slowing their movement speed by 60% for 6 sec, and dealing 484+0+AP*0.258+SP*0.368973 Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":3.533629340037965,"basePoints":484,"dieSides":20,"pointsPerLevel":5.117499828338623,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":8,"spellId":501686,"level":71,"description":"Night Hunter's HowlRank 825 Rage Instant cast8 sec cooldownHowl into the souls of nearby enemies, slowing their movement speed by 60% for 6 sec, and dealing 742+0+AP*0.258+SP*0.368973 Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":4,"basePoints":742,"dieSides":26,"pointsPerLevel":5.792500019073486,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-tree-4906","classId":"bloodmage","dbcSpellId":681792,"name":"Cursed Blood","unlockLevel":40,"icon":"/assets/ui/spells/5_assassinskill37_border.png","sigil":"CB","description":"Increases the damage dealt and spell power scaling of Bloodbolt, Bloodmoon Blast, and Crimson Tide by 20%. In addition, damage dealt by Bloodbolt now reduces all resistances by 75 and increases the target's Magic damage taken by 2% for 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803722,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681792,"level":40,"description":"Increases the damage dealt and spell power scaling of Bloodbolt, Bloodmoon Blast, and Crimson Tide by 20%. In addition, damage dealt by Bloodbolt now reduces all resistances by 75 and increases the target's Magic damage taken by 2% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803722,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4906},{"id":"coa-tree-9418","classId":"bloodmage","dbcSpellId":300978,"name":"Enraging Wounds","unlockLevel":40,"icon":"/assets/ui/spells/5_wound_border.png","sigil":"EW","description":"Level 40 Passive Melee critical strikes now leech 96 + 30% Stamina health from the target, scaling with your Stamina.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560589,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300978,"level":40,"description":"Level 40 Passive Melee critical strikes now leech 96 + 30% Stamina health from the target, scaling with your Stamina.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560589,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9418},{"id":"coa-tree-11906","classId":"bloodmage","dbcSpellId":520314,"name":"Heartbreak","unlockLevel":40,"icon":"/assets/ui/spells/nhi_blooddrop_border.png","sigil":"HE","description":"Unleash a powerful surge of blood, dealing 172 + 50% shadow SP + 100% Spirit Shadow damage to an enemy, and healing 12 allies within 20 yds of the target for 162 + 30% healing + 100% Spirit. Empowered: Increases your party and raid members attack or spell power by 95 for 20 seconds, plus an additional 95 for you, scaling with level.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":807563,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":520315,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520314,"level":40,"description":"Unleash a powerful surge of blood, dealing 172 + 50% shadow SP + 100% Spirit Shadow damage to an enemy, and healing 12 allies within 20 yds of the target for 162 + 30% healing + 100% Spirit. Empowered: Increases your party and raid members attack or spell power by 95 for 20 seconds, plus an additional 95 for you, scaling with level.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":807563,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":520315,"durationMs":0}]}],"talentEntryId":11906},{"id":"coa-tree-4528","classId":"bloodmage","dbcSpellId":504252,"name":"Reckless Abandon","unlockLevel":40,"icon":"/assets/ui/spells/nhi_bloodavatar_border.png","sigil":"RA","description":"Level 40 Passive Each stack of Thirst now increases your critical strike chance by 1%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504252,"level":40,"description":"Level 40 Passive Each stack of Thirst now increases your critical strike chance by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4528},{"id":"coa-tree-4129","classId":"bloodmage","dbcSpellId":704652,"name":"Relentless","unlockLevel":40,"icon":"/assets/ui/spells/inv_shoulder_mail_pvphunter_g_01.png","sigil":"RE","description":"Level 40 Passive Physical critical strikes now reduce the cooldown of Aortic Assault by -1 sec and grant you Relentless.Relentless (Proc)Your Aortic Assault channels -10% faster for 10 seconds, stacking 5 times, and each strike now extends the duration of Taldaram's Torment by 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807357,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704652,"level":40,"description":"Level 40 Passive Physical critical strikes now reduce the cooldown of Aortic Assault by -1 sec and grant you Relentless.Relentless (Proc)Your Aortic Assault channels -10% faster for 10 seconds, stacking 5 times, and each strike now extends the duration of Taldaram's Torment by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807357,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4129},{"id":"coa-tree-4305","classId":"bloodmage","dbcSpellId":578120,"name":"Bloodmoon Power","unlockLevel":50,"icon":"/assets/ui/spells/inv_crawlinghandpet_red.png","sigil":"BP","description":"Level 50 Passive Periodic damage dealt by Rotclaw now hits -50% more often and your Bloodfang Bite, Claw Sweep, and Bloodbolt additionally scales with dodge rating.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":560480,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":578120,"level":50,"description":"Level 50 Passive Periodic damage dealt by Rotclaw now hits -50% more often and your Bloodfang Bite, Claw Sweep, and Bloodbolt additionally scales with dodge rating.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":560480,"durationMs":-1}]}],"talentEntryId":4305},{"id":"coa-tree-11916","classId":"bloodmage","dbcSpellId":680679,"name":"Purify Blood","unlockLevel":50,"icon":"/assets/ui/spells/spell_animarevendreth_nova.png","sigil":"PB","description":"Emanate an aura for 15 seconds, causing allied players to deal 70% shadow SP additional damage as Shadow damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","target":"hostile","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":26},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520839,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680679,"level":50,"description":"Emanate an aura for 15 seconds, causing allied players to deal 70% shadow SP additional damage as Shadow damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":26},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520839,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":11916},{"id":"coa-tree-4916","classId":"bloodmage","dbcSpellId":520493,"name":"Red Thirst","unlockLevel":50,"icon":"/assets/ui/spells/ability_revendreth_priest.png","sigil":"RT","description":"Enrage allies within 40 yds, increasing haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","target":"hostile","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":26},"effects":[{"kind":"utility","effectType":6,"auraType":65,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804457,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520493,"level":50,"description":"Enrage allies within 40 yds, increasing haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":26},"effects":[{"kind":"utility","effectType":6,"auraType":65,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804457,"durationMs":20000}]}],"talentEntryId":4916},{"id":"coa-tree-4306","classId":"bloodmage","dbcSpellId":807487,"name":"The Hunter and the Hunted","unlockLevel":50,"icon":"/assets/ui/spells/nhi_blood_aura_border.png","sigil":"TH","description":"Level 50 Passive When you activate a Cursed Form you now charge to your target if they are within 20 yds. If they're an enemy you root them for 2 seconds. Upon expiration, your Accursed Form can be reactivated to cause you to erupt in a burst of blood magic, leeching 364 + 33% shadow SP + 12.5% AP health from nearby enemies and teleporting you backwards.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807487,"level":50,"description":"Level 50 Passive When you activate a Cursed Form you now charge to your target if they are within 20 yds. If they're an enemy you root them for 2 seconds. Upon expiration, your Accursed Form can be reactivated to cause you to erupt in a burst of blood magic, leeching 364 + 33% shadow SP + 12.5% AP health from nearby enemies and teleporting you backwards.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4306},{"id":"coa-tree-12448","classId":"bloodmage","dbcSpellId":570023,"name":"Thirst for Blood","unlockLevel":50,"icon":"/assets/ui/spells/epic_rpg_icon_pack_blood_0002s_0000_foreground_border.png","sigil":"TF","description":"Level 50 Passive Receive a bonus based on your Thirst level. Between 1-5 stacks of Thirst: You become Sated. Between 6-10 stacks of Thirst: You become Ravenous. SatedSpell haste increased by 10%.RavenousSpell critical damage increased by 100%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":570025,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":570024,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":570023,"level":50,"description":"Level 50 Passive Receive a bonus based on your Thirst level. Between 1-5 stacks of Thirst: You become Sated. Between 6-10 stacks of Thirst: You become Ravenous. SatedSpell haste increased by 10%.RavenousSpell critical damage increased by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":570025,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":570024,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12448},{"id":"coa-20-crimson-tide-73-504134","classId":"bloodmage","dbcSpellId":504134,"name":"Crimson Tide","unlockLevel":60,"icon":"/assets/ui/spells/nhi_blood_slash_border.png","sigil":"CT","description":"Crimson TideRank 740 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(351+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":2.6644444698757597,"basePoints":351,"dieSides":15,"pointsPerLevel":4.025000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":5,"intervalMs":3000,"tag":"spell-504134"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":7,"spellId":504134,"level":60,"description":"Crimson TideRank 740 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(351+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"dot","coefficient":2.6644444698757597,"basePoints":351,"dieSides":15,"pointsPerLevel":4.025000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":5,"intervalMs":3000,"tag":"spell-504134"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]}],"ranger":[{"id":"coa-21-agile-none-560796","classId":"ranger","dbcSpellId":560796,"name":"Agile","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_38.png","sigil":"AG","description":"AgileRank 2Increases the damage of Wild Strike, Whipvine Arrow, and Ravage by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560796,"level":1,"description":"AgileRank 2Increases the damage of Wild Strike, Whipvine Arrow, and Ravage by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-21-archery-training-76-705036","classId":"ranger","dbcSpellId":705036,"name":"Archery Training","unlockLevel":1,"icon":"/assets/ui/spells/inv_bow_1h_draenorcrafted_d_01_a_horde.png","sigil":"AT","description":"Archery TrainingRank 1Increases the damage of Skullpiercer by 3% and your critical strike chance by 1%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705036,"level":1,"description":"Archery TrainingRank 1Increases the damage of Skullpiercer by 3% and your critical strike chance by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705037,"level":1,"description":"Archery TrainingRank 2Increases the damage of Skullpiercer by 6% and your critical strike chance by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29331","classId":"ranger","dbcSpellId":800084,"name":"Briar Veil","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureempower_border.png","sigil":"BV","description":"Thorns and leaves swirl around you, masking your movements for 10 seconds, increasing your dodge chance by 50% and causing dodging attacks to restore 2% maximum health and 5 Focus.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":49,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803288,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800084,"level":1,"description":"Thorns and leaves swirl around you, masking your movements for 10 seconds, increasing your dodge chance by 50% and causing dodging attacks to restore 2% maximum health and 5 Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":49,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803288,"durationMs":10000}]}],"talentEntryId":29331},{"id":"coa-tree-34168","classId":"ranger","dbcSpellId":705026,"name":"Camper","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_makecamp.png","sigil":"CA","description":"Reduces the cast time of your Bushcraft abilities by -50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705026,"level":1,"description":"Reduces the cast time of your Bushcraft abilities by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34168},{"id":"coa-21-compound-bow-none-506815","classId":"ranger","dbcSpellId":506815,"name":"Compound Bow","unlockLevel":1,"icon":"/assets/ui/spells/inv_bow_1h_draenorquest95_b_01.png","sigil":"CB","description":"Compound BowRank 2Increases ranged attack power by 8%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":167,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":506815,"level":1,"description":"Compound BowRank 2Increases ranged attack power by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":167,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29144","classId":"ranger","dbcSpellId":804725,"name":"Crippling Shot","unlockLevel":1,"icon":"/assets/ui/spells/custom_dismounting_shot.png","sigil":"CS","description":"Fire a crippling shot at an enemy slowing movement speed by -50% and knocking them off their mounts, making them unable to mount again for 5 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":21,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":300851,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804725,"level":1,"description":"Fire a crippling shot at an enemy slowing movement speed by -50% and knocking them off their mounts, making them unable to mount again for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":21,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":300851,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]}],"talentEntryId":29144},{"id":"coa-tree-30051","classId":"ranger","dbcSpellId":705044,"name":"Dirty Fighter","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_plunderarmor.png","sigil":"DF","description":"Increases the chance for Flank to critically strike by 50% and increases your chance to resist root effects by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":117,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705044,"level":1,"description":"Increases the chance for Flank to critically strike by 50% and increases your chance to resist root effects by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":117,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30051},{"id":"coa-tree-4030","classId":"ranger","dbcSpellId":92117,"name":"Dream Flowers","unlockLevel":1,"icon":"/assets/ui/spells/inv_legion_faction_dreamweavers.png","sigil":"DF","description":"Level 10 Passive Your damaging critical strikes now spawn a green Dream Flower at a random location within 15 yds of you. Dream Flower (Spawner)When an ally runs over the flower, they consume it to heal for 3% maximum health and gain 40% increased movement speed for 5 seconds.Can only occur once per sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":561005,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92117,"level":1,"description":"Level 10 Passive Your damaging critical strikes now spawn a green Dream Flower at a random location within 15 yds of you. Dream Flower (Spawner)When an ally runs over the flower, they consume it to heal for 3% maximum health and gain 40% increased movement speed for 5 seconds.Can only occur once per sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":561005,"durationMs":-1}]}],"talentEntryId":4030},{"id":"coa-21-durable-quivers-76-706279","classId":"ranger","dbcSpellId":706279,"name":"Durable Quivers","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_quiver_09.png","sigil":"DQ","description":"Durable QuiversRank 1Increases the duration of Quivers by 1.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706279,"level":1,"description":"Durable QuiversRank 1Increases the duration of Quivers by 1.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706280,"level":1,"description":"Durable QuiversRank 2Increases the duration of Quivers by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6670","classId":"ranger","dbcSpellId":560340,"name":"Elusive Character","unlockLevel":1,"icon":"/assets/ui/spells/custom_16_shadow_swords_border.png","sigil":"EC","description":"Increases your damage dealt by 10% for 12 seconds after leaving Elude.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560340,"level":1,"description":"Increases your damage dealt by 10% for 12 seconds after leaving Elude.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6670},{"id":"coa-21-elven-quivers-76-706278","classId":"ranger","dbcSpellId":706278,"name":"Elven Quivers","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_quiver_05.png","sigil":"EQ","description":"Elven QuiversRank 2InstantIncreases the effectiveness of Quivers by 25% and increases the amount of enemies hit with Spray Quiver by 2.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706278,"level":1,"description":"Elven QuiversRank 2InstantIncreases the effectiveness of Quivers by 25% and increases the amount of enemies hit with Spray Quiver by 2.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4156","classId":"ranger","dbcSpellId":560701,"name":"Elven Tactics","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_archer.png","sigil":"ET","description":"You now have a -20% chance to not consume Advantage on cast.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560701,"level":1,"description":"You now have a -20% chance to not consume Advantage on cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4156},{"id":"coa-21-even-quicker-shots-76-705030","classId":"ranger","dbcSpellId":705030,"name":"Even Quicker Shots","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_thrillofthehunt.png","sigil":"EQ","description":"Even Quicker ShotsRank 1Reduces the cast time of Quick Shot by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705030,"level":1,"description":"Even Quicker ShotsRank 1Reduces the cast time of Quick Shot by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29416","classId":"ranger","dbcSpellId":705092,"name":"Grace","unlockLevel":1,"icon":"/assets/ui/spells/5_archerskill10_border.png","sigil":"GR","description":"Increases your Agility and movement speed by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705092,"level":1,"description":"Increases your Agility and movement speed by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":707848,"level":1,"description":"Increases your Agility and movement speed by 7%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":3,"spellId":712477,"level":1,"description":"Increases your Agility and movement speed by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29416},{"id":"coa-tree-9782","classId":"ranger","dbcSpellId":561106,"name":"Grappling Arrows","unlockLevel":1,"icon":"/assets/ui/spells/custom_21_light_arrow_border.png","sigil":"GA","description":"Increases the range of Snatch by 15 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561106,"level":1,"description":"Increases the range of Snatch by 15 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9782},{"id":"coa-tree-7906","classId":"ranger","dbcSpellId":520353,"name":"Guile of the Ranger","unlockLevel":1,"icon":"/assets/ui/spells/5_archerskill27_border.png","sigil":"GO","description":"Your Instinct now additionally increases your critical strike rating by 20% of your Agility.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520545,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520353,"level":1,"description":"Your Instinct now additionally increases your critical strike rating by 20% of your Agility.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520545,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7906},{"id":"coa-tree-1906","classId":"ranger","dbcSpellId":520753,"name":"Guise","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_stayofexecution.png","sigil":"GU","description":"Instantly generates 5 stacks of Advantage and allows you see nearby stealthed enemies for 5 seconds. Usable while stealthed.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":520791,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":228,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520753,"level":1,"description":"Instantly generates 5 stacks of Advantage and allows you see nearby stealthed enemies for 5 seconds. Usable while stealthed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":520791,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":228,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}],"talentEntryId":1906},{"id":"coa-21-improved-grapplebomb-78-705090","classId":"ranger","dbcSpellId":705090,"name":"Improved Grapplebomb","unlockLevel":1,"icon":"/assets/ui/spells/ability_ironmaidens_grapeshotblast.png","sigil":"IG","description":"Improved GrapplebombRank 1Reduces the cooldown of Grapplebomb by 5 sec and increases its damage by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705090,"level":1,"description":"Improved GrapplebombRank 1Reduces the cooldown of Grapplebomb by 5 sec and increases its damage by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705091,"level":1,"description":"Improved GrapplebombRank 2Reduces the cooldown of Grapplebomb by 10 sec and increases its damage by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30351","classId":"ranger","dbcSpellId":573057,"name":"Improved Waterskins","unlockLevel":1,"icon":"/assets/ui/spells/inv_drink_waterskin_03.png","sigil":"IW","description":"Increases the effectiveness of your Waterskins by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":573057,"level":1,"description":"Increases the effectiveness of your Waterskins by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30351},{"id":"coa-tree-29337","classId":"ranger","dbcSpellId":801435,"name":"Knockout","unlockLevel":1,"icon":"/assets/ui/spells/ability_monk_blackoutkick.png","sigil":"KN","description":"Knock an enemy out, incapacitating them for 4 seconds and removing bleed and poison effects from them. Damage caused will interrupt this effect. Usable while in Elude.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":706763,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801435,"level":1,"description":"Knock an enemy out, incapacitating them for 4 seconds and removing bleed and poison effects from them. Damage caused will interrupt this effect. Usable while in Elude.","castMode":"instant","castTimeMs":0,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":706763,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29337},{"id":"coa-tree-4936","classId":"ranger","dbcSpellId":704320,"name":"Lethal Cunning","unlockLevel":1,"icon":"/assets/ui/spells/_aimedshot_red.png","sigil":"LC","description":"Entering Elude generates 1 stack of Advantage and 10 Focus every 5 sec for 30 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704321,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704320,"level":1,"description":"Entering Elude generates 1 stack of Advantage and 10 Focus every 5 sec for 30 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704321,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4936},{"id":"coa-21-lethal-wounds-77-705056","classId":"ranger","dbcSpellId":705056,"name":"Lethal Wounds","unlockLevel":1,"icon":"/assets/ui/spells/uico_blood_spell_02_border.png","sigil":"LW","description":"Lethal WoundsRank 2Increases the tick rate of your periodic damage effects by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705056,"level":1,"description":"Lethal WoundsRank 2Increases the tick rate of your periodic damage effects by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6945","classId":"ranger","dbcSpellId":520585,"name":"Natural Disguise","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureambush_border.png","sigil":"ND","description":"Instantly dispels all movement slowing effects from allies within 30 yds and transforms them into a bush, stealthing them for 20 seconds.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":16,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":421460,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":11,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520585,"level":1,"description":"Instantly dispels all movement slowing effects from allies within 30 yds and transforms them into a bush, stealthing them for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":16,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":421460,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":11,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":6945},{"id":"coa-tree-6682","classId":"ranger","dbcSpellId":706277,"name":"Outlaw","unlockLevel":1,"icon":"/assets/ui/spells/_human_04.png","sigil":"OU","description":"Increases the effectiveness of your Adaptations by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706277,"level":1,"description":"Increases the effectiveness of your Adaptations by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6682},{"id":"coa-tree-34157","classId":"ranger","dbcSpellId":801468,"name":"Pinpoint Accuracy","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_bow_01.png","sigil":"PA","description":"Critical strikes with direct damaging abilities now generate 4 Focus.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":1,"triggerSpellId":801471,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801468,"level":1,"description":"Critical strikes with direct damaging abilities now generate 4 Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":1,"triggerSpellId":801471,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34157},{"id":"coa-21-quick-shot-495-500074","classId":"ranger","dbcSpellId":500074,"name":"Quick Shot","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"QS","description":"Quick ShotRank 140 Focus InstantRequires Bows, Crossbows Generates 1 Advantage Shoot an enemy, dealing 90% Ranged Weapon Damage plus 2.","target":"hostile","range":{"min":5,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500074,"level":1,"description":"Quick ShotRank 140 Focus InstantRequires Bows, Crossbows Generates 1 Advantage Shoot an enemy, dealing 90% Ranged Weapon Damage plus 2.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34156","classId":"ranger","dbcSpellId":560341,"name":"Rapid Strikes","unlockLevel":1,"icon":"/assets/ui/spells/_crossingswords_colorsgreen.png","sigil":"RS","description":"Melee and ranged auto attacks now have a 25% chance to strike an additional time for 50% of the damage dealt. Can only occur once per sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":560342,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560341,"level":1,"description":"Melee and ranged auto attacks now have a 25% chance to strike an additional time for 50% of the damage dealt. Can only occur once per sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":560342,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34156},{"id":"coa-tree-4029","classId":"ranger","dbcSpellId":92116,"name":"Ravager","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_energeticrecovery.png","sigil":"RA","description":"Level 10 Passive Your Wild Strike now generates 1 additional Advantage. Removes the minimum range of your ranged abilities.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524659,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":312,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":112,"miscValue":20007,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92116,"level":1,"description":"Level 10 Passive Your Wild Strike now generates 1 additional Advantage. Removes the minimum range of your ranged abilities.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524659,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":312,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":112,"miscValue":20007,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4029},{"id":"coa-tree-34171","classId":"ranger","dbcSpellId":504008,"name":"Resourceful","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_healingtouch.png","sigil":"RE","description":"Reduces the cooldown of Crippling Shot and Snapseed by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504008,"level":1,"description":"Reduces the cooldown of Crippling Shot and Snapseed by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34171},{"id":"coa-tree-4028","classId":"ranger","dbcSpellId":92115,"name":"Skirmisher","unlockLevel":1,"icon":"/assets/ui/spells/inv_archaeology_70_tauren_stonewoodbow.png","sigil":"SK","description":"Level 10 Passive Increases the damage and tick rate of Toxic Dart by -30%, but reduces the duration of its damaging effect by -30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":102203,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92115,"level":1,"description":"Level 10 Passive Increases the damage and tick rate of Toxic Dart by -30%, but reduces the duration of its damaging effect by -30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":102203,"durationMs":-1}]}],"talentEntryId":4028},{"id":"coa-tree-34169","classId":"ranger","dbcSpellId":804027,"name":"Snapseed","unlockLevel":1,"icon":"/assets/ui/spells/twisted_seed.png","sigil":"SN","description":"SnapseedRank 135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 27+0+RAP*.3 Physical damage and knocking them back.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":12,"pointsPerLevel":0.5166670083999634,"bonusPowerCoefficient":0.75,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804027,"level":1,"description":"SnapseedRank 135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 27+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":12,"pointsPerLevel":0.5166670083999634,"bonusPowerCoefficient":0.75,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]}],"talentEntryId":34169},{"id":"coa-tree-34188","classId":"ranger","dbcSpellId":803115,"name":"Snatch","unlockLevel":1,"icon":"/assets/ui/spells/rogue_subterfuge.png","sigil":"SN","description":"Snatch an enemy's melee weapons, disarming them for 4 seconds. If you are disarmed, you also return your weapon to yourself.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":560496,"durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803123,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803115,"level":1,"description":"Snatch an enemy's melee weapons, disarming them for 4 seconds. If you are disarmed, you also return your weapon to yourself.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":560496,"durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803123,"durationMs":4000}]}],"talentEntryId":34188},{"id":"coa-tree-30352","classId":"ranger","dbcSpellId":802839,"name":"Survival Potion","unlockLevel":1,"icon":"/assets/ui/spells/nhi_naturecocktail_border.png","sigil":"SP","description":"Drink a survival potion, dispelling all poison and disease effects and removing 1 poison and disease effect every 3 sec for 9 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":704341,"durationMs":9000},{"kind":"utility","effectType":38,"auraType":77,"miscValue":4,"triggerSpellId":0,"durationMs":9000},{"kind":"utility","effectType":38,"auraType":77,"miscValue":3,"triggerSpellId":0,"durationMs":9000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802839,"level":1,"description":"Drink a survival potion, dispelling all poison and disease effects and removing 1 poison and disease effect every 3 sec for 9 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":704341,"durationMs":9000},{"kind":"utility","effectType":38,"auraType":77,"miscValue":4,"triggerSpellId":0,"durationMs":9000},{"kind":"utility","effectType":38,"auraType":77,"miscValue":3,"triggerSpellId":0,"durationMs":9000}]}],"talentEntryId":30352},{"id":"coa-tree-6782","classId":"ranger","dbcSpellId":560495,"name":"Whats Yours Is Mine","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_edwinvancleef.png","sigil":"WY","description":"Removes the Focus cost of Snatch.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560495,"level":1,"description":"Removes the Focus cost of Snatch.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6782},{"id":"coa-21-skullpiercer-495-802036","classId":"ranger","dbcSpellId":802036,"name":"Skullpiercer","unlockLevel":3,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SK","description":"SkullpiercerRank 130 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 10+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.2037037037037037,"basePoints":10,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":3,"maxScalingLevel":8},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802036,"level":3,"description":"SkullpiercerRank 130 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 10+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.2037037037037037,"basePoints":10,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":3,"maxScalingLevel":8},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501715,"level":10,"description":"SkullpiercerRank 230 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 22+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.31333333333333335,"basePoints":22,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}]},{"rank":3,"spellId":501716,"level":18,"description":"SkullpiercerRank 330 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 47+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.47474747474747475,"basePoints":47,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24}]},{"rank":4,"spellId":501717,"level":26,"description":"SkullpiercerRank 430 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 81+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.6626016260162602,"basePoints":81,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32}]},{"rank":5,"spellId":501718,"level":34,"description":"SkullpiercerRank 530 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 117+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.8061224489795918,"basePoints":117,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":6,"spellId":501719,"level":42,"description":"SkullpiercerRank 630 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 177+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.0497076023391814,"basePoints":177,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48}]},{"rank":7,"spellId":501720,"level":50,"description":"SkullpiercerRank 730 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 235+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.2256410256410257,"basePoints":235,"dieSides":9,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":8,"spellId":501721,"level":58,"description":"SkullpiercerRank 830 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 314+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.461187214611872,"basePoints":314,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64}]},{"rank":9,"spellId":501722,"level":66,"description":"SkullpiercerRank 930 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 443+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.860082304526749,"basePoints":443,"dieSides":19,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72}]},{"rank":10,"spellId":501723,"level":74,"description":"SkullpiercerRank 1030 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 554+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":2.1235955056179776,"basePoints":554,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80}]}]},{"id":"coa-21-flank-495-804940","classId":"ranger","dbcSpellId":804940,"name":"Flank","unlockLevel":4,"icon":"/assets/ui/spells/ability_rogue_surpriseattack2.png","sigil":"FL","description":"FlankRank 160 Focus InstantRequires Melee Weapon Generates 2 Advantage Flank an enemy from behind, taking them by surprise and dealing 150% Weapon Damage (300% if a dagger is equipped) plus 10 Physical damage.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804940,"level":4,"description":"FlankRank 160 Focus InstantRequires Melee Weapon Generates 2 Advantage Flank an enemy from behind, taking them by surprise and dealing 150% Weapon Damage (300% if a dagger is equipped) plus 10 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-21-waterskin-505-800269","classId":"ranger","dbcSpellId":800269,"name":"Waterskin","unlockLevel":6,"icon":"/assets/ui/spells/inv_drink_waterskin_12.png","sigil":"WA","description":"WaterskinRank 1Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 61+0+AP*1 health and 20% of your missing Mana or Focus.","target":"friendly","range":{"min":0,"max":10},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.044444445579771,"basePoints":61,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800269,"level":6,"description":"WaterskinRank 1Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 61+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.044444445579771,"basePoints":61,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501748,"level":14,"description":"WaterskinRank 2Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 156+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":2.125671024980216,"basePoints":156,"dieSides":1,"pointsPerLevel":2.0666699409484863,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501749,"level":22,"description":"WaterskinRank 3Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 271+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":3.511711730613365,"basePoints":271,"dieSides":1,"pointsPerLevel":5.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501750,"level":28,"description":"WaterskinRank 4Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 401+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":401,"dieSides":1,"pointsPerLevel":5.333330154418945,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501751,"level":36,"description":"WaterskinRank 5Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 566+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":566,"dieSides":1,"pointsPerLevel":7.533329963684082,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501752,"level":44,"description":"WaterskinRank 6Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 731+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":731,"dieSides":1,"pointsPerLevel":9.733329772949219,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501753,"level":52,"description":"WaterskinRank 7Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 951+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":951,"dieSides":1,"pointsPerLevel":12.66670036315918,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501754,"level":60,"description":"WaterskinRank 8Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 1236+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":1236,"dieSides":1,"pointsPerLevel":16.466699600219727,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501755,"level":68,"description":"WaterskinRank 930 Focus Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 1694+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":1694,"dieSides":1,"pointsPerLevel":13.359999656677246,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501756,"level":76,"description":"WaterskinRank 1030 Focus Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 2052+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":2052,"dieSides":1,"pointsPerLevel":13.069999694824219,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":84},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":137,"auraType":0,"miscValue":2,"triggerSpellId":0,"durationMs":0}]}]},{"id":"ranger-wild-strike","classId":"ranger","dbcSpellId":501724,"name":"Wild Strike","unlockLevel":8,"icon":"/assets/ui/spells/ability_rogue_cuttothechase.png","sigil":"WS","description":"Wild StrikeRank 250 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 12. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501724,"level":8,"description":"Wild StrikeRank 250 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 12. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501725,"level":14,"description":"Wild StrikeRank 350 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 27. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501726,"level":22,"description":"Wild StrikeRank 450 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 48. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501727,"level":28,"description":"Wild StrikeRank 550 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 77. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501728,"level":34,"description":"Wild StrikeRank 650 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 107. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501729,"level":42,"description":"Wild StrikeRank 750 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 147. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501730,"level":48,"description":"Wild StrikeRank 850 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 189. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501731,"level":54,"description":"Wild StrikeRank 950 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 250. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501732,"level":60,"description":"Wild StrikeRank 1050 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 319. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":501733,"level":68,"description":"Wild StrikeRank 1150 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 406. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":501734,"level":74,"description":"Wild StrikeRank 1250 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 510. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560962,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-21-woodsmans-adaptation-495-800266","classId":"ranger","dbcSpellId":800266,"name":"Woodsman's Adaptation","unlockLevel":8,"icon":"/assets/ui/spells/misc_legionfall_hunter.png","sigil":"WS","description":"Woodsman's AdaptationRank 120 Focus Instant castEnhance an ally's focus, increasing their melee and ranged attack power by 30. Lasts 30 min","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":99,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":124,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800266,"level":8,"description":"Woodsman's AdaptationRank 120 Focus Instant castEnhance an ally's focus, increasing their melee and ranged attack power by 30. Lasts 30 min","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":99,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":124,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"ranger-hydras-bite","classId":"ranger","dbcSpellId":503106,"name":"Hydra's Bite","unlockLevel":10,"icon":"/assets/ui/spells/novart_weapon_(4)_border.png","sigil":"HS","description":"Hydra's BiteRank 240 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":503106,"level":10,"description":"Hydra's BiteRank 240 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":3,"spellId":503107,"level":19,"description":"Hydra's BiteRank 340 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":4,"spellId":503108,"level":28,"description":"Hydra's BiteRank 440 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":5,"spellId":503109,"level":37,"description":"Hydra's BiteRank 540 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":6,"spellId":503110,"level":45,"description":"Hydra's BiteRank 640 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":7,"spellId":503111,"level":54,"description":"Hydra's BiteRank 740 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":8,"spellId":503112,"level":63,"description":"Hydra's BiteRank 840 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":9,"spellId":503113,"level":72,"description":"Hydra's BiteRank 940 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803105,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]}]},{"id":"ranger-power-shot","classId":"ranger","dbcSpellId":501698,"name":"Power Shot","unlockLevel":12,"icon":"/assets/ui/spells/5_archerskill31_border.png","sigil":"PS","description":"Power ShotRank 220 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 44 to 55 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":1.1474073904531974,"basePoints":44,"dieSides":12,"pointsPerLevel":3.619999885559082,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":23},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804110,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501698,"level":12,"description":"Power ShotRank 220 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 44 to 55 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":1.1474073904531974,"basePoints":44,"dieSides":12,"pointsPerLevel":3.619999885559082,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":23},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804110,"durationMs":0}]},{"rank":3,"spellId":501699,"level":24,"description":"Power ShotRank 320 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 98 to 120 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":2.006495679545606,"basePoints":98,"dieSides":23,"pointsPerLevel":5.239999771118164,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":34},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804110,"durationMs":0}]},{"rank":4,"spellId":501700,"level":35,"description":"Power ShotRank 420 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 187 to 224 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":2.939166644414266,"basePoints":187,"dieSides":38,"pointsPerLevel":6.724999904632568,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804110,"durationMs":0}]},{"rank":5,"spellId":501701,"level":47,"description":"Power ShotRank 520 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 343 to 401 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":343,"dieSides":59,"pointsPerLevel":8.345000267028809,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":57},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804110,"durationMs":0}]},{"rank":6,"spellId":501702,"level":58,"description":"Power ShotRank 620 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 574 to 656 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":574,"dieSides":83,"pointsPerLevel":9.829999923706055,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":69},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804110,"durationMs":0}]},{"rank":7,"spellId":501703,"level":70,"description":"Power ShotRank 720 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 960 to 1073 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":960,"dieSides":114,"pointsPerLevel":11.449999809265137,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804110,"durationMs":0}]}]},{"id":"coa-21-snapseed-76-804027","classId":"ranger","dbcSpellId":804027,"name":"Snapseed","unlockLevel":14,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SN","description":"SnapseedRank 135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 27+0+RAP*.3 Physical damage and knocking them back.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":12,"pointsPerLevel":0.5166670083999634,"bonusPowerCoefficient":0.75,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804027,"level":14,"description":"SnapseedRank 135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 27+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":12,"pointsPerLevel":0.5166670083999634,"bonusPowerCoefficient":0.75,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":2,"spellId":503449,"level":22,"description":"SnapseedRank 235 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 57+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.6975975369547939,"basePoints":57,"dieSides":14,"pointsPerLevel":0.6333330273628235,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":3,"spellId":503450,"level":30,"description":"SnapseedRank 335 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 93+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.9240740687758834,"basePoints":93,"dieSides":18,"pointsPerLevel":0.7749999761581421,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":4,"spellId":503451,"level":38,"description":"SnapseedRank 435 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 136+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.1598531735018365,"basePoints":136,"dieSides":25,"pointsPerLevel":0.9583330154418945,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":5,"spellId":503452,"level":46,"description":"SnapseedRank 535 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 189+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.418305998942891,"basePoints":189,"dieSides":34,"pointsPerLevel":1.1749999523162842,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":6,"spellId":503453,"level":54,"description":"SnapseedRank 635 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 255+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.7094211440155471,"basePoints":255,"dieSides":43,"pointsPerLevel":1.4416699409484863,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":7,"spellId":503454,"level":62,"description":"SnapseedRank 735 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 335+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":3.5085853188584895,"basePoints":335,"dieSides":55,"pointsPerLevel":7.23360013961792,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":8,"spellId":503455,"level":48,"description":"SnapseedRank 835 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 177+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":3.1839069992146163,"basePoints":177,"dieSides":69,"pointsPerLevel":8.140800476074219,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":9,"spellId":503456,"level":54,"description":"SnapseedRank 935 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 197+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":3.4738820762449993,"basePoints":197,"dieSides":82,"pointsPerLevel":8.918399810791016,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":10,"spellId":503457,"level":61,"description":"SnapseedRank 1035 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 217+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":3.795445525855349,"basePoints":217,"dieSides":99,"pointsPerLevel":9.825599670410156,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":67},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":11,"spellId":503458,"level":68,"description":"SnapseedRank 1135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 357+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":4,"basePoints":357,"dieSides":118,"pointsPerLevel":10.732799530029297,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":73},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]},{"rank":12,"spellId":503459,"level":74,"description":"SnapseedRank 1235 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 400+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":4,"basePoints":400,"dieSides":136,"pointsPerLevel":11.51039981842041,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":807167,"durationMs":0}]}]},{"id":"coa-21-5forestwood-key-495-804759","classId":"ranger","dbcSpellId":804759,"name":"5Forestwood Key","unlockLevel":16,"icon":"/assets/ui/spells/_keygoldacid.png","sigil":"FK","description":"Forestwood KeyRank 13 sec castReagents: Crude Leather, Copper Bar, Coarse Thread, Forestwood Log Creates a temporary magical grove key to open locks that require up to 25 lockpicking skill.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"cast","castTimeMs":13000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":24,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804759,"level":16,"description":"Forestwood KeyRank 13 sec castReagents: Crude Leather, Copper Bar, Coarse Thread, Forestwood Log Creates a temporary magical grove key to open locks that require up to 25 lockpicking skill.","castMode":"cast","castTimeMs":13000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":24,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"ranger-serrated-shot","classId":"ranger","dbcSpellId":500073,"name":"Serrated Shot","unlockLevel":16,"icon":"/assets/ui/spells/ability_hunter_barbedshot.png","sigil":"SS","description":"Serrated ShotRank 125 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 36+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dot","coefficient":0.397132731253101,"basePoints":36,"dieSides":1,"pointsPerLevel":0.058334000408649445,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":1,"intervalMs":3000,"tag":"spell-500073"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500073,"level":16,"description":"Serrated ShotRank 125 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 36+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dot","coefficient":0.397132731253101,"basePoints":36,"dieSides":1,"pointsPerLevel":0.058334000408649445,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":1,"intervalMs":3000,"tag":"spell-500073"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":2,"spellId":501704,"level":24,"description":"Serrated ShotRank 225 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 52+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dot","coefficient":0.47264957326090234,"basePoints":52,"dieSides":1,"pointsPerLevel":0.13750000298023224,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28,"ticks":1,"intervalMs":3000,"tag":"spell-501704"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":802038,"durationMs":4000}]},{"rank":3,"spellId":501705,"level":30,"description":"Serrated ShotRank 325 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 77+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dot","coefficient":0.6018519244812153,"basePoints":77,"dieSides":1,"pointsPerLevel":0.14166699349880219,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36,"ticks":1,"intervalMs":3000,"tag":"spell-501705"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":802038,"durationMs":4000}]},{"rank":4,"spellId":501706,"level":38,"description":"Serrated ShotRank 425 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 94+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dot","coefficient":0.6409854840182658,"basePoints":94,"dieSides":1,"pointsPerLevel":0.20833399891853333,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44,"ticks":1,"intervalMs":3000,"tag":"spell-501706"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":5,"spellId":501707,"level":46,"description":"Serrated ShotRank 525 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 117+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dot","coefficient":0.7650275771083728,"basePoints":117,"dieSides":1,"pointsPerLevel":0.5000010132789612,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52,"ticks":1,"intervalMs":3000,"tag":"spell-501707"}]},{"rank":6,"spellId":575836,"level":54,"description":"Serrated ShotRank 625 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 136+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dot","coefficient":0.8135265762679242,"basePoints":136,"dieSides":1,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60,"ticks":1,"intervalMs":3000,"tag":"spell-575836"}]},{"rank":7,"spellId":575837,"level":62,"description":"Serrated ShotRank 725 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 156+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dot","coefficient":0.8095240814861281,"basePoints":156,"dieSides":1,"pointsPerLevel":0.5000010132789612,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":80,"ticks":1,"intervalMs":3000,"tag":"spell-575837"}]}]},{"id":"coa-21-assault-77-803108","classId":"ranger","dbcSpellId":803108,"name":"Assault","unlockLevel":17,"icon":"/assets/ui/spells/ability_rogue_ruthlessness.png","sigil":"AS","description":"AssaultRank 155 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 8+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":0.25,"basePoints":8,"dieSides":2,"pointsPerLevel":0.27000001072883606,"bonusPowerCoefficient":0.25,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803109,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803108,"level":17,"description":"AssaultRank 155 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 8+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":0.25,"basePoints":8,"dieSides":2,"pointsPerLevel":0.27000001072883606,"bonusPowerCoefficient":0.25,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803109,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503099,"level":24,"description":"AssaultRank 255 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 32+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":0.3427350439577021,"basePoints":32,"dieSides":4,"pointsPerLevel":0.2750000059604645,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":582824,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503100,"level":32,"description":"AssaultRank 355 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 59+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":0.5118204820240643,"basePoints":59,"dieSides":6,"pointsPerLevel":0.3333339989185333,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":582825,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503101,"level":40,"description":"AssaultRank 455 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 92+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":0.6787878773429177,"basePoints":92,"dieSides":8,"pointsPerLevel":0.4124999940395355,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":582826,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503102,"level":48,"description":"AssaultRank 555 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 129+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":0.8380954025914429,"basePoints":129,"dieSides":11,"pointsPerLevel":0.5083339810371399,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":582827,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503103,"level":56,"description":"AssaultRank 655 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 170+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":0.9953051643192489,"basePoints":170,"dieSides":15,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":582828,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503104,"level":64,"description":"AssaultRank 755 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 224+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":1.1954994845490918,"basePoints":224,"dieSides":21,"pointsPerLevel":0.7708340287208557,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":582829,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503105,"level":72,"description":"AssaultRank 855 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 294+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":55},"effects":[{"kind":"damage","coefficient":1.9771264394124348,"basePoints":294,"dieSides":28,"pointsPerLevel":2.896250009536743,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":582830,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4429","classId":"ranger","dbcSpellId":680470,"name":"Sniper's Focus","unlockLevel":20,"icon":"/assets/ui/spells/inv_crossbow_2h_kultirasquest_b_01.png","sigil":"SS","description":"Consuming Advantage now has a 20% chance per Advantage spent to refund 20 Focus.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807318,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680470,"level":20,"description":"Consuming Advantage now has a 20% chance per Advantage spent to refund 20 Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807318,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4429},{"id":"coa-tree-4430","classId":"ranger","dbcSpellId":301066,"name":"Nimble","unlockLevel":30,"icon":"/assets/ui/spells/inv_weapon_bow_02.png","sigil":"NI","description":"Level 30 Passive Increases your ranged haste by 20% of your Agility.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":262144,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301066,"level":30,"description":"Level 30 Passive Increases your ranged haste by 20% of your Agility.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":262144,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4430},{"id":"coa-tree-4431","classId":"ranger","dbcSpellId":300460,"name":"Bleeding Edge","unlockLevel":40,"icon":"/assets/ui/spells/inv_misc_thornnecklace.png","sigil":"BE","description":"Level 40 Passive Allows the periodic damage dealt by Serrated Shot to critically strike.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":286,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300460,"level":40,"description":"Level 40 Passive Allows the periodic damage dealt by Serrated Shot to critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":286,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4431},{"id":"coa-tree-7952","classId":"ranger","dbcSpellId":582855,"name":"Sharpshooter","unlockLevel":50,"icon":"/assets/ui/spells/ability_trueshot.png","sigil":"SH","description":"Level 50 Passive Adds 25% to the bonuses that your stacks of Advantage provide.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":45,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":582855,"level":50,"description":"Level 50 Passive Adds 25% to the bonuses that your stacks of Advantage provide.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":45,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7952}],"chronomancer":[{"id":"coa-tree-30277","classId":"chronomancer","dbcSpellId":800857,"name":"Accelerated Recovery","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_healingfocus.png","sigil":"AR","description":"Accelerated RecoveryRank 118% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(12+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.24070173263549804,"basePoints":12,"dieSides":1,"pointsPerLevel":0.6052629947662354,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800857,"level":1,"description":"Accelerated RecoveryRank 118% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(12+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.24070173263549804,"basePoints":12,"dieSides":1,"pointsPerLevel":0.6052629947662354,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":30277},{"id":"coa-tree-4032","classId":"chronomancer","dbcSpellId":92119,"name":"Aeon of Resilience","unlockLevel":1,"icon":"/assets/ui/spells/inv_trinket_80_kultiras02a.png","sigil":"AO","description":"Level 10 Passive Teaches you Aeon of Resilience.Aeon of ResilienceReduces Epoch's cast time by -25% and it's mana cost by -10%, and healing done by it now reduces the target's damage taken by -5% for 6 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92119,"level":1,"description":"Level 10 Passive Teaches you Aeon of Resilience.Aeon of ResilienceReduces Epoch's cast time by -25% and it's mana cost by -10%, and healing done by it now reduces the target's damage taken by -5% for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4032},{"id":"coa-tree-6214","classId":"chronomancer","dbcSpellId":560948,"name":"Ahead of the Game","unlockLevel":1,"icon":"/assets/ui/spells/achievement_bg_win_av_x_times.png","sigil":"AO","description":"Every 10th instance of your damage dealt or healing now gives you 60 increased spell power for 10 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":592009,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560948,"level":1,"description":"Every 10th instance of your damage dealt or healing now gives you 60 increased spell power for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":592009,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6214},{"id":"coa-22-balance-of-power-79-706108","classId":"chronomancer","dbcSpellId":706108,"name":"Balance of Power","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_spiresofarak.png","sigil":"BO","description":"Balance of PowerRank 1Increases the effectiveness of Chromatic Empowerment and Order Empowerment stacks by 8%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706108,"level":1,"description":"Balance of PowerRank 1Increases the effectiveness of Chromatic Empowerment and Order Empowerment stacks by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-22-black-hole-79-706045","classId":"chronomancer","dbcSpellId":706045,"name":"Black Hole","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_mindtwisting.png","sigil":"BH","description":"Black HoleRank 2Instant castIncreases the damage of Chronurgy by 100% against enemies affected by Decomposition. Increases the critical strike damage bonus of your spells by 70%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706045,"level":1,"description":"Black HoleRank 2Instant castIncreases the damage of Chronurgy by 100% against enemies affected by Decomposition. Increases the critical strike damage bonus of your spells by 70%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-22-carbon-dating-81-706101","classId":"chronomancer","dbcSpellId":706101,"name":"Carbon Dating","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology.png","sigil":"CD","description":"Carbon DatingRank 1Sands of Time stacks boost the healing of Epoch by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706101,"level":1,"description":"Carbon DatingRank 1Sands of Time stacks boost the healing of Epoch by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6223","classId":"chronomancer","dbcSpellId":706063,"name":"Chaos Omen","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_starmetal.png","sigil":"CO","description":"Reduces the cooldown of your Gravity Bomb by -30 sec, and its explosion occurs -3 sec faster.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706063,"level":1,"description":"Reduces the cooldown of your Gravity Bomb by -30 sec, and its explosion occurs -3 sec faster.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6223},{"id":"coa-tree-6195","classId":"chronomancer","dbcSpellId":706100,"name":"Charm of Power","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_trinket_healer.png","sigil":"CO","description":"Increases the damage dealt by Gravity Bomb by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706100,"level":1,"description":"Increases the damage dealt by Gravity Bomb by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6195},{"id":"coa-22-chronicles-of-history-81-801288","classId":"chronomancer","dbcSpellId":801288,"name":"Chronicles of History","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_weaponscroll02.png","sigil":"CO","description":"Chronicles of HistoryRank 117% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801288,"level":1,"description":"Chronicles of HistoryRank 117% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":2,"spellId":501789,"level":11,"description":"Chronicles of HistoryRank 217% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":3,"spellId":501790,"level":21,"description":"Chronicles of HistoryRank 317% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":4,"spellId":501791,"level":31,"description":"Chronicles of HistoryRank 417% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":5,"spellId":501792,"level":41,"description":"Chronicles of HistoryRank 517% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":6,"spellId":501793,"level":51,"description":"Chronicles of HistoryRank 617% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":7,"spellId":501794,"level":61,"description":"Chronicles of HistoryRank 717% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":8,"spellId":501795,"level":71,"description":"Chronicles of HistoryRank 817% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]}]},{"id":"coa-22-chrono-herald-81-706103","classId":"chronomancer","dbcSpellId":706103,"name":"Chrono Herald","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_mindvision.png","sigil":"CH","description":"Chrono HeraldRank 1Reduces the cooldown of Aeons by 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706103,"level":1,"description":"Chrono HeraldRank 1Reduces the cooldown of Aeons by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706104,"level":1,"description":"Chrono HeraldRank 2Instant castReduces the cooldown of Aeons by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-22-chrono-sorcery-79-706115","classId":"chronomancer","dbcSpellId":706115,"name":"Chrono Sorcery","unlockLevel":1,"icon":"/assets/ui/spells/_castercloak_arcanes.png","sigil":"CS","description":"Chrono SorceryRank 2Instant castIncreases maximum mana by 12% and spell damage by 15% of Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706115,"level":1,"description":"Chrono SorceryRank 2Instant castIncreases maximum mana by 12% and spell damage by 15% of Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30249","classId":"chronomancer","dbcSpellId":805847,"name":"Clasp of Infinity","unlockLevel":1,"icon":"/assets/ui/spells/handbeamblackhand.png","sigil":"CO","description":"Conjure a magical binding upon an enemy that bounces to nearby enemies, rooting them in place for 4 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":525050,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805847,"level":1,"description":"Conjure a magical binding upon an enemy that bounces to nearby enemies, rooting them in place for 4 seconds.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":525050,"durationMs":4000}]}],"talentEntryId":30249},{"id":"coa-tree-30276","classId":"chronomancer","dbcSpellId":555729,"name":"Constant Recovery","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_purify.png","sigil":"CR","description":"Reduces the threat generated by your holy spells by -20% and healing done by Reverse Wound now increases all healing taken the target receives by 6% for 10 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":680843,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":555729,"level":1,"description":"Reduces the threat generated by your holy spells by -20% and healing done by Reverse Wound now increases all healing taken the target receives by 6% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":680843,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30276},{"id":"coa-tree-6696","classId":"chronomancer","dbcSpellId":561310,"name":"Desynchronization","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(11)_border.png","sigil":"DE","description":"Shift an enemy out of sync with the present, causing their grip to fail, disarming their melee and ranged weapons for 6 seconds. Upon removal, they are resynced, preventing them from regenerating their health for 6 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":1250,"cooldownMs":90000,"gcdMs":1250,"cost":{"resource":"mana","amount":28},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":67,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":278,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":254,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":561310,"level":1,"description":"Shift an enemy out of sync with the present, causing their grip to fail, disarming their melee and ranged weapons for 6 seconds. Upon removal, they are resynced, preventing them from regenerating their health for 6 seconds.","castMode":"cast","castTimeMs":1250,"cooldownMs":90000,"gcdMs":1250,"cost":{"resource":"mana","amount":28},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":67,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":278,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":254,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}],"talentEntryId":6696},{"id":"coa-tree-29684","classId":"chronomancer","dbcSpellId":802790,"name":"Dimensional Divergence","unlockLevel":1,"icon":"/assets/ui/spells/ability_dragonriding_bronzerewind01.png","sigil":"DD","description":"Swap places with a target player. If they're an enemy, you steal -80% of their movement speed for 3 seconds.","target":"hostile","range":{"min":0,"max":40},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802790,"level":1,"description":"Swap places with a target player. If they're an enemy, you steal -80% of their movement speed for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}],"talentEntryId":29684},{"id":"chronomancer-discordant-blast","classId":"chronomancer","dbcSpellId":801290,"name":"Discordant Blast","unlockLevel":1,"icon":"/assets/ui/spells/inv_enchant_voidsphere.png","sigil":"DB","description":"Discordant BlastRank 110% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 13 to 16 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":13,"dieSides":4,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":1,"maxScalingLevel":11},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801290,"level":1,"description":"Discordant BlastRank 110% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 13 to 16 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":13,"dieSides":4,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":1,"maxScalingLevel":11},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501825,"level":12,"description":"Discordant BlastRank 210% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 26 to 30 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.4902419720166995,"basePoints":26,"dieSides":5,"pointsPerLevel":0.9757999777793884,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":23},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501826,"level":24,"description":"Discordant BlastRank 310% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 49 to 56 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.741928198398688,"basePoints":49,"dieSides":8,"pointsPerLevel":1.4293999671936035,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":34},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501827,"level":35,"description":"Discordant BlastRank 410% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 76 to 87 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.9738799866040547,"basePoints":76,"dieSides":12,"pointsPerLevel":1.8451999425888062,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":46},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501828,"level":47,"description":"Discordant BlastRank 510% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 132 to 148 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.3335677398148404,"basePoints":132,"dieSides":17,"pointsPerLevel":2.298799991607666,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":57},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501829,"level":58,"description":"Discordant BlastRank 610% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 214 to 236 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.7463324429237679,"basePoints":214,"dieSides":23,"pointsPerLevel":2.714600086212158,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":69},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501830,"level":70,"description":"Discordant BlastRank 710% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 350 to 380 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.3180392209221337,"basePoints":350,"dieSides":31,"pointsPerLevel":3.2300000190734863,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-22-discs-upon-discs-80-706075","classId":"chronomancer","dbcSpellId":706075,"name":"Discs Upon Discs","unlockLevel":1,"icon":"/assets/ui/spells/inv_7_0raid_trinket_04a.png","sigil":"DU","description":"Discs Upon DiscsRank 2Reduces the cooldown of Disc of Legend by 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706075,"level":1,"description":"Discs Upon DiscsRank 2Reduces the cooldown of Disc of Legend by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4033","classId":"chronomancer","dbcSpellId":92120,"name":"Echo Fragments","unlockLevel":1,"icon":"/assets/ui/spells/achievement_guildperk_workingovertime.png","sigil":"EF","description":"Level 10 Passive Wand of Time now generates an Echo Fragment, which can be used to unleash Distortion and Continuum spells. Decomposition is now a Distortion spell, dealing increased damage based on how many Echo Fragments you have.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":32,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":21,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92120,"level":1,"description":"Level 10 Passive Wand of Time now generates an Echo Fragment, which can be used to unleash Distortion and Continuum spells. Decomposition is now a Distortion spell, dealing increased damage based on how many Echo Fragments you have.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":32,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":21,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4033},{"id":"coa-22-enchanted-collar-80-706066","classId":"chronomancer","dbcSpellId":706066,"name":"Enchanted Collar","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_cat_trinket07.png","sigil":"EC","description":"Enchanted CollarRank 2Instant castIncreases the damage dealt by your pet by 10% and reduces damage it takes by 10%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706066,"level":1,"description":"Enchanted CollarRank 2Instant castIncreases the damage dealt by your pet by 10% and reduces damage it takes by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6199","classId":"chronomancer","dbcSpellId":520780,"name":"Entropy Reversal","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_spectralsight.png","sigil":"ER","description":"Reduces the duration of disease effects by -40%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520780,"level":1,"description":"Reduces the duration of disease effects by -40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6199},{"id":"coa-22-epoch-79-801275","classId":"chronomancer","dbcSpellId":801275,"name":"Epoch","unlockLevel":1,"icon":"/assets/ui/spells/ability_rewindtime.png","sigil":"EP","description":"EpochRank 120% of base mana Instant cast15 sec cooldownBlasts the target for 60 to 65 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":60,"dieSides":6,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":1,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801275,"level":1,"description":"EpochRank 120% of base mana Instant cast15 sec cooldownBlasts the target for 60 to 65 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":60,"dieSides":6,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":1,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501785,"level":17,"description":"EpochRank 220% of base mana Instant cast15 sec cooldownBlasts the target for 54 to 61 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.7757583285371462,"basePoints":54,"dieSides":8,"pointsPerLevel":0.9983999729156494,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501786,"level":33,"description":"EpochRank 320% of base mana Instant cast15 sec cooldownBlasts the target for 50 to 63 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.7399611216452386,"basePoints":50,"dieSides":14,"pointsPerLevel":1.516800045967102,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501787,"level":49,"description":"EpochRank 420% of base mana Instant cast15 sec cooldownBlasts the target for 99 to 121 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.0923166970411937,"basePoints":99,"dieSides":23,"pointsPerLevel":2.0352001190185547,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501788,"level":65,"description":"EpochRank 520% of base mana Instant cast15 sec cooldownBlasts the target for 189 to 223 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.5499333530664443,"basePoints":189,"dieSides":35,"pointsPerLevel":2.5536000728607178,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6213","classId":"chronomancer","dbcSpellId":706055,"name":"Expediting Time","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_ashestoashes.png","sigil":"ET","description":"Reduces the channel time of your Time Out! by -40%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706055,"level":1,"description":"Reduces the channel time of your Time Out! by -40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":6213},{"id":"coa-tree-6228","classId":"chronomancer","dbcSpellId":804491,"name":"Fortify Timeline","unlockLevel":1,"icon":"/assets/ui/spells/achievement_guildperk_workingovertime_rank2.png","sigil":"FT","description":"Fortify the current timeline, instantly healing all party and raid members for 80 + 32% SP and extending the duration of Accelerated Recovery on them by 5 sec.","target":"hostile","range":{"min":0,"max":40},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":1.3154826277778262,"basePoints":100,"dieSides":38,"pointsPerLevel":1.7500300407409668,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","effectType":177,"auraType":0,"miscValue":800857,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804491,"level":1,"description":"Fortify the current timeline, instantly healing all party and raid members for 80 + 32% SP and extending the duration of Accelerated Recovery on them by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":1.3154826277778262,"basePoints":100,"dieSides":38,"pointsPerLevel":1.7500300407409668,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","effectType":177,"auraType":0,"miscValue":800857,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":6228},{"id":"coa-tree-30257","classId":"chronomancer","dbcSpellId":801281,"name":"Gravity Bomb","unlockLevel":1,"icon":"/assets/ui/spells/skill_icon_skill42_border.png","sigil":"GB","description":"Place a gravity bomb on the target. After 6 seconds they explode for 979 + 120% SP + 30% ranged AP Chromatic Damage in a 10 yds radius. Directly before the explosion occurs, all enemies within 15 yds are teleported to the initial target.","target":"hostile","range":{"min":0,"max":40},"radius":10,"castMode":"cast","castTimeMs":1500,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801282,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801254,"durationMs":6000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801281,"level":1,"description":"Place a gravity bomb on the target. After 6 seconds they explode for 979 + 120% SP + 30% ranged AP Chromatic Damage in a 10 yds radius. Directly before the explosion occurs, all enemies within 15 yds are teleported to the initial target.","castMode":"cast","castTimeMs":1500,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801282,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801254,"durationMs":6000}]}],"talentEntryId":30257},{"id":"coa-22-improved-past-self-81-706091","classId":"chronomancer","dbcSpellId":706091,"name":"Improved Past Self","unlockLevel":1,"icon":"/assets/ui/spells/spell_mage_overpowered.png","sigil":"IP","description":"Improved Past SelfRank 1Reduces the cooldown of Past Self by 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706091,"level":1,"description":"Improved Past SelfRank 1Reduces the cooldown of Past Self by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706092,"level":1,"description":"Improved Past SelfRank 2Reduces the cooldown of Past Self by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-22-improved-reverse-wound-79-706052","classId":"chronomancer","dbcSpellId":706052,"name":"Improved Reverse Wound","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedrecovery.png","sigil":"IR","description":"Improved Reverse WoundRank 1Reduces the cast time of Reverse Wound by 0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706052,"level":1,"description":"Improved Reverse WoundRank 1Reduces the cast time of Reverse Wound by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6697","classId":"chronomancer","dbcSpellId":706053,"name":"Improved Reverse Wound","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedrecovery.png","sigil":"IR","description":"Reduces the cast time of Reverse Wound by -0.3 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706053,"level":1,"description":"Reduces the cast time of Reverse Wound by -0.3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6697},{"id":"coa-22-improved-time-stop-81-706088","classId":"chronomancer","dbcSpellId":706088,"name":"Improved Time Stop","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_stun.png","sigil":"IT","description":"Improved Time StopRank 1Reduces the cooldown of Mend Timeline by 5 sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706088,"level":1,"description":"Improved Time StopRank 1Reduces the cooldown of Mend Timeline by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":706089,"level":1,"description":"Improved Time StopRank 2InstantReduces the cooldown of Mend Timeline by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4031","classId":"chronomancer","dbcSpellId":92118,"name":"Infinite Power","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_infinitecorruptor.png","sigil":"IP","description":"Level 10 Passive Casting damaging spells now reduces your damaging spell cooldowns by 10% of their remaining cooldown.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":503946,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92118,"level":1,"description":"Level 10 Passive Casting damaging spells now reduces your damaging spell cooldowns by 10% of their remaining cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":503946,"durationMs":-1}]}],"talentEntryId":4031},{"id":"coa-tree-32547","classId":"chronomancer","dbcSpellId":500115,"name":"Infinite Sands","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_voidshift.png","sigil":"IS","description":"Reduces the cooldown of Infinite Clone by -60 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":500115,"level":1,"description":"Reduces the cooldown of Infinite Clone by -60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":32547},{"id":"coa-tree-7915","classId":"chronomancer","dbcSpellId":520457,"name":"Infinite Shield","unlockLevel":1,"icon":"/assets/ui/spells/sha_spell_fire_felfireward.png","sigil":"IS","description":"Shield an ally with 10 charges of Infinite Shield for 30 seconds. Each time they take damage, they will be healed for 190 + 25% SP and lose 1 charge. Can only occur once per sec and can only affect 1 target at a time.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520458,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520457,"level":1,"description":"Shield an ally with 10 charges of Infinite Shield for 30 seconds. Each time they take damage, they will be healed for 190 + 25% SP and lose 1 charge. Can only occur once per sec and can only affect 1 target at a time.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520458,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]}],"talentEntryId":7915},{"id":"coa-tree-31335","classId":"chronomancer","dbcSpellId":680808,"name":"Life Cycles","unlockLevel":1,"icon":"/assets/ui/spells/inv_pet_babymurlocs_white.png","sigil":"LC","description":"Reduces the cast time of your Babify by 0.25 sec and its mana cost by -15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680808,"level":1,"description":"Reduces the cast time of your Babify by 0.25 sec and its mana cost by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":31335},{"id":"coa-tree-11122","classId":"chronomancer","dbcSpellId":707656,"name":"Maker of Realities","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_haymaker.png","sigil":"MO","description":"Casting Hasten now also always reduces the cast time of your healing spells by an additional -20%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":712454,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707656,"level":1,"description":"Casting Hasten now also always reduces the cast time of your healing spells by an additional -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":712454,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11122},{"id":"coa-tree-6221","classId":"chronomancer","dbcSpellId":520855,"name":"Mass Babify","unlockLevel":1,"icon":"/assets/ui/spells/massbabify.png","sigil":"MB","description":"Instantly transform all enemies into a baby, preventing them from acting for 40 seconds (8 sec vs players), damage dealt will interrupt this effect. While babified, enemies will rapidly regenerate health. Scales with modifiers to Babify.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":32},"effects":[{"kind":"heal","coefficient":1},{"kind":"status","status":"stun","durationMs":40000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":26365,"triggerSpellId":0,"durationMs":40000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801260,"durationMs":40000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520855,"level":1,"description":"Instantly transform all enemies into a baby, preventing them from acting for 40 seconds (8 sec vs players), damage dealt will interrupt this effect. While babified, enemies will rapidly regenerate health. Scales with modifiers to Babify.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":32},"effects":[{"kind":"heal","coefficient":1},{"kind":"status","status":"stun","durationMs":40000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":26365,"triggerSpellId":0,"durationMs":40000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801260,"durationMs":40000}]}],"talentEntryId":6221},{"id":"coa-22-master-of-chaos-79-706047","classId":"chronomancer","dbcSpellId":706047,"name":"Master of Chaos","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_charm.png","sigil":"MO","description":"Master of ChaosRank 2Instant castIncreases the damage dealt by Chromatic spells by 16%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706047,"level":1,"description":"Master of ChaosRank 2Instant castIncreases the damage dealt by Chromatic spells by 16%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-22-master-of-order-79-706050","classId":"chronomancer","dbcSpellId":706050,"name":"Master of Order","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_spiritualguidence.png","sigil":"MO","description":"Master of OrderRank 2Instant castIncreases the damage of Order spells by 16%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706050,"level":1,"description":"Master of OrderRank 2Instant castIncreases the damage of Order spells by 16%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6226","classId":"chronomancer","dbcSpellId":520164,"name":"Perfect Timing","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_bronze.png","sigil":"PT","description":"Increases your haste by 4% and reduces your spell pushback suffered from damaging attacks by 35%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520164,"level":1,"description":"Increases your haste by 4% and reduces your spell pushback suffered from damaging attacks by 35%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":520874,"level":1,"description":"Increases your haste by 8% and reduces your spell pushback suffered from damaging attacks by 70%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6226},{"id":"coa-22-plentiful-orbs-80-706069","classId":"chronomancer","dbcSpellId":706069,"name":"Plentiful Orbs","unlockLevel":1,"icon":"/assets/ui/spells/inv_7_0raid_trinket_06a.png","sigil":"PO","description":"Plentiful OrbsRank 1Allows Echo to stack 1 additional time.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706069,"level":1,"description":"Plentiful OrbsRank 1Allows Echo to stack 1 additional time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-12215","classId":"chronomancer","dbcSpellId":520854,"name":"Procrastination","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_brain_b_01.png","sigil":"PR","description":"Reduces the cooldown of Timeguard by -30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520854,"level":1,"description":"Reduces the cooldown of Timeguard by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12215},{"id":"coa-22-protector-training-80-706073","classId":"chronomancer","dbcSpellId":706073,"name":"Protector Training","unlockLevel":1,"icon":"/assets/ui/spells/inv_7_0raid_trinket_05d.png","sigil":"PT","description":"Protector TrainingRank 2InstantReduces the cooldowns of your pet's spells and abilities by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706073,"level":1,"description":"Protector TrainingRank 2InstantReduces the cooldowns of your pet's spells and abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-22-quickcaster-81-706132","classId":"chronomancer","dbcSpellId":706132,"name":"Quickcaster","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_mentalquickness.png","sigil":"QU","description":"QuickcasterRank 2Instant castIncreases haste by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":218,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706132,"level":1,"description":"QuickcasterRank 2Instant castIncreases haste by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":218,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"chronomancer-reverse-wound","classId":"chronomancer","dbcSpellId":801303,"name":"Reverse Wound","unlockLevel":1,"icon":"/assets/ui/spells/ability_pvp_innerrenewal.png","sigil":"RW","description":"Reverse WoundRank 131% of base mana 1.5 sec castReverse an ally's wound, healing them for 47+0+Heal*0.9.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1.0722347895304363,"basePoints":47,"dieSides":4,"pointsPerLevel":2.9672698974609375,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801303,"level":1,"description":"Reverse WoundRank 131% of base mana 1.5 sec castReverse an ally's wound, healing them for 47+0+Heal*0.9.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1.0722347895304363,"basePoints":47,"dieSides":4,"pointsPerLevel":2.9672698974609375,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}]},{"rank":2,"spellId":501805,"level":6,"description":"Reverse WoundRank 231% of base mana 2 sec castReverse an ally's wound, healing them for 82+0+Heal*0.9.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":1.84551269289047,"basePoints":82,"dieSides":6,"pointsPerLevel":5.294549942016602,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":11},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}]},{"rank":3,"spellId":501806,"level":14,"description":"Reverse WoundRank 331% of base mana 2.5 sec castReverse an ally's wound, healing them for 180+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":3.2207991062909707,"basePoints":180,"dieSides":11,"pointsPerLevel":6.800680160522461,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}]},{"rank":4,"spellId":501807,"level":22,"description":"Reverse WoundRank 431% of base mana 2.5 sec castReverse an ally's wound, healing them for 293+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":3.8903053730457753,"basePoints":293,"dieSides":24,"pointsPerLevel":5.787449836730957,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}]},{"rank":5,"spellId":501808,"level":32,"description":"Reverse WoundRank 531% of base mana 2.5 sec castReverse an ally's wound, healing them for 428+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":4,"basePoints":428,"dieSides":36,"pointsPerLevel":9.100000381469727,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}]},{"rank":6,"spellId":501809,"level":38,"description":"Reverse WoundRank 631% of base mana 2.5 sec castReverse an ally's wound, healing them for 505+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":4,"basePoints":505,"dieSides":53,"pointsPerLevel":6.549099922180176,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}]}]},{"id":"coa-tree-6162","classId":"chronomancer","dbcSpellId":806300,"name":"Rippling Power","unlockLevel":1,"icon":"/assets/ui/spells/ability_bossmagistrix_timewarp1.png","sigil":"RP","description":"Increases your Spirit by 8%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":4,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806300,"level":1,"description":"Increases your Spirit by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":4,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":807893,"level":1,"description":"Increases your Spirit by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":4,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6162},{"id":"chronomancer-rumble","classId":"chronomancer","dbcSpellId":805166,"name":"Rumble","unlockLevel":1,"icon":"/assets/ui/spells/ability_malkorok_blightofyshaarj_yellow.png","sigil":"RU","description":"Send a destabilizing ripple through time.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.05}],"source":"coa-starter"},{"id":"coa-22-runed-rod-80-706068","classId":"chronomancer","dbcSpellId":706068,"name":"Runed Rod","unlockLevel":1,"icon":"/assets/ui/spells/inv_jewelry_trinket_02.png","sigil":"RR","description":"Runed RodRank 2Instant castIncreases wand attack speed by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":140,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706068,"level":1,"description":"Runed RodRank 2Instant castIncreases wand attack speed by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":140,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30260","classId":"chronomancer","dbcSpellId":806315,"name":"Temporal Anomaly","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(39)_border.png","sigil":"TA","description":"Augment reality for 10 seconds, causing 50% of the damage taken to be stored and converted into healing at the end of the duration.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":24},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.4065040650406504,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806315,"level":1,"description":"Augment reality for 10 seconds, causing 50% of the damage taken to be stored and converted into healing at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":24},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.4065040650406504,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"durationMs":10000}]}],"talentEntryId":30260},{"id":"coa-tree-30251","classId":"chronomancer","dbcSpellId":520922,"name":"Temporal Dissonance","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_manaburn.png","sigil":"TD","description":"Chronostasis now slows your target's movement speed by an additional -10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520922,"level":1,"description":"Chronostasis now slows your target's movement speed by an additional -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30251},{"id":"coa-tree-6698","classId":"chronomancer","dbcSpellId":806165,"name":"Temporal Focus","unlockLevel":1,"icon":"/assets/ui/spells/_d3serenity.png","sigil":"TF","description":"You lock yourself into a perfect moment, removing and becoming immune to banish, silence, and interrupt effects for 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":9,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":26,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":18,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806165,"level":1,"description":"You lock yourself into a perfect moment, removing and becoming immune to banish, silence, and interrupt effects for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":9,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":26,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":18,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":6698},{"id":"coa-tree-6194","classId":"chronomancer","dbcSpellId":706099,"name":"The Bieko Effect","unlockLevel":1,"icon":"/assets/ui/spells/inv_60pvp_trinket3b.png","sigil":"TB","description":"While Hasten is active the cooldowns of Dimensional Divergence, Temporal Anomaly, and Temporal Focus are reduced by 10% every 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":712371,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706099,"level":1,"description":"While Hasten is active the cooldowns of Dimensional Divergence, Temporal Anomaly, and Temporal Focus are reduced by 10% every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":712371,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6194},{"id":"coa-22-time-loop-81-801297","classId":"chronomancer","dbcSpellId":801297,"name":"Time Loop","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_timewarp.png","sigil":"TL","description":"Time LoopRank 117% of base mana Instant cast1 min cooldownYou place a Time Loop on an ally. The next spell or ability they use within 10 sec that has a cooldown of at least 8 seconds will incur no cooldown.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801297,"level":1,"description":"Time LoopRank 117% of base mana Instant cast1 min cooldownYou place a Time Loop on an ally. The next spell or ability they use within 10 sec that has a cooldown of at least 8 seconds will incur no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":2,"spellId":501841,"level":28,"description":"Time LoopRank 217% of base mana Instant cast1 min cooldownYou place a Time Loop on an ally. The next spell or ability they use within 7 sec (that has a resource cost or a cast time) will instantly restore its resource cost and not incur a cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":3,"spellId":501842,"level":54,"description":"Time LoopRank 317% of base mana Instant cast1 min cooldownYou place a Time Loop on an ally. The next spell or ability they use within 7 sec (that has a resource cost or a cast time) will instantly restore its resource cost and not incur a cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]}]},{"id":"coa-tree-30269","classId":"chronomancer","dbcSpellId":804441,"name":"Timeguard","unlockLevel":1,"icon":"/assets/ui/spells/inv_belt_armor_waistoftime_d_01.png","sigil":"TI","description":"Place a magical guard on an ally for 2 minutes, causing the next 3 instances of direct damage that would reduce the target below 35% health to deal 40% less damage.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14,"durationMs":120000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":120000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":120000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804441,"level":1,"description":"Place a magical guard on an ally for 2 minutes, causing the next 3 instances of direct damage that would reduce the target below 35% health to deal 40% less damage.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14,"durationMs":120000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":120000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":120000}]}],"talentEntryId":30269},{"id":"coa-tree-6215","classId":"chronomancer","dbcSpellId":680845,"name":"Timekeeper","unlockLevel":1,"icon":"/assets/ui/spells/inv_eng_unstabletemporaltimeshifter.png","sigil":"TI","description":"Increases the effectiveness of Timeguard by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680845,"level":1,"description":"Increases the effectiveness of Timeguard by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6215},{"id":"coa-22-timemancy-81-706118","classId":"chronomancer","dbcSpellId":706118,"name":"Timemancy","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_dust.png","sigil":"TI","description":"TimemancyRank 1Increases the damage of Sandblast by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706118,"level":1,"description":"TimemancyRank 1Increases the damage of Sandblast by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706119,"level":1,"description":"TimemancyRank 2Increases the damage of Sandblast by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-9547","classId":"chronomancer","dbcSpellId":572527,"name":"Timewalking","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_divineprovidence.png","sigil":"TI","description":"Reduces the cooldown of Waves of Time by -4 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":572527,"level":1,"description":"Reduces the cooldown of Waves of Time by -4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9547},{"id":"coa-tree-30267","classId":"chronomancer","dbcSpellId":520173,"name":"Tripping the Rift","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_dizzy.png","sigil":"TT","description":"Casting Clasp of Infinity now reduces the cooldown of Backtrack by -10 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":521214,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520173,"level":1,"description":"Casting Clasp of Infinity now reduces the cooldown of Backtrack by -10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":521214,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30267},{"id":"coa-tree-30280","classId":"chronomancer","dbcSpellId":574309,"name":"Unearthed Pools","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(48)_border.png","sigil":"UP","description":"Reduces the cast time of Unmake by -15% and reduces the mana cost of your instant spells by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":357,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":574309,"level":1,"description":"Reduces the cast time of Unmake by -15% and reduces the mana cost of your instant spells by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":357,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30280},{"id":"chronomancer-unmake","classId":"chronomancer","dbcSpellId":804418,"name":"Unmake","unlockLevel":1,"icon":"/assets/ui/spells/spell_animamaw_nova.png","sigil":"UN","description":"UnmakeRank 110% of base mana 1.5 sec castUnmake an enemy, dealing 5+0+SP*0.1+(1*1000/0.25)*(5+0+SP*0.1) Chromatic Damage over 1 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.1162499999627471,"basePoints":5,"dieSides":2,"pointsPerLevel":0.07999999821186066,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":5,"ticks":4,"intervalMs":250,"tag":"spell-804418"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":804418,"level":1,"description":"UnmakeRank 110% of base mana 1.5 sec castUnmake an enemy, dealing 5+0+SP*0.1+(1*1000/0.25)*(5+0+SP*0.1) Chromatic Damage over 1 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.1162499999627471,"basePoints":5,"dieSides":2,"pointsPerLevel":0.07999999821186066,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":5,"ticks":4,"intervalMs":250,"tag":"spell-804418"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":2,"spellId":503784,"level":6,"description":"UnmakeRank 212% of base mana 1.5 sec castUnmake an enemy, dealing 7+0+SP*0.12+(1*1000/0.25)*(7+0+SP*0.12) Chromatic Damage over 1 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":7,"dieSides":2,"pointsPerLevel":0.125,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":6,"maxScalingLevel":10,"ticks":4,"intervalMs":250,"tag":"spell-503784"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":3,"spellId":503785,"level":12,"description":"UnmakeRank 312% of base mana 2 sec castUnmake an enemy, dealing 12+0+SP*0.12+(1.5*1000/0.25)*(12+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":12,"dieSides":2,"pointsPerLevel":0.11999999731779099,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":12,"maxScalingLevel":20,"ticks":6,"intervalMs":250,"tag":"spell-503785"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]},{"rank":4,"spellId":503786,"level":18,"description":"UnmakeRank 412% of base mana 2 sec castUnmake an enemy, dealing 15+0+SP*0.12+(1.5*1000/0.25)*(15+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":15,"dieSides":2,"pointsPerLevel":0.14000000059604645,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":18,"maxScalingLevel":28,"ticks":6,"intervalMs":250,"tag":"spell-503786"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]},{"rank":5,"spellId":503787,"level":24,"description":"UnmakeRank 512% of base mana 2 sec castUnmake an enemy, dealing 19+0+SP*0.12+(1.5*1000/0.25)*(19+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":19,"dieSides":2,"pointsPerLevel":0.12999999523162842,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":24,"maxScalingLevel":34,"ticks":6,"intervalMs":250,"tag":"spell-503787"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]},{"rank":6,"spellId":503788,"level":30,"description":"UnmakeRank 612% of base mana 2 sec castUnmake an enemy, dealing 24+0+SP*0.12+(1.5*1000/0.25)*(24+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":24,"dieSides":3,"pointsPerLevel":0.15000000596046448,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":30,"maxScalingLevel":42,"ticks":6,"intervalMs":250,"tag":"spell-503788"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]},{"rank":7,"spellId":503789,"level":36,"description":"UnmakeRank 712% of base mana 2 sec castUnmake an enemy, dealing 31+0+SP*0.12+(1.5*1000/0.25)*(31+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":31,"dieSides":3,"pointsPerLevel":0.13750000298023224,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":36,"maxScalingLevel":52,"ticks":6,"intervalMs":250,"tag":"spell-503789"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]},{"rank":8,"spellId":503790,"level":44,"description":"UnmakeRank 812% of base mana 2 sec castUnmake an enemy, dealing 38+0+SP*0.12+(1.5*1000/0.25)*(38+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":38,"dieSides":4,"pointsPerLevel":0.20714299380779266,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":44,"maxScalingLevel":58,"ticks":6,"intervalMs":250,"tag":"spell-503790"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]},{"rank":9,"spellId":504574,"level":50,"description":"UnmakeRank 912% of base mana 2 sec castUnmake an enemy, dealing 47+0+SP*0.12+(1.5*1000/0.25)*(47+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":47,"dieSides":6,"pointsPerLevel":0.21176500618457794,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":50,"maxScalingLevel":67,"ticks":6,"intervalMs":250,"tag":"spell-504574"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]},{"rank":10,"spellId":574344,"level":56,"description":"UnmakeRank 1012% of base mana 2 sec castUnmake an enemy, dealing 56+0+SP*0.12+(1.5*1000/0.25)*(56+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":56,"dieSides":6,"pointsPerLevel":0.2705880105495453,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":56,"maxScalingLevel":73,"ticks":6,"intervalMs":250,"tag":"spell-574344"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]},{"rank":11,"spellId":574345,"level":60,"description":"UnmakeRank 1112% of base mana 2 sec castUnmake an enemy, dealing 79+0+SP*0.12+(1.5*1000/0.25)*(79+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.06239999830722809,"basePoints":79,"dieSides":7,"pointsPerLevel":0.3222219944000244,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":60,"maxScalingLevel":78,"ticks":6,"intervalMs":250,"tag":"spell-574345"},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":1500}]}]},{"id":"coa-tree-5122","classId":"chronomancer","dbcSpellId":706107,"name":"Unmaker of Realities","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_arakkoaspires.png","sigil":"UO","description":"While Hasten is active the ally now has a 25% chance when they deal damage to strike the target an additional time equal to 30% of the damage dealt.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706107,"level":1,"description":"While Hasten is active the ally now has a 25% chance when they deal damage to strike the target an additional time equal to 30% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5122},{"id":"coa-tree-30855","classId":"chronomancer","dbcSpellId":801277,"name":"Waves of Time","unlockLevel":1,"icon":"/assets/ui/spells/5_healingwave_border.png","sigil":"WO","description":"Blast enemies in a frontal cone with time fractals, knocking them back slightly. The knockback repeats 1 additional time after 2 sec.","target":"self","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":802600,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":65633,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801277,"level":1,"description":"Blast enemies in a frontal cone with time fractals, knocking them back slightly. The knockback repeats 1 additional time after 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":802600,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":65633,"durationMs":0}]}],"talentEntryId":30855},{"id":"coa-22-wisdom-80-706105","classId":"chronomancer","dbcSpellId":706105,"name":"Wisdom","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_divinespirit.png","sigil":"WI","description":"WisdomRank 1Increases Spirit by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706105,"level":1,"description":"WisdomRank 1Increases Spirit by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706106,"level":1,"description":"WisdomRank 2Increases Spirit by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-22-timerend-79-801291","classId":"chronomancer","dbcSpellId":801291,"name":"Timerend","unlockLevel":4,"icon":"/assets/ui/spells/spell_animamaw_beam.png","sigil":"TI","description":"TimerendRank 117% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 30 Chromatic Damage over 6 sec.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.10000000149011612,"basePoints":5,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":4,"maxScalingLevel":12,"ticks":6,"intervalMs":1000,"tag":"spell-801291"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801291,"level":4,"description":"TimerendRank 117% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 30 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.10000000149011612,"basePoints":5,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":4,"maxScalingLevel":12,"ticks":6,"intervalMs":1000,"tag":"spell-801291"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":2,"spellId":501831,"level":14,"description":"TimerendRank 217% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 96 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.4413793141814484,"basePoints":16,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20,"ticks":6,"intervalMs":1000,"tag":"spell-501831"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":3,"spellId":501832,"level":22,"description":"TimerendRank 317% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 180 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.49357423481640517,"basePoints":30,"dieSides":1,"pointsPerLevel":1.126670002937317,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28,"ticks":6,"intervalMs":1000,"tag":"spell-501832"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":4,"spellId":501833,"level":30,"description":"TimerendRank 417% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 270 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.6222222116258409,"basePoints":45,"dieSides":1,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36,"ticks":6,"intervalMs":1000,"tag":"spell-501833"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":5,"spellId":501834,"level":38,"description":"TimerendRank 517% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 354 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.7646129521183997,"basePoints":59,"dieSides":1,"pointsPerLevel":1.6466699838638306,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44,"ticks":6,"intervalMs":1000,"tag":"spell-501834"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":6,"spellId":501835,"level":46,"description":"TimerendRank 617% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 474 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.8841529934784103,"basePoints":79,"dieSides":1,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":6,"intervalMs":1000,"tag":"spell-501835"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":7,"spellId":572578,"level":52,"description":"TimerendRank 717% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 606 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":1.4735371034536788,"basePoints":101,"dieSides":1,"pointsPerLevel":3.7534799575805664,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":60,"ticks":6,"intervalMs":1000,"tag":"spell-572578"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-22-discordance-79-503875","classId":"chronomancer","dbcSpellId":503875,"name":"Discordance","unlockLevel":8,"icon":"/assets/ui/spells/spell_animamaw_missile.png","sigil":"DI","description":"DiscordanceRank 122% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 40+0+SP*0.250505 Chromatic Damage.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":0.8246376756308735,"basePoints":40,"dieSides":6,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":14}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":503875,"level":8,"description":"DiscordanceRank 122% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 40+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":0.8246376756308735,"basePoints":40,"dieSides":6,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":14}]},{"rank":2,"spellId":503876,"level":16,"description":"DiscordanceRank 222% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 53+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":0.8126658162763042,"basePoints":53,"dieSides":7,"pointsPerLevel":1.223620057106018,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20}]},{"rank":3,"spellId":503877,"level":22,"description":"DiscordanceRank 322% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 73+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":0.9355450471242269,"basePoints":73,"dieSides":9,"pointsPerLevel":1.2202500104904175,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28}]},{"rank":4,"spellId":503878,"level":30,"description":"DiscordanceRank 422% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 123+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":1.5833333439297146,"basePoints":123,"dieSides":13,"pointsPerLevel":2.825000047683716,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34}]},{"rank":5,"spellId":503879,"level":36,"description":"DiscordanceRank 522% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 164+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":2.0058373968585643,"basePoints":164,"dieSides":16,"pointsPerLevel":3.7609200477600098,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40}]},{"rank":6,"spellId":503880,"level":42,"description":"DiscordanceRank 622% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 210+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":2.463532330697043,"basePoints":210,"dieSides":19,"pointsPerLevel":4.815810203552246,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46}]},{"rank":7,"spellId":582758,"level":48,"description":"DiscordanceRank 722% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 262+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":2.972927032955109,"basePoints":262,"dieSides":23,"pointsPerLevel":6.018400192260742,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52}]},{"rank":8,"spellId":582759,"level":54,"description":"DiscordanceRank 822% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 323+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":3.5566810064269725,"basePoints":323,"dieSides":25,"pointsPerLevel":7.430240154266357,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58}]},{"rank":9,"spellId":582760,"level":60,"description":"DiscordanceRank 922% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 391+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":4,"basePoints":391,"dieSides":26,"pointsPerLevel":9.013039588928223,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64}]}]},{"id":"coa-22-epoch-81-801270","classId":"chronomancer","dbcSpellId":801270,"name":"Epoch","unlockLevel":8,"icon":"/assets/ui/spells/_d3breathofheaven.png","sigil":"EP","description":"EpochRank 118% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 21+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":0.6285797063855157,"basePoints":21,"dieSides":6,"pointsPerLevel":2.4839999675750732,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801270,"level":8,"description":"EpochRank 118% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 21+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":0.6285797063855157,"basePoints":21,"dieSides":6,"pointsPerLevel":2.4839999675750732,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501779,"level":18,"description":"EpochRank 218% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 107+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1.5640321066885283,"basePoints":107,"dieSides":9,"pointsPerLevel":2.4355099201202393,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501780,"level":26,"description":"EpochRank 318% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 162+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1.6991839098736523,"basePoints":162,"dieSides":11,"pointsPerLevel":1.6153700351715088,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501781,"level":36,"description":"EpochRank 418% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 225+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":2.21803894541622,"basePoints":225,"dieSides":14,"pointsPerLevel":2.996109962463379,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501782,"level":44,"description":"EpochRank 518% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 292+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":2.6652156053963356,"basePoints":292,"dieSides":18,"pointsPerLevel":3.891890048980713,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501783,"level":52,"description":"EpochRank 618% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 356+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":3.6823681029514295,"basePoints":356,"dieSides":28,"pointsPerLevel":7.127999782562256,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501784,"level":58,"description":"EpochRank 718% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 839+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":3.9292237442922375,"basePoints":839,"dieSides":44,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":504575,"level":60,"description":"EpochRank 818% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 832+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":4,"basePoints":832,"dieSides":44,"pointsPerLevel":2.627379894256592,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":76},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-22-sandblast-485-501918","classId":"chronomancer","dbcSpellId":501918,"name":"Sandblast","unlockLevel":8,"icon":"/assets/ui/spells/spell_sandbolt.png","sigil":"SA","description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.6124637714330701,"basePoints":27,"dieSides":2,"pointsPerLevel":1.8450000286102295,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501918,"level":8,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.6124637714330701,"basePoints":27,"dieSides":2,"pointsPerLevel":1.8450000286102295,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":501919,"level":16,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.8619354822302377,"basePoints":45,"dieSides":3,"pointsPerLevel":2.134999990463257,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":501920,"level":24,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":1.0955555418617704,"basePoints":59,"dieSides":4,"pointsPerLevel":2.819999933242798,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":32},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":501921,"level":25,"description":"SandblastRank 5255% of base mana 2 sec castFire a blast of enchanted sand at an enemy, dealing 66+0+ArcP*0.43+RAP*0.4 Arcane Damage and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"damage","coefficient":0.8327083319425583,"basePoints":66,"dieSides":1,"pointsPerLevel":1.3569999933242798,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":31},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":501922,"level":40,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":1.7121211658824573,"basePoints":97,"dieSides":6,"pointsPerLevel":4.574999809265137,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":501923,"level":48,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":2.422010552946222,"basePoints":179,"dieSides":7,"pointsPerLevel":5.744999885559082,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":56},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":8,"spellId":501924,"level":56,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":2.6784788140668554,"basePoints":208,"dieSides":8,"pointsPerLevel":6.410999774932861,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":64},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":9,"spellId":501925,"level":64,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":3.476286940433808,"basePoints":329,"dieSides":9,"pointsPerLevel":7.670000076293945,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-22-do-over-485-800669","classId":"chronomancer","dbcSpellId":800669,"name":"Do Over","unlockLevel":10,"icon":"/assets/ui/spells/ability_crown_of_the_heavens_icon.png","sigil":"DO","description":"Do OverRank 136% of base mana 8 sec castRestores a dead ally to life with 70 health and 135 mana. Cannot be cast when in combat.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800669,"level":10,"description":"Do OverRank 136% of base mana 8 sec castRestores a dead ally to life with 70 health and 135 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-22-chromies-wisdom-485-801523","classId":"chronomancer","dbcSpellId":801523,"name":"Chromie's Wisdom","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"Chromie's WisdomRank 130% of base mana Instant castShare Chromie's wisdom with an allied player, increasing their Spirit by 10. Lasts 30 min. Only one Wisdom per Chronomancer can be active.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":4,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801523,"level":12,"description":"Chromie's WisdomRank 130% of base mana Instant castShare Chromie's wisdom with an allied player, increasing their Spirit by 10. Lasts 30 min. Only one Wisdom per Chronomancer can be active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":4,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":5,"spellId":802830,"level":70,"description":"Chromie's WisdomRank 510% of base mana Instant castShare Chromie's wisdom with an allied player, increasing their Spirit by 50. Lasts 30 min. Only one Wisdom per Chronomancer can be active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":4,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-22-melt-reality-79-806335","classId":"chronomancer","dbcSpellId":806335,"name":"Melt Reality","unlockLevel":13,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MR","description":"Melt RealityRank 123% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 48+0+FroP*.23, 48+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"dot","coefficient":0.8474897586164021,"basePoints":48,"dieSides":1,"pointsPerLevel":1.7837799787521362,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18,"ticks":10,"intervalMs":3000,"tag":"spell-806335"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572851,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806335,"level":13,"description":"Melt RealityRank 123% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 48+0+FroP*.23, 48+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"dot","coefficient":0.8474897586164021,"basePoints":48,"dieSides":1,"pointsPerLevel":1.7837799787521362,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18,"ticks":10,"intervalMs":3000,"tag":"spell-806335"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572851,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":2,"spellId":503895,"level":20,"description":"Melt RealityRank 223% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 63+0+FroP*.23, 63+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"dot","coefficient":0.785777709597633,"basePoints":63,"dieSides":1,"pointsPerLevel":0.9753329753875732,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":27,"ticks":10,"intervalMs":3000,"tag":"spell-503895"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572851,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":3,"spellId":503896,"level":28,"description":"Melt RealityRank 323% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 102+0+FroP*.23, 102+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"dot","coefficient":1.1030062113621437,"basePoints":102,"dieSides":1,"pointsPerLevel":1.4388500452041626,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":10,"intervalMs":3000,"tag":"spell-503896"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572851,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":4,"spellId":503897,"level":34,"description":"Melt RealityRank 423% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 157+0+FroP*.23, 157+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"dot","coefficient":1.2701461031323387,"basePoints":157,"dieSides":1,"pointsPerLevel":0.8738669753074646,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":41,"ticks":10,"intervalMs":3000,"tag":"spell-503897"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572851,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":5,"spellId":503898,"level":42,"description":"Melt RealityRank 523% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 202+0+FroP*.23, 202+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"dot","coefficient":1.7395574140269854,"basePoints":202,"dieSides":1,"pointsPerLevel":2.2729599475860596,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":10,"intervalMs":3000,"tag":"spell-503898"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572851,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":6,"spellId":503899,"level":48,"description":"Melt RealityRank 623% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 290+0+FroP*.23, 290+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"dot","coefficient":1.8931978720205802,"basePoints":290,"dieSides":1,"pointsPerLevel":1.4127999544143677,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":55,"ticks":10,"intervalMs":3000,"tag":"spell-503899"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572851,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":7,"spellId":572835,"level":56,"description":"Melt RealityRank 723% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 336+0+FroP*.23, 336+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"dot","coefficient":2.1560946540653427,"basePoints":336,"dieSides":1,"pointsPerLevel":2.200860023498535,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62,"ticks":10,"intervalMs":3000,"tag":"spell-572835"},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572851,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]}]},{"id":"coa-22-gravity-bomb-79-501820","classId":"chronomancer","dbcSpellId":501820,"name":"Gravity Bomb","unlockLevel":14,"icon":"/assets/ui/spells/spell_mage_supernova.png","sigil":"GB","description":"Gravity BombRank 236% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 74 to 85 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801282,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":65633,"durationMs":6000},{"kind":"dot","coefficient":0.7700999975204468,"basePoints":74,"dieSides":12,"pointsPerLevel":2.3399999141693115,"bonusPowerCoefficient":0.7700999975204468,"sourceLevel":14,"maxScalingLevel":27,"ticks":1,"intervalMs":6000,"tag":"spell-501820"}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501820,"level":14,"description":"Gravity BombRank 236% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 74 to 85 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801282,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":65633,"durationMs":6000},{"kind":"dot","coefficient":0.7700999975204468,"basePoints":74,"dieSides":12,"pointsPerLevel":2.3399999141693115,"bonusPowerCoefficient":0.7700999975204468,"sourceLevel":14,"maxScalingLevel":27,"ticks":1,"intervalMs":6000,"tag":"spell-501820"}]},{"rank":3,"spellId":501821,"level":28,"description":"Gravity BombRank 336% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 123 to 137 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801282,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":65633,"durationMs":6000},{"kind":"dot","coefficient":0.9728289842605591,"basePoints":123,"dieSides":15,"pointsPerLevel":3.4200000762939453,"bonusPowerCoefficient":0.9728289842605591,"sourceLevel":28,"maxScalingLevel":40,"ticks":1,"intervalMs":6000,"tag":"spell-501821"}]},{"rank":4,"spellId":501822,"level":41,"description":"Gravity BombRank 436% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 182 to 200 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801282,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":65633,"durationMs":6000},{"kind":"dot","coefficient":1.2092299461364746,"basePoints":182,"dieSides":19,"pointsPerLevel":5.039999961853027,"bonusPowerCoefficient":1.2092299461364746,"sourceLevel":41,"maxScalingLevel":53,"ticks":1,"intervalMs":6000,"tag":"spell-501822"}]},{"rank":5,"spellId":501823,"level":54,"description":"Gravity BombRank 536% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 295 to 317 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801282,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":65633,"durationMs":6000},{"kind":"dot","coefficient":1.4785799980163574,"basePoints":295,"dieSides":23,"pointsPerLevel":7.199999809265137,"bonusPowerCoefficient":1.4785799980163574,"sourceLevel":54,"maxScalingLevel":67,"ticks":1,"intervalMs":6000,"tag":"spell-501823"}]},{"rank":6,"spellId":501824,"level":68,"description":"Gravity BombRank 636% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 447 to 474 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":801282,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":65633,"durationMs":6000},{"kind":"dot","coefficient":1.7779899835586548,"basePoints":447,"dieSides":28,"pointsPerLevel":9.899999618530273,"bonusPowerCoefficient":1.7779899835586548,"sourceLevel":68,"maxScalingLevel":80,"ticks":1,"intervalMs":6000,"tag":"spell-501824"}]}]},{"id":"coa-22-time-out-79-802229","classId":"chronomancer","dbcSpellId":802229,"name":"Time Out!","unlockLevel":14,"icon":"/assets/ui/spells/spell_nature_timestop.png","sigil":"TO","description":"Time Out!Rank 1Instant cast3 min cooldownEnter a stasis for 6 sec, instantly restoring 15% of your maximum mana and regenerating 5% of your maximum mana every 0 sec. While active, your damage taken is reduced by 50% but any direct damage taken may end the effect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802228,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":24,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802229,"level":14,"description":"Time Out!Rank 1Instant cast3 min cooldownEnter a stasis for 6 sec, instantly restoring 15% of your maximum mana and regenerating 5% of your maximum mana every 0 sec. While active, your damage taken is reduced by 50% but any direct damage taken may end the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802228,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":24,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":2,"spellId":803896,"level":24,"description":"Time Out!Rank 2Instant cast3 min cooldownEnter a stasis for 6 sec, instantly restoring 15% of your maximum mana and regenerating 5% of your maximum mana every 0 sec. While active, your damage taken is reduced by 75% but any direct damage taken may end the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802228,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":24,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":3,"spellId":803897,"level":34,"description":"Time Out!Rank 3Instant cast3 min cooldownEnter a stasis for 6 sec, instantly restoring 15% of your maximum mana and regenerating 5% of your maximum mana every 0 sec. While active, your damage taken is reduced by 90% but any direct damage taken may end the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":802228,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":24,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-22-correct-the-mistake-81-572352","classId":"chronomancer","dbcSpellId":572352,"name":"Correct the Mistake","unlockLevel":15,"icon":"/assets/ui/spells/5_heal_border.png","sigil":"CT","description":"Correct the MistakeRank 136% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 91+0+Heal*0.685704.","target":"friendly","range":{"min":0,"max":40},"radius":30,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":91,"dieSides":10,"pointsPerLevel":1.4716299772262573,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":15,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":572352,"level":15,"description":"Correct the MistakeRank 136% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 91+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":91,"dieSides":10,"pointsPerLevel":1.4716299772262573,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":15,"maxScalingLevel":22}]},{"rank":2,"spellId":572353,"level":24,"description":"Correct the MistakeRank 236% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 150+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":150,"dieSides":15,"pointsPerLevel":2.0412399768829346,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":3,"spellId":572354,"level":32,"description":"Correct the MistakeRank 336% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 203+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":203,"dieSides":24,"pointsPerLevel":2.7694098949432373,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":4,"spellId":572355,"level":40,"description":"Correct the MistakeRank 436% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 257+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":257,"dieSides":37,"pointsPerLevel":3.520250082015991,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":40,"maxScalingLevel":46}]},{"rank":5,"spellId":572356,"level":48,"description":"Correct the MistakeRank 536% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 302+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":302,"dieSides":57,"pointsPerLevel":3.137310028076172,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":48,"maxScalingLevel":56}]},{"rank":6,"spellId":572360,"level":58,"description":"Correct the MistakeRank 636% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 350+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":350,"dieSides":89,"pointsPerLevel":3.6969199180603027,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":58,"maxScalingLevel":66}]}]},{"id":"coa-22-sands-of-time-81-501843","classId":"chronomancer","dbcSpellId":501843,"name":"Sands of Time","unlockLevel":17,"icon":"/assets/ui/spells/inv_inscription_tarot_earthquakecard.png","sigil":"SO","description":"Sands of TimeRank 210% of base mana Instant cast20 sec cooldownInflicts 45 to 61 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","target":"hostile","range":{"min":0,"max":20},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.008427066107591,"basePoints":45,"dieSides":17,"pointsPerLevel":2.5769999027252197,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":65633,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801265,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501843,"level":17,"description":"Sands of TimeRank 210% of base mana Instant cast20 sec cooldownInflicts 45 to 61 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.008427066107591,"basePoints":45,"dieSides":17,"pointsPerLevel":2.5769999027252197,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":65633,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801265,"durationMs":10000}]},{"rank":3,"spellId":501844,"level":33,"description":"Sands of TimeRank 310% of base mana Instant cast20 sec cooldownInflicts 94 to 126 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.6514513674709532,"basePoints":94,"dieSides":33,"pointsPerLevel":3.872999906539917,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":65633,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801265,"durationMs":10000}]},{"rank":4,"spellId":501845,"level":49,"description":"Sands of TimeRank 410% of base mana Instant cast20 sec cooldownInflicts 199 to 255 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.5014635796348252,"basePoints":199,"dieSides":57,"pointsPerLevel":5.169000148773193,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":65633,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801265,"durationMs":10000}]},{"rank":5,"spellId":501846,"level":65,"description":"Sands of TimeRank 510% of base mana Instant cast20 sec cooldownInflicts 390 to 478 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":3.5592708746592203,"basePoints":390,"dieSides":89,"pointsPerLevel":6.465000152587891,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":65633,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801265,"durationMs":10000}]}]},{"id":"coa-22-accelerated-recovery-485-501772","classId":"chronomancer","dbcSpellId":501772,"name":"Accelerated Recovery","unlockLevel":18,"icon":"/assets/ui/spells/spell_holy_healingfocus.png","sigil":"AR","description":"Accelerated RecoveryRank 218% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(26+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.37044862665311257,"basePoints":26,"dieSides":1,"pointsPerLevel":0.5930230021476746,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":804500,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501772,"level":18,"description":"Accelerated RecoveryRank 218% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(26+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.37044862665311257,"basePoints":26,"dieSides":1,"pointsPerLevel":0.5930230021476746,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":804500,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":501773,"level":26,"description":"Accelerated RecoveryRank 318% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(40+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.4346444442020199,"basePoints":40,"dieSides":1,"pointsPerLevel":0.5177410244941711,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":804500,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":501774,"level":34,"description":"Accelerated RecoveryRank 418% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(53+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.5203465263859756,"basePoints":53,"dieSides":1,"pointsPerLevel":0.6909099817276001,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":804500,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":501775,"level":42,"description":"Accelerated RecoveryRank 518% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(69+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.6255237261454264,"basePoints":69,"dieSides":1,"pointsPerLevel":0.9039180278778076,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":804500,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":6,"spellId":501776,"level":50,"description":"Accelerated RecoveryRank 618% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(82+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.6968794761559902,"basePoints":82,"dieSides":1,"pointsPerLevel":1.0778299570083618,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":804500,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":7,"spellId":501777,"level":58,"description":"Accelerated RecoveryRank 718% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(92+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.7410855848495275,"basePoints":92,"dieSides":1,"pointsPerLevel":1.212030053138733,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":804500,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":8,"spellId":501778,"level":66,"description":"Accelerated RecoveryRank 818% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(112+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.7558981881710728,"basePoints":112,"dieSides":1,"pointsPerLevel":1.08610999584198,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":74,"ticks":5,"intervalMs":3000},{"kind":"utility","effectType":3,"auraType":283,"miscValue":804500,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-22-fabric-of-time-81-806299","classId":"chronomancer","dbcSpellId":806299,"name":"Fabric of Time","unlockLevel":27,"icon":"/assets/ui/spells/spell_monk_diffusemagic.png","sigil":"FO","description":"Fabric of TimeRank 118% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 158+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706774,"durationMs":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":158,"dieSides":8,"pointsPerLevel":4.231500148773193,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":27,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806299,"level":27,"description":"Fabric of TimeRank 118% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 158+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706774,"durationMs":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":158,"dieSides":8,"pointsPerLevel":4.231500148773193,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":27,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":570177,"level":36,"description":"Fabric of TimeRank 218% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 218+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706774,"durationMs":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":218,"dieSides":11,"pointsPerLevel":3.1188700199127197,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":570178,"level":44,"description":"Fabric of TimeRank 318% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 264+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706774,"durationMs":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":264,"dieSides":15,"pointsPerLevel":3.4922900199890137,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":570179,"level":52,"description":"Fabric of TimeRank 418% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 288+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706774,"durationMs":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":288,"dieSides":21,"pointsPerLevel":3.826669931411743,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":572361,"level":60,"description":"Fabric of TimeRank 518% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 336+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706774,"durationMs":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":336,"dieSides":30,"pointsPerLevel":4.488999843597412,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":572362,"level":68,"description":"Fabric of TimeRank 618% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 417+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706774,"durationMs":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":417,"dieSides":43,"pointsPerLevel":5.575540065765381,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":68,"maxScalingLevel":74},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":572363,"level":76,"description":"Fabric of TimeRank 718% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 754+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":706774,"durationMs":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":754,"dieSides":60,"pointsPerLevel":14.87440013885498,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-22-reverse-wound-79-501810","classId":"chronomancer","dbcSpellId":501810,"name":"Reverse Wound","unlockLevel":46,"icon":"/assets/ui/spells/ability_pvp_innerrenewal.png","sigil":"RW","description":"Reverse WoundRank 731% of base mana 2.5 sec castReverse an ally's wound, healing them for 642+0+Heal*0.9.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":4,"basePoints":642,"dieSides":68,"pointsPerLevel":8.473320007324219,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":7,"spellId":501810,"level":46,"description":"Reverse WoundRank 731% of base mana 2.5 sec castReverse an ally's wound, healing them for 642+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":4,"basePoints":642,"dieSides":68,"pointsPerLevel":8.473320007324219,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}]},{"rank":8,"spellId":501811,"level":54,"description":"Reverse WoundRank 831% of base mana 2.5 sec castReverse an ally's wound, healing them for 676+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":4,"basePoints":676,"dieSides":86,"pointsPerLevel":13.5,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":804679,"durationMs":0}]}]}],"necromancer":[{"id":"coa-tree-30600","classId":"necromancer","dbcSpellId":805428,"name":"Animate: Frost Wyrm","unlockLevel":1,"icon":"/assets/ui/spells/5_dragoncoldbreath_border.png","sigil":"AF","description":"Animate a Frost Wyrm that flies behind the Necromancer that blasts nearby enemies every 2 sec for 30 seconds, dealing 1500 + 14.88% frost SP + 14.88% Intellect Frost damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50177,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805428,"level":1,"description":"Animate a Frost Wyrm that flies behind the Necromancer that blasts nearby enemies every 2 sec for 30 seconds, dealing 1500 + 14.88% frost SP + 14.88% Intellect Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50177,"triggerSpellId":0,"durationMs":30000}]}],"talentEntryId":30600},{"id":"coa-23-animate-zombies-84-504315","classId":"necromancer","dbcSpellId":504315,"name":"Animate: Zombies","unlockLevel":1,"icon":"/assets/ui/spells/zombiewc3.png","sigil":"AZ","description":"Animate: ZombiesRank 121% of base mana 3 sec cast15 sec cooldownAnimate 2 Zombies to aid you in combat for 15 sec. Every 3 sec, Zombies emit Zombie Plague, dealing 79+1.0 Points Per Level+SP*0.1 Plague Damage to nearby enemies.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"cast","castTimeMs":3000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":525379,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500991,"durationMs":100},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504315,"level":1,"description":"Animate: ZombiesRank 121% of base mana 3 sec cast15 sec cooldownAnimate 2 Zombies to aid you in combat for 15 sec. Every 3 sec, Zombies emit Zombie Plague, dealing 79+1.0 Points Per Level+SP*0.1 Plague Damage to nearby enemies.","castMode":"cast","castTimeMs":3000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":525379,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500991,"durationMs":100},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":2,"spellId":525378,"level":30,"description":"Animate: ZombiesRank 223% of base mana 3 sec cast15 sec cooldownAnimate 3 Zombies to aid you in combat for 15 sec. Every 3 sec, Zombies emit Zombie Plague, dealing 79+1.0 Points Per Level+SP*0.1 Plague Damage to nearby enemies.","castMode":"cast","castTimeMs":3000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":525379,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500991,"durationMs":100},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":3,"spellId":525381,"level":51,"description":"Animate: ZombiesRank 324% of base mana 3 sec cast15 sec cooldownAnimate 4 Zombies to aid you in combat for 10 sec. Every 3 sec, Zombies emit Zombie Plague, dealing 79+1.0 Points Per Level+SP*0.1 Plague Damage to nearby enemies.","castMode":"cast","castTimeMs":3000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":24},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":525379,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500991,"durationMs":100},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]}]},{"id":"coa-tree-29774","classId":"necromancer","dbcSpellId":802121,"name":"Bone Tithe","unlockLevel":1,"icon":"/assets/ui/spells/ossuary_bond.png","sigil":"BT","description":"Siphon life from your undead minions, sacrificing 40% of their health to grant yourself an absorb shield equal to half of the health stolen for 20 seconds. Usable while stunned.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":77,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802121,"level":1,"description":"Siphon life from your undead minions, sacrificing 40% of their health to grant yourself an absorb shield equal to half of the health stolen for 20 seconds. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":77,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29774},{"id":"coa-tree-6555","classId":"necromancer","dbcSpellId":300945,"name":"Cobalt-Plated Armor","unlockLevel":1,"icon":"/assets/ui/spells/nhi_frost_knight_border.png","sigil":"CP","description":"Increases the Armor of your Undead minions by 1200, scaling with your level.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":22,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300945,"level":1,"description":"Increases the Armor of your Undead minions by 1200, scaling with your level.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":22,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6555},{"id":"coa-tree-33764","classId":"necromancer","dbcSpellId":504050,"name":"Command: Blight","unlockLevel":1,"icon":"/assets/ui/spells/spell_necro_deathrift.png","sigil":"CB","description":"Command your Decaying Colossus to blight the ground in a 10 yd radius beneath it, reducing healing received by -60% for enemies inside for 20 seconds.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504050,"level":1,"description":"Command your Decaying Colossus to blight the ground in a 10 yd radius beneath it, reducing healing received by -60% for enemies inside for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":33764},{"id":"coa-tree-5314","classId":"necromancer","dbcSpellId":504316,"name":"Command: Hook","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_hook_01.png","sigil":"CH","description":"Command your Abominations to hook an enemy to their location, slowing their movement speed to a halt for 2 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500991,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504316,"level":1,"description":"Command your Abominations to hook an enemy to their location, slowing their movement speed to a halt for 2 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500991,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":5314},{"id":"coa-23-command-skeletal-warriors-475-504334","classId":"necromancer","dbcSpellId":504334,"name":"Command: Skeletal Warriors","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_festering_strike.png","sigil":"CS","description":"Command: Skeletal WarriorsRank 130 Runic Power Instant castCommand your Skeletal Warriors to strike up to 2 enemies in a frontal arc, dealing Weapon Damage plus 1+SP*.35+AP*0.35 Physical Damage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":500991,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504334,"level":1,"description":"Command: Skeletal WarriorsRank 130 Runic Power Instant castCommand your Skeletal Warriors to strike up to 2 enemies in a frontal arc, dealing Weapon Damage plus 1+SP*.35+AP*0.35 Physical Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":500991,"durationMs":0}]}]},{"id":"coa-tree-12381","classId":"necromancer","dbcSpellId":707739,"name":"Corpse Commander","unlockLevel":1,"icon":"/assets/ui/spells/icon_upgradestone_undead_rare.png","sigil":"CC","description":"Reduces the Runic Power cost of Corpse Explosion by -20.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707739,"level":1,"description":"Reduces the Runic Power cost of Corpse Explosion by -20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12381},{"id":"coa-tree-34980","classId":"necromancer","dbcSpellId":803772,"name":"Create Frozen Reliquary","unlockLevel":1,"icon":"/assets/ui/spells/frozenurn.png","sigil":"CF","description":"Create 1 Frozen Reliquary that restores 30% of your missing mana. Allies may only use a Frozen Reliquary once per minute.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"utility","effectType":24,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803772,"level":1,"description":"Create 1 Frozen Reliquary that restores 30% of your missing mana. Allies may only use a Frozen Reliquary once per minute.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"utility","effectType":24,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":34980},{"id":"coa-tree-4034","classId":"necromancer","dbcSpellId":92121,"name":"Crypt Plague","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_plaguecloud.png","sigil":"CP","description":"Level 10 Passive Damage dealt by Crypt Swarm now applies 1 stack of Crypt Plague and Lichfrost applies 2 stacks.Crypt Plague (Damage)Deals 2 + 6% SP Plague Damage every 2 sec for 10 seconds, stacking 10 times. Additional applications do not refresh duration.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":570132,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":573131,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":286,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92121,"level":1,"description":"Level 10 Passive Damage dealt by Crypt Swarm now applies 1 stack of Crypt Plague and Lichfrost applies 2 stacks.Crypt Plague (Damage)Deals 2 + 6% SP Plague Damage every 2 sec for 10 seconds, stacking 10 times. Additional applications do not refresh duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":570132,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":573131,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":286,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4034},{"id":"coa-tree-33751","classId":"necromancer","dbcSpellId":300233,"name":"Dead Man Walking","unlockLevel":1,"icon":"/assets/ui/spells/inv_plate_pvpdeathknight_g_01_boot.png","sigil":"DM","description":"Reduces the duration of root and slow effects against you by -25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":232,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300233,"level":1,"description":"Reduces the duration of root and slow effects against you by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":232,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33751},{"id":"coa-tree-33740","classId":"necromancer","dbcSpellId":300580,"name":"Deadly Defense","unlockLevel":1,"icon":"/assets/ui/spells/custom_04_summon_skeleton_army_border.png","sigil":"DD","description":"Each of your summons now reduces your damage taken by 1%, up to a maximum of 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":226,"miscValue":10,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300580,"level":1,"description":"Each of your summons now reduces your damage taken by 1%, up to a maximum of 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":226,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33740},{"id":"coa-tree-29788","classId":"necromancer","dbcSpellId":807796,"name":"Death's Due","unlockLevel":1,"icon":"/assets/ui/spells/nhi_deathpickaxe_border.png","sigil":"DS","description":"Force a target to accept the reality of death, removing any invulnerability or immunity effects from them and cursing them for 5 seconds. If the target's health is below 20% at the end of duration, they take 800 + 200% SP Shadowfrost Damage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":1000,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":108,"auraType":0,"miscValue":29,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":808016,"durationMs":5000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":25,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":807796,"level":1,"description":"Force a target to accept the reality of death, removing any invulnerability or immunity effects from them and cursing them for 5 seconds. If the target's health is below 20% at the end of duration, they take 800 + 200% SP Shadowfrost Damage.","castMode":"cast","castTimeMs":1000,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":108,"auraType":0,"miscValue":29,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":808016,"durationMs":5000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":25,"triggerSpellId":0,"durationMs":5000}]}],"talentEntryId":29788},{"id":"coa-23-disciple-of-kelthuzad-none-560616","classId":"necromancer","dbcSpellId":560616,"name":"Disciple of Kel'thuzad","unlockLevel":1,"icon":"/assets/ui/spells/inv_belt_plate_raiddeathknightmythic_q_01.png","sigil":"DO","description":"Disciple of Kel'thuzadRank 2Increases your spell haste by 8%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560616,"level":1,"description":"Disciple of Kel'thuzadRank 2Increases your spell haste by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-33784","classId":"necromancer","dbcSpellId":560615,"name":"Disciple of Kel'thuzad","unlockLevel":1,"icon":"/assets/ui/spells/inv_belt_plate_raiddeathknightmythic_q_01.png","sigil":"DO","description":"Disciple of Kel'thuzadRank 1Increases your spell haste by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560615,"level":1,"description":"Disciple of Kel'thuzadRank 1Increases your spell haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":560616,"level":1,"description":"Disciple of Kel'thuzadRank 2Increases your spell haste by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":33784},{"id":"coa-tree-29244","classId":"necromancer","dbcSpellId":680388,"name":"Fetid Ward","unlockLevel":1,"icon":"/assets/ui/spells/inv_icon_shadowcouncilorb_green.png","sigil":"FW","description":"Activate a Fetid Ward on yourself and your Undead minions for 30 minutes. While active, 30% of your damage dealt heals you and your minions, split evenly amongst them, and healing received is increased by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":681463,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":126,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680388,"level":1,"description":"Activate a Fetid Ward on yourself and your Undead minions for 30 minutes. While active, 30% of your damage dealt heals you and your minions, split evenly amongst them, and healing received is increased by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":681463,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":126,"triggerSpellId":0,"durationMs":1800000}]}],"talentEntryId":29244},{"id":"coa-tree-33732","classId":"necromancer","dbcSpellId":804371,"name":"Foul Invocation","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_festergutrotface.png","sigil":"FI","description":"Transform into an undead monstrosity for 20 seconds, increasing your maximum health by 30%. While transformed you are immune to Fear, Sleep, Charm, and Disease effects.","target":"friendly","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":444914,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":190,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804371,"level":1,"description":"Transform into an undead monstrosity for 20 seconds, increasing your maximum health by 30%. While transformed you are immune to Fear, Sleep, Charm, and Disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":444914,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":190,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":33732},{"id":"coa-tree-29520","classId":"necromancer","dbcSpellId":301198,"name":"Game of Bones","unlockLevel":1,"icon":"/assets/ui/spells/icon_petfamily_undead.png","sigil":"GO","description":"Reduces the cooldown of your Champion spells by -60 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301198,"level":1,"description":"Reduces the cooldown of your Champion spells by -60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29520},{"id":"coa-tree-29787","classId":"necromancer","dbcSpellId":805369,"name":"Glacial Tap","unlockLevel":1,"icon":"/assets/ui/spells/_skullcurse2_blue.png","sigil":"GT","description":"Tap into necrotic energies, instantly regenerating 30 Runic Power.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"resource","amount":300},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805369,"level":1,"description":"Tap into necrotic energies, instantly regenerating 30 Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"resource","amount":300},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29787},{"id":"coa-tree-29865","classId":"necromancer","dbcSpellId":704715,"name":"Gravedigger","unlockLevel":1,"icon":"/assets/ui/spells/achievement_bg_xkills_avgraveyard.png","sigil":"GR","description":"Reduces the cast time of Sacrifice Undead by -0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704715,"level":1,"description":"Reduces the cast time of Sacrifice Undead by -0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29865},{"id":"coa-tree-6885","classId":"necromancer","dbcSpellId":300748,"name":"Hulking Hordes","unlockLevel":1,"icon":"/assets/ui/spells/uico_unholy_spell_08_border.png","sigil":"HH","description":"Increases your maximum health and the maximum health of your summons by 5%.","target":"friendly","range":{"min":0,"max":0},"radius":50,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300748,"level":1,"description":"Increases your maximum health and the maximum health of your summons by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":301326,"level":1,"description":"Increases your maximum health and the maximum health of your summons by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6885},{"id":"coa-tree-5781","classId":"necromancer","dbcSpellId":704713,"name":"Lich Commander","unlockLevel":1,"icon":"/assets/ui/spells/inv_7af_deathknight_frostmournefragment.png","sigil":"LC","description":"Reduces the Runic Power cost of your Command spells by -5.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704713,"level":1,"description":"Reduces the Runic Power cost of your Command spells by -5.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5781},{"id":"coa-23-lichfrost-83-801722","classId":"necromancer","dbcSpellId":801722,"name":"Lichfrost","unlockLevel":1,"icon":"/assets/ui/spells/artifactability_frostmage_ebonbolt.png","sigil":"LI","description":"LichfrostRank 113% of base mana 1.5 sec castUnleash a shard of frozen decay at an enemy, dealing 15+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 3 sec, and generating Runic Power.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"damage","coefficient":0.6000000238418579,"basePoints":15,"dieSides":6,"pointsPerLevel":3.2823500633239746,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":4},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":3000},{"kind":"status","status":"slow","durationMs":3000,"magnitude":0.3}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801722,"level":1,"description":"LichfrostRank 113% of base mana 1.5 sec castUnleash a shard of frozen decay at an enemy, dealing 15+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 3 sec, and generating Runic Power.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"damage","coefficient":0.6000000238418579,"basePoints":15,"dieSides":6,"pointsPerLevel":3.2823500633239746,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":4},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":3000},{"kind":"status","status":"slow","durationMs":3000,"magnitude":0.3}]},{"rank":2,"spellId":501969,"level":6,"description":"LichfrostRank 213% of base mana 1.8 sec castUnleash a shard of frozen decay at an enemy, dealing 35+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 3 sec, and generating Runic Power.","castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"damage","coefficient":0.5671746011764284,"basePoints":28,"dieSides":6,"pointsPerLevel":0.871999979019165,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":3000},{"kind":"status","status":"slow","durationMs":3000,"magnitude":0.3}]},{"rank":3,"spellId":501970,"level":12,"description":"LichfrostRank 315% of base mana 2 sec castUnleash a shard of frozen decay at an enemy, dealing 66+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 4 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.7269135816597644,"basePoints":45,"dieSides":5,"pointsPerLevel":0.9900000095367432,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":4000},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.3}]},{"rank":4,"spellId":501971,"level":18,"description":"LichfrostRank 415% of base mana 2.3 sec castUnleash a shard of frozen decay at an enemy, dealing 102+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 4 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2300,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.1595959422564266,"basePoints":66,"dieSides":5,"pointsPerLevel":2.5999999046325684,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":4000},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.3}]},{"rank":5,"spellId":501972,"level":24,"description":"LichfrostRank 515% of base mana 2.3 sec castUnleash a shard of frozen decay at an enemy, dealing 169+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 4 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2300,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.3179487081674428,"basePoints":92,"dieSides":9,"pointsPerLevel":2.424999952316284,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":4000},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.3}]},{"rank":6,"spellId":501973,"level":30,"description":"LichfrostRank 615% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 203+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.8111111005147298,"basePoints":140,"dieSides":12,"pointsPerLevel":3.299999952316284,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":7,"spellId":501974,"level":36,"description":"LichfrostRank 715% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 290+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.1653594659044852,"basePoints":183,"dieSides":15,"pointsPerLevel":3.924999952316284,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":8,"spellId":501975,"level":42,"description":"LichfrostRank 815% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 346+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.673099462051838,"basePoints":237,"dieSides":17,"pointsPerLevel":5.050000190734863,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":9,"spellId":501976,"level":48,"description":"LichfrostRank 915% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 402+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.1365079122876365,"basePoints":290,"dieSides":21,"pointsPerLevel":6.099999904632568,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":10,"spellId":501977,"level":54,"description":"LichfrostRank 1015% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 490+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.6978261367134424,"basePoints":353,"dieSides":24,"pointsPerLevel":7.425000190734863,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":11,"spellId":501978,"level":60,"description":"LichfrostRank 1115% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 569+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 6 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.7688880411783856,"basePoints":469,"dieSides":29,"pointsPerLevel":6.083330154418945,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":6000},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.3}]},{"rank":12,"spellId":501979,"level":68,"description":"LichfrostRank 1215% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 623+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 6 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":515,"dieSides":30,"pointsPerLevel":7.516670227050781,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":6000},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.3}]},{"rank":13,"spellId":501980,"level":76,"description":"LichfrostRank 1315% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 702+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 6 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":616,"dieSides":35,"pointsPerLevel":13.850000381469727,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804112,"durationMs":6000},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.3}]}]},{"id":"coa-tree-30833","classId":"necromancer","dbcSpellId":302888,"name":"Living Dead","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_deadwindpass.png","sigil":"LD","description":"Reduces the mana cost of Lichfrost and Crypt Swarm by -10%. Blight now refunds 25% of its base mana cost if it lasts the full duration.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":302888,"level":1,"description":"Reduces the mana cost of Lichfrost and Crypt Swarm by -10%. Blight now refunds 25% of its base mana cost if it lasts the full duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":302920,"level":1,"description":"Reduces the mana cost of Lichfrost and Crypt Swarm by -20%. Blight now refunds 25% of its base mana cost if it lasts the full duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30833},{"id":"coa-tree-33778","classId":"necromancer","dbcSpellId":803741,"name":"Mass Grave","unlockLevel":1,"icon":"/assets/ui/spells/spell_necro_deathlyecho.png","sigil":"MG","description":"Transform up to 5 nearby enemies into a ghoul, fearing them for 40 seconds (8). Only affects Humanoids. While above 50 Runic Power this spell is instant cast.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"status","status":"fear","durationMs":40000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":570,"triggerSpellId":0,"durationMs":40000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803741,"level":1,"description":"Transform up to 5 nearby enemies into a ghoul, fearing them for 40 seconds (8). Only affects Humanoids. While above 50 Runic Power this spell is instant cast.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"status","status":"fear","durationMs":40000},{"kind":"utility","effectType":6,"auraType":56,"miscValue":570,"triggerSpellId":0,"durationMs":40000}]}],"talentEntryId":33778},{"id":"coa-23-mortification-82-704709","classId":"necromancer","dbcSpellId":704709,"name":"Mortification","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_cripple.png","sigil":"MO","description":"MortificationRank 1Ray of Rot now increases the damage of your diseases against the target by 25% while channeling.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704709,"level":1,"description":"MortificationRank 1Ray of Rot now increases the damage of your diseases against the target by 25% while channeling.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704710,"level":1,"description":"MortificationRank 2Ray of Rot now increases the damage of your diseases against the target by 50% while channeling.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-33780","classId":"necromancer","dbcSpellId":560622,"name":"Naxxramas Prodigy","unlockLevel":1,"icon":"/assets/ui/spells/inv_mummypet.png","sigil":"NP","description":"Increases your Shadow and Frost resistances by 0.5 per level.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":83,"miscValue":48,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560622,"level":1,"description":"Increases your Shadow and Frost resistances by 0.5 per level.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":83,"miscValue":48,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33780},{"id":"coa-tree-31143","classId":"necromancer","dbcSpellId":704729,"name":"Ner'zhul's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/achievement_raid_torghast_shadowscourge_prisonofnerzhul.png","sigil":"NZ","description":"Increases your maximum Runic Power by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704729,"level":1,"description":"Increases your maximum Runic Power by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":31143},{"id":"coa-tree-6897","classId":"necromancer","dbcSpellId":531128,"name":"Overwhelming Force","unlockLevel":1,"icon":"/assets/ui/spells/nhi_raisedead_border.png","sigil":"OF","description":"Damage dealt by your Undead minions now has a 5% chance to restore 2 Runic Power and 2% of your maximum mana.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":190,"auraType":42,"miscValue":0,"triggerSpellId":531131,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":531128,"level":1,"description":"Damage dealt by your Undead minions now has a 5% chance to restore 2 Runic Power and 2% of your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":190,"auraType":42,"miscValue":0,"triggerSpellId":531131,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6897},{"id":"coa-23-plaguestorm-82-801939","classId":"necromancer","dbcSpellId":801939,"name":"Plaguestorm","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathknight_necroticaura.png","sigil":"PL","description":"PlaguestormRank 120% of base mana 2 sec cast2 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801939,"level":1,"description":"PlaguestormRank 120% of base mana 2 sec cast2 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501909,"level":9,"description":"PlaguestormRank 220% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501910,"level":17,"description":"PlaguestormRank 320% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501911,"level":25,"description":"PlaguestormRank 420% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501912,"level":33,"description":"PlaguestormRank 520% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501913,"level":41,"description":"PlaguestormRank 620% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501914,"level":49,"description":"PlaguestormRank 720% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501915,"level":57,"description":"PlaguestormRank 820% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501916,"level":65,"description":"PlaguestormRank 920% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501917,"level":73,"description":"PlaguestormRank 1020% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6886","classId":"necromancer","dbcSpellId":560595,"name":"Putrid Summoner","unlockLevel":1,"icon":"/assets/ui/spells/_d3wallofzombies.png","sigil":"PS","description":"Each Undead Stance now provides an additional bonus: Undead: Assault: Increases your critical strike chance against Humanoids by 5%. Undead: Protect: Reduces your threat generated by -75%. Undead: Pacify: Reduces your damage taken by -10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560595,"level":1,"description":"Each Undead Stance now provides an additional bonus: Undead: Assault: Increases your critical strike chance against Humanoids by 5%. Undead: Protect: Reduces your threat generated by -75%. Undead: Pacify: Reduces your damage taken by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6886},{"id":"coa-tree-29364","classId":"necromancer","dbcSpellId":500335,"name":"Raise: Abomination","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_horde_abomination.png","sigil":"RA","description":"Raise an Abomination to aid you in combat, occupying 3 Life Force. It is surrounded by a disease cloud, dealing 9 + 25% SP Nature damage to enemies when they deal damage and reducing their attack speed by -20% for 15 seconds. Command: Instantly unleashes an empowered disease cloud around it.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":67},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":50068,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500335,"level":1,"description":"Raise an Abomination to aid you in combat, occupying 3 Life Force. It is surrounded by a disease cloud, dealing 9 + 25% SP Nature damage to enemies when they deal damage and reducing their attack speed by -20% for 15 seconds. Command: Instantly unleashes an empowered disease cloud around it.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":67},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":50068,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29364},{"id":"coa-tree-33777","classId":"necromancer","dbcSpellId":504861,"name":"Raise: Banshee","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_horde_banshee.png","sigil":"RB","description":"Raise a Banshee to aid you in combat, occupying 2 Life Force. It will channel on your target, dealing damage and draining their mana over time. Command: Drains 10% of your target's mana (up to a maximum of 20% of their own maximum mana) and deals Frost damage equal to the mana drained.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":500650,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504861,"level":1,"description":"Raise a Banshee to aid you in combat, occupying 2 Life Force. It will channel on your target, dealing damage and draining their mana over time. Command: Drains 10% of your target's mana (up to a maximum of 20% of their own maximum mana) and deals Frost damage equal to the mana drained.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":500650,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33777},{"id":"coa-tree-7348","classId":"necromancer","dbcSpellId":500989,"name":"Raise: Decaying Colossus","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_grimbatol_drahga_the_shadowburner.png","sigil":"RD","description":"Raise a Decaying Colossus to aid you in combat, occupying 3 Life Force. While active, 25% of all damage taken by the caster is taken by the Decaying Colossus. Command: Unleash a powerful attack dealing Weapon Damage plus 100 to all enemies in front of it.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":69},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50115,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500989,"level":1,"description":"Raise a Decaying Colossus to aid you in combat, occupying 3 Life Force. While active, 25% of all damage taken by the caster is taken by the Decaying Colossus. Command: Unleash a powerful attack dealing Weapon Damage plus 100 to all enemies in front of it.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":69},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50115,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7348},{"id":"coa-tree-31048","classId":"necromancer","dbcSpellId":707670,"name":"Reclaimed Life","unlockLevel":1,"icon":"/assets/ui/spells/_calltoarms_forsaken_green.png","sigil":"RL","description":"Reduces the cast time of your Raise spells by -15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707670,"level":1,"description":"Reduces the cast time of your Raise spells by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":31048},{"id":"coa-tree-34981","classId":"necromancer","dbcSpellId":704721,"name":"Study of Death","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_book_06.png","sigil":"SO","description":"When you cast Unholy Frenzy you now summon 3 Greater Zombies to aid you in combat for 14 seconds. Damage dealt by your Undead minions now reduces the cooldown of Unholy Frenzy by -0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":190,"auraType":42,"miscValue":0,"triggerSpellId":302597,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704721,"level":1,"description":"When you cast Unholy Frenzy you now summon 3 Greater Zombies to aid you in combat for 14 seconds. Damage dealt by your Undead minions now reduces the cooldown of Unholy Frenzy by -0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":190,"auraType":42,"miscValue":0,"triggerSpellId":302597,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34981},{"id":"coa-tree-4036","classId":"necromancer","dbcSpellId":92123,"name":"Summoning Adept","unlockLevel":1,"icon":"/assets/ui/spells/_undead_03.png","sigil":"SA","description":"Level 10 Passive Increases your maximum Life Force by 1.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92123,"level":1,"description":"Level 10 Passive Increases your maximum Life Force by 1.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4036},{"id":"coa-tree-29196","classId":"necromancer","dbcSpellId":705752,"name":"Tears of Lordaeron","unlockLevel":1,"icon":"/assets/ui/spells/warlock_siphonlife.png","sigil":"TO","description":"Direct critical strikes regenerate 3% of your maximum mana and 9% of your maximum runic power. Periodic critical strikes regenerate 1% of your maximum mana.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":705753,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705752,"level":1,"description":"Direct critical strikes regenerate 3% of your maximum mana and 9% of your maximum runic power. Periodic critical strikes regenerate 1% of your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":705753,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29196},{"id":"coa-tree-4035","classId":"necromancer","dbcSpellId":92122,"name":"Tundra Warriors","unlockLevel":1,"icon":"/assets/ui/spells/wc3lichoriginal.png","sigil":"TW","description":"Level 10 Passive Casting any spell now has a 25% chance to grant you Tundra Warriors.Tundra Warriors (Proc)For 10 seconds, the critical strike chance of your Undead minions is increased by 4%, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707421,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92122,"level":1,"description":"Level 10 Passive Casting any spell now has a 25% chance to grant you Tundra Warriors.Tundra Warriors (Proc)For 10 seconds, the critical strike chance of your Undead minions is increased by 4%, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707421,"durationMs":-1}]}],"talentEntryId":4035},{"id":"coa-tree-6458","classId":"necromancer","dbcSpellId":300241,"name":"Vampiric Aura","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_vampiricaura.png","sigil":"VA","description":"While you are below 50% health, your Undead minions now heal you for 10% of their damage dealt.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":560607,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300241,"level":1,"description":"While you are below 50% health, your Undead minions now heal you for 10% of their damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":560607,"durationMs":-1}]}],"talentEntryId":6458},{"id":"coa-tree-33733","classId":"necromancer","dbcSpellId":301333,"name":"Winds of Northrend","unlockLevel":1,"icon":"/assets/ui/spells/spell_ice_lament.png","sigil":"WO","description":"Increases the amount slowed by Lichfrost by -15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301333,"level":1,"description":"Increases the amount slowed by Lichfrost by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33733},{"id":"necromancer-crypt-swarm","classId":"necromancer","dbcSpellId":500965,"name":"Crypt Swarm","unlockLevel":4,"icon":"/assets/ui/spells/spell_shadow_carrionswarm.png","sigil":"CS","description":"Crypt SwarmRank 117% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 24 Shadow damage and generating Runic Power over 3 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500965,"level":4,"description":"Crypt SwarmRank 117% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 24 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":2,"spellId":501880,"level":12,"description":"Crypt SwarmRank 217% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 40 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":3,"spellId":501881,"level":20,"description":"Crypt SwarmRank 317% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 75 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":4,"spellId":501882,"level":26,"description":"Crypt SwarmRank 417% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 114 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":5,"spellId":501883,"level":34,"description":"Crypt SwarmRank 517% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 150 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":6,"spellId":501884,"level":40,"description":"Crypt SwarmRank 617% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 192 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":7,"spellId":501885,"level":48,"description":"Crypt SwarmRank 717% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 276 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":8,"spellId":501886,"level":54,"description":"Crypt SwarmRank 817% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 342 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":9,"spellId":501887,"level":62,"description":"Crypt SwarmRank 917% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 390 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]},{"rank":10,"spellId":501888,"level":73,"description":"Crypt SwarmRank 1017% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 486 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":800343,"durationMs":3000},{"kind":"utility","effectType":3,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800344,"durationMs":3000}]}]},{"id":"necromancer-entomb","classId":"necromancer","dbcSpellId":500341,"name":"Entomb","unlockLevel":4,"icon":"/assets/ui/spells/ability_fiegndead.png","sigil":"EN","description":"Seal a non-boss foe in a crushing tomb.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.55},{"kind":"status","status":"stun","durationMs":4000}],"source":"coa-starter"},{"id":"coa-23-sacrifice-undead-475-805027","classId":"necromancer","dbcSpellId":805027,"name":"Sacrifice Undead","unlockLevel":4,"icon":"/assets/ui/spells/_sacrificialdagger_unholy.png","sigil":"SU","description":"Sacrifice UndeadRank 120% of base mana 1.5 sec cast30 sec cooldownSacrifices your Undead, returning their Life Force to you, and restoring 49+SP*.3 health for each Undead minion destroyed.","target":"hostile","range":{"min":0,"max":50000},"radius":100,"castMode":"cast","castTimeMs":1500,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":805031,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":525004,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805027,"level":4,"description":"Sacrifice UndeadRank 120% of base mana 1.5 sec cast30 sec cooldownSacrifices your Undead, returning their Life Force to you, and restoring 49+SP*.3 health for each Undead minion destroyed.","castMode":"cast","castTimeMs":1500,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":524287,"triggerSpellId":805031,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":525004,"durationMs":0}]}]},{"id":"necromancer-razorice","classId":"necromancer","dbcSpellId":500967,"name":"Razorice","unlockLevel":8,"icon":"/assets/ui/spells/spell_frost_frostarmor.png","sigil":"RA","description":"RazoriceRank 117% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 4 Frost damage to attackers when hit.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500967,"level":8,"description":"RazoriceRank 117% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 4 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":2,"spellId":501960,"level":16,"description":"RazoriceRank 217% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 7 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":3,"spellId":501961,"level":26,"description":"RazoriceRank 317% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 10 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":4,"spellId":501962,"level":36,"description":"RazoriceRank 417% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 13 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":5,"spellId":501963,"level":46,"description":"RazoriceRank 517% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 16 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":6,"spellId":501964,"level":52,"description":"RazoriceRank 617% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 17 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":7,"spellId":501965,"level":58,"description":"RazoriceRank 717% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 21 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":8,"spellId":501966,"level":66,"description":"RazoriceRank 817% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 35 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":9,"spellId":501967,"level":70,"description":"RazoriceRank 917% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 54 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":190,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]},{"rank":10,"spellId":501968,"level":76,"description":"RazoriceRank 1017% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 107 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":6,"auraType":15,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-23-virulency-82-501900","classId":"necromancer","dbcSpellId":501900,"name":"Virulency","unlockLevel":9,"icon":"/assets/ui/spells/_bloodplague_shadow.png","sigil":"VI","description":"VirulencyRank 210% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501900,"level":9,"description":"VirulencyRank 210% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501901,"level":17,"description":"VirulencyRank 310% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501902,"level":25,"description":"VirulencyRank 410% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501903,"level":33,"description":"VirulencyRank 510% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501904,"level":41,"description":"VirulencyRank 610% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501905,"level":49,"description":"VirulencyRank 710% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501906,"level":57,"description":"VirulencyRank 810% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501907,"level":65,"description":"VirulencyRank 910% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501908,"level":73,"description":"VirulencyRank 1010% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-23-icequake-83-503908","classId":"necromancer","dbcSpellId":503908,"name":"Icequake","unlockLevel":10,"icon":"/assets/ui/spells/5_mageskill01_border.png","sigil":"IC","description":"IcequakeRank 130 Runic Power Instant castImpale up to 12 enemies within 30 yds affected by Deathchill for 65+0+FroP*0.45 Frost Damage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":1.1133333365122478,"basePoints":65,"dieSides":6,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":503908,"level":10,"description":"IcequakeRank 130 Runic Power Instant castImpale up to 12 enemies within 30 yds affected by Deathchill for 65+0+FroP*0.45 Frost Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":1.1133333365122478,"basePoints":65,"dieSides":6,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":501946,"level":15,"description":"IcequakeRank 235 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 49+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":350},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801751,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501947,"level":24,"description":"IcequakeRank 335 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 66+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":350},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801751,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501948,"level":35,"description":"IcequakeRank 435 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 114+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":350},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801751,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501949,"level":47,"description":"IcequakeRank 535 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 203+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":350},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801751,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501950,"level":58,"description":"IcequakeRank 635 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 334+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":350},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801751,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501951,"level":70,"description":"IcequakeRank 735 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 552+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":350},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":801751,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":574157,"level":52,"description":"IcequakeRank 830 Runic Power Instant castImpale up to 12 enemies within 30 yds affected by Deathchill for 314+0+FroP*0.45 Frost Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":3.6611939805064035,"basePoints":314,"dieSides":31,"pointsPerLevel":7.824999809265137,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":9,"spellId":574158,"level":58,"description":"IcequakeRank 930 Runic Power Instant castImpale up to 12 enemies within 30 yds affected by Deathchill for 502+0+FroP*0.45 Frost Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":4,"basePoints":502,"dieSides":38,"pointsPerLevel":6.25,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-23-ray-of-rot-82-804535","classId":"necromancer","dbcSpellId":804535,"name":"Ray of Rot","unlockLevel":10,"icon":"/assets/ui/spells/5_warlock43_border.png","sigil":"RO","description":"Ray of RotRank 130 Runic Power ChanneledChannel a putrid beam, causing 12 Plague damage every 0.5 sec for 2.5 sec.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804536,"durationMs":2500}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804535,"level":10,"description":"Ray of RotRank 130 Runic Power ChanneledChannel a putrid beam, causing 12 Plague damage every 0.5 sec for 2.5 sec.","castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804536,"durationMs":2500}]},{"rank":2,"spellId":504507,"level":28,"description":"Ray of RotRank 230 Runic Power ChanneledChannel a putrid beam, causing 32 Plague damage every 0.5 sec for 2.5 sec.","castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804536,"durationMs":2500}]},{"rank":3,"spellId":504508,"level":38,"description":"Ray of RotRank 330 Runic Power ChanneledChannel a putrid beam, causing 49 Plague damage every 0.5 sec for 2.5 sec.","castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804536,"durationMs":2500}]},{"rank":4,"spellId":504509,"level":48,"description":"Ray of RotRank 430 Runic Power ChanneledChannel a putrid beam, causing 70 Plague damage every 0.5 sec for 2.5 sec.","castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804536,"durationMs":2500}]}]},{"id":"necromancer-ice-barrage","classId":"necromancer","dbcSpellId":801760,"name":"Ice Barrage","unlockLevel":11,"icon":"/assets/ui/spells/uico_frost_spell_09_border.png","sigil":"IB","description":"Ice BarrageRank 130 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 26+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801760,"level":11,"description":"Ice BarrageRank 130 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 26+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":2,"spellId":501992,"level":20,"description":"Ice BarrageRank 230 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 58+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":3,"spellId":501993,"level":28,"description":"Ice BarrageRank 330 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 96+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":4,"spellId":501994,"level":36,"description":"Ice BarrageRank 430 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 133+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":5,"spellId":501995,"level":44,"description":"Ice BarrageRank 530 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 190+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":6,"spellId":501996,"level":52,"description":"Ice BarrageRank 630 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 241+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":7,"spellId":501997,"level":60,"description":"Ice BarrageRank 730 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 311+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":8,"spellId":501998,"level":68,"description":"Ice BarrageRank 830 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 390+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":9,"spellId":501999,"level":76,"description":"Ice BarrageRank 930 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 451+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803779,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804328,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]}]},{"id":"coa-23-foul-mandate-475-800199","classId":"necromancer","dbcSpellId":800199,"name":"Foul Mandate","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FM","description":"Foul MandateRank 127% of base mana Instant castEmpowers an ally with a dark Mandate, increasing Stamina by 8 for 30 min.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":2,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800199,"level":12,"description":"Foul MandateRank 127% of base mana Instant castEmpowers an ally with a dark Mandate, increasing Stamina by 8 for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":2,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-23-noxious-corpserot-82-802129","classId":"necromancer","dbcSpellId":802129,"name":"Noxious Corpserot","unlockLevel":13,"icon":"/assets/ui/spells/spell_deathknight_necroticplague.png","sigil":"NC","description":"Noxious CorpserotRank 130 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 11+0+SP*0.14 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 40+0+SP*0.38 Plague damage to all enemies within 10 yards.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"dot","coefficient":0.5,"basePoints":11,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0.5,"sourceLevel":13,"maxScalingLevel":15,"ticks":5,"intervalMs":1000,"tag":"spell-802129"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802129,"level":13,"description":"Noxious CorpserotRank 130 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 11+0+SP*0.14 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 40+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"dot","coefficient":0.5,"basePoints":11,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0.5,"sourceLevel":13,"maxScalingLevel":15,"ticks":5,"intervalMs":1000,"tag":"spell-802129"}]},{"rank":2,"spellId":501943,"level":17,"description":"Noxious CorpserotRank 230 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 15+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 69+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"dot","coefficient":0.24479166666666666,"basePoints":15,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":5,"intervalMs":1000,"tag":"spell-501943"}]},{"rank":3,"spellId":501944,"level":24,"description":"Noxious CorpserotRank 330 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 19+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 90+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"dot","coefficient":0.3234188087985047,"basePoints":19,"dieSides":1,"pointsPerLevel":0.7850000262260437,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29,"ticks":5,"intervalMs":1000,"tag":"spell-501944"}]},{"rank":4,"spellId":501945,"level":31,"description":"Noxious CorpserotRank 430 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 22+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 116+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"dot","coefficient":0.40009711186091107,"basePoints":22,"dieSides":1,"pointsPerLevel":1.0714000463485718,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":38,"ticks":5,"intervalMs":1000,"tag":"spell-501945"}]},{"rank":5,"spellId":503094,"level":45,"description":"Noxious CorpserotRank 530 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 32+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 151+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"dot","coefficient":0.49920276867018804,"basePoints":32,"dieSides":1,"pointsPerLevel":1.2856999635696411,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":45,"ticks":5,"intervalMs":1000,"tag":"spell-503094"}]},{"rank":6,"spellId":503325,"level":45,"description":"Noxious CorpserotRank 630 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 44+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 196+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"dot","coefficient":0.7264444377687242,"basePoints":44,"dieSides":1,"pointsPerLevel":1.9279999732971191,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":50,"ticks":5,"intervalMs":1000,"tag":"spell-503325"}]},{"rank":7,"spellId":504621,"level":52,"description":"Noxious CorpserotRank 730 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 61+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 255+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"dot","coefficient":0.9686169410819438,"basePoints":61,"dieSides":1,"pointsPerLevel":2.571000099182129,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":57,"ticks":5,"intervalMs":1000,"tag":"spell-504621"}]},{"rank":8,"spellId":504624,"level":59,"description":"Noxious CorpserotRank 830 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 85+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 332+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":524287,"triggerSpellId":802128,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"dot","coefficient":1.2200450703904435,"basePoints":85,"dieSides":1,"pointsPerLevel":3.1500000953674316,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":66,"ticks":5,"intervalMs":1000,"tag":"spell-504624"}]}]},{"id":"coa-23-bonefreeze-83-500326","classId":"necromancer","dbcSpellId":500326,"name":"Bonefreeze","unlockLevel":15,"icon":"/assets/ui/spells/spell_shadow_darkritual.png","sigil":"BO","description":"BonefreezeRank 16% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 63+0+FroP*0.95, 63+0+ShaP*0.825) Shadowfrost Damage, reduced by 25% per target.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.1720000058412552,"basePoints":63,"dieSides":1,"pointsPerLevel":1.440000057220459,"bonusPowerCoefficient":0.1720000058412552,"sourceLevel":15,"maxScalingLevel":20},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500326,"level":15,"description":"BonefreezeRank 16% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 63+0+FroP*0.95, 63+0+ShaP*0.825) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.1720000058412552,"basePoints":63,"dieSides":1,"pointsPerLevel":1.440000057220459,"bonusPowerCoefficient":0.1720000058412552,"sourceLevel":15,"maxScalingLevel":20},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]},{"rank":2,"spellId":501952,"level":22,"description":"BonefreezeRank 26% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 94+0+FroP*0.95, 94+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.3199135204693218,"basePoints":94,"dieSides":17,"pointsPerLevel":2.023200035095215,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":27},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]},{"rank":3,"spellId":501953,"level":29,"description":"BonefreezeRank 36% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 129+0+FroP*0.95, 129+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.6972878792069175,"basePoints":129,"dieSides":23,"pointsPerLevel":2.8980000019073486,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]},{"rank":4,"spellId":501954,"level":36,"description":"BonefreezeRank 46% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 163+0+FroP*0.95, 163+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":2.0543843063653684,"basePoints":163,"dieSides":32,"pointsPerLevel":3.7727999687194824,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":41},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]},{"rank":5,"spellId":501955,"level":43,"description":"BonefreezeRank 56% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 228+0+FroP*0.95, 228+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":2.585326479769301,"basePoints":228,"dieSides":45,"pointsPerLevel":4.647600173950195,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]},{"rank":6,"spellId":501956,"level":50,"description":"BonefreezeRank 66% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 319+0+FroP*0.95, 319+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":3.428205162439591,"basePoints":319,"dieSides":64,"pointsPerLevel":6.360000133514404,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":55},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]},{"rank":7,"spellId":501957,"level":57,"description":"BonefreezeRank 76% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 446+0+FroP*0.95, 446+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":4,"basePoints":446,"dieSides":89,"pointsPerLevel":8.899999618530273,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":62},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]},{"rank":8,"spellId":501958,"level":64,"description":"BonefreezeRank 86% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 566+0+FroP*0.95, 566+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":4,"basePoints":566,"dieSides":57,"pointsPerLevel":11.300000190734863,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":69},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]},{"rank":9,"spellId":501959,"level":71,"description":"BonefreezeRank 96% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 978+0+FroP*0.95, 978+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":4,"basePoints":978,"dieSides":66,"pointsPerLevel":8.049599647521973,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":6,"triggerSpellId":805386,"durationMs":0}]}]},{"id":"coa-23-harvest-plague-82-500968","classId":"necromancer","dbcSpellId":500968,"name":"Harvest Plague","unlockLevel":16,"icon":"/assets/ui/spells/spell_misc_zandalari_council_soulswap.png","sigil":"HP","description":"Harvest PlagueRank 120 Runic Power Instant castDisease an enemy, siphoning 29+0+SP*0.15 health every 3 sec for 18 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500968,"level":16,"description":"Harvest PlagueRank 120 Runic Power Instant castDisease an enemy, siphoning 29+0+SP*0.15 health every 3 sec for 18 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":2,"spellId":501890,"level":24,"description":"Harvest PlagueRank 220 Runic Power Instant castDisease an enemy, siphoning 47+0+SP*0.15 health every 3 sec for 18 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":3,"spellId":501891,"level":32,"description":"Harvest PlagueRank 320 Runic Power Instant castDisease an enemy, siphoning 71+0+SP*0.15 health every 3 sec for 21 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":21000},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":4,"spellId":501892,"level":40,"description":"Harvest PlagueRank 420 Runic Power Instant castDisease an enemy, siphoning 94+0+SP*0.15 health every 3 sec for 21 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":21000},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":5,"spellId":583255,"level":48,"description":"Harvest PlagueRank 520 Runic Power Instant castDisease the enemy, siphoning 131+0+SP*0.15 health every 3 sec for 24 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":24000},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":24000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":24000}]},{"rank":6,"spellId":583256,"level":56,"description":"Harvest PlagueRank 620 Runic Power Instant castDisease the enemy, siphoning 172+0+SP*0.15 health every 3 sec for 24 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":24000},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":24000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":24000}]}]},{"id":"coa-23-lich-bolt-82-801942","classId":"necromancer","dbcSpellId":801942,"name":"Lich Bolt","unlockLevel":17,"icon":"/assets/ui/spells/_d3spiritbarrage.png","sigil":"LB","description":"Lich BoltRank 140 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 64+0+ShaP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"damage","coefficient":0.14000000059604645,"basePoints":64,"dieSides":6,"pointsPerLevel":2,"bonusPowerCoefficient":0.14000000059604645,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801942,"level":17,"description":"Lich BoltRank 140 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 64+0+ShaP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"damage","coefficient":0.14000000059604645,"basePoints":64,"dieSides":6,"pointsPerLevel":2,"bonusPowerCoefficient":0.14000000059604645,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501926,"level":24,"description":"Lich BoltRank 240 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 98+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"damage","coefficient":1.2697436014811199,"basePoints":98,"dieSides":9,"pointsPerLevel":1.940000057220459,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501927,"level":31,"description":"Lich BoltRank 340 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 139+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"damage","coefficient":1.6743478239446445,"basePoints":139,"dieSides":14,"pointsPerLevel":2.759999990463257,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501928,"level":38,"description":"Lich BoltRank 440 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 194+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"damage","coefficient":2.19924525794743,"basePoints":194,"dieSides":19,"pointsPerLevel":3.859999895095825,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501929,"level":45,"description":"Lich BoltRank 540 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 252+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"damage","coefficient":2.721666661898295,"basePoints":252,"dieSides":25,"pointsPerLevel":5.019999980926514,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":50},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501930,"level":52,"description":"Lich BoltRank 69% of base runic power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 327+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":3.393233825911337,"basePoints":327,"dieSides":33,"pointsPerLevel":6.519999980926514,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":57},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501931,"level":59,"description":"Lich BoltRank 740 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 440+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"damage","coefficient":3.6841047411566383,"basePoints":440,"dieSides":42,"pointsPerLevel":6.057139873504639,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-23-plague-of-undeath-82-801945","classId":"necromancer","dbcSpellId":801945,"name":"Plague of Undeath","unlockLevel":17,"icon":"/assets/ui/spells/epic_rpg_icon_pack_death_icon_0000s_0000_spirits_border.png","sigil":"PO","description":"Plague of UndeathRank 130 Runic Power 1.5 sec castDisease an enemy dealing 32+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 40% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"dot","coefficient":0.44312500084439915,"basePoints":32,"dieSides":1,"pointsPerLevel":0.6200000047683716,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":8,"intervalMs":2500,"tag":"spell-801945"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801945,"level":17,"description":"Plague of UndeathRank 130 Runic Power 1.5 sec castDisease an enemy dealing 32+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 40% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"dot","coefficient":0.44312500084439915,"basePoints":32,"dieSides":1,"pointsPerLevel":0.6200000047683716,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":8,"intervalMs":2500,"tag":"spell-801945"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":20000}]},{"rank":2,"spellId":501940,"level":24,"description":"Plague of UndeathRank 230 Runic Power 1.5 sec castDisease an enemy dealing 52+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"dot","coefficient":0.5528692669338651,"basePoints":52,"dieSides":1,"pointsPerLevel":0.5285710096359253,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":31,"ticks":8,"intervalMs":2500,"tag":"spell-501940"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":20000}]},{"rank":3,"spellId":501941,"level":32,"description":"Plague of UndeathRank 330 Runic Power 1.5 sec castDisease an enemy dealing 96+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"dot","coefficient":0.8105370812382259,"basePoints":96,"dieSides":1,"pointsPerLevel":0.5714290142059326,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":39,"ticks":8,"intervalMs":2500,"tag":"spell-501941"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":20000}]},{"rank":4,"spellId":501942,"level":40,"description":"Plague of UndeathRank 430 Runic Power 1.5 sec castDisease an enemy dealing 131+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"dot","coefficient":0.9636363607464414,"basePoints":131,"dieSides":1,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":47,"ticks":8,"intervalMs":2500,"tag":"spell-501942"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":20000}]},{"rank":5,"spellId":503095,"level":48,"description":"Plague of UndeathRank 530 Runic Power 1.5 sec castDisease an enemy dealing 196+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"dot","coefficient":1.254724144304871,"basePoints":196,"dieSides":1,"pointsPerLevel":0.857142984867096,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":55,"ticks":8,"intervalMs":2500,"tag":"spell-503095"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":20000}]},{"rank":6,"spellId":503640,"level":56,"description":"Plague of UndeathRank 630 Runic Power 1.5 sec castDisease an enemy dealing 252+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"dot","coefficient":1.4610321107604693,"basePoints":252,"dieSides":1,"pointsPerLevel":1.0571399927139282,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":63,"ticks":8,"intervalMs":2500,"tag":"spell-503640"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":2,"triggerSpellId":0,"durationMs":20000}]}]},{"id":"coa-tree-4236","classId":"necromancer","dbcSpellId":704724,"name":"Deadly Bond","unlockLevel":20,"icon":"/assets/ui/spells/inv_qirajidol_death.png","sigil":"DB","description":"Level 20 Passive Casting Command spells now has a 30% chance to cause their next use within 6 seconds to be free of cost.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704724,"level":20,"description":"Level 20 Passive Casting Command spells now has a 30% chance to cause their next use within 6 seconds to be free of cost.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4236},{"id":"coa-23-flesh-to-worms-475-501855","classId":"necromancer","dbcSpellId":501855,"name":"Flesh to Worms","unlockLevel":20,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FT","description":"Flesh to WormsRank 212% of base mana Instant castDisease an enemy, dealing 25+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.3295238074802217,"basePoints":25,"dieSides":1,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":27,"ticks":6,"intervalMs":3000,"tag":"spell-501855"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501855,"level":20,"description":"Flesh to WormsRank 212% of base mana Instant castDisease an enemy, dealing 25+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.3295238074802217,"basePoints":25,"dieSides":1,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":27,"ticks":6,"intervalMs":3000,"tag":"spell-501855"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":3,"spellId":501856,"level":26,"description":"Flesh to WormsRank 312% of base mana Instant castDisease an enemy, dealing 34+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.34285720189412433,"basePoints":34,"dieSides":1,"pointsPerLevel":0.3142859935760498,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":33,"ticks":6,"intervalMs":3000,"tag":"spell-501856"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":4,"spellId":501857,"level":32,"description":"Flesh to WormsRank 412% of base mana Instant castDisease an enemy, dealing 43+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.3925024668375651,"basePoints":43,"dieSides":1,"pointsPerLevel":0.38571399450302124,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":39,"ticks":6,"intervalMs":3000,"tag":"spell-501857"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":5,"spellId":501858,"level":38,"description":"Flesh to WormsRank 512% of base mana Instant castDisease an enemy, dealing 55+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.46540880503144655,"basePoints":55,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":45,"ticks":6,"intervalMs":3000,"tag":"spell-501858"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":6,"spellId":501859,"level":44,"description":"Flesh to WormsRank 612% of base mana Instant castDisease an enemy, dealing 69+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.5460854398328706,"basePoints":69,"dieSides":1,"pointsPerLevel":0.6285709738731384,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":51,"ticks":6,"intervalMs":3000,"tag":"spell-501859"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":7,"spellId":501860,"level":50,"description":"Flesh to WormsRank 712% of base mana Instant castDisease an enemy, dealing 84+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.6285715390474368,"basePoints":84,"dieSides":1,"pointsPerLevel":0.7714290022850037,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":57,"ticks":6,"intervalMs":3000,"tag":"spell-501860"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":8,"spellId":501861,"level":56,"description":"Flesh to WormsRank 812% of base mana Instant castDisease an enemy, dealing 102+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.7267605329343411,"basePoints":102,"dieSides":1,"pointsPerLevel":0.942857027053833,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":63,"ticks":6,"intervalMs":3000,"tag":"spell-501861"},{"kind":"utility","effectType":3,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":9,"spellId":501862,"level":54,"description":"Disease an enemy, dealing ${$m1+$ppl1+$SP*0.088} Shadow Damage$?s560599[ and generating $/10;804272s2 Runic Power][] every $t1 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"dot","coefficient":0.5615942028985508,"basePoints":69,"dieSides":1,"pointsPerLevel":0.875,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60,"ticks":6,"intervalMs":2000,"tag":"spell-501862"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":10,"spellId":501863,"level":60,"description":"Disease an enemy, dealing ${$m1+$ppl1+$SP*0.088} Shadow Damage$?s560599[ and generating $/10;804272s2 Runic Power][] every $t1 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"dot","coefficient":0.6407555569542779,"basePoints":86,"dieSides":1,"pointsPerLevel":0.9695000052452087,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":67,"ticks":6,"intervalMs":2000,"tag":"spell-501863"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":11,"spellId":501864,"level":68,"description":"Disease an enemy, dealing ${$m1+$ppl1+$SP*0.088} Shadow Damage$?s560599[ and generating $/10;804272s2 Runic Power][] every $t1 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"dot","coefficient":0.7162730952343309,"basePoints":106,"dieSides":1,"pointsPerLevel":1.0640000104904175,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":73,"ticks":6,"intervalMs":2000,"tag":"spell-501864"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":12,"spellId":501865,"level":74,"description":"Disease an enemy, dealing ${$m1+$ppl1+$SP*0.088} Shadow Damage$?s560599[ and generating $/10;804272s2 Runic Power][] every $t1 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"dot","coefficient":0.8641572980845019,"basePoints":146,"dieSides":1,"pointsPerLevel":1.1449999809265137,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80,"ticks":6,"intervalMs":2000,"tag":"spell-501865"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]}]},{"id":"coa-tree-4436","classId":"necromancer","dbcSpellId":560045,"name":"Ice Mastery","unlockLevel":20,"icon":"/assets/ui/spells/_auracloak_ice.png","sigil":"IM","description":"Level 20 Passive Increases your spell power by 30% of your Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":1024,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560045,"level":20,"description":"Level 20 Passive Increases your spell power by 30% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":1024,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4436},{"id":"coa-23-frigid-ward-83-801735","classId":"necromancer","dbcSpellId":801735,"name":"Frigid Ward","unlockLevel":25,"icon":"/assets/ui/spells/spell_mage_temporalshield.png","sigil":"FW","description":"Frigid WardRank 1255% of base mana Instant cast30 sec cooldownShield an ally with a glacial ward, absorbing 230+0+SP*0.33 damage for up to 20 sec. Damage taken applies Deathchill to attackers and reduces their movement speed by 30% for 2 sec.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"shield","coefficient":2,"basePoints":230,"dieSides":11,"pointsPerLevel":4,"bonusPowerCoefficient":2,"sourceLevel":25,"maxScalingLevel":40,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801727,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560624,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801735,"level":25,"description":"Frigid WardRank 1255% of base mana Instant cast30 sec cooldownShield an ally with a glacial ward, absorbing 230+0+SP*0.33 damage for up to 20 sec. Damage taken applies Deathchill to attackers and reduces their movement speed by 30% for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":255},"effects":[{"kind":"shield","coefficient":2,"basePoints":230,"dieSides":11,"pointsPerLevel":4,"bonusPowerCoefficient":2,"sourceLevel":25,"maxScalingLevel":40,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801727,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560624,"durationMs":20000}]},{"rank":2,"spellId":501981,"level":28,"description":"Frigid WardRank 211% of base mana Instant cast30 sec cooldownShield an ally with a glacial ward, absorbing 600+0+SP*0.33 damage for up to 20 sec. Damage taken applies Deathchill to attackers and reduces their movement speed by 30% for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"shield","coefficient":4,"basePoints":600,"dieSides":42,"pointsPerLevel":7.224999904632568,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801727,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560624,"durationMs":20000}]}]},{"id":"coa-23-black-ice-83-801746","classId":"necromancer","dbcSpellId":801746,"name":"Black Ice","unlockLevel":27,"icon":"/assets/ui/spells/spell_hunter_blackicetrap.png","sigil":"BI","description":"Black IceRank 110% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","target":"self","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801746,"level":27,"description":"Black IceRank 110% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":2,"spellId":501983,"level":32,"description":"Black IceRank 210% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":3,"spellId":501984,"level":37,"description":"Black IceRank 310% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":4,"spellId":501985,"level":42,"description":"Black IceRank 410% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":5,"spellId":501986,"level":47,"description":"Black IceRank 510% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":6,"spellId":501987,"level":52,"description":"Black IceRank 610% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":7,"spellId":501988,"level":57,"description":"Black IceRank 710% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":8,"spellId":501989,"level":62,"description":"Black IceRank 810% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":9,"spellId":501990,"level":67,"description":"Black IceRank 910% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]},{"rank":10,"spellId":501991,"level":72,"description":"Black IceRank 1010% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801727,"durationMs":8000},{"kind":"status","status":"root","durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":801747,"durationMs":8000}]}]},{"id":"coa-23-plaguebomb-82-500340","classId":"necromancer","dbcSpellId":500340,"name":"Plaguebomb","unlockLevel":27,"icon":"/assets/ui/spells/ability_vehicle_plaguebarrel.png","sigil":"PL","description":"PlaguebombRank 1999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 134+0+SP*0.3 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","target":"hostile","range":{"min":0,"max":40},"radius":8,"castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":1.6573016056938776,"basePoints":134,"dieSides":7,"pointsPerLevel":2.6600000858306885,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500340,"level":27,"description":"PlaguebombRank 1999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 134+0+SP*0.3 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":1.6573016056938776,"basePoints":134,"dieSides":7,"pointsPerLevel":2.6600000858306885,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":2,"spellId":501866,"level":34,"description":"PlaguebombRank 2999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 169+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":1.9642176628112793,"basePoints":169,"dieSides":12,"pointsPerLevel":3.359999895095825,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":501867,"level":41,"description":"PlaguebombRank 3999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 219+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":2.4092857468695867,"basePoints":219,"dieSides":15,"pointsPerLevel":4.360000133514404,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":46},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":501868,"level":48,"description":"PlaguebombRank 4999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 284+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":2.99037033161789,"basePoints":284,"dieSides":20,"pointsPerLevel":5.659999847412109,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":501869,"level":55,"description":"PlaguebombRank 5999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 370+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":3.7542857442583357,"basePoints":370,"dieSides":26,"pointsPerLevel":7.380000114440918,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":60},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":6,"spellId":501870,"level":62,"description":"PlaguebombRank 6999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 506+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":4,"basePoints":506,"dieSides":32,"pointsPerLevel":6.842860221862793,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":69},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":7,"spellId":501871,"level":76,"description":"PlaguebombRank 7999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 811+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":4,"basePoints":811,"dieSides":58,"pointsPerLevel":20.25,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":8,"spellId":501872,"level":71,"description":"PlaguebombRank 8999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 2358+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9999},"effects":[{"kind":"damage","coefficient":4,"basePoints":2358,"dieSides":40,"pointsPerLevel":6.922220230102539,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":500516,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-tree-4437","classId":"necromancer","dbcSpellId":704669,"name":"Frigidness","unlockLevel":30,"icon":"/assets/ui/spells/achievement_boss_forgemaster.png","sigil":"FR","description":"Level 30 Passive Increases your critical damage by 100% against Frozen targets.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":112,"miscValue":20001,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704669,"level":30,"description":"Level 30 Passive Increases your critical damage by 100% against Frozen targets.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":112,"miscValue":20001,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4437},{"id":"coa-tree-4237","classId":"necromancer","dbcSpellId":807494,"name":"Summoning Expert","unlockLevel":30,"icon":"/assets/ui/spells/_beasttaming_undead.png","sigil":"SE","description":"Level 30 Passive Increases your maximum Life Force by 1 and your Undead minion's Stamina by 10%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807494,"level":30,"description":"Level 30 Passive Increases your maximum Life Force by 1 and your Undead minion's Stamina by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4237},{"id":"coa-tree-4235","classId":"necromancer","dbcSpellId":704723,"name":"Diabolical","unlockLevel":40,"icon":"/assets/ui/spells/spell_necro_inevitableend.png","sigil":"DI","description":"Level 40 Passive Casting spells now grants you 1 stack of Diabolical, stacking up to 15 times, for 20 seconds. Damage dealt by your Crypt Swarm will consume a stack to deal 10% increased damage per stack.","target":"hostile","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707133,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704723,"level":40,"description":"Level 40 Passive Casting spells now grants you 1 stack of Diabolical, stacking up to 15 times, for 20 seconds. Damage dealt by your Crypt Swarm will consume a stack to deal 10% increased damage per stack.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":707133,"durationMs":-1}]}],"talentEntryId":4235},{"id":"coa-tree-4438","classId":"necromancer","dbcSpellId":500981,"name":"Lich Form","unlockLevel":40,"icon":"/assets/ui/spells/achievement_boss_amnennar_the_coldbringer.png","sigil":"LF","description":"Transform into a Lich, becoming Undead increasing your Frost damage dealt by 10%. While active you generate 3 Runic Power every 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":6,"auraType":24,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500981,"level":40,"description":"Transform into a Lich, becoming Undead increasing your Frost damage dealt by 10%. While active you generate 3 Runic Power every 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":6,"auraType":24,"miscValue":6,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":16,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4438},{"id":"coa-tree-11438","classId":"necromancer","dbcSpellId":704681,"name":"Champion of Kel'thuzad","unlockLevel":50,"icon":"/assets/ui/spells/_manaburn_frost.png","sigil":"CO","description":"Level 50 Passive Gives your spells a 15% chance to grant you the Permafrost, which treats your next 2 spells cast as if the target were Frozen. Lasts 12 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801747,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704681,"level":50,"description":"Level 50 Passive Gives your spells a 15% chance to grant you the Permafrost, which treats your next 2 spells cast as if the target were Frozen. Lasts 12 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801747,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11438},{"id":"coa-tree-9934","classId":"necromancer","dbcSpellId":504439,"name":"Grave Mastery","unlockLevel":50,"icon":"/assets/ui/spells/nhi_deathscythe_border.png","sigil":"GM","description":"Level 50 Passive Reduces the cost of all Animates, Raises, and Command spells by -20%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504439,"level":50,"description":"Level 50 Passive Reduces the cost of all Animates, Raises, and Command spells by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9934}],"pyromancer":[{"id":"coa-tree-33843","classId":"pyromancer","dbcSpellId":300921,"name":"Al Dente","unlockLevel":1,"icon":"/assets/ui/spells/achievement_cooking_masteroftheoven.png","sigil":"AD","description":"Targets affected by Gaze of Ysera now take 15% increased Fire damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300921,"level":1,"description":"Targets affected by Gaze of Ysera now take 15% increased Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33843},{"id":"coa-tree-33882","classId":"pyromancer","dbcSpellId":504397,"name":"Blessing of the Firelands","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fire_soul_border.png","sigil":"BO","description":"Each stack of Heat now increases the damage dealt by Dragon Leap by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504397,"level":1,"description":"Each stack of Heat now increases the damage dealt by Dragon Leap by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33882},{"id":"coa-tree-32499","classId":"pyromancer","dbcSpellId":300759,"name":"Bright Flames","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_fireresistancetotem.png","sigil":"BF","description":"Increases the amount absorbed by Inferno Barrier by 10% and the damage it deals by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":317,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300759,"level":1,"description":"Increases the amount absorbed by Inferno Barrier by 10% and the damage it deals by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":317,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":301351,"level":1,"description":"Increases the amount absorbed by Inferno Barrier by 20% and the damage it deals by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":317,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":32499},{"id":"coa-24-burning-brand-87-800809","classId":"pyromancer","dbcSpellId":800809,"name":"Burning Brand","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firerune_(2)_border.png","sigil":"BB","description":"Burning BrandRank 117% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 10 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800809,"level":1,"description":"Burning BrandRank 117% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 10 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":2,"spellId":502077,"level":10,"description":"Burning BrandRank 217% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 21 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":3,"spellId":502078,"level":19,"description":"Burning BrandRank 317% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 26 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":4,"spellId":502079,"level":28,"description":"Burning BrandRank 417% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 31 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":5,"spellId":502080,"level":37,"description":"Burning BrandRank 517% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 36 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":6,"spellId":502081,"level":45,"description":"Burning BrandRank 617% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 46 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":7,"spellId":502082,"level":54,"description":"Burning BrandRank 717% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 56 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":8,"spellId":502083,"level":63,"description":"Burning BrandRank 817% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 66 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":9,"spellId":502084,"level":72,"description":"Burning BrandRank 917% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 76 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":0,"auraType":227,"miscValue":0,"triggerSpellId":800810,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}]},{"id":"coa-24-cataclysm-none-706887","classId":"pyromancer","dbcSpellId":706887,"name":"Cataclysm","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_destructivesoul.png","sigil":"CA","description":"CataclysmRank 1Firefall increases the damage affected enemies take from your Melt by 5% for 8 sec, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706887,"level":1,"description":"CataclysmRank 1Firefall increases the damage affected enemies take from your Melt by 5% for 8 sec, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29940","classId":"pyromancer","dbcSpellId":520218,"name":"Cataclysm","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_cataclysm.png","sigil":"CA","description":"Launch into the air, dealing 11 Fire damage, knocking back enemies within 6 yds and dazing them for 6 sec. Upon landing, deal -5 Fire damage, knock back enemies within 6 yds and daze them for 6 sec.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":520219,"durationMs":2500},{"kind":"utility","effectType":138,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":520220,"durationMs":2500}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520218,"level":1,"description":"Launch into the air, dealing 11 Fire damage, knocking back enemies within 6 yds and dazing them for 6 sec. Upon landing, deal -5 Fire damage, knock back enemies within 6 yds and daze them for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":520219,"durationMs":2500},{"kind":"utility","effectType":138,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2500},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":520220,"durationMs":2500}]}],"talentEntryId":29940},{"id":"coa-tree-33905","classId":"pyromancer","dbcSpellId":706862,"name":"Chains of Fire","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(37)_border.png","sigil":"CO","description":"Reduces the cast time of Cindergrip by 0.25 sec and increases its range by 10 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706862,"level":1,"description":"Reduces the cast time of Cindergrip by 0.25 sec and increases its range by 10 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33905},{"id":"coa-tree-7819","classId":"pyromancer","dbcSpellId":800807,"name":"Circle of Fire","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firerune_(2)_border.png","sigil":"CO","description":"Creates a circle of fire at the target location for 10 seconds, dealing 223 + 31% fire SP Fire damage and disorienting all enemies inside for 6 seconds.","target":"self","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":680842,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800807,"level":1,"description":"Creates a circle of fire at the target location for 10 seconds, dealing 223 + 31% fire SP Fire damage and disorienting all enemies inside for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":680842,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":7819},{"id":"coa-24-demolisher-none-706890","classId":"pyromancer","dbcSpellId":706890,"name":"Demolisher","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firerain_border.png","sigil":"DE","description":"DemolisherRank 2Increases the damage of Slag Barrage by 40% and Flare Bolt by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706890,"level":1,"description":"DemolisherRank 2Increases the damage of Slag Barrage by 40% and Flare Bolt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29858","classId":"pyromancer","dbcSpellId":806611,"name":"Dragon Leap","unlockLevel":1,"icon":"/assets/ui/spells/nhi_dragonwing_border.png","sigil":"DL","description":"Leap to a target location and come crashing down, dealing 29 + 30% fire SP Fire damage to up to 10 nearby enemies.","target":"hostile","range":{"min":0,"max":35},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"damage","coefficient":0.46275866746902466,"basePoints":29,"dieSides":6,"pointsPerLevel":0.32069000601768494,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"utility","effectType":42,"auraType":0,"miscValue":100,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":32,"auraType":0,"miscValue":524287,"triggerSpellId":806612,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806611,"level":1,"description":"Leap to a target location and come crashing down, dealing 29 + 30% fire SP Fire damage to up to 10 nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"damage","coefficient":0.46275866746902466,"basePoints":29,"dieSides":6,"pointsPerLevel":0.32069000601768494,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"utility","effectType":42,"auraType":0,"miscValue":100,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":32,"auraType":0,"miscValue":524287,"triggerSpellId":806612,"durationMs":10000}]}],"talentEntryId":29858},{"id":"coa-tree-30976","classId":"pyromancer","dbcSpellId":706877,"name":"Dragon's Bane","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_blue.png","sigil":"DS","description":"Increases the critical strike chance of Lava Shard and Cinderheart by 6% against Burning targets.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":112,"miscValue":20000,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706877,"level":1,"description":"Increases the critical strike chance of Lava Shard and Cinderheart by 6% against Burning targets.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":112,"miscValue":20000,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30976},{"id":"coa-tree-4039","classId":"pyromancer","dbcSpellId":300755,"name":"Dragon's Edge","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_nexus.png","sigil":"DS","description":"Level 10 Passive Direct critical strikes now generate an additional 20 Heat.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807391,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300755,"level":1,"description":"Level 10 Passive Direct critical strikes now generate an additional 20 Heat.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807391,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4039},{"id":"coa-24-dragonfire-87-500129","classId":"pyromancer","dbcSpellId":500129,"name":"Dragonfire","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_firebreath_border.png","sigil":"DR","description":"DragonfireRank 1Instant cast8 sec cooldownDeals 9 to 10 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5,"basePoints":9,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0.5,"sourceLevel":1,"maxScalingLevel":13},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500129,"level":1,"description":"DragonfireRank 1Instant cast8 sec cooldownDeals 9 to 10 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5,"basePoints":9,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0.5,"sourceLevel":1,"maxScalingLevel":13},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":2,"spellId":502072,"level":14,"description":"DragonfireRank 2Instant cast8 sec cooldownDeals 26 to 30 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.6348275946474623,"basePoints":26,"dieSides":5,"pointsPerLevel":1.9450000524520874,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":3,"spellId":502073,"level":28,"description":"DragonfireRank 3Instant cast8 sec cooldownDeals 64 to 74 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.1621705654055574,"basePoints":64,"dieSides":11,"pointsPerLevel":2.890000104904175,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":40},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":4,"spellId":502074,"level":41,"description":"DragonfireRank 4Instant cast8 sec cooldownDeals 119 to 138 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.6843303385235013,"basePoints":119,"dieSides":20,"pointsPerLevel":3.7674999237060547,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":53},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":5,"spellId":502075,"level":54,"description":"DragonfireRank 5Instant cast8 sec cooldownDeals 225 to 256 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.373574874251361,"basePoints":225,"dieSides":32,"pointsPerLevel":4.644999980926514,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":67},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":6,"spellId":502076,"level":68,"description":"DragonfireRank 6Instant cast8 sec cooldownDeals 412 to 459 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.2755823709878578,"basePoints":412,"dieSides":48,"pointsPerLevel":5.590000152587891,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]}]},{"id":"coa-tree-6554","classId":"pyromancer","dbcSpellId":524818,"name":"Dragonscales","unlockLevel":1,"icon":"/assets/ui/spells/inv_artifact_dragonscales.png","sigil":"DR","description":"When you are stunned, damage taken is reduced by -20% for 3 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524819,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524818,"level":1,"description":"When you are stunned, damage taken is reduced by -20% for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":524819,"durationMs":-1}]}],"talentEntryId":6554},{"id":"coa-tree-30206","classId":"pyromancer","dbcSpellId":800818,"name":"Ember Touch","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firehands_border.png","sigil":"ET","description":"Ember TouchRank 120% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 83+0+SP*0.45+Spi*1, additonally scaling with your Spirit.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":2.75,"basePoints":83,"dieSides":7,"pointsPerLevel":1.6563199758529663,"bonusPowerCoefficient":2.75,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800818,"level":1,"description":"Ember TouchRank 120% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 83+0+SP*0.45+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":2.75,"basePoints":83,"dieSides":7,"pointsPerLevel":1.6563199758529663,"bonusPowerCoefficient":2.75,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30206},{"id":"coa-tree-30639","classId":"pyromancer","dbcSpellId":802120,"name":"Essence of Malygos","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_petdragonwhelptarecgosa.png","sigil":"EO","description":"Imbue an ally with the essence of Malygos, restoring 4% of their maximum mana every 1 sec for 6 seconds. If used on yourself this effect is doubled.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":24,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802120,"level":1,"description":"Imbue an ally with the essence of Malygos, restoring 4% of their maximum mana every 1 sec for 6 seconds. If used on yourself this effect is doubled.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":24,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}],"talentEntryId":30639},{"id":"coa-24-explode-85-800792","classId":"pyromancer","dbcSpellId":800792,"name":"Explode","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_felflamering_red.png","sigil":"EX","description":"ExplodeRank 110% of base mana 1.5 sec castBlast an enemy, dealing 35+0+FireP*1.13 Fire damage.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.20399999618530273,"basePoints":35,"dieSides":8,"pointsPerLevel":0.42033201456069946,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":1,"maxScalingLevel":2},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800792,"level":1,"description":"ExplodeRank 110% of base mana 1.5 sec castBlast an enemy, dealing 35+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.20399999618530273,"basePoints":35,"dieSides":8,"pointsPerLevel":0.42033201456069946,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":1,"maxScalingLevel":2},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502057,"level":4,"description":"ExplodeRank 210% of base mana 2 sec castBlast an enemy, dealing 52+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.1484442091824716,"basePoints":52,"dieSides":10,"pointsPerLevel":2.2403299808502197,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":10},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502058,"level":12,"description":"ExplodeRank 310% of base mana 2.5 sec castBlast an enemy, dealing 94+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.4615876468611353,"basePoints":94,"dieSides":12,"pointsPerLevel":1.574049949645996,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502059,"level":18,"description":"ExplodeRank 410% of base mana 2.5 sec castBlast an enemy, dealing 140+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.902681620434077,"basePoints":140,"dieSides":14,"pointsPerLevel":2.325860023498535,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502060,"level":26,"description":"ExplodeRank 510% of base mana 2.5 sec castBlast an enemy, dealing 202+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.3251068146248173,"basePoints":202,"dieSides":18,"pointsPerLevel":2.9033899307250977,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502061,"level":36,"description":"ExplodeRank 610% of base mana 2.5 sec castBlast an enemy, dealing 352+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":3.3495986664217283,"basePoints":352,"dieSides":22,"pointsPerLevel":4.1663498878479,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502062,"level":46,"description":"ExplodeRank 710% of base mana 2.5 sec castBlast an enemy, dealing 522+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":3.0985499933117726,"basePoints":522,"dieSides":26,"pointsPerLevel":0.7072749733924866,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502063,"level":54,"description":"ExplodeRank 810% of base mana 2.5 sec castBlast an enemy, dealing 672+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":4,"basePoints":672,"dieSides":32,"pointsPerLevel":3.763430118560791,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":570750,"level":60,"description":"ExplodeRank 910% of base mana 2.5 sec castBlast an enemy, dealing 839+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":4,"basePoints":839,"dieSides":43,"pointsPerLevel":4.5022101402282715,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":65},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29554","classId":"pyromancer","dbcSpellId":525059,"name":"Fiery Demeanor","unlockLevel":1,"icon":"/assets/ui/spells/_castercloak_fire.png","sigil":"FD","description":"Reduces spell pushback suffered from damaging attacks by 50% and increases the pushback resistance provided by Ascension of Thaurissan by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525059,"level":1,"description":"Reduces spell pushback suffered from damaging attacks by 50% and increases the pushback resistance provided by Ascension of Thaurissan by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29554},{"id":"coa-tree-33904","classId":"pyromancer","dbcSpellId":300970,"name":"Fire Safety","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firehands_border.png","sigil":"FS","description":"Increases your Fire damage and healing by 2% and reduces your threat generated by -10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":10,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":4,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300970,"level":1,"description":"Increases your Fire damage and healing by 2% and reduces your threat generated by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":10,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":4,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":301350,"level":1,"description":"Increases your Fire damage and healing by 4% and reduces your threat generated by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":10,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":4,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33904},{"id":"coa-tree-6461","classId":"pyromancer","dbcSpellId":804300,"name":"Flamecasting","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_playingwithfire.png","sigil":"FL","description":"Generating Heat now has a 25% chance to grant Flamecasting.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804301,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":4,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804300,"level":1,"description":"Generating Heat now has a 25% chance to grant Flamecasting.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804301,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":4,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6461},{"id":"coa-tree-33906","classId":"pyromancer","dbcSpellId":680836,"name":"Flamer","unlockLevel":1,"icon":"/assets/ui/spells/inv_elemental_mote_fire01.png","sigil":"FL","description":"Increases your spell haste by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680836,"level":1,"description":"Increases your spell haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":520546,"level":1,"description":"Increases your spell haste by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33906},{"id":"coa-tree-32368","classId":"pyromancer","dbcSpellId":706878,"name":"Flaming Finesse","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fire_explosion_border.png","sigil":"FF","description":"Increases the effectiveness of your Seal spells by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":103,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706878,"level":1,"description":"Increases the effectiveness of your Seal spells by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":103,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":32368},{"id":"coa-tree-11882","classId":"pyromancer","dbcSpellId":504754,"name":"Heated","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_fireball02.png","sigil":"HE","description":"Damage dealt by Dragon Leap now generates 10 Heat.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807394,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504754,"level":1,"description":"Damage dealt by Dragon Leap now generates 10 Heat.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807394,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11882},{"id":"coa-tree-7479","classId":"pyromancer","dbcSpellId":680369,"name":"Ignis Ultimatus","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_firestarter.png","sigil":"IU","description":"Channel for 2 seconds, gathering a surge of fiery power before unleashing it in a 50 yd line, dealing 1094 + 100% fire SP Fire damage to enemies while also healing allies for 814 + 200% healing. Ignores invulnerabilities, immunities, and resistances. Consumes Flamecasting stacks to increase this spell's damage and healing by 15% per stack.","target":"friendly","range":{"min":0,"max":50},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":680372,"durationMs":2000},{"kind":"status","status":"root","durationMs":2000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680369,"level":1,"description":"Channel for 2 seconds, gathering a surge of fiery power before unleashing it in a 50 yd line, dealing 1094 + 100% fire SP Fire damage to enemies while also healing allies for 814 + 200% healing. Ignores invulnerabilities, immunities, and resistances. Consumes Flamecasting stacks to increase this spell's damage and healing by 15% per stack.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":680372,"durationMs":2000},{"kind":"status","status":"root","durationMs":2000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000}]}],"talentEntryId":7479},{"id":"coa-24-improved-dragon-breaths-87-704811","classId":"pyromancer","dbcSpellId":704811,"name":"Improved Dragon Breaths","unlockLevel":1,"icon":"/assets/ui/spells/ability_monk_breathoffire.png","sigil":"ID","description":"Improved Dragon BreathsRank 2Increases the damage dealt by your Breaths by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704811,"level":1,"description":"Improved Dragon BreathsRank 2Increases the damage dealt by your Breaths by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-24-improved-petrifying-visage-87-704808","classId":"pyromancer","dbcSpellId":704808,"name":"Improved Petrifying Visage","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_windsofwoe.png","sigil":"IP","description":"Improved Petrifying VisageRank 2Reduces the cooldown of Petrifying Visage by 10 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704808,"level":1,"description":"Improved Petrifying VisageRank 2Reduces the cooldown of Petrifying Visage by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30832","classId":"pyromancer","dbcSpellId":504380,"name":"Inferno Barrier","unlockLevel":1,"icon":"/assets/ui/spells/ability_rhyolith_magmaflow_wave.png","sigil":"IB","description":"Inferno BarrierRank 123% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+84+0 damage. While active, attackers take 4+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"damage","coefficient":1},{"kind":"shield","coefficient":0.9655172413793104,"basePoints":84,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":18,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504380,"level":1,"description":"Inferno BarrierRank 123% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+84+0 damage. While active, attackers take 4+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"damage","coefficient":1},{"kind":"shield","coefficient":0.9655172413793104,"basePoints":84,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":18,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]}],"talentEntryId":30832},{"id":"coa-tree-4037","classId":"pyromancer","dbcSpellId":92124,"name":"Infernus","unlockLevel":1,"icon":"/assets/ui/spells/nhi_corruptionfire_border.png","sigil":"IN","description":"Damage dealt by Lava Shard now applies Infernus, causing enemies to Burn, dealing an additional 1122 + 120% SP Fire damage over 18 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706874,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92124,"level":1,"description":"Damage dealt by Lava Shard now applies Infernus, causing enemies to Burn, dealing an additional 1122 + 120% SP Fire damage over 18 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706874,"durationMs":-1}]}],"talentEntryId":4037},{"id":"coa-tree-7760","classId":"pyromancer","dbcSpellId":706650,"name":"Lava-Drenched","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(52)_border.png","sigil":"LD","description":"Reduces the chance for your helpful spells to be dispelled by -30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":235,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706650,"level":1,"description":"Reduces the chance for your helpful spells to be dispelled by -30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":235,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7760},{"id":"coa-tree-30634","classId":"pyromancer","dbcSpellId":706872,"name":"Magma Guardian","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_pvp410_c_01.png","sigil":"MG","description":"Increases the effectiveness of your Skin spells by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706872,"level":1,"description":"Increases the effectiveness of your Skin spells by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30634},{"id":"coa-tree-30651","classId":"pyromancer","dbcSpellId":500135,"name":"Meteor","unlockLevel":1,"icon":"/assets/ui/spells/_d3meteor.png","sigil":"ME","description":"MeteorRank 115% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 122+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500135,"level":1,"description":"MeteorRank 115% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 122+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30651},{"id":"coa-24-molten-rapacity-86-704843","classId":"pyromancer","dbcSpellId":704843,"name":"Molten Rapacity","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_windsofwoe.png","sigil":"MR","description":"Molten RapacityRank 2Reduces the cooldown of Flame Step by 30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":704843,"level":1,"description":"Molten RapacityRank 2Reduces the cooldown of Flame Step by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29548","classId":"pyromancer","dbcSpellId":805483,"name":"Molten Storm","unlockLevel":1,"icon":"/assets/ui/spells/inv_offhand_1h_artifactdoomhammer_d_01.png","sigil":"MS","description":"Increases the critical strike chance and damage of Lava Shard by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805483,"level":1,"description":"Increases the critical strike chance and damage of Lava Shard by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29548},{"id":"coa-tree-7817","classId":"pyromancer","dbcSpellId":706894,"name":"Obliteration","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fire_rune_border.png","sigil":"OB","description":"Eruption now also increases spell haste and movement speed by 20% for 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706895,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706894,"level":1,"description":"Eruption now also increases spell haste and movement speed by 20% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706895,"durationMs":-1}]}],"talentEntryId":7817},{"id":"coa-24-petrifying-visage-87-801908","classId":"pyromancer","dbcSpellId":801908,"name":"Petrifying Visage","unlockLevel":1,"icon":"/assets/ui/spells/achievment_boss_madnessofdeathwing.png","sigil":"PV","description":"Petrifying VisageRank 115% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 9+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"status","status":"stun","durationMs":3000},{"kind":"damage","coefficient":0.10000000149011612,"basePoints":9,"dieSides":2,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":1,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801908,"level":1,"description":"Petrifying VisageRank 115% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 9+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"status","status":"stun","durationMs":3000},{"kind":"damage","coefficient":0.10000000149011612,"basePoints":9,"dieSides":2,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":1,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3000}]},{"rank":2,"spellId":502088,"level":21,"description":"Petrifying VisageRank 215% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 30+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"status","status":"stun","durationMs":3000},{"kind":"damage","coefficient":0.6769814844484683,"basePoints":30,"dieSides":6,"pointsPerLevel":1.934000015258789,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":40},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3000}]},{"rank":3,"spellId":502089,"level":41,"description":"Petrifying VisageRank 315% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 80+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"status","status":"stun","durationMs":3000},{"kind":"damage","coefficient":1.253416651771182,"basePoints":80,"dieSides":15,"pointsPerLevel":3.0139999389648438,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":60},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3000}]},{"rank":4,"spellId":502090,"level":61,"description":"Petrifying VisageRank 415% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 196+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"status","status":"stun","durationMs":3000},{"kind":"damage","coefficient":2.0185701386970387,"basePoints":196,"dieSides":30,"pointsPerLevel":4.093999862670898,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3000}]}]},{"id":"coa-24-phoenix-handler-86-704866","classId":"pyromancer","dbcSpellId":704866,"name":"Phoenix Handler","unlockLevel":1,"icon":"/assets/ui/spells/inv_6_2raid_trinket_1c.png","sigil":"PH","description":"Phoenix HandlerRank 2Gives Lava Shard a 100% chance to cause your Phoenix to heal allies within $706856a1yd of it for 20.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704865,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704866,"level":1,"description":"Phoenix HandlerRank 2Gives Lava Shard a 100% chance to cause your Phoenix to heal allies within $706856a1yd of it for 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704865,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-24-quickburn-none-704826","classId":"pyromancer","dbcSpellId":704826,"name":"Quickburn","unlockLevel":1,"icon":"/assets/ui/spells/spell_burningbladeshaman_blazing_radiance.png","sigil":"QU","description":"QuickburnRank 2Increases the tick rate of Ignite, Blaze and Scalding Brand by 30% but reduces their durations by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704826,"level":1,"description":"QuickburnRank 2Increases the tick rate of Ignite, Blaze and Scalding Brand by 30% but reduces their durations by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-24-realm-of-fire-86-704838","classId":"pyromancer","dbcSpellId":704838,"name":"Realm of Fire","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_firelandsraid.png","sigil":"RO","description":"Realm of FireRank 2Reduces the cooldown of Meteor and Erupting by 30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704838,"level":1,"description":"Realm of FireRank 2Reduces the cooldown of Meteor and Erupting by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-24-scorching-sermon-86-704858","classId":"pyromancer","dbcSpellId":704858,"name":"Scorching Sermon","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_redemption.png","sigil":"SS","description":"Scorching SermonRank 2Damage done by Flare Bolt reduces the remaining cooldown of Cauterize Wounds by 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704857,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704858,"level":1,"description":"Scorching SermonRank 2Damage done by Flare Bolt reduces the remaining cooldown of Cauterize Wounds by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704857,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-24-seal-of-alysrazor-476-800196","classId":"pyromancer","dbcSpellId":800196,"name":"Seal of Alysrazor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SO","description":"Seal of AlysrazorRank 125% of base mana Instant castEmpowers an ally with the power of the eternal phoenix, increasing their Intellect by 2 for 30 min.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":3,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800196,"level":1,"description":"Seal of AlysrazorRank 125% of base mana Instant castEmpowers an ally with the power of the eternal phoenix, increasing their Intellect by 2 for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":3,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-tree-29752","classId":"pyromancer","dbcSpellId":807126,"name":"Shazzrah's Boon","unlockLevel":1,"icon":"/assets/ui/spells/achievement_mc_shazzrah.png","sigil":"SS","description":"Consuming an Ember now regenerates 2% of your maximum mana.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807220,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807126,"level":1,"description":"Consuming an Ember now regenerates 2% of your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807220,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29752},{"id":"coa-tree-4038","classId":"pyromancer","dbcSpellId":92126,"name":"Spirit of the Phoenix","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_phoenix_border.png","sigil":"SO","description":"Level 10 Passive Upon taking damage that would otherwise kill you, you are instead transformed into the Spirit of the Phoenix for 15 seconds. While transformed, your spells have no mana cost and your Spirit is increased by 100%. At the end of the duration, you will be reborn. Can only occur once every 10 min.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":0.08,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"durationMs":1000}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92126,"level":1,"description":"Level 10 Passive Upon taking damage that would otherwise kill you, you are instead transformed into the Spirit of the Phoenix for 15 seconds. While transformed, your spells have no mana cost and your Spirit is increased by 100%. At the end of the duration, you will be reborn. Can only occur once every 10 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":0.08,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"durationMs":1000}]}],"talentEntryId":4038},{"id":"coa-24-touched-by-fire-86-704848","classId":"pyromancer","dbcSpellId":704848,"name":"Touched by Fire","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fire_phoenix_border.png","sigil":"TB","description":"Touched by FireRank 1Your Cinderheart, Ember Touch, and Kindle now gains an additional 15% of your bonus healing spell power.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":24,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704848,"level":1,"description":"Touched by FireRank 1Your Cinderheart, Ember Touch, and Kindle now gains an additional 15% of your bonus healing spell power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":24,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704853,"level":1,"description":"Touched by FireRank 2Your Cinderheart, Ember Touch, and Kindle now gains an additional 30% of your bonus healing spell power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":24,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-7481","classId":"pyromancer","dbcSpellId":805477,"name":"Volcanic Shell","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firestone_border.png","sigil":"VS","description":"Generates 50 Heat Conjure a shield of magma and fire around you, absorbing 500 + 200% fire SP damage. Lasts 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"shield","coefficient":4,"basePoints":500,"dieSides":1,"pointsPerLevel":40,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805477,"level":1,"description":"Generates 50 Heat Conjure a shield of magma and fire around you, absorbing 500 + 200% fire SP damage. Lasts 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"shield","coefficient":4,"basePoints":500,"dieSides":1,"pointsPerLevel":40,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":7481},{"id":"coa-tree-3843","classId":"pyromancer","dbcSpellId":704820,"name":"Ysera's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_green.png","sigil":"YS","description":"Reduces the cast time of Gaze of Ysera by -0.5 sec and causes it to have a -10% reduced chance to break from damage.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704820,"level":1,"description":"Reduces the cast time of Gaze of Ysera by -0.5 sec and causes it to have a -10% reduced chance to break from damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":3843},{"id":"pyromancer-melt","classId":"pyromancer","dbcSpellId":503227,"name":"Melt","unlockLevel":4,"icon":"/assets/ui/spells/nhi_firelungs_border.png","sigil":"ME","description":"Overheat the enemy with a devastating burst.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.7}],"source":"coa-starter"},{"id":"coa-24-cindergrip-86-805476","classId":"pyromancer","dbcSpellId":805476,"name":"Cindergrip","unlockLevel":6,"icon":"/assets/ui/spells/ability_rhyolith_lavapool.png","sigil":"CI","description":"CindergripRank 119% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 4 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"dot","coefficient":0.09206349319881862,"basePoints":4,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":20,"ticks":4,"intervalMs":3000,"tag":"spell-805476"},{"kind":"status","status":"root","durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805476,"level":6,"description":"CindergripRank 119% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 4 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"dot","coefficient":0.09206349319881862,"basePoints":4,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":20,"ticks":4,"intervalMs":3000,"tag":"spell-805476"},{"kind":"status","status":"root","durationMs":12000}]},{"rank":2,"spellId":535505,"level":22,"description":"CindergripRank 219% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 10 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"dot","coefficient":0.1540540564167607,"basePoints":10,"dieSides":2,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30,"ticks":4,"intervalMs":3000,"tag":"spell-535505"},{"kind":"status","status":"root","durationMs":12000}]},{"rank":3,"spellId":535506,"level":32,"description":"CindergripRank 319% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 15 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"dot","coefficient":0.18156028639340233,"basePoints":15,"dieSides":3,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":40,"ticks":4,"intervalMs":3000,"tag":"spell-535506"},{"kind":"status","status":"root","durationMs":12000}]},{"rank":4,"spellId":535507,"level":42,"description":"CindergripRank 419% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 20 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"dot","coefficient":0.20233918421449718,"basePoints":20,"dieSides":5,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":52,"ticks":4,"intervalMs":3000,"tag":"spell-535507"},{"kind":"status","status":"root","durationMs":12000}]},{"rank":5,"spellId":535508,"level":54,"description":"CindergripRank 519% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 30 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":12000},{"kind":"dot","coefficient":0.23526570359289933,"basePoints":30,"dieSides":6,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":64,"ticks":4,"intervalMs":3000,"tag":"spell-535508"},{"kind":"status","status":"root","durationMs":12000}]}]},{"id":"pyromancer-flare-bolt","classId":"pyromancer","dbcSpellId":502011,"name":"Flare Bolt","unlockLevel":6,"icon":"/assets/ui/spells/custom_t_fireball_border.png","sigil":"FB","description":"Flare BoltRank 211% of base mana 2 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 40+0+FireP*.571 Fire damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":0.7244182881854829,"basePoints":40,"dieSides":5,"pointsPerLevel":0.6063920259475708,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502011,"level":6,"description":"Flare BoltRank 211% of base mana 2 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 40+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":0.7244182881854829,"basePoints":40,"dieSides":5,"pointsPerLevel":0.6063920259475708,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":3,"spellId":502012,"level":14,"description":"Flare BoltRank 311% of base mana 2 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 56+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":0.8064847389856974,"basePoints":56,"dieSides":10,"pointsPerLevel":0.6902980208396912,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":4,"spellId":502013,"level":22,"description":"Flare BoltRank 411% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 104+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.2534792831352166,"basePoints":104,"dieSides":12,"pointsPerLevel":1.347100019454956,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":5,"spellId":502014,"level":30,"description":"Flare BoltRank 511% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 164+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.6778962947704175,"basePoints":164,"dieSides":20,"pointsPerLevel":1.767199993133545,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":6,"spellId":502015,"level":38,"description":"Flare BoltRank 611% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 226+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.9635484143623017,"basePoints":226,"dieSides":24,"pointsPerLevel":1.96589994430542,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":7,"spellId":502016,"level":46,"description":"Flare BoltRank 711% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 301+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.7814350958730354,"basePoints":301,"dieSides":28,"pointsPerLevel":0.25005701184272766,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":8,"spellId":502017,"level":54,"description":"Flare BoltRank 811% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 384+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.9516908212560387,"basePoints":384,"dieSides":41,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":9,"spellId":502018,"level":60,"description":"Flare BoltRank 911% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 479+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":2.2466666666666666,"basePoints":479,"dieSides":54,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":10,"spellId":502019,"level":68,"description":"Flare BoltRank 1011% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 572+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":3.1658351852233153,"basePoints":572,"dieSides":55,"pointsPerLevel":2.783720016479492,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]}]},{"id":"pyromancer-slag-barrage","classId":"pyromancer","dbcSpellId":502032,"name":"Slag Barrage","unlockLevel":7,"icon":"/assets/ui/spells/ability_ironmaidens_rapidfire.png","sigil":"SB","description":"Slag BarrageRank 216% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502032,"level":7,"description":"Slag BarrageRank 216% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":3,"spellId":502033,"level":13,"description":"Slag BarrageRank 316% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":4,"spellId":502034,"level":19,"description":"Slag BarrageRank 416% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":5,"spellId":502035,"level":26,"description":"Slag BarrageRank 516% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":6,"spellId":502036,"level":32,"description":"Slag BarrageRank 616% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":7,"spellId":502037,"level":38,"description":"Slag BarrageRank 716% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":8,"spellId":502038,"level":44,"description":"Slag BarrageRank 816% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":9,"spellId":502039,"level":50,"description":"Slag BarrageRank 916% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":10,"spellId":502040,"level":56,"description":"Slag BarrageRank 1016% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":11,"spellId":502041,"level":63,"description":"Slag BarrageRank 1116% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":12,"spellId":502042,"level":69,"description":"Slag BarrageRank 1216% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]},{"rank":13,"spellId":502043,"level":75,"description":"Slag BarrageRank 1316% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":805601,"durationMs":1500}]}]},{"id":"coa-24-blaze-85-805500","classId":"pyromancer","dbcSpellId":805500,"name":"Blaze","unlockLevel":8,"icon":"/assets/ui/spells/spell_fire_lavaspawn.png","sigil":"BL","description":"BlazeRank 112% of base mana Instant castConsumes 1 Ember Burn an enemy for 21+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.09000000357627869,"basePoints":21,"dieSides":1,"pointsPerLevel":0.685259997844696,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":8,"maxScalingLevel":10,"ticks":5,"intervalMs":3000,"tag":"spell-805500"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805500,"level":8,"description":"BlazeRank 112% of base mana Instant castConsumes 1 Ember Burn an enemy for 21+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.09000000357627869,"basePoints":21,"dieSides":1,"pointsPerLevel":0.685259997844696,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":8,"maxScalingLevel":10,"ticks":5,"intervalMs":3000,"tag":"spell-805500"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":2,"spellId":534600,"level":14,"description":"BlazeRank 212% of base mana Instant castConsumes 1 Ember Burn an enemy for 46+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.6818908014516721,"basePoints":46,"dieSides":1,"pointsPerLevel":0.9517499804496765,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":18,"ticks":5,"intervalMs":3000,"tag":"spell-534600"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":534601,"level":22,"description":"BlazeRank 312% of base mana Instant castConsumes 1 Ember Burn an enemy for 66+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.934137842676661,"basePoints":66,"dieSides":1,"pointsPerLevel":1.7131500244140625,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":5,"intervalMs":3000,"tag":"spell-534601"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":534602,"level":28,"description":"BlazeRank 412% of base mana Instant castConsumes 1 Ember Burn an enemy for 90+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":1.1292000112607496,"basePoints":90,"dieSides":1,"pointsPerLevel":1.9881000518798828,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":5,"intervalMs":3000,"tag":"spell-534602"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":534603,"level":34,"description":"BlazeRank 512% of base mana Instant castConsumes 1 Ember Burn an enemy for 106+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":1.2102721110493146,"basePoints":106,"dieSides":1,"pointsPerLevel":2.115000009536743,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":5,"intervalMs":3000,"tag":"spell-534603"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":6,"spellId":534604,"level":42,"description":"BlazeRank 612% of base mana Instant castConsumes 1 Ember Burn an enemy for 139+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":1.3434212890981931,"basePoints":139,"dieSides":1,"pointsPerLevel":2.1601200103759766,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48,"ticks":5,"intervalMs":3000,"tag":"spell-534604"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":7,"spellId":572159,"level":50,"description":"BlazeRank 712% of base mana Instant castConsumes 1 Ember Burn an enemy for 181+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":1.1509128246551905,"basePoints":181,"dieSides":1,"pointsPerLevel":0.8685600161552429,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56,"ticks":5,"intervalMs":3000,"tag":"spell-572159"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":8,"spellId":572160,"level":58,"description":"BlazeRank 812% of base mana Instant castConsumes 1 Ember Burn an enemy for 222+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":1.0136986301369864,"basePoints":222,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66,"ticks":5,"intervalMs":3000,"tag":"spell-572160"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-24-cinderheart-476-502044","classId":"pyromancer","dbcSpellId":502044,"name":"Cinderheart","unlockLevel":8,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CI","description":"CinderheartRank 230% of base mana 2.5 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 102+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":102,"dieSides":16,"pointsPerLevel":1.5470999479293823,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":8,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502044,"level":8,"description":"CinderheartRank 230% of base mana 2.5 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 102+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":102,"dieSides":16,"pointsPerLevel":1.5470999479293823,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":8,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502045,"level":14,"description":"CinderheartRank 330% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 192+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":192,"dieSides":21,"pointsPerLevel":2.983920097351074,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":14,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502046,"level":20,"description":"CinderheartRank 430% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 301+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":301,"dieSides":30,"pointsPerLevel":4.111269950866699,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":20,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502047,"level":26,"description":"CinderheartRank 530% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 415+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":415,"dieSides":39,"pointsPerLevel":6.076670169830322,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":26,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502048,"level":32,"description":"CinderheartRank 630% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 528+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":528,"dieSides":53,"pointsPerLevel":4.945069789886475,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502049,"level":40,"description":"CinderheartRank 730% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 698+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":698,"dieSides":69,"pointsPerLevel":6.6911301612854,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502050,"level":48,"description":"CinderheartRank 830% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 873+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":873,"dieSides":101,"pointsPerLevel":9.292510032653809,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502051,"level":56,"description":"CinderheartRank 930% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 965+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":965,"dieSides":110,"pointsPerLevel":29.046300888061523,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502052,"level":60,"description":"CinderheartRank 1030% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 1027+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":1027,"dieSides":122,"pointsPerLevel":7.797130107879639,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":60,"maxScalingLevel":65},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-24-ember-touch-86-800818","classId":"pyromancer","dbcSpellId":800818,"name":"Ember Touch","unlockLevel":10,"icon":"/assets/ui/spells/nhi_firehands_border.png","sigil":"ET","description":"Ember TouchRank 120% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 83+0+SP*0.45+Spi*1, additonally scaling with your Spirit.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":2.75,"basePoints":83,"dieSides":7,"pointsPerLevel":1.6563199758529663,"bonusPowerCoefficient":2.75,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800818,"level":10,"description":"Ember TouchRank 120% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 83+0+SP*0.45+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":2.75,"basePoints":83,"dieSides":7,"pointsPerLevel":1.6563199758529663,"bonusPowerCoefficient":2.75,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502085,"level":16,"description":"Ember TouchRank 220% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 128+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1.8568017200757099,"basePoints":128,"dieSides":9,"pointsPerLevel":2.5426599979400635,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0}]},{"rank":3,"spellId":502086,"level":22,"description":"Ember TouchRank 320% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 181+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":2.3864064689155096,"basePoints":181,"dieSides":11,"pointsPerLevel":3.5859599113464355,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0}]},{"rank":4,"spellId":502087,"level":28,"description":"Ember TouchRank 420% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 234+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":2.8684145313824794,"basePoints":234,"dieSides":14,"pointsPerLevel":4.625909805297852,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0}]},{"rank":5,"spellId":520320,"level":34,"description":"Ember TouchRank 520% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 288+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":3.3349499864643124,"basePoints":288,"dieSides":19,"pointsPerLevel":5.683460235595703,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0}]},{"rank":6,"spellId":520751,"level":40,"description":"Consumes 1 Ember Warm an ally with everliving flames, healing them for ${$m1+0+$SP*0.176111+$SPI*1}, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":3.168581806529652,"basePoints":349,"dieSides":24,"pointsPerLevel":4.0578999519348145,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0}]},{"rank":7,"spellId":572892,"level":48,"description":"Ember TouchRank 720% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 398+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":398,"dieSides":31,"pointsPerLevel":7.858349800109863,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0}]},{"rank":8,"spellId":572893,"level":54,"description":"Ember TouchRank 820% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 426+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":426,"dieSides":41,"pointsPerLevel":8.45048999786377,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0}]},{"rank":9,"spellId":572894,"level":60,"description":"Ember TouchRank 920% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 474+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":3.631894259982639,"basePoints":474,"dieSides":53,"pointsPerLevel":5.2862701416015625,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":807536,"durationMs":0}]}]},{"id":"coa-24-lava-shard-476-503231","classId":"pyromancer","dbcSpellId":503231,"name":"Lava Shard","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LS","description":"Lava ShardRank 220% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 45+0+SP*0.95 Physical damage.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.7928039995829265,"basePoints":45,"dieSides":8,"pointsPerLevel":1.0960299968719482,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503231,"level":10,"description":"Lava ShardRank 220% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 45+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.7928039995829265,"basePoints":45,"dieSides":8,"pointsPerLevel":1.0960299968719482,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]},{"rank":3,"spellId":503232,"level":16,"description":"Lava ShardRank 320% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 73+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.0762683909426454,"basePoints":73,"dieSides":10,"pointsPerLevel":1.412060022354126,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]},{"rank":4,"spellId":503233,"level":24,"description":"Lava ShardRank 420% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 112+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.4734434307130992,"basePoints":112,"dieSides":13,"pointsPerLevel":2.2663700580596924,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]},{"rank":5,"spellId":503234,"level":32,"description":"Lava ShardRank 520% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 175+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":2.0517775623510914,"basePoints":175,"dieSides":16,"pointsPerLevel":3.337519884109497,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]},{"rank":6,"spellId":503235,"level":40,"description":"Lava ShardRank 620% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 248+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":2.566574559067235,"basePoints":248,"dieSides":20,"pointsPerLevel":4.149620056152344,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]},{"rank":7,"spellId":503236,"level":48,"description":"Lava ShardRank 720% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 334+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":2.9760389378461887,"basePoints":334,"dieSides":25,"pointsPerLevel":4.509819984436035,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]},{"rank":8,"spellId":503237,"level":56,"description":"Lava ShardRank 820% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 432+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":3.3162366482013828,"basePoints":432,"dieSides":31,"pointsPerLevel":4.631400108337402,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]},{"rank":9,"spellId":503238,"level":64,"description":"Lava ShardRank 920% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 544+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":3.6028165535584784,"basePoints":544,"dieSides":37,"pointsPerLevel":4.56043004989624,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]},{"rank":10,"spellId":503239,"level":72,"description":"Lava ShardRank 1020% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 668+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":3.7391307582343676,"basePoints":668,"dieSides":44,"pointsPerLevel":3.9779601097106934,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572806,"durationMs":0}]}]},{"id":"coa-24-meteor-85-500135","classId":"pyromancer","dbcSpellId":500135,"name":"Meteor","unlockLevel":10,"icon":"/assets/ui/spells/_d3meteor.png","sigil":"ME","description":"MeteorRank 115% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 122+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500135,"level":10,"description":"MeteorRank 115% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 122+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":500649,"level":18,"description":"MeteorRank 215% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 160+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":500650,"level":26,"description":"MeteorRank 315% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 254+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":500651,"level":34,"description":"MeteorRank 415% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 375+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":500652,"level":40,"description":"MeteorRank 515% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 468+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502055,"level":46,"description":"MeteorRank 615% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 583+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502056,"level":54,"description":"MeteorRank 715% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 749+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804076,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-24-phoenix-rebirth-86-706867","classId":"pyromancer","dbcSpellId":706867,"name":"Phoenix Rebirth","unlockLevel":10,"icon":"/assets/ui/spells/ability_racial_foregedinflames.png","sigil":"PR","description":"Phoenix RebirthRank 160% of base mana 10 sec castBrings a dead ally back to life with 70 health and 135 mana. Cannot be cast when in combat.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706867,"level":10,"description":"Phoenix RebirthRank 160% of base mana 10 sec castBrings a dead ally back to life with 70 health and 135 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":707641,"level":20,"description":"Phoenix RebirthRank 260% of base mana 10 sec castBrings a dead ally back to life with 145 health and 273 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":273,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":707642,"level":30,"description":"Phoenix RebirthRank 360% of base mana 10 sec castBrings a dead ally back to life with 253 health and 447 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":447,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":707643,"level":40,"description":"Phoenix RebirthRank 460% of base mana 10 sec castBrings a dead ally back to life with 400 health and 635 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":635,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":707644,"level":50,"description":"Phoenix RebirthRank 560% of base mana 10 sec castBrings a dead ally back to life with 583 health and 833 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":833,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":707645,"level":60,"description":"Phoenix RebirthRank 660% of base mana 10 sec castBrings a dead ally back to life with 820 health and 1030 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":1030,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":707646,"level":70,"description":"Phoenix RebirthRank 760% of base mana 10 sec castBrings a dead ally back to life with 1320 health and 1250 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":1250,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":707647,"level":80,"description":"Phoenix RebirthRank 860% of base mana 10 sec castBrings a dead ally back to life with 2420 health and 1750 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":1750,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-24-echo-of-nozdormu-87-802174","classId":"pyromancer","dbcSpellId":802174,"name":"Echo of Nozdormu","unlockLevel":11,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EO","description":"Echo of NozdormuRank 115% of base mana 2.5 sec castObliterate an enemy, dealing 120+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.3026550121796436,"basePoints":120,"dieSides":20,"pointsPerLevel":4.555190086364746,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":803464,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802174,"level":11,"description":"Echo of NozdormuRank 115% of base mana 2.5 sec castObliterate an enemy, dealing 120+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.3026550121796436,"basePoints":120,"dieSides":20,"pointsPerLevel":4.555190086364746,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":803464,"durationMs":0}]},{"rank":2,"spellId":803407,"level":18,"description":"Echo of NozdormuRank 215% of base mana 2.5 sec castObliterate an enemy, dealing 165+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.8592438167995877,"basePoints":165,"dieSides":26,"pointsPerLevel":5.864729881286621,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":3,"spellId":803408,"level":24,"description":"Echo of NozdormuRank 315% of base mana 2.5 sec castObliterate an enemy, dealing 248+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.7911364237467446,"basePoints":248,"dieSides":36,"pointsPerLevel":7.419290065765381,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":4,"spellId":803409,"level":30,"description":"Echo of NozdormuRank 415% of base mana 2.5 sec castObliterate an enemy, dealing 376+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":376,"dieSides":49,"pointsPerLevel":10.361000061035156,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":5,"spellId":803410,"level":34,"description":"Echo of NozdormuRank 515% of base mana 2.5 sec castObliterate an enemy, dealing 504+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":504,"dieSides":67,"pointsPerLevel":12.721799850463867,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":6,"spellId":578307,"level":40,"description":"Echo of NozdormuRank 615% of base mana 2.5 sec castObliterate an enemy, dealing 661+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":661,"dieSides":81,"pointsPerLevel":14.540900230407715,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":7,"spellId":578308,"level":44,"description":"Echo of NozdormuRank 715% of base mana 2.5 sec castObliterate an enemy, dealing 820+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":820,"dieSides":97,"pointsPerLevel":14.477299690246582,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":8,"spellId":578309,"level":50,"description":"Echo of NozdormuRank 815% of base mana 2.5 sec castObliterate an enemy, dealing 931+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":931,"dieSides":115,"pointsPerLevel":5.334280014038086,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":9,"spellId":567589,"level":56,"description":"Echo of NozdormuRank 915% of base mana 2.5 sec castObliterate an enemy, dealing 998+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":998,"dieSides":135,"pointsPerLevel":5.457970142364502,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":10,"spellId":567590,"level":60,"description":"Echo of NozdormuRank 1015% of base mana 2.5 sec castObliterate an enemy, dealing 1081+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":1081,"dieSides":155,"pointsPerLevel":5.071320056915283,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":802804,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]}]},{"id":"coa-24-flames-of-neltharion-87-801915","classId":"pyromancer","dbcSpellId":801915,"name":"Flames of Neltharion","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FO","description":"Flames of NeltharionRank 112% of base mana 2 sec castUnleash draconic flames, dealing 74+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","target":"hostile","range":{"min":0,"max":35},"radius":5,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.9382716049382716,"basePoints":74,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801915,"level":12,"description":"Flames of NeltharionRank 112% of base mana 2 sec castUnleash draconic flames, dealing 74+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.9382716049382716,"basePoints":74,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":535509,"level":18,"description":"Flames of NeltharionRank 212% of base mana 2 sec castUnleash draconic flames, dealing 92+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.0544152693314985,"basePoints":92,"dieSides":6,"pointsPerLevel":0.5492839813232422,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":535510,"level":26,"description":"Flames of NeltharionRank 312% of base mana 2 sec castUnleash draconic flames, dealing 152+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.0673336788890806,"basePoints":152,"dieSides":7,"pointsPerLevel":3.818540096282959,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":535511,"level":32,"description":"Flames of NeltharionRank 412% of base mana 2 sec castUnleash draconic flames, dealing 220+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.680481173467974,"basePoints":220,"dieSides":9,"pointsPerLevel":4.810870170593262,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":535512,"level":38,"description":"Flames of NeltharionRank 512% of base mana 2 sec castUnleash draconic flames, dealing 286+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.9710155762966326,"basePoints":286,"dieSides":11,"pointsPerLevel":4.7734599113464355,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":572618,"level":44,"description":"Flames of NeltharionRank 612% of base mana 2 sec castUnleash draconic flames, dealing 365+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.825051269962289,"basePoints":365,"dieSides":13,"pointsPerLevel":6.955319881439209,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":572619,"level":48,"description":"Flames of NeltharionRank 712% of base mana 2 sec castUnleash draconic flames, dealing 421+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.901809046508143,"basePoints":421,"dieSides":16,"pointsPerLevel":6.4362897872924805,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":50},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":572620,"level":52,"description":"Flames of NeltharionRank 812% of base mana 2 sec castUnleash draconic flames, dealing 484+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":484,"dieSides":19,"pointsPerLevel":6.585350036621094,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":572621,"level":56,"description":"Flames of NeltharionRank 912% of base mana 2 sec castUnleash draconic flames, dealing 547+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":547,"dieSides":23,"pointsPerLevel":6.430220127105713,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":572622,"level":60,"description":"Flames of NeltharionRank 1012% of base mana 2 sec castUnleash draconic flames, dealing 621+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.8133333333333335,"basePoints":621,"dieSides":25,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":572623,"level":76,"description":"Flames of NeltharionRank 1112% of base mana 2 sec castUnleash draconic flames, dealing 975+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.6172161172161172,"basePoints":975,"dieSides":26,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":76},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-24-destroyers-maw-87-802107","classId":"pyromancer","dbcSpellId":802107,"name":"Destroyer's Maw","unlockLevel":17,"icon":"/assets/ui/spells/ability_deathwing_cataclysm.png","sigil":"DS","description":"Destroyer's MawRank 19% of base mana 2 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 103+0+FireP*1 Fire damage that cannot be resisted.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1,"basePoints":103,"dieSides":10,"pointsPerLevel":6.593400001525879,"bonusPowerCoefficient":1,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802107,"level":17,"description":"Destroyer's MawRank 19% of base mana 2 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 103+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1,"basePoints":103,"dieSides":10,"pointsPerLevel":6.593400001525879,"bonusPowerCoefficient":1,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502107,"level":24,"description":"Destroyer's MawRank 29% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 191+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":3.1334461309970956,"basePoints":191,"dieSides":12,"pointsPerLevel":7.08804988861084,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502108,"level":32,"description":"Destroyer's MawRank 39% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 292+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":3.714621253047429,"basePoints":292,"dieSides":15,"pointsPerLevel":7.023799896240234,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502109,"level":40,"description":"Destroyer's MawRank 49% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 398+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":4,"basePoints":398,"dieSides":24,"pointsPerLevel":6.872429847717285,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502110,"level":48,"description":"Destroyer's MawRank 59% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 524+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":4,"basePoints":524,"dieSides":32,"pointsPerLevel":7.511360168457031,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502111,"level":56,"description":"Destroyer's MawRank 69% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 670+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":3.3106621240785983,"basePoints":670,"dieSides":38,"pointsPerLevel":0.2976970076560974,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502112,"level":60,"description":"Destroyer's MawRank 79% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 760+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":3.5229567109213935,"basePoints":760,"dieSides":55,"pointsPerLevel":0.09442099928855896,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502113,"level":68,"description":"Destroyer's MawRank 89% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 896+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":4,"basePoints":896,"dieSides":71,"pointsPerLevel":14.44159984588623,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"pyromancer-ignite","classId":"pyromancer","dbcSpellId":502020,"name":"Ignite","unlockLevel":18,"icon":"/assets/ui/spells/ability_mage_fierypayback.png","sigil":"IG","description":"IgniteRank 212% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 161 to 175 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.24242424242424243,"basePoints":23,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":20,"ticks":7,"intervalMs":3000,"tag":"spell-502020"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502020,"level":18,"description":"IgniteRank 212% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 161 to 175 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.24242424242424243,"basePoints":23,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":20,"ticks":7,"intervalMs":3000,"tag":"spell-502020"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":3,"spellId":502021,"level":22,"description":"IgniteRank 312% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 189 to 224 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.26576576576576577,"basePoints":27,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":7,"intervalMs":3000,"tag":"spell-502021"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":4,"spellId":502022,"level":28,"description":"IgniteRank 412% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 266 to 322 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.32558139534883723,"basePoints":38,"dieSides":9,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":30,"ticks":7,"intervalMs":3000,"tag":"spell-502022"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":5,"spellId":502023,"level":32,"description":"IgniteRank 512% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 315 to 364 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.34397163120567376,"basePoints":45,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36,"ticks":7,"intervalMs":3000,"tag":"spell-502023"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":6,"spellId":502024,"level":38,"description":"IgniteRank 612% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 385 to 497 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.39622641509433965,"basePoints":55,"dieSides":17,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":40,"ticks":7,"intervalMs":3000,"tag":"spell-502024"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":7,"spellId":502025,"level":42,"description":"IgniteRank 712% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 448 to 595 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.43567251461988304,"basePoints":64,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":7,"intervalMs":3000,"tag":"spell-502025"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":8,"spellId":502026,"level":48,"description":"IgniteRank 812% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 546 to 735 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.48412698412698413,"basePoints":78,"dieSides":28,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":50,"ticks":7,"intervalMs":3000,"tag":"spell-502026"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":9,"spellId":502027,"level":52,"description":"IgniteRank 912% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 609 to 840 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.5149253731343284,"basePoints":87,"dieSides":34,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":7,"intervalMs":3000,"tag":"spell-502027"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":10,"spellId":502028,"level":58,"description":"IgniteRank 1012% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 784 to 1015 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.58675799086758,"basePoints":112,"dieSides":34,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58,"ticks":7,"intervalMs":3000,"tag":"spell-502028"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":11,"spellId":502029,"level":60,"description":"IgniteRank 1112% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 791 to 1134 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.6111111111111112,"basePoints":113,"dieSides":50,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":74,"ticks":7,"intervalMs":3000,"tag":"spell-502029"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":12,"spellId":502030,"level":76,"description":"IgniteRank 1212% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 1120 to 1526 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.6923076923076923,"basePoints":160,"dieSides":59,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78,"ticks":7,"intervalMs":3000,"tag":"spell-502030"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":13,"spellId":502031,"level":80,"description":"IgniteRank 1312% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 1106 to 1575 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.8416656828763193,"basePoints":158,"dieSides":68,"pointsPerLevel":0.6046839952468872,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":7,"intervalMs":3000,"tag":"spell-502031"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]}]},{"id":"coa-24-pillar-of-flame-85-805496","classId":"pyromancer","dbcSpellId":805496,"name":"Pillar of Flame","unlockLevel":18,"icon":"/assets/ui/spells/nhi_fireblow_border.png","sigil":"PO","description":"Pillar of FlameRank 119% of base mana 1.5 sec cast20 sec cooldownGenerates 20 Heat Per Target Create a pillar of lava beneath an enemy, dealing 36+0+FireP*0.3124 Fire damage. Deals an additional 92+0+FireP*0.34364 Fire damage to enemies near the primary target.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":0.31028141266119386,"basePoints":36,"dieSides":6,"pointsPerLevel":0.022053999826312065,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"damage","coefficient":0.7943787141037839,"basePoints":92,"dieSides":15,"pointsPerLevel":0.04043399915099144,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805496,"level":27,"description":"Pillar of FlameRank 119% of base mana 1.5 sec cast20 sec cooldownGenerates 20 Heat Per Target Create a pillar of lava beneath an enemy, dealing 36+0+FireP*0.3124 Fire damage. Deals an additional 92+0+FireP*0.34364 Fire damage to enemies near the primary target.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":0.31028141266119386,"basePoints":36,"dieSides":6,"pointsPerLevel":0.022053999826312065,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"damage","coefficient":0.7943787141037839,"basePoints":92,"dieSides":15,"pointsPerLevel":0.04043399915099144,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32}]},{"rank":2,"spellId":502053,"level":18,"description":"Pillar of FlameRank 219% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 111 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1.5357575705557158,"basePoints":111,"dieSides":1,"pointsPerLevel":2.2799999713897705,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":25},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":502054,"level":25,"description":"Pillar of FlameRank 319% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 148 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1.8583333333333334,"basePoints":148,"dieSides":1,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":570730,"level":32,"description":"Pillar of FlameRank 419% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 178 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":2.2024397613308953,"basePoints":178,"dieSides":1,"pointsPerLevel":4.142000198364258,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":39},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":570731,"level":39,"description":"Pillar of FlameRank 519% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 241 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":2.8288210115315002,"basePoints":241,"dieSides":1,"pointsPerLevel":5.571000099182129,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":570732,"level":46,"description":"Pillar of FlameRank 619% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 325 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":3.66120218579235,"basePoints":325,"dieSides":1,"pointsPerLevel":7.5,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":570733,"level":53,"description":"Pillar of FlameRank 719% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 438 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":438,"dieSides":1,"pointsPerLevel":10.140000343322754,"bonusPowerCoefficient":0,"sourceLevel":53,"maxScalingLevel":60},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-24-inferno-barrier-85-535650","classId":"pyromancer","dbcSpellId":535650,"name":"Inferno Barrier","unlockLevel":20,"icon":"/assets/ui/spells/ability_rhyolith_magmaflow_wave.png","sigil":"IB","description":"Inferno BarrierRank 223% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+150+0 damage. While active, attackers take 7+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"damage","coefficient":1},{"kind":"shield","coefficient":1.4285714285714286,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":535650,"level":20,"description":"Inferno BarrierRank 223% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+150+0 damage. While active, attackers take 7+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"damage","coefficient":1},{"kind":"shield","coefficient":1.4285714285714286,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":3,"spellId":535651,"level":30,"description":"Inferno BarrierRank 323% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+239+0 damage. While active, attackers take 10+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"damage","coefficient":1},{"kind":"shield","coefficient":1.7703703703703704,"basePoints":239,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":38,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":43,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]}]},{"id":"coa-24-firefall-85-556833","classId":"pyromancer","dbcSpellId":556833,"name":"Firefall","unlockLevel":26,"icon":"/assets/ui/spells/ability_ironmaidens_grapeshotblast.png","sigil":"FI","description":"FirefallRank 212% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 207+0+FireP*0.3124 Fire damage.","target":"hostile","range":{"min":0,"max":35},"radius":15,"castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.7317073170731707,"basePoints":207,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":556833,"level":26,"description":"FirefallRank 212% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 207+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.7317073170731707,"basePoints":207,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":556834,"level":32,"description":"FirefallRank 312% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 288+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.095744680851064,"basePoints":288,"dieSides":16,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":556835,"level":38,"description":"FirefallRank 412% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 378+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.4339622641509435,"basePoints":378,"dieSides":19,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":556836,"level":44,"description":"FirefallRank 512% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 476+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.7570621468926553,"basePoints":476,"dieSides":25,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":556837,"level":50,"description":"FirefallRank 612% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 582+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.066666666666667,"basePoints":582,"dieSides":33,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-24-flame-swell-85-502065","classId":"pyromancer","dbcSpellId":502065,"name":"Flame Swell","unlockLevel":33,"icon":"/assets/ui/spells/spell_burningsoul.png","sigil":"FS","description":"Flame SwellRank 321% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":45},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":502065,"level":39,"description":"Flame SwellRank 321% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":45},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502066,"level":45,"description":"Flame SwellRank 421% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":51},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502067,"level":51,"description":"Flame SwellRank 521% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502068,"level":57,"description":"Flame SwellRank 621% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":63},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502069,"level":63,"description":"Flame SwellRank 721% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":69},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502070,"level":69,"description":"Flame SwellRank 821% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":75},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502064,"level":33,"description":"Flame SwellRank 9Instant castDeals 0 Fire Damage and an additional 8+(PL*0.24) damage every 0 sec for 9 sec to all targets affected by your Ignite.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":169,"auraType":0,"miscValue":1,"triggerSpellId":800791,"durationMs":0},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":169,"auraType":0,"miscValue":1,"triggerSpellId":805500,"durationMs":0}]}]}],"cultist":[{"id":"coa-25-abyssal-decay-89-500705","classId":"cultist","dbcSpellId":500705,"name":"Abyssal Decay","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_void_blast.png","sigil":"AD","description":"Abyssal DecayRank 19% of base mana Instant castApplies an Eldritch curse to an enemy, causing 9+(PL*0.6) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":0.24166666716337204,"basePoints":9,"dieSides":5,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":6,"intervalMs":3000,"tag":"spell-500705"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500705,"level":1,"description":"Abyssal DecayRank 19% of base mana Instant castApplies an Eldritch curse to an enemy, causing 9+(PL*0.6) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":0.24166666716337204,"basePoints":9,"dieSides":5,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":6,"intervalMs":3000,"tag":"spell-500705"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":2,"spellId":502144,"level":10,"description":"Abyssal DecayRank 29% of base mana Instant castApplies an Eldritch curse to an enemy, causing 17+(PL*1-10*1) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":0.36066666603088376,"basePoints":17,"dieSides":1,"pointsPerLevel":1.0049999952316284,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":6,"intervalMs":3000,"tag":"spell-502144"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":3,"spellId":502145,"level":19,"description":"Abyssal DecayRank 39% of base mana Instant castApplies an Eldritch curse to an enemy, causing 31+(PL*1.4-19*1.4) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":0.5590245174426659,"basePoints":31,"dieSides":1,"pointsPerLevel":1.3695000410079956,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27,"ticks":6,"intervalMs":3000,"tag":"spell-502145"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":4,"spellId":502146,"level":28,"description":"Abyssal DecayRank 49% of base mana Instant castApplies an Eldritch curse to an enemy, causing 55+(PL*1.7-28*1.7) Shadow damage every 3 sec for18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":0.8027286751325741,"basePoints":55,"dieSides":1,"pointsPerLevel":1.7339999675750732,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":6,"intervalMs":3000,"tag":"spell-502146"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":5,"spellId":502147,"level":37,"description":"Abyssal DecayRank 59% of base mana Instant castApplies an Eldritch curse to an enemy, causing 85+(PL*2.1-38*2.1) Shadow damage every 3 sec for18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":1.0425929518846364,"basePoints":85,"dieSides":1,"pointsPerLevel":2.0985000133514404,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44,"ticks":6,"intervalMs":3000,"tag":"spell-502147"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":6,"spellId":502148,"level":45,"description":"Abyssal DecayRank 69% of base mana Instant castApplies an Eldritch curse to an enemy, causing 137+(PL*2.4-45*2.4) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":1.3667360848850674,"basePoints":137,"dieSides":1,"pointsPerLevel":2.422499895095825,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53,"ticks":6,"intervalMs":3000,"tag":"spell-502148"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":7,"spellId":502149,"level":54,"description":"Abyssal DecayRank 79% of base mana Instant castApplies an Eldritch curse to an enemy, causing 225+(PL*2.8-54*2.8) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":1.8139999845753545,"basePoints":225,"dieSides":1,"pointsPerLevel":2.7869999408721924,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62,"ticks":6,"intervalMs":3000,"tag":"spell-502149"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":8,"spellId":502150,"level":63,"description":"Abyssal DecayRank 89% of base mana Instant castApplies an Eldritch curse to an enemy, causing 361+(PL*3.1-63*3.1) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":2.6634080939822726,"basePoints":361,"dieSides":1,"pointsPerLevel":4.162499904632568,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71,"ticks":6,"intervalMs":3000,"tag":"spell-502150"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":9,"spellId":502151,"level":72,"description":"Abyssal DecayRank 99% of base mana Instant castApplies an Eldritch curse to an enemy, causing 572+(PL*3.5-72*3.5) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"dot","coefficient":4,"basePoints":572,"dieSides":1,"pointsPerLevel":6.612500190734863,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":6,"intervalMs":3000,"tag":"spell-502151"},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]}]},{"id":"coa-tree-7608","classId":"cultist","dbcSpellId":804670,"name":"Abyssal Ward","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_shadoworbs.png","sigil":"AW","description":"Coalesce an Abyssal Ward reducing your damage taken by 50% for 10 seconds or 5 attacks. For the duration, each attack received will decrease the value by -10%. Usable while stunned.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807692,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":176,"auraType":0,"miscValue":804670,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804670,"level":1,"description":"Coalesce an Abyssal Ward reducing your damage taken by 50% for 10 seconds or 5 attacks. For the duration, each attack received will decrease the value by -10%. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807692,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":176,"auraType":0,"miscValue":804670,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":7608},{"id":"coa-25-beamsplitter-none-706929","classId":"cultist","dbcSpellId":706929,"name":"Beamsplitter","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_voidshift.png","sigil":"BE","description":"BeamsplitterRank 2Allows Gaze of C'Thun to strike 4 enemies and increases its critical strike chance by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706929,"level":1,"description":"BeamsplitterRank 2Allows Gaze of C'Thun to strike 4 enemies and increases its critical strike chance by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-33951","classId":"cultist","dbcSpellId":805110,"name":"Black Prayer","unlockLevel":1,"icon":"/assets/ui/spells/forbidding_void_dust.png","sigil":"BP","description":"All direct damage dealt now has a 5% chance to unleash a Black Prayer on all enemies near the target for 9 seconds.Black PrayerDeals 136 + 12% shadow SP + 0.5% AP Shadow Damage every 3 sec and reduces attack speed by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":524287,"triggerSpellId":806039,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805110,"level":1,"description":"All direct damage dealt now has a 5% chance to unleash a Black Prayer on all enemies near the target for 9 seconds.Black PrayerDeals 136 + 12% shadow SP + 0.5% AP Shadow Damage every 3 sec and reduces attack speed by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":524287,"triggerSpellId":806039,"durationMs":-1}]}],"talentEntryId":33951},{"id":"cultist-blade-of-the-empire","classId":"cultist","dbcSpellId":500720,"name":"Blade of the Empire","unlockLevel":1,"icon":"/assets/ui/spells/inv_knife_1h_artifactcthun_d_01.png","sigil":"BO","description":"Blade of the EmpireRank 112% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 22+0+ShaP*.15+AP*.25 Shadow damage.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.47756410390138626,"basePoints":22,"dieSides":2,"pointsPerLevel":0.4230769872665405,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500720,"level":1,"description":"Blade of the EmpireRank 112% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 22+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.47756410390138626,"basePoints":22,"dieSides":2,"pointsPerLevel":0.4230769872665405,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502114,"level":6,"description":"Blade of the EmpireRank 212% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 31+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.5158730158730159,"basePoints":31,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502115,"level":14,"description":"Blade of the EmpireRank 312% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 47+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.5632183908045977,"basePoints":47,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502116,"level":22,"description":"Blade of the EmpireRank 412% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 66+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.6216216216216216,"basePoints":66,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502117,"level":30,"description":"Blade of the EmpireRank 512% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 87+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.674074074074074,"basePoints":87,"dieSides":9,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502118,"level":38,"description":"Blade of the EmpireRank 612% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 121+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.7861635220125787,"basePoints":121,"dieSides":9,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502119,"level":44,"description":"Blade of the EmpireRank 712% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 144+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.847457627118644,"basePoints":144,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502120,"level":50,"description":"Blade of the EmpireRank 812% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 176+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.9487179487179487,"basePoints":176,"dieSides":19,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502121,"level":56,"description":"Blade of the EmpireRank 912% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 206+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.028169014084507,"basePoints":206,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502122,"level":60,"description":"Blade of the EmpireRank 1012% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 225+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.0777777777777777,"basePoints":225,"dieSides":36,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":502123,"level":68,"description":"Blade of the EmpireRank 1112% of base mana Instant6 sec cooldownRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 266+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.1586345381526104,"basePoints":266,"dieSides":46,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":502124,"level":76,"description":"Blade of the EmpireRank 1212% of base mana Instant6 sec cooldownRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 427+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.6721611721611722,"basePoints":427,"dieSides":60,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804114,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29470","classId":"cultist","dbcSpellId":560109,"name":"Corrupt Mind","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_clarityofpower.png","sigil":"CM","description":"Generates 10 Insanity Corrupt the mind of an enemy and spread madness, fearing them in place for 40 seconds (8 sec vs players), bouncing to up to 2 nearby enemies. Damage dealt may end this effect.","target":"hostile","range":{"min":0,"max":30},"radius":8,"castMode":"cast","castTimeMs":1500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"status","status":"root","durationMs":40000},{"kind":"status","status":"fear","durationMs":40000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560109,"level":1,"description":"Generates 10 Insanity Corrupt the mind of an enemy and spread madness, fearing them in place for 40 seconds (8 sec vs players), bouncing to up to 2 nearby enemies. Damage dealt may end this effect.","castMode":"cast","castTimeMs":1500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"status","status":"root","durationMs":40000},{"kind":"status","status":"fear","durationMs":40000}]}],"talentEntryId":29470},{"id":"coa-tree-30205","classId":"cultist","dbcSpellId":525060,"name":"Crystalline Reflection","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_prayerofshadowprotection.png","sigil":"CR","description":"Increases the chance for Void Shield to resist dispel effects on allies by -50% and it now also reflects 50% of the damage absorbed.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":525062,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":525067,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525060,"level":1,"description":"Increases the chance for Void Shield to resist dispel effects on allies by -50% and it now also reflects 50% of the damage absorbed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":525062,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":525067,"durationMs":-1}]}],"talentEntryId":30205},{"id":"coa-25-dark-revelation-89-706246","classId":"cultist","dbcSpellId":706246,"name":"Dark Revelation","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_summonvoidwalker.png","sigil":"DR","description":"Dark RevelationRank 2Causes Herald of C'thun to give Horrorbolt and Eldritch Blast a 15% chance to reset Gaze of C'thun.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":23,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706246,"level":1,"description":"Dark RevelationRank 2Causes Herald of C'thun to give Horrorbolt and Eldritch Blast a 15% chance to reset Gaze of C'thun.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":23,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-25-darkward-88-706180","classId":"cultist","dbcSpellId":706180,"name":"Darkward","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_mindsooth.png","sigil":"DA","description":"DarkwardRank 1Increases the effectiveness of your damage absorption effects by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":317,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706180,"level":1,"description":"DarkwardRank 1Increases the effectiveness of your damage absorption effects by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":317,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706181,"level":1,"description":"DarkwardRank 2Increases the effectiveness of your damage absorption effects by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":317,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-31123","classId":"cultist","dbcSpellId":300265,"name":"Devourer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_eye_03.png","sigil":"DE","description":"Your Devour Magic now dispels 1 additional magic effect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300265,"level":1,"description":"Your Devour Magic now dispels 1 additional magic effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":31123},{"id":"coa-tree-12444","classId":"cultist","dbcSpellId":707747,"name":"Disdain","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_drowsy.png","sigil":"DI","description":"Removes the cooldown of Grasp of Zek'voz, but increases its mana cost by 25%.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707747,"level":1,"description":"Removes the cooldown of Grasp of Zek'voz, but increases its mana cost by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12444},{"id":"coa-tree-6278","classId":"cultist","dbcSpellId":704885,"name":"Dismay","unlockLevel":1,"icon":"/assets/ui/spells/5_assassinskill07_border.png","sigil":"DI","description":"Increases the movement speed slowed by Grasp of Zek'voz by -20%.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704885,"level":1,"description":"Increases the movement speed slowed by Grasp of Zek'voz by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6278},{"id":"coa-tree-6281","classId":"cultist","dbcSpellId":704880,"name":"Doomsayer","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_heraldofnzoth.png","sigil":"DO","description":"Reduces the mana cost of your Presences by -50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704880,"level":1,"description":"Reduces the mana cost of your Presences by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6281},{"id":"coa-tree-7512","classId":"cultist","dbcSpellId":680750,"name":"Dreadnought","unlockLevel":1,"icon":"/assets/ui/spells/yshaarjicon.png","sigil":"DR","description":"Level 10 Passive Reaching 100 Insanity no longer causes Total Madness. Teaches you Dreadnought.DreadnoughtAbsorbs 150 + 300% Stamina + 300% Intellect damage, scaling with Intellect and Stamina. Protects movement speed from going below 80% of normal speed. Lasts 20 seconds. Depletes all Insanity upon expiration.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680750,"level":1,"description":"Level 10 Passive Reaching 100 Insanity no longer causes Total Madness. Teaches you Dreadnought.DreadnoughtAbsorbs 150 + 300% Stamina + 300% Intellect damage, scaling with Intellect and Stamina. Protects movement speed from going below 80% of normal speed. Lasts 20 seconds. Depletes all Insanity upon expiration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7512},{"id":"coa-tree-33968","classId":"cultist","dbcSpellId":302015,"name":"Eldritch Command","unlockLevel":1,"icon":"/assets/ui/spells/uico_shadow_spell_02_border.png","sigil":"EC","description":"Casting Gaze of C'thun now has a 30% chance to cause your Tentacles to blast the enemy with eldritch energy, dealing 81 + 22.5% shadow SP + 10% AP Shadow damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":802729,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":302015,"level":1,"description":"Casting Gaze of C'thun now has a 30% chance to cause your Tentacles to blast the enemy with eldritch energy, dealing 81 + 22.5% shadow SP + 10% AP Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":802729,"durationMs":-1}]}],"talentEntryId":33968},{"id":"coa-tree-11892","classId":"cultist","dbcSpellId":525049,"name":"Eldritch Screams","unlockLevel":1,"icon":"/assets/ui/spells/impotent_void_effigy.png","sigil":"ES","description":"Your Corrupt Mind now also applies Mind Rot to nearby enemies.Mind Rot (Trigger)Increases the chance for allies to hit with all spells against the afflicted enemy by 3% for 10 seconds. If this effect is dispelled, your critical strike chance is increased by 30% for 5 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560943,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525049,"level":1,"description":"Your Corrupt Mind now also applies Mind Rot to nearby enemies.Mind Rot (Trigger)Increases the chance for allies to hit with all spells against the afflicted enemy by 3% for 10 seconds. If this effect is dispelled, your critical strike chance is increased by 30% for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560943,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11892},{"id":"coa-25-eldritch-swiftness-88-706186","classId":"cultist","dbcSpellId":706186,"name":"Eldritch Swiftness","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_2h_grimbatolraid_d_01.png","sigil":"ES","description":"Eldritch SwiftnessRank 2InstantReduces the cooldown of Eldritch Strike by 1 sec and causes Entropic Slam to drain 20 insanity.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":42,"miscValue":1,"triggerSpellId":503695,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706186,"level":1,"description":"Eldritch SwiftnessRank 2InstantReduces the cooldown of Eldritch Strike by 1 sec and causes Entropic Slam to drain 20 insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":42,"miscValue":1,"triggerSpellId":503695,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-33969","classId":"cultist","dbcSpellId":803283,"name":"Embodied Presences","unlockLevel":1,"icon":"/assets/ui/spells/warlock_houroftwilight.png","sigil":"EP","description":"Increases the chance to trigger your Presences by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":803283,"level":1,"description":"Increases the chance to trigger your Presences by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33969},{"id":"coa-tree-29263","classId":"cultist","dbcSpellId":704887,"name":"Empire Commander","unlockLevel":1,"icon":"/assets/ui/spells/nhi_shadowasphyxiation_border.png","sigil":"EC","description":"Increases all primary attributes by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704887,"level":1,"description":"Increases all primary attributes by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":707781,"level":1,"description":"Increases all primary attributes by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1}]},{"rank":3,"spellId":712470,"level":1,"description":"Increases all primary attributes by 12%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":-1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29263},{"id":"coa-tree-6276","classId":"cultist","dbcSpellId":704878,"name":"Eternal Grasp","unlockLevel":1,"icon":"/assets/ui/spells/achievement_nzothraid_carapace.png","sigil":"EG","description":"Eternal GraspRank 1Increases the duration of your Tentacles by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704878,"level":1,"description":"Eternal GraspRank 1Increases the duration of your Tentacles by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704879,"level":1,"description":"Eternal GraspRank 2Increases the duration of your Tentacles by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6276},{"id":"coa-tree-6280","classId":"cultist","dbcSpellId":573028,"name":"Grasp of Zek'voz","unlockLevel":1,"icon":"/assets/ui/spells/achievement_nazmir_boss_zekvoz.png","sigil":"GO","description":"Hinder an enemies momentum with void chains, slowing their movement speed by -30% for 10 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":573028,"level":1,"description":"Hinder an enemies momentum with void chains, slowing their movement speed by -30% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.3},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":6280},{"id":"coa-tree-6382","classId":"cultist","dbcSpellId":560301,"name":"Hallucination","unlockLevel":1,"icon":"/assets/ui/spells/5_warlock28_border.png","sigil":"HA","description":"Create 3 copies of yourself that run in a random direction for 3 seconds and may briefly trick enemies into ignoring you. Significantly reduces your threat and removes all movement impairing effects from you.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":1,"triggerSpellId":706932,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":147,"miscValue":65,"triggerSpellId":0,"durationMs":1000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560301,"level":1,"description":"Create 3 copies of yourself that run in a random direction for 3 seconds and may briefly trick enemies into ignoring you. Significantly reduces your threat and removes all movement impairing effects from you.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":1,"triggerSpellId":706932,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":147,"miscValue":65,"triggerSpellId":0,"durationMs":1000}]}],"talentEntryId":6382},{"id":"coa-tree-4042","classId":"cultist","dbcSpellId":92131,"name":"Herald of the Depths","unlockLevel":1,"icon":"/assets/ui/spells/yogg-saronicon.png","sigil":"HO","description":"Level 10 Passive Reaching 100 Insanity no longer causes Total Madness. Teaches you Herald of the Depths.Herald of the DepthsTransform into a Herald of the Depths for 20 seconds, increasing damage and healing done by 15% and the base duration of absorption and healing over time effects by 100%. At the end of the duration, your Insanity is reduced to 0.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":316,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92131,"level":1,"description":"Level 10 Passive Reaching 100 Insanity no longer causes Total Madness. Teaches you Herald of the Depths.Herald of the DepthsTransform into a Herald of the Depths for 20 seconds, increasing damage and healing done by 15% and the base duration of absorption and healing over time effects by 100%. At the end of the duration, your Insanity is reduced to 0.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":316,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4042},{"id":"coa-tree-33967","classId":"cultist","dbcSpellId":706177,"name":"Improved Sermon of Dread","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_soulleech_3.png","sigil":"IS","description":"Increases the effectiveness of Sermon of Dread by 40%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706177,"level":1,"description":"Increases the effectiveness of Sermon of Dread by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33967},{"id":"coa-tree-33965","classId":"cultist","dbcSpellId":704881,"name":"Lost in the Void","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcanemask_border.png","sigil":"LI","description":"Increases the duration of Embrace the Void by 4 sec and it now heals you for an additional 50% of the damage taken while active and its cooldown is reduced by -60 sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704881,"level":1,"description":"Increases the duration of Embrace the Void by 4 sec and it now heals you for an additional 50% of the damage taken while active and its cooldown is reduced by -60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33965},{"id":"coa-tree-29880","classId":"cultist","dbcSpellId":300270,"name":"Mind Leak","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_mindrot.png","sigil":"ML","description":"While above 60 Insanity, you gain -5% reduced damage taken.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300270,"level":1,"description":"While above 60 Insanity, you gain -5% reduced damage taken.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29880},{"id":"coa-tree-4040","classId":"cultist","dbcSpellId":92129,"name":"Obliteration","unlockLevel":1,"icon":"/assets/ui/spells/nzothicon.png","sigil":"OB","description":"Level 10 Passive Your Gaze of C'Thun now gains an additional 15 base damage and healing.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92129,"level":1,"description":"Level 10 Passive Your Gaze of C'Thun now gains an additional 15 base damage and healing.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4040},{"id":"coa-25-pious-magic-none-706724","classId":"cultist","dbcSpellId":706724,"name":"Pious Magic","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(23)_border.png","sigil":"PM","description":"Pious MagicRank 1Increases spell power by 10% of Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706724,"level":1,"description":"Pious MagicRank 1Increases spell power by 10% of Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-25-protection-from-light-90-804065","classId":"cultist","dbcSpellId":804065,"name":"Protection From Light","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_twilightimmolation.png","sigil":"PF","description":"Protection From LightRank 13% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 4 to 5 every 2 sec.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.10555555555555556,"basePoints":4,"dieSides":2,"pointsPerLevel":0.25,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":5,"intervalMs":2000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804065,"level":1,"description":"Protection From LightRank 13% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 4 to 5 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.10555555555555556,"basePoints":4,"dieSides":2,"pointsPerLevel":0.25,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":5,"intervalMs":2000}]},{"rank":2,"spellId":503432,"level":10,"description":"Protection From LightRank 23% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 7 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.14916666507720946,"basePoints":7,"dieSides":1,"pointsPerLevel":0.41874998807907104,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":5,"intervalMs":2000}]},{"rank":3,"spellId":503433,"level":19,"description":"Protection From LightRank 33% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 12 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.22393995231273128,"basePoints":12,"dieSides":1,"pointsPerLevel":0.5706250071525574,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27,"ticks":5,"intervalMs":2000}]},{"rank":4,"spellId":503434,"level":28,"description":"Protection From LightRank 43% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 21 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.3196124087932498,"basePoints":21,"dieSides":1,"pointsPerLevel":0.7225000262260437,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":5,"intervalMs":2000}]},{"rank":5,"spellId":503435,"level":37,"description":"Protection From LightRank 53% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 36 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.4381530414789151,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8743749856948853,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44,"ticks":5,"intervalMs":2000}]},{"rank":6,"spellId":503436,"level":45,"description":"Protection From LightRank 63% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 57 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.5690091590086619,"basePoints":57,"dieSides":1,"pointsPerLevel":1.009369969367981,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53,"ticks":5,"intervalMs":2000}]},{"rank":7,"spellId":503437,"level":54,"description":"Protection From LightRank 73% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 93 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":0.7522101436836132,"basePoints":93,"dieSides":1,"pointsPerLevel":1.1612499952316284,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62,"ticks":5,"intervalMs":2000}]},{"rank":8,"spellId":503438,"level":63,"description":"Protection From LightRank 83% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 149 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":1.0352136803488445,"basePoints":149,"dieSides":1,"pointsPerLevel":1.4800000190734863,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71,"ticks":5,"intervalMs":2000}]},{"rank":9,"spellId":503439,"level":72,"description":"Protection From LightRank 93% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 236 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":6,"triggerSpellId":0,"durationMs":10000},{"kind":"hot","coefficient":1.5524903951476816,"basePoints":236,"dieSides":1,"pointsPerLevel":2.3499999046325684,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":5,"intervalMs":2000}]}]},{"id":"coa-tree-11880","classId":"cultist","dbcSpellId":301181,"name":"Rapid Incantations","unlockLevel":1,"icon":"/assets/ui/spells/uico_shadow_spell_08_nobg_border.png","sigil":"RI","description":"While above 60 Insanity, you gain 5% increased haste.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301181,"level":1,"description":"While above 60 Insanity, you gain 5% increased haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11880},{"id":"coa-tree-29268","classId":"cultist","dbcSpellId":706928,"name":"Shadow Words","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_voidshift.png","sigil":"SW","description":"Increases the effectiveness of your Whispers by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706928,"level":1,"description":"Increases the effectiveness of your Whispers by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29268},{"id":"coa-tree-29455","classId":"cultist","dbcSpellId":805126,"name":"Shroud of Pride","unlockLevel":1,"icon":"/assets/ui/spells/sha_spell_fire_felfireward.png","sigil":"SO","description":"Your Abyssal Ward now stacks 3 additional times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807693,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805126,"level":1,"description":"Your Abyssal Ward now stacks 3 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":807693,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29455},{"id":"coa-tree-29920","classId":"cultist","dbcSpellId":572064,"name":"Split Mind","unlockLevel":1,"icon":"/assets/ui/spells/inv_soulbarrier.png","sigil":"SM","description":"Void Shield now applies to an additional nearby ally but its duration is reduced by -30%. Killing an opponent that yields experience or honor removes Wracked Mind from you.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":572065,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":572064,"level":1,"description":"Void Shield now applies to an additional nearby ally but its duration is reduced by -30%. Killing an opponent that yields experience or honor removes Wracked Mind from you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":572065,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29920},{"id":"coa-tree-33892","classId":"cultist","dbcSpellId":525019,"name":"Stare Into The Abyss","unlockLevel":1,"icon":"/assets/ui/spells/_soulsdevourer_purple.png","sigil":"SI","description":"Removes the cast time of your Corrupt Mind.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525019,"level":1,"description":"Removes the cast time of your Corrupt Mind.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33892},{"id":"coa-tree-7940","classId":"cultist","dbcSpellId":525065,"name":"Twisted Seal","unlockLevel":1,"icon":"/assets/ui/spells/inv_peacockmount_dark.png","sigil":"TS","description":"Create a warped sigil that bends hostile force away from you, deflecting all spells for 5 seconds, but making you unable to attack or cast spells. Casters whose magic is deflected are silenced for 3 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"utility","effectType":6,"auraType":287,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":525066,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":60,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":525065,"level":1,"description":"Create a warped sigil that bends hostile force away from you, deflecting all spells for 5 seconds, but making you unable to attack or cast spells. Casters whose magic is deflected are silenced for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"utility","effectType":6,"auraType":287,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":525066,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":60,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}],"talentEntryId":7940},{"id":"coa-tree-29479","classId":"cultist","dbcSpellId":301241,"name":"Ungodly Blessing","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_shadowmeld.png","sigil":"UB","description":"Reduces the duration of curse effects on you by -40%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":2,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301241,"level":1,"description":"Reduces the duration of curse effects on you by -40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":2,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29479},{"id":"coa-tree-29275","classId":"cultist","dbcSpellId":520388,"name":"Vision of Doom","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_twilightcano.png","sigil":"VO","description":"Behold a vision of doom, causing direct damage or healing done to apply Vision of Doom to nearby targets for 3 seconds. Can only occur once every 3 sec. At the end of the duration, they are damaged or healed for 100% of the damage or healing that doomed them. Lasts for 1 minute or 5 instances of damage or healing. Doomed enemies are unable to be healed and the damage or healing done by this effect can critically strike.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":520450,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520388,"level":1,"description":"Behold a vision of doom, causing direct damage or healing done to apply Vision of Doom to nearby targets for 3 seconds. Can only occur once every 3 sec. At the end of the duration, they are damaged or healed for 100% of the damage or healing that doomed them. Lasts for 1 minute or 5 instances of damage or healing. Doomed enemies are unable to be healed and the damage or healing done by this effect can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":520450,"durationMs":60000}]}],"talentEntryId":29275},{"id":"coa-tree-33952","classId":"cultist","dbcSpellId":524879,"name":"Void Hunger","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_surgeofdarkness.png","sigil":"VH","description":"Satiate now also regenerates an additional 1% mana per tick and no longer increases damage taken during the channel.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524879,"level":1,"description":"Satiate now also regenerates an additional 1% mana per tick and no longer increases damage taken during the channel.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33952},{"id":"coa-tree-29265","classId":"cultist","dbcSpellId":500715,"name":"Void Shield","unlockLevel":1,"icon":"/assets/ui/spells/_d3energyarmor.png","sigil":"VS","description":"Void ShieldRank 126% of base mana Instant castShields an ally, absorbing 195+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","target":"friendly","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":1.7999999523162842,"basePoints":195,"dieSides":5,"pointsPerLevel":3,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":18,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500715,"level":1,"description":"Void ShieldRank 126% of base mana Instant castShields an ally, absorbing 195+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":1.7999999523162842,"basePoints":195,"dieSides":5,"pointsPerLevel":3,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":18,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]}],"talentEntryId":29265},{"id":"coa-tree-6279","classId":"cultist","dbcSpellId":804633,"name":"Void-Enchanted Armor","unlockLevel":1,"icon":"/assets/ui/spells/pure_void_metal.png","sigil":"VE","description":"Increases your chance to resist dispel effects by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":235,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804633,"level":1,"description":"Increases your chance to resist dispel effects by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":235,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6279},{"id":"coa-tree-30323","classId":"cultist","dbcSpellId":706190,"name":"Wicked Thoughts","unlockLevel":1,"icon":"/assets/ui/spells/_ldaeye.png","sigil":"WT","description":"Increases your maximum mana, your movement speed, and mounted movement speed by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":172,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706190,"level":1,"description":"Increases your maximum mana, your movement speed, and mounted movement speed by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":172,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30323},{"id":"coa-25-wrath-of-the-black-empire-89-800413","classId":"cultist","dbcSpellId":800413,"name":"Wrath of the Black Empire","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WO","description":"Wrath of the Black EmpireRank 12 sec castBlast an enemy with overwhelming void power, dealing 27+0+SP*1 Shadow damage and draining 20 Insanity.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":5,"pointsPerLevel":0.3006590008735657,"bonusPowerCoefficient":0.75,"sourceLevel":1,"maxScalingLevel":8},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800413,"level":1,"description":"Wrath of the Black EmpireRank 12 sec castBlast an enemy with overwhelming void power, dealing 27+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":5,"pointsPerLevel":0.3006590008735657,"bonusPowerCoefficient":0.75,"sourceLevel":1,"maxScalingLevel":8},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502166,"level":6,"description":"Wrath of the Black EmpireRank 22.5 sec castBlast an enemy with overwhelming void power, dealing 56+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.0670199053628104,"basePoints":56,"dieSides":12,"pointsPerLevel":0.9537090063095093,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502167,"level":12,"description":"Wrath of the Black EmpireRank 32.5 sec castBlast an enemy with overwhelming void power, dealing 100+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.4456790141117426,"basePoints":100,"dieSides":16,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502168,"level":20,"description":"Wrath of the Black EmpireRank 43 sec castBlast an enemy with overwhelming void power, dealing 193+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.3682533173334033,"basePoints":193,"dieSides":24,"pointsPerLevel":2.208329916000366,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":30},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502169,"level":32,"description":"Wrath of the Black EmpireRank 53 sec castBlast an enemy with overwhelming void power, dealing 302+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.8945486731563053,"basePoints":302,"dieSides":40,"pointsPerLevel":2.7072300910949707,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502170,"level":40,"description":"Wrath of the Black EmpireRank 63 sec castBlast an enemy with overwhelming void power, dealing 417+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.602072744658499,"basePoints":417,"dieSides":67,"pointsPerLevel":3.6085500717163086,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502171,"level":48,"description":"Wrath of the Black EmpireRank 73 sec castBlast an enemy with overwhelming void power, dealing 547+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":547,"dieSides":96,"pointsPerLevel":5.341010093688965,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502172,"level":56,"description":"Wrath of the Black EmpireRank 83 sec castBlast an enemy with overwhelming void power, dealing 720+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":720,"dieSides":120,"pointsPerLevel":25.49650001525879,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":504904,"level":60,"description":"Wrath of the Black EmpireRank 93 sec castBlast an enemy with overwhelming void power, dealing 818+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":818,"dieSides":148,"pointsPerLevel":4.86290979385376,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":503695,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-25-wrath-of-the-black-empire-89-500724","classId":"cultist","dbcSpellId":500724,"name":"Wrath of The Black Empire","unlockLevel":1,"icon":"/assets/ui/spells/_soulfire_shadow.png","sigil":"WO","description":"Wrath of The Black EmpireRank 12.5 sec cast1 min cooldownConsumes All Void Runes Crush an enemy with overwhelming void power, dealing 19 Shadow damage plus 7 every 0.5 sec for 6 sec and generates 20 Insanity. Scales with Void Runes consumed. When used with at least 2, this always critically strikes. Cannot be reflected or redirected, and pierces immunity effects. Herald of C'Thun: Strikes up to 20 enemies.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":2500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":19,"dieSides":8,"pointsPerLevel":1.399999976158142,"bonusPowerCoefficient":0.75,"sourceLevel":1,"maxScalingLevel":27},{"kind":"dot","coefficient":0.17916666716337204,"basePoints":7,"dieSides":2,"pointsPerLevel":1.100000023841858,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":27,"ticks":12,"intervalMs":500,"tag":"spell-500724"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500724,"level":1,"description":"Wrath of The Black EmpireRank 12.5 sec cast1 min cooldownConsumes All Void Runes Crush an enemy with overwhelming void power, dealing 19 Shadow damage plus 7 every 0.5 sec for 6 sec and generates 20 Insanity. Scales with Void Runes consumed. When used with at least 2, this always critically strikes. Cannot be reflected or redirected, and pierces immunity effects. Herald of C'Thun: Strikes up to 20 enemies.","castMode":"cast","castTimeMs":2500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":19,"dieSides":8,"pointsPerLevel":1.399999976158142,"bonusPowerCoefficient":0.75,"sourceLevel":1,"maxScalingLevel":27},{"kind":"dot","coefficient":0.17916666716337204,"basePoints":7,"dieSides":2,"pointsPerLevel":1.100000023841858,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":27,"ticks":12,"intervalMs":500,"tag":"spell-500724"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":2,"spellId":502156,"level":28,"description":"Wrath of The Black EmpireRank 22.5 sec cast1 min cooldownConsumes All Void Runes Crush an enemy with overwhelming void power, dealing 73 Shadow damage plus 44 every 0.5 sec for 6 sec and generates 20 Insanity. Scales with Void Runes consumed. When used with at least 2, this always critically strikes. Cannot be reflected or redirected, and pierces immunity effects. Herald of C'Thun: Strikes up to 20 enemies.","castMode":"cast","castTimeMs":2500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.5216124039287715,"basePoints":73,"dieSides":21,"pointsPerLevel":4.046000003814697,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53},{"kind":"dot","coefficient":1.0311007536658945,"basePoints":44,"dieSides":1,"pointsPerLevel":3.178999900817871,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53,"ticks":12,"intervalMs":500,"tag":"spell-502156"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":3,"spellId":502157,"level":54,"description":"Wrath of The Black EmpireRank 32.5 sec cast1 min cooldownConsumes All Void Runes Crush an enemy with overwhelming void power, dealing 217 Shadow damage plus 163 every 0.5 sec for 6 sec and generates 20 Insanity. Scales with Void Runes consumed. When used with at least 2, this always critically strikes. Cannot be reflected or redirected, and pierces immunity effects. Herald of C'Thun: Strikes up to 20 enemies.","castMode":"cast","castTimeMs":2500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.877594146175661,"basePoints":217,"dieSides":56,"pointsPerLevel":6.502999782562256,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":80},{"kind":"dot","coefficient":2.1203526390923395,"basePoints":163,"dieSides":1,"pointsPerLevel":5.109499931335449,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":80,"ticks":12,"intervalMs":500,"tag":"spell-502157"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-25-wrathful-slam-88-706192","classId":"cultist","dbcSpellId":706192,"name":"Wrathful Slam","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_1h_stratholme_d_02.png","sigil":"WS","description":"Wrathful SlamRank 2Increases the damage of Entropic Slam by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706192,"level":1,"description":"Wrathful SlamRank 2Increases the damage of Entropic Slam by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":3,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":0}]}]},{"id":"cultist-eldritch-mending","classId":"cultist","dbcSpellId":500711,"name":"Eldritch Mending","unlockLevel":2,"icon":"/assets/ui/spells/nhi_voidwhirl_border.png","sigil":"EM","description":"Eldritch MendingRank 120% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 41+0+Heal*.56+AP*.12.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":0.9090400022618911,"basePoints":41,"dieSides":7,"pointsPerLevel":1.1805200576782227,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500711,"level":2,"description":"Eldritch MendingRank 120% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 41+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":0.9090400022618911,"basePoints":41,"dieSides":7,"pointsPerLevel":1.1805200576782227,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502226,"level":8,"description":"Eldritch MendingRank 220% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 80+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1.482348981110946,"basePoints":80,"dieSides":11,"pointsPerLevel":2.160259962081909,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":10},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502227,"level":12,"description":"Eldritch MendingRank 320% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 112+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1.8990849506707839,"basePoints":112,"dieSides":16,"pointsPerLevel":2.860490083694458,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":17},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502228,"level":18,"description":"Eldritch MendingRank 420% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 200+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":3.104515383941959,"basePoints":200,"dieSides":22,"pointsPerLevel":5.380390167236328,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":23},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502229,"level":24,"description":"Eldritch MendingRank 520% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 282+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":3.7538441389034958,"basePoints":282,"dieSides":28,"pointsPerLevel":5.987490177154541,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502230,"level":30,"description":"Eldritch MendingRank 620% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 362+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":362,"dieSides":40,"pointsPerLevel":8.345370292663574,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":35},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502231,"level":36,"description":"Eldritch MendingRank 720% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 450+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":450,"dieSides":51,"pointsPerLevel":8.902359962463379,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":41},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502232,"level":42,"description":"Eldritch MendingRank 820% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 548+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":548,"dieSides":64,"pointsPerLevel":5.391520023345947,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":47},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502233,"level":48,"description":"Eldritch MendingRank 920% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 643+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":643,"dieSides":76,"pointsPerLevel":6.353429794311523,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502234,"level":54,"description":"Eldritch MendingRank 1020% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 696+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1,"basePoints":696,"dieSides":82,"pointsPerLevel":7.40939998626709,"bonusPowerCoefficient":1,"sourceLevel":54,"maxScalingLevel":59},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"cultist-horrorbolt","classId":"cultist","dbcSpellId":800416,"name":"Horrorbolt","unlockLevel":2,"icon":"/assets/ui/spells/uico_shadow_spell_01_border.png","sigil":"HO","description":"HorrorboltRank 112% of base mana 1.5 sec castGenerates 10 Insanity Inflicts 22+0+ShaP*0.71 Shadow damage to an enemy.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.3199999928474426,"basePoints":22,"dieSides":4,"pointsPerLevel":0.3449999988079071,"bonusPowerCoefficient":0.3199999928474426,"sourceLevel":2,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800416,"level":2,"description":"HorrorboltRank 112% of base mana 1.5 sec castGenerates 10 Insanity Inflicts 22+0+ShaP*0.71 Shadow damage to an enemy.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.3199999928474426,"basePoints":22,"dieSides":4,"pointsPerLevel":0.3449999988079071,"bonusPowerCoefficient":0.3199999928474426,"sourceLevel":2,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502173,"level":8,"description":"HorrorboltRank 212% of base mana 2 sec castGenerates 10 Insanity Inflicts 43+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.7390293314837028,"basePoints":43,"dieSides":8,"pointsPerLevel":0.561627984046936,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502174,"level":14,"description":"HorrorboltRank 312% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 74+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.0461206915734829,"basePoints":74,"dieSides":10,"pointsPerLevel":0.893750011920929,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502175,"level":22,"description":"HorrorboltRank 412% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 124+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.6533933115435075,"basePoints":124,"dieSides":13,"pointsPerLevel":2.433029890060425,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502176,"level":28,"description":"HorrorboltRank 512% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 179+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.9993779973466266,"basePoints":179,"dieSides":13,"pointsPerLevel":7.211420059204102,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502177,"level":32,"description":"HorrorboltRank 612% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 213+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.2245015354021223,"basePoints":213,"dieSides":23,"pointsPerLevel":2.8017098903656006,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502178,"level":38,"description":"HorrorboltRank 712% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 275+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.7493628765801965,"basePoints":275,"dieSides":29,"pointsPerLevel":3.8986499309539795,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502179,"level":44,"description":"HorrorboltRank 812% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 346+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.339480620993059,"basePoints":346,"dieSides":35,"pointsPerLevel":5.183819770812988,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502180,"level":50,"description":"HorrorboltRank 912% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 419+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":419,"dieSides":43,"pointsPerLevel":6.955560207366943,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502181,"level":56,"description":"HorrorboltRank 1012% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 519+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":519,"dieSides":49,"pointsPerLevel":19.66860008239746,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":502182,"level":60,"description":"HorrorboltRank 1112% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 587+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.6643404303656686,"basePoints":587,"dieSides":71,"pointsPerLevel":3.37460994720459,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":502183,"level":68,"description":"HorrorboltRank 1212% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 648+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.961400671656352,"basePoints":648,"dieSides":81,"pointsPerLevel":4.388070106506348,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":13,"spellId":502184,"level":76,"description":"HorrorboltRank 1312% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 775+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":775,"dieSides":85,"pointsPerLevel":7.940219879150391,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-25-hammer-of-twilight-88-805116","classId":"cultist","dbcSpellId":805116,"name":"Hammer of Twilight","unlockLevel":6,"icon":"/assets/ui/spells/inv_mace_1h_hammeroftwilight_d_01.png","sigil":"HO","description":"Hammer of TwilightRank 1InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 14 Shadow damage, ignoring absorption effects and draining 40 Insanity.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805116,"level":6,"description":"Hammer of TwilightRank 1InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 14 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":806498,"level":14,"description":"Smash an enemy for $s1% Weapon Damage plus ${$m2+0} Shadow damage, ignoring absorption effects and draining 40 Insanity.$?s704869[ Refreshes a charge of Blade of the Empire.][]","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":806499,"level":22,"description":"Smash an enemy for $s1% Weapon Damage plus ${$m2+0} Shadow damage, ignoring absorption effects and draining 40 Insanity.$?s704869[ Refreshes a charge of Blade of the Empire.][]","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":806831,"level":30,"description":"Hammer of TwilightRank 4InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 73 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":806832,"level":38,"description":"Hammer of TwilightRank 5InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 99 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":806833,"level":46,"description":"Hammer of TwilightRank 6InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 118 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":806829,"level":54,"description":"Hammer of TwilightRank 7InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 139 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":806830,"level":60,"description":"Hammer of TwilightRank 8InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 169 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"cultist-gaze-of-cthun","classId":"cultist","dbcSpellId":500110,"name":"Gaze of C'Thun","unlockLevel":8,"icon":"/assets/ui/spells/achievement_boss_cthun.png","sigil":"GO","description":"Gaze of C'ThunRank 115% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 1 additional nearby target, dealing 21+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 21+0+Heal*0.665+AP*0.1.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500110,"level":8,"description":"Gaze of C'ThunRank 115% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 1 additional nearby target, dealing 21+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 21+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502135,"level":14,"description":"Gaze of C'ThunRank 215% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 1 additional nearby target, dealing 38+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 38+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502136,"level":20,"description":"Gaze of C'ThunRank 315% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 1 additional nearby target, dealing 54+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 54+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502137,"level":28,"description":"Gaze of C'ThunRank 415% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 2 additional nearby targets, dealing 82+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 82+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502138,"level":36,"description":"Gaze of C'ThunRank 515% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 2 additional nearby targets, dealing 110+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 110+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502139,"level":44,"description":"Gaze of C'ThunRank 615% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 2 additional nearby targets, dealing 141+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 141+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502140,"level":52,"description":"Gaze of C'ThunRank 715% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 2 additional nearby targets, dealing 181+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 181+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502141,"level":58,"description":"Gaze of C'ThunRank 815% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 3 additional nearby targets, dealing 236+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 236+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502142,"level":66,"description":"Gaze of C'ThunRank 915% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 3 additional nearby targets, dealing 353+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 353+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502143,"level":74,"description":"Gaze of C'ThunRank 1015% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 3 additional nearby targets, dealing 408+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 408+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520334,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":520335,"durationMs":0},{"kind":"utility","effectType":3,"auraType":17,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-25-cthuns-blade-89-500735","classId":"cultist","dbcSpellId":500735,"name":"C'Thun's Blade","unlockLevel":10,"icon":"/assets/ui/spells/custom_t_shadowbeam_border.png","sigil":"CT","description":"C'Thun's BladeRank 18% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 38+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.9733333460489909,"basePoints":38,"dieSides":3,"pointsPerLevel":3.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":11},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500735,"level":10,"description":"C'Thun's BladeRank 18% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 38+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.9733333460489909,"basePoints":38,"dieSides":3,"pointsPerLevel":3.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":11},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":555707,"level":13,"description":"C'Thun's BladeRank 28% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 72+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":1.0625,"basePoints":72,"dieSides":3,"pointsPerLevel":1.25,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":17},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":555708,"level":19,"description":"C'Thun's BladeRank 38% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 71+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":1.0467647138763876,"basePoints":71,"dieSides":3,"pointsPerLevel":1.8300000429153442,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":23},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":555709,"level":25,"description":"C'Thun's BladeRank 48% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 94+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":1.2937500178813934,"basePoints":94,"dieSides":3,"pointsPerLevel":2.4100000858306885,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":29},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":555710,"level":31,"description":"C'Thun's BladeRank 58% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 115+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":1.6065942221793577,"basePoints":115,"dieSides":3,"pointsPerLevel":3.4100000858306885,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":35},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":555711,"level":37,"description":"C'Thun's BladeRank 68% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 160+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":2.1586538461538463,"basePoints":160,"dieSides":3,"pointsPerLevel":4.75,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":41},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":555712,"level":43,"description":"C'Thun's BladeRank 78% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 221+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":2.9026954475490525,"basePoints":221,"dieSides":3,"pointsPerLevel":6.583000183105469,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":47},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":555713,"level":49,"description":"C'Thun's BladeRank 88% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 307+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":3.922224005063375,"basePoints":307,"dieSides":3,"pointsPerLevel":9.083000183105469,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":555714,"level":55,"description":"C'Thun's BladeRank 98% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 424+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":4,"basePoints":424,"dieSides":3,"pointsPerLevel":12.399999618530273,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":61},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4041","classId":"cultist","dbcSpellId":92130,"name":"Corrupting Whispers","unlockLevel":10,"icon":"/assets/ui/spells/cthunicon.png","sigil":"CW","description":"Damage dealt has a 15% chance to grant you Corrupting Whispers. Corrupting Whispers (Aura)Increases your Magic Damage dealt by 20% and reduces your mana costs by -30% for 8 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803094,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":286,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92130,"level":10,"description":"Damage dealt has a 15% chance to grant you Corrupting Whispers. Corrupting Whispers (Aura)Increases your Magic Damage dealt by 20% and reduces your mana costs by -30% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":803094,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":286,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4041},{"id":"coa-25-eldritch-smite-of-cthun-89-502125","classId":"cultist","dbcSpellId":502125,"name":"Eldritch Smite of C'thun","unlockLevel":10,"icon":"/assets/ui/spells/sha_spell_warlock_demonsoul_nightmare.png","sigil":"ES","description":"Eldritch Smite of C'thunRank 29% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 20+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502125,"level":10,"description":"Eldritch Smite of C'thunRank 29% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 20+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":3,"spellId":502126,"level":19,"description":"Eldritch Smite of C'thunRank 39% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 36+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":4,"spellId":502127,"level":28,"description":"Eldritch Smite of C'thunRank 49% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 62+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":5,"spellId":502128,"level":37,"description":"Eldritch Smite of C'thunRank 59% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 102+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":6,"spellId":502129,"level":45,"description":"Eldritch Smite of C'thunRank 69% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 154+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":7,"spellId":502130,"level":54,"description":"Eldritch Smite of C'thunRank 79% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 236+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":8,"spellId":502131,"level":63,"description":"Eldritch Smite of C'thunRank 89% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 354+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":9,"spellId":502132,"level":72,"description":"Eldritch Smite of C'thunRank 99% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 521+ppl1) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":806251,"durationMs":20000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]}]},{"id":"coa-25-ritual-of-awakening-477-801791","classId":"cultist","dbcSpellId":801791,"name":"Ritual of Awakening","unlockLevel":10,"icon":"/assets/ui/spells/_demonhand_priest.png","sigil":"RO","description":"Ritual of AwakeningRank 160% of base mana 8 sec castBrings a dead player back to life with 70 health and 135 mana. Cannot be cast when in combat.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801791,"level":10,"description":"Ritual of AwakeningRank 160% of base mana 8 sec castBrings a dead player back to life with 70 health and 135 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-25-void-shield-90-500715","classId":"cultist","dbcSpellId":500715,"name":"Void Shield","unlockLevel":10,"icon":"/assets/ui/spells/_d3energyarmor.png","sigil":"VS","description":"Void ShieldRank 126% of base mana Instant castShields an ally, absorbing 195+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","target":"friendly","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":1.7999999523162842,"basePoints":195,"dieSides":5,"pointsPerLevel":3,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":18,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500715,"level":10,"description":"Void ShieldRank 126% of base mana Instant castShields an ally, absorbing 195+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":1.7999999523162842,"basePoints":195,"dieSides":5,"pointsPerLevel":3,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":18,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]},{"rank":2,"spellId":502244,"level":20,"description":"Void ShieldRank 226% of base mana Instant castShields an ally, absorbing 241+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":3.0047619047619047,"basePoints":241,"dieSides":10,"pointsPerLevel":3.5,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]},{"rank":3,"spellId":502245,"level":26,"description":"Void ShieldRank 326% of base mana Instant castShields an ally, absorbing 299+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":3.3739837398373984,"basePoints":299,"dieSides":25,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]},{"rank":4,"spellId":502246,"level":32,"description":"Void ShieldRank 426% of base mana Instant castShields an ally, absorbing 404+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":4,"basePoints":404,"dieSides":35,"pointsPerLevel":4.5,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]},{"rank":5,"spellId":502247,"level":40,"description":"Void ShieldRank 526% of base mana Instant castShields an ally, absorbing 446+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":4,"basePoints":446,"dieSides":45,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]},{"rank":6,"spellId":806745,"level":46,"description":"Shields an ally, absorbing ${$m1+$SP*0.6} damage for $d and applying Wracked Mind. @s:805801:0@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":4,"basePoints":545,"dieSides":55,"pointsPerLevel":5.5,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]},{"rank":7,"spellId":578114,"level":54,"description":"Void ShieldRank 726% of base mana Instant castShields an ally, absorbing 656+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":4,"basePoints":656,"dieSides":55,"pointsPerLevel":6,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]},{"rank":8,"spellId":578115,"level":60,"description":"Void ShieldRank 826% of base mana Instant castShields an ally, absorbing 776+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"shield","coefficient":4,"basePoints":776,"dieSides":55,"pointsPerLevel":6.5,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":805801,"durationMs":30000}]}]},{"id":"coa-25-malevolence-90-500714","classId":"cultist","dbcSpellId":500714,"name":"Malevolence","unlockLevel":11,"icon":"/assets/ui/spells/inv_mace_1h_orgrimmarraid_d_03.png","sigil":"MA","description":"MalevolenceRank 19% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 40+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 25+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1.7999999523162842,"basePoints":40,"dieSides":4,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":11,"maxScalingLevel":14},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500714,"level":11,"description":"MalevolenceRank 19% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 40+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 25+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1.7999999523162842,"basePoints":40,"dieSides":4,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":11,"maxScalingLevel":14},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502235,"level":18,"description":"MalevolenceRank 29% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 52+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 36+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":0.6636363593014803,"basePoints":52,"dieSides":5,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":20},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502236,"level":26,"description":"MalevolenceRank 39% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 69+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 53+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":0.7186991819521276,"basePoints":69,"dieSides":6,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":26},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502237,"level":34,"description":"MalevolenceRank 49% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 93+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 67+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":0.8068027155739921,"basePoints":93,"dieSides":8,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":34},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502238,"level":42,"description":"MalevolenceRank 59% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 124+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 82+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":0.9140350818634033,"basePoints":124,"dieSides":11,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":42},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502239,"level":50,"description":"MalevolenceRank 69% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 167+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 99+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1.058974352861062,"basePoints":167,"dieSides":15,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":50},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502240,"level":58,"description":"MalevolenceRank 79% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 225+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 115+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1.2452054731377729,"basePoints":225,"dieSides":21,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502241,"level":60,"description":"MalevolenceRank 89% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 302+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 136+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1.575555549197727,"basePoints":302,"dieSides":28,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":60},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502242,"level":68,"description":"MalevolenceRank 99% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 406+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 157+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1.9566264995130669,"basePoints":406,"dieSides":75,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":68},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502243,"level":76,"description":"MalevolenceRank 109% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 550+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 191+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":2.378754572117285,"basePoints":550,"dieSides":101,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804153,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-25-twilight-shieldtoss-497-524876","classId":"cultist","dbcSpellId":524876,"name":"Twilight Shieldtoss","unlockLevel":11,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_05.png","sigil":"TS","description":"Twilight ShieldtossRank 115% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 40 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":40,"dieSides":4,"pointsPerLevel":1,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":524876,"level":11,"description":"Twilight ShieldtossRank 115% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 40 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":40,"dieSides":4,"pointsPerLevel":1,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":2,"spellId":804208,"level":18,"description":"Twilight ShieldtossRank 215% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 70 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":70,"dieSides":6,"pointsPerLevel":1.25,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":3,"spellId":503487,"level":26,"description":"Twilight ShieldtossRank 315% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 103 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":103,"dieSides":19,"pointsPerLevel":1.5,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":4,"spellId":503488,"level":34,"description":"Twilight ShieldtossRank 415% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 148 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":148,"dieSides":27,"pointsPerLevel":1.75,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":5,"spellId":572715,"level":42,"description":"Twilight ShieldtossRank 515% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 213 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":213,"dieSides":39,"pointsPerLevel":2,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":6,"spellId":572140,"level":50,"description":"Twilight ShieldtossRank 615% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 322 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":322,"dieSides":57,"pointsPerLevel":2.25,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":50,"maxScalingLevel":56},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":7,"spellId":572141,"level":58,"description":"Twilight ShieldtossRank 715% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 464 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":464,"dieSides":82,"pointsPerLevel":2.5,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":58,"maxScalingLevel":66},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]}]},{"id":"coa-25-psychic-leech-89-800452","classId":"cultist","dbcSpellId":800452,"name":"Psychic Leech","unlockLevel":12,"icon":"/assets/ui/spells/spell_priest_voidshift.png","sigil":"PL","description":"Psychic LeechRank 1Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, dealing 33+0+SP*.5 Eldritch damage plus an additional 13+0+SP*.285 Eldritch damage and leeching 30% of it's damage dealt every 1 sec for 14 sec.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":14000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800452,"level":12,"description":"Psychic LeechRank 1Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, dealing 33+0+SP*.5 Eldritch damage plus an additional 13+0+SP*.285 Eldritch damage and leeching 30% of it's damage dealt every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":9,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":14000}]},{"rank":2,"spellId":502221,"level":64,"description":"Psychic LeechRank 27% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 69+(PL*0.4-14*0.4) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":14000}]},{"rank":3,"spellId":502222,"level":69,"description":"Psychic LeechRank 37% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 86+(PL*0.6-28*0.6) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":14000}]},{"rank":4,"spellId":502223,"level":41,"description":"Psychic LeechRank 47% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 106+(PL*0.75-41*0.75) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":14000}]},{"rank":5,"spellId":502224,"level":54,"description":"Psychic LeechRank 57% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 126+(PL*0.9-54*0.9) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":14000}]},{"rank":6,"spellId":502225,"level":68,"description":"Psychic LeechRank 67% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 146+(PL*1.1-68*1.1) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":14000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":14000}]}]},{"id":"coa-25-darkwither-89-800446","classId":"cultist","dbcSpellId":800446,"name":"Darkwither","unlockLevel":13,"icon":"/assets/ui/spells/spell_shadow_unstableaffliction_3_purple.png","sigil":"DA","description":"DarkwitherRank 117% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 125 to 130 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.4717914220832643,"basePoints":25,"dieSides":2,"pointsPerLevel":1.086959958076477,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":16,"ticks":5,"intervalMs":3000,"tag":"spell-800446"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800446,"level":13,"description":"DarkwitherRank 117% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 125 to 130 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.4717914220832643,"basePoints":25,"dieSides":2,"pointsPerLevel":1.086959958076477,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":16,"ticks":5,"intervalMs":3000,"tag":"spell-800446"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]},{"rank":2,"spellId":502213,"level":18,"description":"DarkwitherRank 217% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 190 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.4859731101026439,"basePoints":38,"dieSides":1,"pointsPerLevel":0.5617409944534302,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22,"ticks":5,"intervalMs":3000,"tag":"spell-502213"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":121633,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]},{"rank":3,"spellId":502214,"level":24,"description":"DarkwitherRank 317% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 275 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.5751917260324854,"basePoints":55,"dieSides":1,"pointsPerLevel":0.5123929977416992,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28,"ticks":5,"intervalMs":3000,"tag":"spell-502214"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":121633,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]},{"rank":4,"spellId":502215,"level":30,"description":"DarkwitherRank 417% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 355 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.6943481480633771,"basePoints":71,"dieSides":1,"pointsPerLevel":0.7578999996185303,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34,"ticks":5,"intervalMs":3000,"tag":"spell-502215"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":121633,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]},{"rank":5,"spellId":502216,"level":36,"description":"DarkwitherRank 517% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 445 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":0.8394122996361427,"basePoints":89,"dieSides":1,"pointsPerLevel":1.0952800512313843,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40,"ticks":5,"intervalMs":3000,"tag":"spell-502216"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":121633,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]},{"rank":6,"spellId":502217,"level":42,"description":"DarkwitherRank 617% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 565 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":1.0493825806511774,"basePoints":113,"dieSides":1,"pointsPerLevel":1.58201003074646,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":5,"intervalMs":3000,"tag":"spell-502217"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":121633,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]},{"rank":7,"spellId":502218,"level":48,"description":"DarkwitherRank 717% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 695 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":1.265275763456153,"basePoints":139,"dieSides":1,"pointsPerLevel":2.0861899852752686,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52,"ticks":5,"intervalMs":3000,"tag":"spell-502218"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":121633,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]},{"rank":8,"spellId":502219,"level":54,"description":"DarkwitherRank 817% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 830 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":1.5511706508876044,"basePoints":166,"dieSides":1,"pointsPerLevel":2.872080087661743,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58,"ticks":5,"intervalMs":3000,"tag":"spell-502219"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":121633,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]},{"rank":9,"spellId":502220,"level":60,"description":"DarkwitherRank 917% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 1025 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"dot","coefficient":1.8892577913072375,"basePoints":205,"dieSides":1,"pointsPerLevel":3.6680500507354736,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68,"ticks":5,"intervalMs":3000,"tag":"spell-502220"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":121633,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":706913,"durationMs":15000}]}]},{"id":"coa-25-forbidden-ritual-90-800105","classId":"cultist","dbcSpellId":800105,"name":"Forbidden Ritual","unlockLevel":17,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FR","description":"Forbidden RitualRank 130% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 225+0+Heal*.5 damage for 10 sec.","target":"hostile","range":{"min":0,"max":0},"radius":30,"castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":1,"basePoints":225,"dieSides":12,"pointsPerLevel":5,"bonusPowerCoefficient":1,"sourceLevel":17,"maxScalingLevel":22,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800105,"level":17,"description":"Forbidden RitualRank 130% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 225+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":1,"basePoints":225,"dieSides":12,"pointsPerLevel":5,"bonusPowerCoefficient":1,"sourceLevel":17,"maxScalingLevel":22,"durationMs":10000}]},{"rank":2,"spellId":502267,"level":24,"description":"Forbidden RitualRank 230% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 308+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":308,"dieSides":16,"pointsPerLevel":8.037500381469727,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":26,"durationMs":10000}]},{"rank":3,"spellId":502268,"level":28,"description":"Forbidden RitualRank 330% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 396+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":396,"dieSides":22,"pointsPerLevel":10.737500190734863,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"durationMs":10000}]},{"rank":4,"spellId":502269,"level":34,"description":"Forbidden RitualRank 430% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 488+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":488,"dieSides":30,"pointsPerLevel":13.4375,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"durationMs":10000}]},{"rank":5,"spellId":502270,"level":40,"description":"Forbidden RitualRank 530% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 556+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":556,"dieSides":41,"pointsPerLevel":16.137500762939453,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"durationMs":10000}]},{"rank":6,"spellId":502271,"level":46,"description":"Forbidden RitualRank 630% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 679+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":679,"dieSides":55,"pointsPerLevel":18.837499618530273,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"durationMs":10000}]},{"rank":7,"spellId":502272,"level":52,"description":"Forbidden RitualRank 730% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 790+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":790,"dieSides":72,"pointsPerLevel":21.537500381469727,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"durationMs":10000}]},{"rank":8,"spellId":502273,"level":58,"description":"Forbidden RitualRank 830% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 938+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":938,"dieSides":93,"pointsPerLevel":24.237499237060547,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62,"durationMs":10000}]},{"rank":9,"spellId":502274,"level":64,"description":"Forbidden RitualRank 930% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 1219+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":1219,"dieSides":121,"pointsPerLevel":26.9375,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":68,"durationMs":10000}]},{"rank":10,"spellId":502275,"level":70,"description":"Forbidden RitualRank 1030% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 1585+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":4,"basePoints":1585,"dieSides":158,"pointsPerLevel":29.637500762939453,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":76,"durationMs":10000}]}]},{"id":"coa-25-shatter-void-rune-89-502193","classId":"cultist","dbcSpellId":502193,"name":"Shatter Void Rune","unlockLevel":19,"icon":"/assets/ui/spells/_warlock_brise_amev2.png","sigil":"SV","description":"Shatter Void RuneRank 2Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 344 Shadow Damage to all enemies within 10 yards and knocking them back.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.3773927556143866,"basePoints":344,"dieSides":10,"pointsPerLevel":3.298569917678833,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":69},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502193,"level":63,"description":"Shatter Void RuneRank 2Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 344 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.3773927556143866,"basePoints":344,"dieSides":10,"pointsPerLevel":3.298569917678833,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":69},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":3,"spellId":502194,"level":69,"description":"Shatter Void RuneRank 3Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 446 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.7644872864087424,"basePoints":446,"dieSides":12,"pointsPerLevel":3.552910089492798,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":75},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":4,"spellId":502195,"level":19,"description":"Shatter Void RuneRank 4Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 47 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7915175580510906,"basePoints":47,"dieSides":14,"pointsPerLevel":1.4334100484848022,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":25},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":5,"spellId":502196,"level":26,"description":"Shatter Void RuneRank 5Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 67 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.979541782441178,"basePoints":67,"dieSides":18,"pointsPerLevel":1.730139970779419,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":31},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":6,"spellId":502197,"level":32,"description":"Shatter Void RuneRank 6Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 82 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.1064068138176668,"basePoints":82,"dieSides":22,"pointsPerLevel":1.9844800233840942,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":7,"spellId":502198,"level":38,"description":"Shatter Void RuneRank 7Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 110 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.3055041691042342,"basePoints":110,"dieSides":26,"pointsPerLevel":2.2388200759887695,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":8,"spellId":502199,"level":44,"description":"Shatter Void RuneRank 8Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 147 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.5350228271915414,"basePoints":147,"dieSides":31,"pointsPerLevel":2.4931600093841553,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":49},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":9,"spellId":502200,"level":50,"description":"Shatter Void RuneRank 9Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 194 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.7916666519947542,"basePoints":194,"dieSides":37,"pointsPerLevel":2.747499942779541,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":55},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":10,"spellId":502201,"level":56,"description":"Shatter Void RuneRank 10Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 255 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.0849908282499356,"basePoints":255,"dieSides":43,"pointsPerLevel":3.001840114593506,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":11,"spellId":502202,"level":63,"description":"Shatter Void RuneRank 11Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 344 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.4649995932212243,"basePoints":344,"dieSides":51,"pointsPerLevel":3.298569917678833,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":68},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":12,"spellId":502203,"level":69,"description":"Shatter Void RuneRank 12Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 446 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.8577412546627103,"basePoints":446,"dieSides":59,"pointsPerLevel":3.552910089492798,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]},{"rank":13,"spellId":502204,"level":75,"description":"Shatter Void RuneRank 13Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 576 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.313125006357829,"basePoints":576,"dieSides":67,"pointsPerLevel":3.8072500228881836,"bonusPowerCoefficient":0,"sourceLevel":75,"maxScalingLevel":80},{"kind":"utility","effectType":98,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":5000},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.3}]}]},{"id":"coa-25-entropic-slam-88-555351","classId":"cultist","dbcSpellId":555351,"name":"Entropic Slam","unlockLevel":20,"icon":"/assets/ui/spells/inv_axe_2h_grimbatolraid_d_01.png","sigil":"ES","description":"Entropic SlamRank 2InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 22 as Shadow damage and draining 40 Insanity.","target":"self","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":555351,"level":20,"description":"Entropic SlamRank 2InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 22 as Shadow damage and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":555352,"level":28,"description":"Entropic SlamRank 3InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 34 as Shadow damage and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":555353,"level":36,"description":"Entropic SlamRank 4InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 53 as Shadow damage and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":555354,"level":42,"description":"Entropic SlamRank 5InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 68 as Shadow damage and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-25-void-blessing-477-560289","classId":"cultist","dbcSpellId":560289,"name":"Void Blessing","unlockLevel":24,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VB","description":"Void BlessingRank 25% of base mana Instant castEmpower an ally with a blessing from the void, restoring 15 mana every 5 seconds for 30 min.","target":"friendly","range":{"min":0,"max":40},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":560289,"level":24,"description":"Void BlessingRank 25% of base mana Instant castEmpower an ally with a blessing from the void, restoring 15 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]},{"rank":3,"spellId":560290,"level":34,"description":"Void BlessingRank 35% of base mana Instant castEmpower an ally with a blessing from the void, restoring 20 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]},{"rank":4,"spellId":560291,"level":44,"description":"Void BlessingRank 45% of base mana Instant castEmpower an ally with a blessing from the void, restoring 25 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]},{"rank":5,"spellId":560292,"level":54,"description":"Void BlessingRank 55% of base mana Instant castEmpower an ally with a blessing from the void, restoring 30 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]},{"rank":6,"spellId":560293,"level":60,"description":"Void BlessingRank 65% of base mana Instant castEmpower an ally with a blessing from the void, restoring 33 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-25-void-embrace-90-800367","classId":"cultist","dbcSpellId":800367,"name":"Void Embrace","unlockLevel":29,"icon":"/assets/ui/spells/ability_priest_voidentropy.png","sigil":"VE","description":"Void EmbraceRank 120% of base mana Instant cast45 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(30+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","target":"friendly","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"hot","coefficient":0.34256969753539923,"basePoints":30,"dieSides":1,"pointsPerLevel":0.5248000025749207,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":32,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800367,"level":29,"description":"Void EmbraceRank 120% of base mana Instant cast45 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(30+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"hot","coefficient":0.34256969753539923,"basePoints":30,"dieSides":1,"pointsPerLevel":0.5248000025749207,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":32,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]},{"rank":2,"spellId":502276,"level":34,"description":"Void EmbraceRank 222% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(40+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"hot","coefficient":0.40987776655729125,"basePoints":40,"dieSides":1,"pointsPerLevel":0.5956479907035828,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":37,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":128,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]},{"rank":3,"spellId":502277,"level":39,"description":"Void EmbraceRank 324% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(51+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":24},"effects":[{"kind":"hot","coefficient":0.5349635548061795,"basePoints":51,"dieSides":1,"pointsPerLevel":0.914463996887207,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":42,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]},{"rank":4,"spellId":502278,"level":44,"description":"Void EmbraceRank 426% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(73+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"hot","coefficient":0.7190074435735153,"basePoints":73,"dieSides":1,"pointsPerLevel":1.2332799434661865,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":47,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]},{"rank":5,"spellId":502279,"level":49,"description":"Void EmbraceRank 528% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(90+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":28},"effects":[{"kind":"hot","coefficient":0.864858839660883,"basePoints":90,"dieSides":1,"pointsPerLevel":1.5520999431610107,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":52,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]},{"rank":6,"spellId":502280,"level":54,"description":"Void EmbraceRank 630% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(100+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"hot","coefficient":0.9619152626553595,"basePoints":100,"dieSides":1,"pointsPerLevel":1.8354899883270264,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":57,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]},{"rank":7,"spellId":502281,"level":59,"description":"Void EmbraceRank 732% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(113+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":32},"effects":[{"kind":"hot","coefficient":1.0815481914056313,"basePoints":113,"dieSides":1,"pointsPerLevel":2.1542999744415283,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":62,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]},{"rank":8,"spellId":502282,"level":64,"description":"Void EmbraceRank 834% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(133+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":34},"effects":[{"kind":"hot","coefficient":1.2290281786697324,"basePoints":133,"dieSides":1,"pointsPerLevel":2.4731199741363525,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":67,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]},{"rank":9,"spellId":502283,"level":69,"description":"Void EmbraceRank 936% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(156+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":36},"effects":[{"kind":"hot","coefficient":1.383507373787108,"basePoints":156,"dieSides":1,"pointsPerLevel":2.7919399738311768,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74,"ticks":4,"intervalMs":3000},{"kind":"utility","effectType":65,"auraType":42,"miscValue":0,"triggerSpellId":520774,"durationMs":12000},{"kind":"utility","effectType":128,"auraType":23,"miscValue":0,"triggerSpellId":301982,"durationMs":12000}]}]},{"id":"coa-25-eternal-grasp-89-704878","classId":"cultist","dbcSpellId":704878,"name":"Eternal Grasp","unlockLevel":30,"icon":"/assets/ui/spells/achievement_nzothraid_carapace.png","sigil":"EG","description":"Eternal GraspRank 1Increases the duration of your Tentacles by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704878,"level":30,"description":"Eternal GraspRank 1Increases the duration of your Tentacles by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704879,"level":30,"description":"Eternal GraspRank 2Increases the duration of your Tentacles by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-25-instill-despair-90-500718","classId":"cultist","dbcSpellId":500718,"name":"Instill Despair","unlockLevel":45,"icon":"/assets/ui/spells/ability_rogue_nightblade.png","sigil":"ID","description":"Instill DespairRank 19% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 16+(PL*0.5)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500718,"level":57,"description":"Instill DespairRank 19% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 16+(PL*0.5)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":2,"spellId":502257,"level":60,"description":"Instill DespairRank 29% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 26+(PL*0.77-8*0.77)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":3,"spellId":502258,"level":63,"description":"Instill DespairRank 39% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 36+(PL*1-16*1)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":4,"spellId":502259,"level":68,"description":"Instill DespairRank 49% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 46+(PL*1.3-23*1.3)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":5,"spellId":502260,"level":73,"description":"Instill DespairRank 59% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 56+(PL*1.5-30*1.5)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":6,"spellId":502261,"level":78,"description":"Instill DespairRank 69% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 66+(PL*1.7-37*1.7)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":7,"spellId":502262,"level":45,"description":"Instill DespairRank 79% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 76+(PL*2-45*2)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":8,"spellId":502263,"level":52,"description":"Instill DespairRank 89% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 86+(PL*2.2-52*2.2)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":9,"spellId":502264,"level":59,"description":"Instill DespairRank 99% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 157+(PL*2.5-59*2.5)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":10,"spellId":502265,"level":66,"description":"Instill DespairRank 109% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 216+(PL*2.72-66*2.72)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]},{"rank":11,"spellId":502266,"level":74,"description":"Instill DespairRank 119% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 305+(PL*3-74*3) health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":704301,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":192,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":6,"auraType":216,"miscValue":127,"triggerSpellId":0,"durationMs":30000}]}]},{"id":"coa-25-doomcloak-497-502134","classId":"cultist","dbcSpellId":502134,"name":"Doomcloak","unlockLevel":53,"icon":"/assets/ui/spells/sha_spell_shadow_shadesofdarkness.png","sigil":"DO","description":"DoomcloakRank 315% of base mana Instant cast15 sec cooldownRequires Shields Shield yourself in a magical barrier that absorbs 600+0+Sta*0.35 damage. Lasts 12 sec. While active, Magic Damage taken is reduced by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"shield","coefficient":4,"basePoints":600,"dieSides":1,"pointsPerLevel":12.193099975585938,"bonusPowerCoefficient":0,"sourceLevel":53,"maxScalingLevel":65,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":-1,"triggerSpellId":800431,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":502134,"level":53,"description":"DoomcloakRank 315% of base mana Instant cast15 sec cooldownRequires Shields Shield yourself in a magical barrier that absorbs 600+0+Sta*0.35 damage. Lasts 12 sec. While active, Magic Damage taken is reduced by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"shield","coefficient":4,"basePoints":600,"dieSides":1,"pointsPerLevel":12.193099975585938,"bonusPowerCoefficient":0,"sourceLevel":53,"maxScalingLevel":65,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":3,"auraType":0,"miscValue":-1,"triggerSpellId":800431,"durationMs":12000}]}]},{"id":"coa-25-ancient-curse-89-502152","classId":"cultist","dbcSpellId":502152,"name":"Ancient Curse","unlockLevel":62,"icon":"/assets/ui/spells/inv_jewelry_ring_62.png","sigil":"AC","description":"Ancient CurseRank 219% of base mana Instant cast1 min cooldownInstantly inflicts 309+(PL*2.7-17*2.7) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":3.9134199134199132,"basePoints":309,"dieSides":13,"pointsPerLevel":9.5,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":65},{"kind":"utility","effectType":6,"auraType":271,"miscValue":32,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502152,"level":62,"description":"Ancient CurseRank 219% of base mana Instant cast1 min cooldownInstantly inflicts 309+(PL*2.7-17*2.7) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":3.9134199134199132,"basePoints":309,"dieSides":13,"pointsPerLevel":9.5,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":65},{"kind":"utility","effectType":6,"auraType":271,"miscValue":32,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}]},{"rank":3,"spellId":502153,"level":67,"description":"Ancient CurseRank 319% of base mana Instant cast1 min cooldownInstantly inflicts 403+(PL*4-33*4) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":403,"dieSides":23,"pointsPerLevel":12.399999618530273,"bonusPowerCoefficient":0,"sourceLevel":67,"maxScalingLevel":70},{"kind":"utility","effectType":6,"auraType":271,"miscValue":32,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}]},{"rank":4,"spellId":502154,"level":72,"description":"Ancient CurseRank 419% of base mana Instant cast1 min cooldownInstantly inflicts 1071+(PL*5.4-49*5.4) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":1071,"dieSides":39,"pointsPerLevel":6.125,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":271,"miscValue":32,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}]},{"rank":5,"spellId":502155,"level":65,"description":"Ancient CurseRank 519% of base mana Instant cast1 min cooldownInstantly inflicts 1370+(PL*6.7-65*6.7) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":4,"basePoints":1370,"dieSides":60,"pointsPerLevel":6.734379768371582,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":271,"miscValue":32,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}]}]}],"starcaller":[{"id":"coa-26-arrows-of-starlight-93-704733","classId":"starcaller","dbcSpellId":704733,"name":"Arrows of Starlight","unlockLevel":1,"icon":"/assets/ui/spells/ability_ironmaidens_ironshot.png","sigil":"AO","description":"Arrows of StarlightRank 1Increases the damage of Moon Arrow by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704733,"level":1,"description":"Arrows of StarlightRank 1Increases the damage of Moon Arrow by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30838","classId":"starcaller","dbcSpellId":806155,"name":"Astral Aegis","unlockLevel":1,"icon":"/assets/ui/spells/ability_bastion_monk.png","sigil":"AA","description":"Drains 30% Maximum Mana For 10 seconds, direct Magic damage taken will silence the attacker for 1 seconds and deal 57 + 18% arcane SP Arcane damage to them.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806453,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806155,"level":1,"description":"Drains 30% Maximum Mana For 10 seconds, direct Magic damage taken will silence the attacker for 1 seconds and deal 57 + 18% arcane SP Arcane damage to them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806453,"durationMs":10000}]}],"talentEntryId":30838},{"id":"starcaller-astral-flare","classId":"starcaller","dbcSpellId":800499,"name":"Astral Flare","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_manaburn.png","sigil":"AF","description":"Astral FlareRank 12 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","target":"hostile","range":{"min":0,"max":30},"radius":6,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800499,"level":1,"description":"Astral FlareRank 12 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502318,"level":11,"description":"Astral FlareRank 22 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502319,"level":21,"description":"Astral FlareRank 32 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502320,"level":31,"description":"Astral FlareRank 42 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502321,"level":41,"description":"Astral FlareRank 52 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502322,"level":51,"description":"Astral FlareRank 62 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502323,"level":61,"description":"Astral FlareRank 72 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502324,"level":71,"description":"Astral FlareRank 82 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":800507,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":804096,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-26-bright-moon-none-704779","classId":"starcaller","dbcSpellId":704779,"name":"Bright Moon","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_teleport.png","sigil":"BM","description":"Bright MoonRank 2Allows Lunar Phase to stack 4 additional times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":704779,"level":1,"description":"Bright MoonRank 2Allows Lunar Phase to stack 4 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6659","classId":"starcaller","dbcSpellId":801226,"name":"Bright Moon","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_teleport.png","sigil":"BM","description":"Bright MoonPassiveInstantAllows Lunar Phase to stack 4 additional times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801226,"level":1,"description":"Bright MoonPassiveInstantAllows Lunar Phase to stack 4 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6659},{"id":"coa-tree-33832","classId":"starcaller","dbcSpellId":300259,"name":"Constellation Barrier","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_arcaneweapons_border.png","sigil":"CB","description":"Reduces all Magic damage taken by -5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300259,"level":1,"description":"Reduces all Magic damage taken by -5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33832},{"id":"coa-tree-29493","classId":"starcaller","dbcSpellId":503584,"name":"Continual Starfall","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_starfall.png","sigil":"CS","description":"Astral Flares called down by Aspect of the Stars now increase your haste by 3% for 5 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503584,"level":1,"description":"Astral Flares called down by Aspect of the Stars now increase your haste by 3% for 5 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29493},{"id":"coa-tree-9834","classId":"starcaller","dbcSpellId":504628,"name":"Cosmic Duality","unlockLevel":1,"icon":"/assets/ui/spells/talentspec_druid_balance.png","sigil":"CD","description":"Dealing damage grants you Cosmic Harmony, increasing the healing of your next ability within 6 seconds by 5%. Effective healing grants you Cosmic Wrath, increasing the damage of your next ability within 6 seconds by 5%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504631,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504628,"level":1,"description":"Dealing damage grants you Cosmic Harmony, increasing the healing of your next ability within 6 seconds by 5%. Effective healing grants you Cosmic Wrath, increasing the damage of your next ability within 6 seconds by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504631,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9834},{"id":"coa-tree-7698","classId":"starcaller","dbcSpellId":680774,"name":"Elune's Presence","unlockLevel":1,"icon":"/assets/ui/spells/ability_ardenweald_paladin_summer.png","sigil":"ES","description":"Gain the blessing of a goddess, granting all party or raid members within 40 yds 20% temporary maximum health for 10 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680774,"level":1,"description":"Gain the blessing of a goddess, granting all party or raid members within 40 yds 20% temporary maximum health for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":23},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":7698},{"id":"coa-26-fury-of-the-stars-91-704603","classId":"starcaller","dbcSpellId":704603,"name":"Fury of the Stars","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_156.png","sigil":"FO","description":"Fury of the StarsRank 1Increases the damage of Astral Blade by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704603,"level":1,"description":"Fury of the StarsRank 1Increases the damage of Astral Blade by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704605,"level":1,"description":"Fury of the StarsRank 2Increases the damage of Astral Blade by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-26-huntress-of-elune-93-704769","classId":"starcaller","dbcSpellId":704769,"name":"Huntress of Elune","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_piercingshots.png","sigil":"HO","description":"Huntress of EluneRank 1Increases your damage dealt by 5% on enemies further than 30 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":226,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704769,"level":1,"description":"Huntress of EluneRank 1Increases your damage dealt by 5% on enemies further than 30 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":226,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704770,"level":1,"description":"Huntress of EluneRank 2InstantIncreases your damage dealt by 10% on enemies further than 30 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":226,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4044","classId":"starcaller","dbcSpellId":92133,"name":"Huntress Training","unlockLevel":1,"icon":"/assets/ui/spells/_diablo3_arrowrain_mage.png","sigil":"HT","description":"Level 10 Passive Increases your haste rating by 8% of your Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":917504,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92133,"level":1,"description":"Level 10 Passive Increases your haste rating by 8% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":917504,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4044},{"id":"coa-26-improved-torrent-92-704746","classId":"starcaller","dbcSpellId":704746,"name":"Improved Torrent","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_frostblast.png","sigil":"IT","description":"Improved TorrentRank 2Increases the healing of Torrent and damage dealt by Shark Attack by 20%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":704746,"level":1,"description":"Improved TorrentRank 2Increases the healing of Torrent and damage dealt by Shark Attack by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29642","classId":"starcaller","dbcSpellId":704777,"name":"Infused Aegis","unlockLevel":1,"icon":"/assets/ui/spells/ability_nightfae_soulshape.png","sigil":"IA","description":"Drains 30% Maximum Mana Instantly counterattack any enemy that strikes you from the front in melee for Arcane damage, lasting 10 seconds. Can only occur once per sec per enemy.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":707759,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":704777,"level":1,"description":"Drains 30% Maximum Mana Instantly counterattack any enemy that strikes you from the front in melee for Arcane damage, lasting 10 seconds. Can only occur once per sec per enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":707759,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":29642},{"id":"coa-tree-13828","classId":"starcaller","dbcSpellId":300989,"name":"Lunar Anomaly","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_blueflamestrike.png","sigil":"LA","description":"Increases the damage of Lunar Lance by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300989,"level":1,"description":"Increases the damage of Lunar Lance by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":13828},{"id":"coa-26-lunar-storm-93-800511","classId":"starcaller","dbcSpellId":800511,"name":"Lunar Storm","unlockLevel":1,"icon":"/assets/ui/spells/achievement_worldevent_lunar.png","sigil":"LS","description":"Lunar StormRank 112% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 5 to 6 Arcane Damage to enemies in the area every 2 sec for 10 sec.","target":"hostile","range":{"min":0,"max":30},"radius":18,"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.6000000238418579,"basePoints":5,"dieSides":2,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":9,"ticks":5,"intervalMs":2000,"tag":"spell-800511"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800511,"level":1,"description":"Lunar StormRank 112% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 5 to 6 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.6000000238418579,"basePoints":5,"dieSides":2,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":9,"ticks":5,"intervalMs":2000,"tag":"spell-800511"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":2,"spellId":502325,"level":10,"description":"Lunar StormRank 212% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 10 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.2003333330154419,"basePoints":10,"dieSides":1,"pointsPerLevel":0.5024999976158142,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":5,"intervalMs":2000,"tag":"spell-502325"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":502326,"level":19,"description":"Lunar StormRank 312% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 18 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.30402206264290155,"basePoints":18,"dieSides":1,"pointsPerLevel":0.6847500205039978,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27,"ticks":5,"intervalMs":2000,"tag":"spell-502326"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":502327,"level":28,"description":"Lunar StormRank 412% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 31 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.42849612051202346,"basePoints":31,"dieSides":1,"pointsPerLevel":0.8669999837875366,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":5,"intervalMs":2000,"tag":"spell-502327"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":502328,"level":37,"description":"Lunar StormRank 512% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 48 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.5565528861987286,"basePoints":48,"dieSides":1,"pointsPerLevel":1.0492500066757202,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44,"ticks":5,"intervalMs":2000,"tag":"spell-502328"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":502329,"level":45,"description":"Lunar StormRank 612% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 77 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.730590264664756,"basePoints":77,"dieSides":1,"pointsPerLevel":1.2112499475479126,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53,"ticks":5,"intervalMs":2000,"tag":"spell-502329"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":502330,"level":54,"description":"Lunar StormRank 712% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 126 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":0.9722173835920251,"basePoints":126,"dieSides":1,"pointsPerLevel":1.3934999704360962,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62,"ticks":5,"intervalMs":2000,"tag":"spell-502330"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":8,"spellId":502331,"level":63,"description":"Lunar StormRank 812% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 202 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":1.2874882460659385,"basePoints":202,"dieSides":1,"pointsPerLevel":1.5757499933242798,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71,"ticks":5,"intervalMs":2000,"tag":"spell-502331"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":9,"spellId":502332,"level":72,"description":"Lunar StormRank 912% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 320 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"dot","coefficient":1.7110191615605264,"basePoints":320,"dieSides":1,"pointsPerLevel":1.7580000162124634,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":5,"intervalMs":2000,"tag":"spell-502332"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-tree-4043","classId":"starcaller","dbcSpellId":92132,"name":"Moon Guard","unlockLevel":1,"icon":"/assets/ui/spells/artifactability_balancedruid_newmoon.png","sigil":"MG","description":"Level 10 Passive You now gain Intellect equal to your Strength.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":327,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92132,"level":1,"description":"Level 10 Passive You now gain Intellect equal to your Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":327,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4043},{"id":"coa-tree-4045","classId":"starcaller","dbcSpellId":92134,"name":"Moon Priest","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicmoonbuff_border.png","sigil":"MP","description":"Level 10 Passive Your Huntress Shot now has a Lunar Eclipse effect. Huntress Shot: Applies 2 additional Scattered Stars.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92134,"level":1,"description":"Level 10 Passive Your Huntress Shot now has a Lunar Eclipse effect. Huntress Shot: Applies 2 additional Scattered Stars.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4045},{"id":"coa-26-moonblessed-aspects-93-706231","classId":"starcaller","dbcSpellId":706231,"name":"Moonblessed Aspects","unlockLevel":1,"icon":"/assets/ui/spells/inv_shoulder_leather_raiddruid_q_01.png","sigil":"MA","description":"Moonblessed AspectsRank 1Increases the effectiveness by 4% and chance to trigger your Aspects by 8%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706231,"level":1,"description":"Moonblessed AspectsRank 1Increases the effectiveness by 4% and chance to trigger your Aspects by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-11811","classId":"starcaller","dbcSpellId":706232,"name":"Moonblessed Aspects","unlockLevel":1,"icon":"/assets/ui/spells/inv_shoulder_leather_raiddruid_q_01.png","sigil":"MA","description":"Increases the effectiveness of Aspects by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706232,"level":1,"description":"Increases the effectiveness of Aspects by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11811},{"id":"coa-tree-33825","classId":"starcaller","dbcSpellId":503583,"name":"Moonlight Ripple","unlockLevel":1,"icon":"/assets/ui/spells/ability_socererking_arcanemines.png","sigil":"MR","description":"Reduces the mana cost of your Aegis spells by -10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":229,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503583,"level":1,"description":"Reduces the mana cost of your Aegis spells by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":229,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33825},{"id":"coa-26-moonlit-impaler-91-706235","classId":"starcaller","dbcSpellId":706235,"name":"Moonlit Impaler","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MI","description":"Moonlit ImpalerRank 2Increases your Arcane damage by 10% and your hit chance by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":64,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706235,"level":1,"description":"Moonlit ImpalerRank 2Increases your Arcane damage by 10% and your hit chance by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":64,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29974","classId":"starcaller","dbcSpellId":560662,"name":"Moonlit Lancer","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_resourcefulness.png","sigil":"ML","description":"Your Lunar Lance now deals additional Arcane damage over 20 sec.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560662,"level":1,"description":"Your Lunar Lance now deals additional Arcane damage over 20 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29974},{"id":"coa-tree-33828","classId":"starcaller","dbcSpellId":300256,"name":"Moonwalk","unlockLevel":1,"icon":"/assets/ui/spells/nhi_manafeet_border.png","sigil":"MO","description":"Increases your movement speed by 20% at night.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":301328,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300256,"level":1,"description":"Increases your movement speed by 20% at night.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":301328,"durationMs":-1}]}],"talentEntryId":33828},{"id":"coa-tree-30369","classId":"starcaller","dbcSpellId":804739,"name":"Moonwell","unlockLevel":1,"icon":"/assets/ui/spells/ability_shawaterelemental_swirl.png","sigil":"MO","description":"Creates a zone blessed by moonwell waters for 15 seconds at the target location. All allied players standing within the well receive 25% more healing, and their mana regeneration is increased by 100%.","target":"hostile","range":{"min":0,"max":30},"radius":10,"castMode":"cast","castTimeMs":2000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":3,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":27,"auraType":110,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804739,"level":1,"description":"Creates a zone blessed by moonwell waters for 15 seconds at the target location. All allied players standing within the well receive 25% more healing, and their mana regeneration is increased by 100%.","castMode":"cast","castTimeMs":2000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":3,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":27,"auraType":110,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":30369},{"id":"coa-tree-6660","classId":"starcaller","dbcSpellId":704774,"name":"Mu'sha's Resilience","unlockLevel":1,"icon":"/assets/ui/spells/inv_fabric_moonrag_01.png","sigil":"MS","description":"Reduces Arcane damage taken by -15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":64,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704774,"level":1,"description":"Reduces Arcane damage taken by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":64,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":6660},{"id":"coa-tree-33829","classId":"starcaller","dbcSpellId":680789,"name":"Nightborne Armaments","unlockLevel":1,"icon":"/assets/ui/spells/inv_helm_armor_nightborne_d_01.png","sigil":"NA","description":"While below 35% health, your damage taken is reduced by -10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":680790,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680789,"level":1,"description":"While below 35% health, your damage taken is reduced by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":680790,"durationMs":-1}]}],"talentEntryId":33829},{"id":"coa-tree-33834","classId":"starcaller","dbcSpellId":504694,"name":"Pouch of Stardust","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_trinket_mage.png","sigil":"PO","description":"Increases the critical strike chance and critical damage of consumed Scattered Stars by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":37,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504694,"level":1,"description":"Increases the critical strike chance and critical damage of consumed Scattered Stars by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":37,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33834},{"id":"coa-tree-29648","classId":"starcaller","dbcSpellId":570231,"name":"Reverse Magic","unlockLevel":1,"icon":"/assets/ui/spells/inv_10_dungeonjewelry_dragon_trinket_1arcanemagical_blue.png","sigil":"RM","description":"Reverse the next spell cast on you within 3 seconds, reflecting it back to its caster. Reversing a spell in this way drains 600 + 20% SP of the attacker's mana.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806233,"durationMs":3000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":570231,"level":1,"description":"Reverse the next spell cast on you within 3 seconds, reflecting it back to its caster. Reversing a spell in this way drains 600 + 20% SP of the attacker's mana.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"utility","effectType":6,"auraType":28,"miscValue":0,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806233,"durationMs":3000}]}],"talentEntryId":29648},{"id":"coa-tree-29489","classId":"starcaller","dbcSpellId":300252,"name":"Second Moon","unlockLevel":1,"icon":"/assets/ui/spells/nhi_magicmoonbuff_border.png","sigil":"SM","description":"Every 10th Scattered Star consumed now launches a comet at an enemy dealing 304 + 30% arcane SP Arcane damage to 5 enemies within 5 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520406,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300252,"level":1,"description":"Every 10th Scattered Star consumed now launches a comet at an enemy dealing 304 + 30% arcane SP Arcane damage to 5 enemies within 5 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520406,"durationMs":-1}]}],"talentEntryId":29489},{"id":"coa-tree-7409","classId":"starcaller","dbcSpellId":800505,"name":"Shooting Star","unlockLevel":1,"icon":"/assets/ui/spells/artifactability_balancedruid_moonandstars.png","sigil":"SS","description":"Shooting StarRank 112% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 sec. While active, you cannot be slowed and cannot stop moving.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804996,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":805006,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800505,"level":1,"description":"Shooting StarRank 112% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804996,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":805006,"durationMs":4000}]}],"talentEntryId":7409},{"id":"coa-tree-33810","classId":"starcaller","dbcSpellId":500608,"name":"Star-Charged","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_arcane04.png","sigil":"SC","description":"Reduces the cooldown of your Aspects by -5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":500608,"level":1,"description":"Reduces the cooldown of your Aspects by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33810},{"id":"coa-26-starbarian-91-704778","classId":"starcaller","dbcSpellId":704778,"name":"Starbarian","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_pandaraid_d_01.png","sigil":"ST","description":"StarbarianRank 1Increases your haste by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704778,"level":1,"description":"StarbarianRank 1Increases your haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706229,"level":1,"description":"StarbarianRank 2Increases your haste by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30769","classId":"starcaller","dbcSpellId":704778,"name":"Starbarian","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_pandaraid_d_01.png","sigil":"ST","description":"StarbarianRank 1Increases your haste by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704778,"level":1,"description":"StarbarianRank 1Increases your haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706229,"level":1,"description":"StarbarianRank 2Increases your haste by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30769},{"id":"coa-26-starcrash-93-704767","classId":"starcaller","dbcSpellId":704767,"name":"Starcrash","unlockLevel":1,"icon":"/assets/ui/spells/spell_mage_supernova.png","sigil":"ST","description":"StarcrashRank 2Increases the damage caused when you consume Scattered Stars by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704767,"level":1,"description":"StarcrashRank 2Increases the damage caused when you consume Scattered Stars by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29649","classId":"starcaller","dbcSpellId":801135,"name":"Starshatter","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_mage_firestarter_nightborne.png","sigil":"ST","description":"Call down the power of the stars, sending forth Elune’s astral light in a line outward from you, stunning enemies struck for 5 seconds and applying a Scattered Star.","target":"self","range":{"min":0,"max":0},"radius":25,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1250,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":707724,"durationMs":1000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801135,"level":1,"description":"Call down the power of the stars, sending forth Elune’s astral light in a line outward from you, stunning enemies struck for 5 seconds and applying a Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1250,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":707724,"durationMs":1000}]}],"talentEntryId":29649},{"id":"coa-26-starsunder-478-801127","classId":"starcaller","dbcSpellId":801127,"name":"Starsunder","unlockLevel":1,"icon":"/assets/ui/spells/inv_wand_1h_430nightelf_c_01.png","sigil":"ST","description":"StarsunderRank 1InstantRequires Melee Weapon Drains 20% Maximum Mana Applies 1 Scattered Star Strike an enemy for 40% Weapon Damage plus 3+*0.042+ArcP*0.3 Arcane Damage, increased further based on your maximum mana. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801127,"level":1,"description":"StarsunderRank 1InstantRequires Melee Weapon Drains 20% Maximum Mana Applies 1 Scattered Star Strike an enemy for 40% Weapon Damage plus 3+*0.042+ArcP*0.3 Arcane Damage, increased further based on your maximum mana. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-31067","classId":"starcaller","dbcSpellId":574328,"name":"Touch of Moonlight","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_moonglow.png","sigil":"TO","description":"Drains 10% Maximum Mana Quickly heal an ally with Elune's touch, scaling with maximum mana.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.41025641025641024,"basePoints":31,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":574328,"level":1,"description":"Drains 10% Maximum Mana Quickly heal an ally with Elune's touch, scaling with maximum mana.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.41025641025641024,"basePoints":31,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":31067},{"id":"coa-tree-33830","classId":"starcaller","dbcSpellId":704775,"name":"Twinkle Toes","unlockLevel":1,"icon":"/assets/ui/spells/rogue_burstofspeed.png","sigil":"TT","description":"Increases the movement speed granted by Shooting Star by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704775,"level":1,"description":"Increases the movement speed granted by Shooting Star by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33830},{"id":"coa-tree-33823","classId":"starcaller","dbcSpellId":300262,"name":"Universal Power","unlockLevel":1,"icon":"/assets/ui/spells/nhi_manacup_border.png","sigil":"UP","description":"Your Aspect of the Cosmos now stacks 1 additional time.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300262,"level":1,"description":"Your Aspect of the Cosmos now stacks 1 additional time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":31,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33823},{"id":"coa-26-vengeance-of-elune-91-801969","classId":"starcaller","dbcSpellId":801969,"name":"Vengeance of Elune","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_2h_ardenweald_d_01.png","sigil":"VO","description":"Vengeance of EluneRank 13% of base mana Instant5 sec cooldownCauses 19 to 29 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","target":"hostile","range":{"min":0,"max":5},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":1,"basePoints":19,"dieSides":11,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":1,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801969,"level":1,"description":"Vengeance of EluneRank 13% of base mana Instant5 sec cooldownCauses 19 to 29 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":1,"basePoints":19,"dieSides":11,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":1,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502304,"level":7,"description":"Vengeance of EluneRank 23% of base mana Instant5 sec cooldownCauses 31 to 45 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":0.8256363579721162,"basePoints":31,"dieSides":15,"pointsPerLevel":2.3559999465942383,"bonusPowerCoefficient":0,"sourceLevel":7,"maxScalingLevel":12},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502305,"level":13,"description":"Vengeance of EluneRank 33% of base mana Instant5 sec cooldownCauses 47 to 66 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":1.137523801553817,"basePoints":47,"dieSides":20,"pointsPerLevel":3.003999948501587,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502306,"level":19,"description":"Vengeance of EluneRank 43% of base mana Instant5 sec cooldownCauses 70 to 95 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":1.4890980299781351,"basePoints":70,"dieSides":26,"pointsPerLevel":3.6519999504089355,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":25},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502307,"level":26,"description":"Vengeance of EluneRank 53% of base mana Instant5 sec cooldownCauses 106 to 140 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":1.9317723561108597,"basePoints":106,"dieSides":35,"pointsPerLevel":4.4079999923706055,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":31},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502308,"level":32,"description":"Vengeance of EluneRank 63% of base mana Instant5 sec cooldownCauses 149 to 193 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":2.360227003165171,"basePoints":149,"dieSides":45,"pointsPerLevel":5.056000232696533,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502309,"level":38,"description":"Vengeance of EluneRank 73% of base mana Instant5 sec cooldownCauses 206 to 261 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":2.831773583993972,"basePoints":206,"dieSides":56,"pointsPerLevel":5.703999996185303,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502310,"level":44,"description":"Vengeance of EluneRank 83% of base mana Instant5 sec cooldownCauses 280 to 348 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":3.3530396068163513,"basePoints":280,"dieSides":69,"pointsPerLevel":6.3520002365112305,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":49},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502311,"level":50,"description":"Vengeance of EluneRank 93% of base mana Instant5 sec cooldownCauses 376 to 458 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":3.933333333333333,"basePoints":376,"dieSides":83,"pointsPerLevel":7,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":55},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502312,"level":56,"description":"Vengeance of EluneRank 103% of base mana Instant5 sec cooldownCauses 499 to 597 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":4,"basePoints":499,"dieSides":99,"pointsPerLevel":7.6479997634887695,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":502313,"level":63,"description":"Vengeance of EluneRank 113% of base mana Instant5 sec cooldownCauses 683 to 801 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":4,"basePoints":683,"dieSides":119,"pointsPerLevel":8.404000282287598,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":68},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":502314,"level":69,"description":"Vengeance of EluneRank 123% of base mana Instant5 sec cooldownCauses 892 to 1029 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":4,"basePoints":892,"dieSides":138,"pointsPerLevel":9.052000045776367,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":13,"spellId":502315,"level":75,"description":"Vengeance of EluneRank 133% of base mana Instant5 sec cooldownCauses 1158 to 1315 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3},"effects":[{"kind":"damage","coefficient":4,"basePoints":1158,"dieSides":158,"pointsPerLevel":9.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":75,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30873","classId":"starcaller","dbcSpellId":804652,"name":"Vial of Moonwell Water","unlockLevel":1,"icon":"/assets/ui/spells/inv_potionc_3.png","sigil":"VO","description":"Drink from your enchanted moonwell vial, instantly removing all crowd control effects and making you immune to them for 3 seconds. Usable while stunned, feared, or polymorphed.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":1,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":2,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":3000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804652,"level":1,"description":"Drink from your enchanted moonwell vial, instantly removing all crowd control effects and making you immune to them for 3 seconds. Usable while stunned, feared, or polymorphed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":6,"auraType":77,"miscValue":1,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":2,"triggerSpellId":0,"durationMs":3000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":3000}]}],"talentEntryId":30873},{"id":"coa-tree-9950","classId":"starcaller","dbcSpellId":680725,"name":"Warden Training","unlockLevel":1,"icon":"/assets/ui/spells/inv_pet_wardenowl.png","sigil":"WT","description":"Level 10 Passive Critically striking with Starsunder now applies an additional stack of Scattered Stars.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804378,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680725,"level":1,"description":"Level 10 Passive Critically striking with Starsunder now applies an additional stack of Scattered Stars.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804378,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9950},{"id":"coa-tree-30656","classId":"starcaller","dbcSpellId":805508,"name":"Warden's Blade","unlockLevel":1,"icon":"/assets/ui/spells/_maievblade_arcane.png","sigil":"WS","description":"Attack with celestial fervor, dealing 150% Weapon Damage and triggering a unique effect based on your active Aspect.Cosmic Renewal (Aspect of the Moonwell)Regenerates 30% of your maximum mana.Warden's Strike (Aspect of the Warden)Reduces healing done to the enemy by -40% for 8 seconds.Star Sear (Aspect of the Stars)Increases the damage of your Lunar Lance by 25%.Cosmic Trap (Aspect of the Cosmos)Throw a magic net trap at an enemy, rooting them for 40 seconds (8 sec vs players). Damage dealt may end the effect.Siphoning Arrow (Aspect of the Huntress)Drains 10% maximum mana from the target.","target":"hostile","range":{"min":0,"max":10},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805508,"level":1,"description":"Attack with celestial fervor, dealing 150% Weapon Damage and triggering a unique effect based on your active Aspect.Cosmic Renewal (Aspect of the Moonwell)Regenerates 30% of your maximum mana.Warden's Strike (Aspect of the Warden)Reduces healing done to the enemy by -40% for 8 seconds.Star Sear (Aspect of the Stars)Increases the damage of your Lunar Lance by 25%.Cosmic Trap (Aspect of the Cosmos)Throw a magic net trap at an enemy, rooting them for 40 seconds (8 sec vs players). Damage dealt may end the effect.Siphoning Arrow (Aspect of the Huntress)Drains 10% maximum mana from the target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30656},{"id":"coa-tree-29647","classId":"starcaller","dbcSpellId":801976,"name":"Way of the Goddess","unlockLevel":1,"icon":"/assets/ui/spells/_diablo3_arrowrain_mage.png","sigil":"WO","description":"Reduces the duration of harmful magic effects on you by -25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801976,"level":1,"description":"Reduces the duration of harmful magic effects on you by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29647},{"id":"coa-26-aspect-of-the-stars-478-800510","classId":"starcaller","dbcSpellId":800510,"name":"Aspect of the Stars","unlockLevel":4,"icon":"/assets/ui/spells/inv_enchant_essenceeternallarge.png","sigil":"AO","description":"Aspect of the StarsRank 15% of base mana Instant cast10 sec cooldownMelee and ranged auto attacks now have a 25% chance to apply Scattered Stars and deal 5+0+0.1*ArcP+0.07*AP Arcane damage. Shares a cooldown with other Aspects. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":800507,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804378,"durationMs":-1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800510,"level":4,"description":"Aspect of the StarsRank 15% of base mana Instant cast10 sec cooldownMelee and ranged auto attacks now have a 25% chance to apply Scattered Stars and deal 5+0+0.1*ArcP+0.07*AP Arcane damage. Shares a cooldown with other Aspects. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":800507,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804378,"durationMs":-1}]}]},{"id":"starcaller-celestial-strike","classId":"starcaller","dbcSpellId":800496,"name":"Celestial Strike","unlockLevel":4,"icon":"/assets/ui/spells/inv_sword_1h_pvpdraenors2_d_02.png","sigil":"CS","description":"Celestial StrikeRank 140 Energy InstantRequires Melee Weapon Strike an enemy for 65% Weapon Damage plus 9 and regenerate 10% of your maximum mana plus 20.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800496,"level":4,"description":"Celestial StrikeRank 140 Energy InstantRequires Melee Weapon Strike an enemy for 65% Weapon Damage plus 9 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502286,"level":6,"description":"Celestial StrikeRank 240 Energy InstantRequires Melee Weapon Strike an enemy for 75% Weapon Damage plus 13 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502287,"level":16,"description":"Celestial StrikeRank 340 Energy InstantRequires Melee Weapon Strike an enemy for 80% Weapon Damage plus 36 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502288,"level":24,"description":"Celestial StrikeRank 440 Energy InstantRequires Melee Weapon Strike an enemy for 85% Weapon Damage plus 52 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502289,"level":32,"description":"Celestial StrikeRank 540 Energy InstantRequires Melee Weapon Strike an enemy for 90% Weapon Damage plus 70 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502290,"level":40,"description":"Celestial StrikeRank 640 Energy InstantRequires Melee Weapon Strike an enemy for 95% Weapon Damage plus 91 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502291,"level":50,"description":"Celestial StrikeRank 740 Energy InstantRequires Melee Weapon Strike an enemy for 100% Weapon Damage plus 118 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502292,"level":60,"description":"Celestial StrikeRank 840 Energy InstantRequires Melee Weapon Strike an enemy for 105% Weapon Damage plus 146 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502293,"level":68,"description":"Celestial StrikeRank 940 Energy InstantRequires Melee Weapon Strike an enemy for 110% Weapon Damage plus 177 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502294,"level":76,"description":"Celestial StrikeRank 1040 Energy InstantRequires Melee Weapon Strike an enemy for 115% Weapon Damage plus 215 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"starcaller-lunar-lance","classId":"starcaller","dbcSpellId":502333,"name":"Lunar Lance","unlockLevel":8,"icon":"/assets/ui/spells/spell_priest_divinestar.png","sigil":"LL","description":"Lunar LanceRank 2InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 17+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.42028985507246375,"basePoints":17,"dieSides":9,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"dot","coefficient":0.31768115879832837,"basePoints":20,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16,"ticks":1,"intervalMs":3000,"tag":"spell-502333"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502333,"level":8,"description":"Lunar LanceRank 2InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 17+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.42028985507246375,"basePoints":17,"dieSides":9,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"dot","coefficient":0.31768115879832837,"basePoints":20,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16,"ticks":1,"intervalMs":3000,"tag":"spell-502333"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}]},{"rank":3,"spellId":502334,"level":18,"description":"Lunar LanceRank 3InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 35+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.6060606060606061,"basePoints":35,"dieSides":15,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"dot","coefficient":0.4375757566004088,"basePoints":39,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24,"ticks":1,"intervalMs":3000,"tag":"spell-502334"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}]},{"rank":4,"spellId":502335,"level":26,"description":"Lunar LanceRank 4InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 88+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.016260162601626,"basePoints":88,"dieSides":23,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"dot","coefficient":0.4897560964270336,"basePoints":54,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32,"ticks":1,"intervalMs":3000,"tag":"spell-502335"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}]},{"rank":5,"spellId":502336,"level":34,"description":"Lunar LanceRank 5InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 156+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.4047619047619047,"basePoints":156,"dieSides":34,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"dot","coefficient":0.5248979579429237,"basePoints":69,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":1,"intervalMs":3000,"tag":"spell-502336"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}]},{"rank":6,"spellId":502337,"level":42,"description":"Lunar LanceRank 6InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 255+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.7953216374269005,"basePoints":255,"dieSides":21,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":50},{"kind":"dot","coefficient":0.5501754372789148,"basePoints":84,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":50,"ticks":1,"intervalMs":3000,"tag":"spell-502337"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}]},{"rank":7,"spellId":502338,"level":52,"description":"Lunar LanceRank 7InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 355+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.0970149253731343,"basePoints":355,"dieSides":30,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"dot","coefficient":0.57452736179627,"basePoints":103,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58,"ticks":1,"intervalMs":3000,"tag":"spell-502338"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}]},{"rank":8,"spellId":502339,"level":60,"description":"Lunar LanceRank 8InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 438+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.3044444444444445,"basePoints":438,"dieSides":42,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"dot","coefficient":0.588444443013933,"basePoints":118,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66,"ticks":1,"intervalMs":3000,"tag":"spell-502339"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}]},{"rank":9,"spellId":502340,"level":68,"description":"Lunar LanceRank 9InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 538+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.5562248995983934,"basePoints":538,"dieSides":62,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76},{"kind":"dot","coefficient":0.5996787133944561,"basePoints":133,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76,"ticks":1,"intervalMs":3000,"tag":"spell-502340"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572315,"durationMs":0}]}]},{"id":"starcaller-moonwell-splash","classId":"starcaller","dbcSpellId":800370,"name":"Moonwell Splash","unlockLevel":8,"icon":"/assets/ui/spells/spell_frost_manarecharge.png","sigil":"MS","description":"Moonwell SplashRank 125% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 79+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":0.4309999942779541,"basePoints":79,"dieSides":8,"pointsPerLevel":4.206669807434082,"bonusPowerCoefficient":0.4309999942779541,"sourceLevel":8,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800370,"level":8,"description":"Moonwell SplashRank 125% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 79+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":0.4309999942779541,"basePoints":79,"dieSides":8,"pointsPerLevel":4.206669807434082,"bonusPowerCoefficient":0.4309999942779541,"sourceLevel":8,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503019,"level":14,"description":"Moonwell SplashRank 225% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 121+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":2.3474645833859498,"basePoints":121,"dieSides":10,"pointsPerLevel":5.62352991104126,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503020,"level":20,"description":"Moonwell SplashRank 325% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 189+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":3.351771418253581,"basePoints":189,"dieSides":12,"pointsPerLevel":7.871799945831299,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503021,"level":26,"description":"Moonwell SplashRank 425% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 264+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":3.3446648527936236,"basePoints":264,"dieSides":16,"pointsPerLevel":5.380529880523682,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503022,"level":32,"description":"Moonwell SplashRank 525% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 331+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":3.9163120350939162,"basePoints":331,"dieSides":21,"pointsPerLevel":6.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503023,"level":38,"description":"Moonwell SplashRank 625% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 408+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":4,"basePoints":408,"dieSides":26,"pointsPerLevel":8.140000343322754,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503024,"level":44,"description":"Moonwell SplashRank 725% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 534+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":4,"basePoints":534,"dieSides":46,"pointsPerLevel":10.65999984741211,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503025,"level":50,"description":"Moonwell SplashRank 825% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 639+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":4,"basePoints":639,"dieSides":60,"pointsPerLevel":12.760000228881836,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":503026,"level":56,"description":"Moonwell SplashRank 925% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 767+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":4,"basePoints":767,"dieSides":72,"pointsPerLevel":30.639999389648438,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":503027,"level":60,"description":"Moonwell SplashRank 1025% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 2167+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":4,"basePoints":2167,"dieSides":86,"pointsPerLevel":12.26669979095459,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":503028,"level":68,"description":"Moonwell SplashRank 1125% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 2392+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":4,"basePoints":2392,"dieSides":104,"pointsPerLevel":14.720000267028809,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":503029,"level":76,"description":"Moonwell SplashRank 1225% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 1708+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":4,"basePoints":1708,"dieSides":124,"pointsPerLevel":29.739999771118164,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-26-celestial-awakening-478-801795","classId":"starcaller","dbcSpellId":801795,"name":"Celestial Awakening","unlockLevel":10,"icon":"/assets/ui/spells/ability_druid_twilightswrath.png","sigil":"CA","description":"Celestial AwakeningRank 160% of base mana 8 sec castBrings a dead ally back to life with 70 Health and 135 Mana. The target gains 200% increased Mana regeneration for 10 sec. Cannot be cast when in combat.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":110,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801795,"level":10,"description":"Celestial AwakeningRank 160% of base mana 8 sec castBrings a dead ally back to life with 70 Health and 135 Mana. The target gains 200% increased Mana regeneration for 10 sec. Cannot be cast when in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":110,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-26-shooting-star-478-800505","classId":"starcaller","dbcSpellId":800505,"name":"Shooting Star","unlockLevel":10,"icon":"/assets/ui/spells/artifactability_balancedruid_moonandstars.png","sigil":"SS","description":"Shooting StarRank 112% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 sec. While active, you cannot be slowed and cannot stop moving.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804996,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":805006,"durationMs":4000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800505,"level":10,"description":"Shooting StarRank 112% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804996,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":805006,"durationMs":4000}]},{"rank":5,"spellId":502295,"level":42,"description":"Shooting StarRank 512% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 80% for 5 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804996,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":805006,"durationMs":5000}]},{"rank":6,"spellId":502296,"level":52,"description":"Shooting StarRank 612% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 80% for 6 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804996,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":805006,"durationMs":6000}]},{"rank":7,"spellId":502297,"level":58,"description":"Shooting StarRank 712% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 90% for 6 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804996,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":231,"miscValue":0,"triggerSpellId":805006,"durationMs":6000}]}]},{"id":"coa-26-prayer-of-elune-92-801987","classId":"starcaller","dbcSpellId":801987,"name":"Prayer of Elune","unlockLevel":13,"icon":"/assets/ui/spells/spell_animaardenweald_orb.png","sigil":"PO","description":"Prayer of EluneRank 133% of base mana 1.5 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 77+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","target":"hostile","range":{"min":0,"max":0},"radius":40,"castMode":"cast","castTimeMs":1500,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":0.6259999871253967,"basePoints":77,"dieSides":8,"pointsPerLevel":1.215999960899353,"bonusPowerCoefficient":0.6259999871253967,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801987,"level":13,"description":"Prayer of EluneRank 133% of base mana 1.5 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 77+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":1500,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":0.6259999871253967,"basePoints":77,"dieSides":8,"pointsPerLevel":1.215999960899353,"bonusPowerCoefficient":0.6259999871253967,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502348,"level":20,"description":"Prayer of EluneRank 233% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 115+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":1.6487219038463774,"basePoints":115,"dieSides":12,"pointsPerLevel":2.6307899951934814,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502349,"level":30,"description":"Prayer of EluneRank 333% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 173+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":1.9568955739339193,"basePoints":173,"dieSides":18,"pointsPerLevel":2.7560300827026367,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":38},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502350,"level":40,"description":"Prayer of EluneRank 433% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 261+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":2.5962351712313567,"basePoints":261,"dieSides":28,"pointsPerLevel":3.8469700813293457,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502351,"level":50,"description":"Prayer of EluneRank 533% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 374+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":3.207771741426908,"basePoints":374,"dieSides":38,"pointsPerLevel":4.660309791564941,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":58},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":575334,"level":60,"description":"Prayer of EluneRank 633% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 498+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"heal","coefficient":3.618376905653212,"basePoints":498,"dieSides":47,"pointsPerLevel":4.885580062866211,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":70},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-26-deluge-92-800381","classId":"starcaller","dbcSpellId":800381,"name":"Deluge","unlockLevel":15,"icon":"/assets/ui/spells/nhi_waterstrick_border.png","sigil":"DE","description":"DelugeRank 111% of base mana 1.5 sec castHeals a friendly target for 60+(PL+0.48-1*0.48).","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":0.3310000002384186,"basePoints":60,"dieSides":6,"pointsPerLevel":1.573330044746399,"bonusPowerCoefficient":0.3310000002384186,"sourceLevel":15,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800381,"level":15,"description":"DelugeRank 111% of base mana 1.5 sec castHeals a friendly target for 60+(PL+0.48-1*0.48).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":0.3310000002384186,"basePoints":60,"dieSides":6,"pointsPerLevel":1.573330044746399,"bonusPowerCoefficient":0.3310000002384186,"sourceLevel":15,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503067,"level":20,"description":"DelugeRank 211% of base mana 1.5 sec castHeals a friendly target for 81+(PL*0.7-8*0.7).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":1.1825390679495675,"basePoints":81,"dieSides":2,"pointsPerLevel":2.1333301067352295,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":23},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503068,"level":25,"description":"DelugeRank 311% of base mana 1.5 sec castHeals a friendly target for 103+(PL*1-16*1).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":1.433333339293798,"basePoints":103,"dieSides":3,"pointsPerLevel":2.7200000286102295,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":28},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503069,"level":30,"description":"DelugeRank 411% of base mana 1.5 sec castHeals a friendly target for 123+(PL*1.3-23*1.3).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":1.6451844427320692,"basePoints":123,"dieSides":4,"pointsPerLevel":3.2533299922943115,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":33},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503070,"level":35,"description":"DelugeRank 511% of base mana 1.5 sec castHeals a friendly target for 143+(PL*1.4-30*1.4).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":1.8502229928970337,"basePoints":143,"dieSides":5,"pointsPerLevel":3.786669969558716,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":38},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503071,"level":40,"description":"DelugeRank 611% of base mana 1.5 sec castHeals a friendly target for 163+(PL*1.6-37*1.6).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":2.0533333749482128,"basePoints":163,"dieSides":7,"pointsPerLevel":4.320000171661377,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":43},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503072,"level":45,"description":"DelugeRank 711% of base mana 1.5 sec castHeals a friendly target for 181+(PL*1.9-45*1.9).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":2.2277778254614935,"basePoints":181,"dieSides":9,"pointsPerLevel":4.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":48},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503073,"level":50,"description":"DelugeRank 811% of base mana 1.5 sec castHeals a friendly target for 201+(PL*2.1-52*2.1).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":2.4239308088253706,"basePoints":201,"dieSides":11,"pointsPerLevel":5.333330154418945,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":503074,"level":55,"description":"DelugeRank 911% of base mana 1.5 sec castHeals a friendly target for 224+(PL*2.3-59*2.3).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":2.6341278916313535,"basePoints":224,"dieSides":14,"pointsPerLevel":5.86667013168335,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":503075,"level":60,"description":"DelugeRank 1011% of base mana 1.5 sec castHeals a friendly target for 255+(PL*2.6-66*2.6).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":2.8755555809868705,"basePoints":255,"dieSides":17,"pointsPerLevel":6.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":63},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":503076,"level":65,"description":"DelugeRank 1111% of base mana 1.5 sec castHeals a friendly target for 476+(PL*2.8-74*2.8).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"heal","coefficient":3.1516666253407797,"basePoints":476,"dieSides":21,"pointsPerLevel":4.159999847412109,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":70},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-26-aegis-of-neptulon-92-800375","classId":"starcaller","dbcSpellId":800375,"name":"Aegis of Neptulon","unlockLevel":17,"icon":"/assets/ui/spells/ability_shaman_fortifyingwaters.png","sigil":"AO","description":"Aegis of NeptulonRank 19% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 85+(PL*6-1*6) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"shield","coefficient":6,"basePoints":85,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":6,"sourceLevel":17,"maxScalingLevel":23,"durationMs":12000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":70452,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800375,"level":17,"description":"Aegis of NeptulonRank 19% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 85+(PL*6-1*6) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"shield","coefficient":6,"basePoints":85,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":6,"sourceLevel":17,"maxScalingLevel":23,"durationMs":12000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":70452,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":2,"spellId":503040,"level":25,"description":"Aegis of NeptulonRank 29% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 169+(PL*11-12*11) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"shield","coefficient":2.6291666944821674,"basePoints":169,"dieSides":1,"pointsPerLevel":5.860000133514404,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":31,"durationMs":12000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":70452,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":3,"spellId":503041,"level":33,"description":"Aegis of NeptulonRank 39% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 261+(PL*16-24*16) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"shield","coefficient":3.35249995191892,"basePoints":261,"dieSides":1,"pointsPerLevel":6.71999979019165,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":39,"durationMs":12000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":70452,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":4,"spellId":503042,"level":41,"description":"Aegis of NeptulonRank 49% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 398+(PL*20-35*20) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"shield","coefficient":4,"basePoints":398,"dieSides":1,"pointsPerLevel":7.175000190734863,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":47,"durationMs":12000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":70452,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":5,"spellId":503043,"level":49,"description":"Aegis of NeptulonRank 59% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 558+(PL*25-47*25) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"shield","coefficient":4,"basePoints":558,"dieSides":1,"pointsPerLevel":8.03499984741211,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":55,"durationMs":12000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":70452,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":6,"spellId":503044,"level":57,"description":"Aegis of NeptulonRank 69% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 746+(PL*30-58*30) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"shield","coefficient":4,"basePoints":746,"dieSides":1,"pointsPerLevel":9.489999771118164,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":63,"durationMs":12000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":70452,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]},{"rank":7,"spellId":503045,"level":65,"description":"Aegis of NeptulonRank 79% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 923+(PL*35-70*35) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"shield","coefficient":4,"basePoints":923,"dieSides":1,"pointsPerLevel":10.350000381469727,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":73,"durationMs":12000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":70452,"durationMs":12000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":12000}]}]},{"id":"coa-26-moonwater-blessing-92-800382","classId":"starcaller","dbcSpellId":800382,"name":"Moonwater Blessing","unlockLevel":17,"icon":"/assets/ui/spells/spell_nature_giftofthewaterspirit.png","sigil":"MB","description":"Moonwater BlessingRank 116% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 100+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":0.800000011920929,"basePoints":100,"dieSides":9,"pointsPerLevel":1.9199999570846558,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":17,"maxScalingLevel":25},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":101,"miscValue":127,"triggerSpellId":0,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800382,"level":17,"description":"Moonwater BlessingRank 116% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 100+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":0.800000011920929,"basePoints":100,"dieSides":9,"pointsPerLevel":1.9199999570846558,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":17,"maxScalingLevel":25},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":101,"miscValue":127,"triggerSpellId":0,"durationMs":12000}]},{"rank":2,"spellId":503077,"level":27,"description":"Moonwater BlessingRank 216% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 144+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":2.0502158498007153,"basePoints":144,"dieSides":14,"pointsPerLevel":3.9935998916625977,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":35},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":101,"miscValue":127,"triggerSpellId":0,"durationMs":12000}]},{"rank":3,"spellId":503078,"level":37,"description":"Moonwater BlessingRank 316% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 209+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":2.8428615820713534,"basePoints":209,"dieSides":21,"pointsPerLevel":6.067200183868408,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":45},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":101,"miscValue":127,"triggerSpellId":0,"durationMs":12000}]},{"rank":4,"spellId":503079,"level":47,"description":"Moonwater BlessingRank 416% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 302+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":3.7586968944918726,"basePoints":302,"dieSides":30,"pointsPerLevel":8.140800476074219,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":55},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":101,"miscValue":127,"triggerSpellId":0,"durationMs":12000}]},{"rank":5,"spellId":503080,"level":57,"description":"Moonwater BlessingRank 516% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 438+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":4,"basePoints":438,"dieSides":43,"pointsPerLevel":10.214400291442871,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":67},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":101,"miscValue":127,"triggerSpellId":0,"durationMs":12000}]}]},{"id":"coa-26-slipstream-92-800366","classId":"starcaller","dbcSpellId":800366,"name":"Slipstream","unlockLevel":17,"icon":"/assets/ui/spells/ability_shawaterelemental_swirl.png","sigil":"SL","description":"SlipstreamRank 18% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 4+(PL*0.35-1*0.35) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800366,"level":17,"description":"SlipstreamRank 18% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 4+(PL*0.35-1*0.35) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}]},{"rank":2,"spellId":503012,"level":25,"description":"SlipstreamRank 28% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 7+(PL*0.6-11*0.6) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}]},{"rank":3,"spellId":503013,"level":33,"description":"SlipstreamRank 38% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 79+(PL*0.8-21*0.8) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}]},{"rank":4,"spellId":503014,"level":41,"description":"SlipstreamRank 48% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 23 every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}]},{"rank":5,"spellId":503015,"level":49,"description":"SlipstreamRank 58% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 38+(PL*1.3-41*1.3) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}]},{"rank":6,"spellId":503016,"level":57,"description":"SlipstreamRank 68% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 61+(PL*1.5-51*1.5) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}]},{"rank":7,"spellId":503017,"level":65,"description":"SlipstreamRank 78% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 286+(PL*1.8-61*1.8) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}]},{"rank":8,"spellId":503018,"level":73,"description":"SlipstreamRank 88% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 411+(PL*2-71*2) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":56,"miscValue":50058,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":805688,"durationMs":5000}]}]},{"id":"coa-26-starcall-93-800497","classId":"starcaller","dbcSpellId":800497,"name":"Starcall","unlockLevel":17,"icon":"/assets/ui/spells/inv_archaeology_70_starlightbeacon.png","sigil":"ST","description":"StarcallRank 111% of base mana 1.5 sec cast12 sec cooldownBlast the target enemy and all enemies near them with lunar fire that deals 70+0+ArcP*0.33 Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by 1.5 sec. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","target":"hostile","range":{"min":0,"max":45},"radius":10,"castMode":"cast","castTimeMs":1500,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":70,"dieSides":15,"pointsPerLevel":2.3142900466918945,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800497,"level":17,"description":"StarcallRank 111% of base mana 1.5 sec cast12 sec cooldownBlast the target enemy and all enemies near them with lunar fire that deals 70+0+ArcP*0.33 Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by 1.5 sec. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":70,"dieSides":15,"pointsPerLevel":2.3142900466918945,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502316,"level":26,"description":"StarcallRank 211% of base mana 2 sec cast12 sec cooldownBlast the target enemy and all enemies near them with lunar fire that deals 127+0+ArcP*0.33 Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by 1.5 sec. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.5448502563848727,"basePoints":127,"dieSides":20,"pointsPerLevel":2.0583300590515137,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502317,"level":34,"description":"StarcallRank 311% of base mana 2 sec cast12 sec cooldownBlast the target enemy and all enemies near them with lunar fire that deals 157+0+ArcP*0.33 Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by 1.5 sec. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.5917225986921868,"basePoints":157,"dieSides":15,"pointsPerLevel":2.0583300590515137,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":302568,"level":44,"description":"Blast the target enemy and all enemies near them with lunar fire that deals ${$m1+0+$spa*0.33} Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by $/1000;504024S1 sec. @s:804378:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.8457627000108277,"basePoints":205,"dieSides":20,"pointsPerLevel":2.549999952316284,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":52},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":302569,"level":54,"description":"Blast the target enemy and all enemies near them with lunar fire that deals ${$m1+0+$spa*0.33} Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by $/1000;504024S1 sec. @s:804378:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":2.245652198791504,"basePoints":263,"dieSides":51,"pointsPerLevel":3.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-26-tide-lash-92-800380","classId":"starcaller","dbcSpellId":800380,"name":"Tide Lash","unlockLevel":17,"icon":"/assets/ui/spells/spell_frost_frostbolt.png","sigil":"TL","description":"Tide LashRank 111% of base mana Instant cast15 sec cooldownYou slash the enemy with a swift stream of water, inflicting 68+(PL*0.8-17*0.8) Frost damage plus an additional 7+(PL*0.5-17*0.5) every 1.5 sec for 12 sec. Focus: Frost damage taken increased by 0% for 8 sec.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.0843749915560086,"basePoints":68,"dieSides":12,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":27},{"kind":"dot","coefficient":0.16312499810010195,"basePoints":7,"dieSides":2,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":27,"ticks":8,"intervalMs":1500,"tag":"spell-800380"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800396,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800380,"level":17,"description":"Tide LashRank 111% of base mana Instant cast15 sec cooldownYou slash the enemy with a swift stream of water, inflicting 68+(PL*0.8-17*0.8) Frost damage plus an additional 7+(PL*0.5-17*0.5) every 1.5 sec for 12 sec. Focus: Frost damage taken increased by 0% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.0843749915560086,"basePoints":68,"dieSides":12,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":27},{"kind":"dot","coefficient":0.16312499810010195,"basePoints":7,"dieSides":2,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":27,"ticks":8,"intervalMs":1500,"tag":"spell-800380"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800396,"durationMs":12000}]},{"rank":2,"spellId":503065,"level":28,"description":"Tide LashRank 211% of base mana Instant cast15 sec cooldownYou slash the enemy with a swift stream of water, inflicting 109+(PL*0.8-17*0.8) Frost damage plus an additional 21+(PL*0.5-17*0.5) every 1.5 sec for 12 sec. Focus: Frost damage taken increased by 0% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.3700465194938718,"basePoints":109,"dieSides":7,"pointsPerLevel":2.312000036239624,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36},{"kind":"dot","coefficient":0.4638883716376253,"basePoints":21,"dieSides":1,"pointsPerLevel":1.3871999979019165,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":8,"intervalMs":1500,"tag":"spell-503065"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800396,"durationMs":12000}]},{"rank":3,"spellId":503066,"level":38,"description":"Tide LashRank 311% of base mana Instant cast15 sec cooldownYou slash the enemy with a swift stream of water, inflicting 156+(PL*0.8-17*0.8) Frost damage plus an additional 33+(PL*0.5-17*0.5) every 1.5 sec for 12 sec. Focus: Frost damage taken increased by 0% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.9038239185165309,"basePoints":156,"dieSides":12,"pointsPerLevel":3.7160000801086426,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"dot","coefficient":0.62091068051896,"basePoints":33,"dieSides":1,"pointsPerLevel":1.729599952697754,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46,"ticks":8,"intervalMs":1500,"tag":"spell-503066"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800396,"durationMs":12000}]}]},{"id":"coa-26-pond-92-800373","classId":"starcaller","dbcSpellId":800373,"name":"Pond","unlockLevel":31,"icon":"/assets/ui/spells/spell_shaman_tidalwaves.png","sigil":"PO","description":"PondRank 19% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 11+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","target":"hostile","range":{"min":0,"max":40},"radius":12,"castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":0.10000000149011612,"basePoints":11,"dieSides":2,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":31,"maxScalingLevel":35,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800373,"level":31,"description":"PondRank 19% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 11+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":0.10000000149011612,"basePoints":11,"dieSides":2,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":31,"maxScalingLevel":35,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":2,"spellId":503030,"level":37,"description":"PondRank 29% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 19+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":0.4775641025641026,"basePoints":19,"dieSides":1,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":41,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":3,"spellId":503031,"level":43,"description":"PondRank 39% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 28+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":0.5810344945425274,"basePoints":28,"dieSides":1,"pointsPerLevel":1.7000000476837158,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":47,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":4,"spellId":503032,"level":49,"description":"PondRank 49% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 36+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":0.6723958272486925,"basePoints":36,"dieSides":1,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":53,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":5,"spellId":503033,"level":55,"description":"PondRank 59% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 44+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":0.7595237845466251,"basePoints":44,"dieSides":1,"pointsPerLevel":2.0999999046325684,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":6,"spellId":503034,"level":60,"description":"PondRank 69% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 53+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":0.8488888761732314,"basePoints":53,"dieSides":1,"pointsPerLevel":2.299999952316284,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":63,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":7,"spellId":503035,"level":65,"description":"PondRank 79% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 64+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":0.94375,"basePoints":64,"dieSides":1,"pointsPerLevel":2.5,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":68,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":8,"spellId":503036,"level":70,"description":"PondRank 89% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 79+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"hot","coefficient":1.0509804052465102,"basePoints":79,"dieSides":1,"pointsPerLevel":2.700000047683716,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":75,"ticks":4,"intervalMs":2000},{"kind":"utility","effectType":27,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":27,"auraType":283,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}]},{"id":"coa-26-silvercurrent-92-800376","classId":"starcaller","dbcSpellId":800376,"name":"Silvercurrent","unlockLevel":31,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SI","description":"SilvercurrentRank 18% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 37 Spellfrost Damage and up to 8 enemies around them take 18 Spellfrost Damage, increased further by your maximum mana.","target":"hostile","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"dot","coefficient":0.699999988079071,"basePoints":37,"dieSides":1,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0.699999988079071,"sourceLevel":31,"maxScalingLevel":33,"ticks":1,"intervalMs":5999,"tag":"spell-800376"},{"kind":"dot","coefficient":0.32137681694998255,"basePoints":18,"dieSides":1,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":33,"ticks":1,"intervalMs":5999,"tag":"spell-800376"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800376,"level":31,"description":"SilvercurrentRank 18% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 37 Spellfrost Damage and up to 8 enemies around them take 18 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"dot","coefficient":0.699999988079071,"basePoints":37,"dieSides":1,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0.699999988079071,"sourceLevel":31,"maxScalingLevel":33,"ticks":1,"intervalMs":5999,"tag":"spell-800376"},{"kind":"dot","coefficient":0.32137681694998255,"basePoints":18,"dieSides":1,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":33,"ticks":1,"intervalMs":5999,"tag":"spell-800376"}]},{"rank":2,"spellId":503046,"level":35,"description":"SilvercurrentRank 28% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 54 Spellfrost Damage and up to 8 enemies around them take 28 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"hot","coefficient":1.0439583555857341,"basePoints":54,"dieSides":1,"pointsPerLevel":2.9312500953674316,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":38,"ticks":1,"intervalMs":5999},{"kind":"dot","coefficient":0.39666666110356646,"basePoints":28,"dieSides":1,"pointsPerLevel":0.8999999761581421,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":38,"ticks":1,"intervalMs":5999,"tag":"spell-503046"}]},{"rank":3,"spellId":503047,"level":40,"description":"SilvercurrentRank 38% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 86 Spellfrost Damage and up to 8 enemies around them take 45 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"hot","coefficient":1.489544238466205,"basePoints":86,"dieSides":1,"pointsPerLevel":3.9943699836730957,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":43,"ticks":1,"intervalMs":5999},{"kind":"dot","coefficient":0.6282836451674952,"basePoints":45,"dieSides":1,"pointsPerLevel":1.466670036315918,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":43,"ticks":1,"intervalMs":5999,"tag":"spell-503047"}]},{"rank":4,"spellId":503048,"level":45,"description":"SilvercurrentRank 48% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 129 Spellfrost Damage and up to 8 enemies around them take 69 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"hot","coefficient":1.981041638056437,"basePoints":129,"dieSides":1,"pointsPerLevel":5.057499885559082,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":48,"ticks":1,"intervalMs":5999},{"kind":"dot","coefficient":0.9500008304913838,"basePoints":69,"dieSides":1,"pointsPerLevel":2.266669988632202,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":48,"ticks":1,"intervalMs":5999,"tag":"spell-503048"}]},{"rank":5,"spellId":503049,"level":50,"description":"SilvercurrentRank 58% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 166 Spellfrost Damage and up to 8 enemies around them take 88 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"hot","coefficient":2.4206743044730943,"basePoints":166,"dieSides":1,"pointsPerLevel":6.120629787445068,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":53,"ticks":1,"intervalMs":5999},{"kind":"dot","coefficient":1.1948718193249825,"basePoints":88,"dieSides":1,"pointsPerLevel":2.9000000953674316,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":53,"ticks":1,"intervalMs":5999,"tag":"spell-503049"}]},{"rank":6,"spellId":503050,"level":55,"description":"SilvercurrentRank 68% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 199 Spellfrost Damage and up to 8 enemies around them take 107 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"hot","coefficient":2.798141179765974,"basePoints":199,"dieSides":1,"pointsPerLevel":7.065629959106445,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58,"ticks":1,"intervalMs":5999},{"kind":"dot","coefficient":1.3912706863312494,"basePoints":107,"dieSides":1,"pointsPerLevel":3.3666698932647705,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58,"ticks":1,"intervalMs":5999,"tag":"spell-503050"}]},{"rank":7,"spellId":503051,"level":60,"description":"SilvercurrentRank 78% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 246 Spellfrost Damage and up to 8 enemies around them take 144 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"hot","coefficient":3.260999959309896,"basePoints":246,"dieSides":1,"pointsPerLevel":8.12874984741211,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":63,"ticks":1,"intervalMs":5999},{"kind":"dot","coefficient":1.911112060546875,"basePoints":144,"dieSides":1,"pointsPerLevel":4.766670227050781,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":63,"ticks":1,"intervalMs":5999,"tag":"spell-503051"}]},{"rank":8,"spellId":503052,"level":65,"description":"SilvercurrentRank 88% of base mana Instant cast8 sec cooldownYou douse a friendly target with enchanted water. After 6 sec, they will be healed for 0+(PL*9.2-63*9.2).","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"hot","coefficient":3.6811342279116315,"basePoints":286,"dieSides":1,"pointsPerLevel":9.191880226135254,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":68,"ticks":1,"intervalMs":5999},{"kind":"dot","coefficient":2.4715268135070803,"basePoints":188,"dieSides":1,"pointsPerLevel":6.233329772949219,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":68,"ticks":1,"intervalMs":5999,"tag":"spell-503052"}]},{"rank":9,"spellId":503053,"level":70,"description":"SilvercurrentRank 98% of base mana Instant cast8 sec cooldownYou douse a friendly target with enchanted water. After 6 sec, they will be healed for 0+(PL*10.2-72*10.2).","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":4,"triggerSpellId":0,"durationMs":6000},{"kind":"hot","coefficient":4,"basePoints":346,"dieSides":1,"pointsPerLevel":10.255000114440918,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":75,"ticks":1,"intervalMs":5999},{"kind":"dot","coefficient":2.7945097567988375,"basePoints":385,"dieSides":1,"pointsPerLevel":4.679999828338623,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":75,"ticks":1,"intervalMs":5999,"tag":"spell-503053"}]}]},{"id":"coa-26-geyser-92-503037","classId":"starcaller","dbcSpellId":503037,"name":"Geyser","unlockLevel":39,"icon":"/assets/ui/spells/spell_fire_bluehellfire.png","sigil":"GE","description":"GeyserRank 211% of base mana Instant cast45 sec cooldownSummon a powerful surge of water beneath the target enemy, dealing 713+(PL*2.0-21*2.0) Frost damage and launching them into the air. Focus: Party and raid members within 30 yds of you take 40% reduced damage for until cancelled.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":713,"dieSides":7,"pointsPerLevel":2.0306999683380127,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":47},{"kind":"utility","effectType":98,"auraType":0,"miscValue":20,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":116936,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503037,"level":39,"description":"GeyserRank 211% of base mana Instant cast45 sec cooldownSummon a powerful surge of water beneath the target enemy, dealing 713+(PL*2.0-21*2.0) Frost damage and launching them into the air. Focus: Party and raid members within 30 yds of you take 40% reduced damage for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":713,"dieSides":7,"pointsPerLevel":2.0306999683380127,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":47},{"kind":"utility","effectType":98,"auraType":0,"miscValue":20,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":116936,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503038,"level":49,"description":"GeyserRank 311% of base mana Instant cast45 sec cooldownSummon a powerful surge of water beneath the target enemy, dealing 787+(PL*2.0-21*2.0) Frost damage and launching them into the air. Focus: Party and raid members within 30 yds of you take 40% reduced damage for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":787,"dieSides":17,"pointsPerLevel":3.1647000312805176,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":57},{"kind":"utility","effectType":98,"auraType":0,"miscValue":20,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":116936,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503039,"level":59,"description":"GeyserRank 411% of base mana Instant cast45 sec cooldownSummon a powerful surge of water beneath the target enemy, dealing 866+(PL*2.0-21*2.0) Frost damage and launching them into the air. Focus: Party and raid members within 30 yds of you take 40% reduced damage for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1250,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":866,"dieSides":32,"pointsPerLevel":4.298699855804443,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":70},{"kind":"utility","effectType":98,"auraType":0,"miscValue":20,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":116936,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-26-cosmic-presence-91-502341","classId":"starcaller","dbcSpellId":502341,"name":"Cosmic Presence","unlockLevel":40,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CP","description":"Cosmic PresenceRank 213% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 116+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"dot","coefficient":1.0863636363636364,"basePoints":116,"dieSides":5,"pointsPerLevel":1.53125,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":47,"ticks":6,"intervalMs":2000,"tag":"spell-502341"},{"kind":"utility","effectType":129,"auraType":345,"miscValue":0,"triggerSpellId":801147,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":127,"triggerSpellId":800498,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502341,"level":40,"description":"Cosmic PresenceRank 213% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 116+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"dot","coefficient":1.0863636363636364,"basePoints":116,"dieSides":5,"pointsPerLevel":1.53125,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":47,"ticks":6,"intervalMs":2000,"tag":"spell-502341"},{"kind":"utility","effectType":129,"auraType":345,"miscValue":0,"triggerSpellId":801147,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":127,"triggerSpellId":800498,"durationMs":12000}]},{"rank":3,"spellId":502342,"level":47,"description":"Cosmic PresenceRank 313% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 129+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"dot","coefficient":1.218689537817432,"basePoints":129,"dieSides":8,"pointsPerLevel":2.0037500858306885,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":54,"ticks":6,"intervalMs":2000,"tag":"spell-502342"},{"kind":"utility","effectType":129,"auraType":345,"miscValue":0,"triggerSpellId":801147,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":127,"triggerSpellId":800498,"durationMs":12000}]},{"rank":4,"spellId":502343,"level":54,"description":"Cosmic PresenceRank 413% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 149+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"dot","coefficient":1.5443115718122842,"basePoints":149,"dieSides":12,"pointsPerLevel":3.0587499141693115,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60,"ticks":6,"intervalMs":2000,"tag":"spell-502343"},{"kind":"utility","effectType":129,"auraType":345,"miscValue":0,"triggerSpellId":801147,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":127,"triggerSpellId":800498,"durationMs":12000}]},{"rank":5,"spellId":502344,"level":60,"description":"Cosmic PresenceRank 516% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 171+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"dot","coefficient":1.1364444330003527,"basePoints":171,"dieSides":15,"pointsPerLevel":1.2949999570846558,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":67,"ticks":6,"intervalMs":2000,"tag":"spell-502344"},{"kind":"utility","effectType":129,"auraType":345,"miscValue":0,"triggerSpellId":801147,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":127,"triggerSpellId":800498,"durationMs":12000}]},{"rank":6,"spellId":502345,"level":67,"description":"Cosmic PresenceRank 613% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 201+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"dot","coefficient":1.2707063008130082,"basePoints":201,"dieSides":19,"pointsPerLevel":1.53125,"bonusPowerCoefficient":0,"sourceLevel":67,"maxScalingLevel":74,"ticks":6,"intervalMs":2000,"tag":"spell-502345"},{"kind":"utility","effectType":129,"auraType":345,"miscValue":0,"triggerSpellId":801147,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":127,"triggerSpellId":800498,"durationMs":12000}]},{"rank":7,"spellId":502346,"level":74,"description":"Cosmic PresenceRank 713% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 281+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"dot","coefficient":1.5816292253772863,"basePoints":281,"dieSides":22,"pointsPerLevel":1.7675000429153442,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80,"ticks":6,"intervalMs":2000,"tag":"spell-502346"},{"kind":"utility","effectType":129,"auraType":345,"miscValue":0,"triggerSpellId":801147,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":127,"triggerSpellId":800498,"durationMs":12000}]},{"rank":8,"spellId":502347,"level":80,"description":"Cosmic PresenceRank 813% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 345+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"dot","coefficient":1.8168421293559827,"basePoints":345,"dieSides":26,"pointsPerLevel":2.0037500858306885,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":6,"intervalMs":2000,"tag":"spell-502347"},{"kind":"utility","effectType":129,"auraType":345,"miscValue":0,"triggerSpellId":801147,"durationMs":12000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":127,"triggerSpellId":800498,"durationMs":12000}]}]},{"id":"coa-26-tidal-rebirth-92-801793","classId":"starcaller","dbcSpellId":801793,"name":"Tidal Rebirth","unlockLevel":40,"icon":"/assets/ui/spells/inv_enchanting_crystal.png","sigil":"TR","description":"Tidal RebirthRank 175% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 400 health and 635 mana. This spell is usable in combat.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":635,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801793,"level":40,"description":"Tidal RebirthRank 175% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 400 health and 635 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":635,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":803634,"level":50,"description":"Tidal RebirthRank 275% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 583 health and 833 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":833,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":803635,"level":60,"description":"Tidal RebirthRank 375% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 820 health and 1030 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":1030,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":803636,"level":70,"description":"Tidal RebirthRank 475% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 1320 health and 1250 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":1250,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":803637,"level":80,"description":"Tidal RebirthRank 575% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 2420 health and 1750 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":1750,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]}],"sun-cleric":[{"id":"coa-tree-4048","classId":"sun-cleric","dbcSpellId":92137,"name":"Angelic Presence","unlockLevel":1,"icon":"/assets/ui/spells/ability_paladin_conviction.png","sigil":"AP","description":"Level 10 Passive Avoiding an attack now has a 20% chance to grant you Angelic Presence.Angelic PresenceYour next Illumination within 15 seconds is instant cast and free of cost.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800722,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92137,"level":1,"description":"Level 10 Passive Avoiding an attack now has a 20% chance to grant you Angelic Presence.Angelic PresenceYour next Illumination within 15 seconds is instant cast and free of cost.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800722,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4048},{"id":"coa-27-bastion-of-vengeance-97-704925","classId":"sun-cleric","dbcSpellId":704925,"name":"Bastion of Vengeance","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_1h_artifactnorgannon_d_06.png","sigil":"BO","description":"Bastion of VengeanceRank 1Increases your block chance by 2% and gives successful blocks a 50% chance to reduce the remaining cooldown of Vengeful Slam by 0.01 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704926,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704925,"level":1,"description":"Bastion of VengeanceRank 1Increases your block chance by 2% and gives successful blocks a 50% chance to reduce the remaining cooldown of Vengeful Slam by 0.01 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704926,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":51,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30816","classId":"sun-cleric","dbcSpellId":300334,"name":"Blessed Armor","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_holybolt.png","sigil":"BA","description":"Increases your spell power by 1 for every 125 Armor you have.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":301006,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300334,"level":1,"description":"Increases your spell power by 1 for every 125 Armor you have.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":301006,"durationMs":-1}]}],"talentEntryId":30816},{"id":"coa-tree-34022","classId":"sun-cleric","dbcSpellId":300371,"name":"Censure","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_holysmite.png","sigil":"CE","description":"Dealing direct damage to an enemy affected by Chains of Light will now cause it to chain to a nearby enemy. Can only occur once per sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801582,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300371,"level":1,"description":"Dealing direct damage to an enemy affected by Chains of Light will now cause it to chain to a nearby enemy. Can only occur once per sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":801582,"durationMs":-1}]}],"talentEntryId":34022},{"id":"coa-tree-30766","classId":"sun-cleric","dbcSpellId":520647,"name":"Circle of Valor","unlockLevel":1,"icon":"/assets/ui/spells/inv_circlet_firelands_d_01.png","sigil":"CO","description":"Place a 10 yd holy circle at target location for 15 seconds. Allies that stand inside of it will divert 30% of all damage taken to the caster, and will be healed for 50 + 42.5% SP + 12.5% AP every 2 sec.","target":"friendly","range":{"min":0,"max":30},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":520648,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560347,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520647,"level":1,"description":"Place a 10 yd holy circle at target location for 15 seconds. Allies that stand inside of it will divert 30% of all damage taken to the caster, and will be healed for 50 + 42.5% SP + 12.5% AP every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":520648,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":560347,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":30766},{"id":"coa-27-controlled-fury-97-704921","classId":"sun-cleric","dbcSpellId":704921,"name":"Controlled Fury","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_innerrage.png","sigil":"CF","description":"Controlled FuryRank 1Increases maximum Rage by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704921,"level":1,"description":"Controlled FuryRank 1Increases maximum Rage by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-10956","classId":"sun-cleric","dbcSpellId":681436,"name":"Devoted to the Light","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_lightsgrace.png","sigil":"DT","description":"Removes the cost of your Solar Invocation spells and they now generate 5% of your missing mana when cast.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504858,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681436,"level":1,"description":"Removes the cost of your Solar Invocation spells and they now generate 5% of your missing mana when cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504858,"durationMs":-1}]}],"talentEntryId":10956},{"id":"coa-tree-30956","classId":"sun-cleric","dbcSpellId":681066,"name":"Devoted to the Sun","unlockLevel":1,"icon":"/assets/ui/spells/5_sun_border.png","sigil":"DT","description":"Reduces the cooldown of your Solar Invocation spells by -5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681066,"level":1,"description":"Reduces the cooldown of your Solar Invocation spells by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30956},{"id":"coa-27-divine-vision-96-800234","classId":"sun-cleric","dbcSpellId":800234,"name":"Divine Vision","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_savinggrace.png","sigil":"DV","description":"Divine VisionRank 116% of base mana Instant cast40 sec cooldownHeals an ally for 11 to 15 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":0.6000000238418579,"basePoints":11,"dieSides":5,"pointsPerLevel":1.1200000047683716,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":10},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800234,"level":1,"description":"Divine VisionRank 116% of base mana Instant cast40 sec cooldownHeals an ally for 11 to 15 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":0.6000000238418579,"basePoints":11,"dieSides":5,"pointsPerLevel":1.1200000047683716,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":10},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}]},{"rank":2,"spellId":502442,"level":11,"description":"Divine VisionRank 216% of base mana Instant cast40 sec cooldownHeals an ally for 21 to 29 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":0.5850769296670572,"basePoints":21,"dieSides":9,"pointsPerLevel":1.8760000467300415,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}]},{"rank":3,"spellId":502443,"level":21,"description":"Divine VisionRank 316% of base mana Instant cast40 sec cooldownHeals an ally for 41 to 55 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":0.9562222162882487,"basePoints":41,"dieSides":15,"pointsPerLevel":2.631999969482422,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":30},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}]},{"rank":4,"spellId":502444,"level":31,"description":"Divine VisionRank 416% of base mana Instant cast40 sec cooldownHeals an ally for 75 to 98 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":1.3878840605417888,"basePoints":75,"dieSides":24,"pointsPerLevel":3.388000011444092,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":40},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}]},{"rank":5,"spellId":502445,"level":41,"description":"Divine VisionRank 516% of base mana Instant cast40 sec cooldownHeals an ally for 128 to 163 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":1.877404774938311,"basePoints":128,"dieSides":36,"pointsPerLevel":4.144000053405762,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":50},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}]},{"rank":6,"spellId":502446,"level":51,"description":"Divine VisionRank 616% of base mana Instant cast40 sec cooldownHeals an ally for 209 to 258 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":2.44141416597848,"basePoints":209,"dieSides":50,"pointsPerLevel":4.900000095367432,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}]},{"rank":7,"spellId":502447,"level":61,"description":"Divine VisionRank 716% of base mana Instant cast40 sec cooldownHeals an ally for 330 to 396 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":3.105333370074891,"basePoints":330,"dieSides":67,"pointsPerLevel":5.656000137329102,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}]},{"rank":8,"spellId":502448,"level":71,"description":"Divine VisionRank 816% of base mana Instant cast40 sec cooldownHeals an ally for 509 to 595 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16},"effects":[{"kind":"heal","coefficient":3.9040775687195532,"basePoints":509,"dieSides":87,"pointsPerLevel":6.4120001792907715,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802947,"durationMs":10000}]}]},{"id":"coa-tree-30309","classId":"sun-cleric","dbcSpellId":680652,"name":"Enveloped in Light","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_holynova.png","sigil":"EI","description":"Increases your armor contribution from mail and plate items by 10% and reduces Shadow damage taken by -3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":32,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680652,"level":1,"description":"Increases your armor contribution from mail and plate items by 10% and reduces Shadow damage taken by -3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":32,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":681467,"level":1,"description":"Increases your armor contribution from mail and plate items by 20% and reduces Shadow damage taken by -6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":87,"miscValue":32,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30309},{"id":"coa-tree-33994","classId":"sun-cleric","dbcSpellId":300341,"name":"Exorcism","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_surgeoflight.png","sigil":"EX","description":"Sanctify now dispels 1 additional effect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300341,"level":1,"description":"Sanctify now dispels 1 additional effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33994},{"id":"coa-tree-11025","classId":"sun-cleric","dbcSpellId":707528,"name":"Final Vows","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_avenginewrath.png","sigil":"FV","description":"Fulfilling your Vow of Grace now also reduces the cooldown of the triggered ability by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707528,"level":1,"description":"Fulfilling your Vow of Grace now also reduces the cooldown of the triggered ability by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11025},{"id":"coa-tree-6569","classId":"sun-cleric","dbcSpellId":504248,"name":"Holy Conquest","unlockLevel":1,"icon":"/assets/ui/spells/5_holypower_border.png","sigil":"HC","description":"Reduces the mana cost of Paragon, Chosen of the Light, and Judgement Day by -50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504248,"level":1,"description":"Reduces the mana cost of Paragon, Chosen of the Light, and Judgement Day by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6569},{"id":"coa-tree-29510","classId":"sun-cleric","dbcSpellId":500154,"name":"Horusath Blast","unlockLevel":1,"icon":"/assets/ui/spells/paladin_holy.png","sigil":"HB","description":"Horusath BlastRank 133% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 73+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":1,"basePoints":73,"dieSides":12,"pointsPerLevel":1.059999942779541,"bonusPowerCoefficient":1,"sourceLevel":10,"maxScalingLevel":15}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500154,"level":1,"description":"Horusath BlastRank 133% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 73+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":1,"basePoints":73,"dieSides":12,"pointsPerLevel":1.059999942779541,"bonusPowerCoefficient":1,"sourceLevel":10,"maxScalingLevel":15}]}],"talentEntryId":29510},{"id":"sun-cleric-illumination","classId":"sun-cleric","dbcSpellId":500143,"name":"Illumination","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_clarityofpurpose.png","sigil":"IL","description":"IlluminationRank 130% of base mana 2 sec castIlluminate an ally, healing them for 39+0+Heal*0.68.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.9013333320617676,"basePoints":39,"dieSides":3,"pointsPerLevel":3.2639999389648438,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500143,"level":1,"description":"IlluminationRank 130% of base mana 2 sec castIlluminate an ally, healing them for 39+0+Heal*0.68.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":0.9013333320617676,"basePoints":39,"dieSides":3,"pointsPerLevel":3.2639999389648438,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502421,"level":6,"description":"IlluminationRank 230% of base mana 2.5 sec castIlluminate an ally, healing them for 89+0+Heal*0.68.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":2.2047619138445174,"basePoints":89,"dieSides":9,"pointsPerLevel":7.650000095367432,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":11},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502422,"level":12,"description":"IlluminationRank 330% of base mana 3 sec castIlluminate an ally, healing them for 183+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":183,"dieSides":26,"pointsPerLevel":12.75,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":17},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502423,"level":18,"description":"IlluminationRank 430% of base mana 3 sec castIlluminate an ally, healing them for 300+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":300,"dieSides":37,"pointsPerLevel":10.347999572753906,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":23},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502424,"level":24,"description":"IlluminationRank 530% of base mana 3 sec castIlluminate an ally, healing them for 437+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":437,"dieSides":50,"pointsPerLevel":11.5693998336792,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502425,"level":32,"description":"IlluminationRank 630% of base mana 3 sec castIlluminate an ally, healing them for 637+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":637,"dieSides":66,"pointsPerLevel":16.88800048828125,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502426,"level":40,"description":"IlluminationRank 730% of base mana 3 sec castIlluminate an ally, healing them for 846+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":846,"dieSides":88,"pointsPerLevel":9.039999961853027,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":45},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502427,"level":48,"description":"IlluminationRank 830% of base mana 3 sec castIlluminate an ally, healing them for 1042+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":1042,"dieSides":116,"pointsPerLevel":12.432000160217285,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502428,"level":56,"description":"IlluminationRank 930% of base mana 3 sec castIlluminate an ally, healing them for 1170+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":1170,"dieSides":127,"pointsPerLevel":15.02400016784668,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":61},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502429,"level":60,"description":"IlluminationRank 1030% of base mana 3 sec castIlluminate an ally, healing them for 1229+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":1229,"dieSides":142,"pointsPerLevel":18.128000259399414,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":65},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":502431,"level":70,"description":"IlluminationRank 1230% of base mana 3 sec castIlluminate an ally, healing them for 1646+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":1646,"dieSides":185,"pointsPerLevel":26.31999969482422,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":75},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29181","classId":"sun-cleric","dbcSpellId":800600,"name":"New Day","unlockLevel":1,"icon":"/assets/ui/spells/_d3waveoflight.png","sigil":"ND","description":"Start anew, reseting the cooldown of Paragon, Chosen of the Light, and Judgement Day spells.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":195,"auraType":0,"miscValue":680639,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":195,"auraType":0,"miscValue":800622,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":195,"auraType":0,"miscValue":806121,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800600,"level":1,"description":"Start anew, reseting the cooldown of Paragon, Chosen of the Light, and Judgement Day spells.","castMode":"instant","castTimeMs":0,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":17},"effects":[{"kind":"utility","effectType":195,"auraType":0,"miscValue":680639,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":195,"auraType":0,"miscValue":800622,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":195,"auraType":0,"miscValue":806121,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29181},{"id":"coa-tree-30154","classId":"sun-cleric","dbcSpellId":520639,"name":"Nysoni's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedrecovery.png","sigil":"NS","description":"Dawn will now provide an additional effect based on your specialization.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520639,"level":1,"description":"Dawn will now provide an additional effect based on your specialization.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30154},{"id":"coa-27-on-a-cloudy-day-96-560122","classId":"sun-cleric","dbcSpellId":560122,"name":"On A Cloudy Day","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_skywall.png","sigil":"OA","description":"On A Cloudy DayRank 2Increases the healing done by Shine and Sunshine by 8%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560122,"level":1,"description":"On A Cloudy DayRank 2Increases the healing done by Shine and Sunshine by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34031","classId":"sun-cleric","dbcSpellId":300314,"name":"Pure Light","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holyshock_border.png","sigil":"PL","description":"While above 80% health you now deal 10% increased damage and healing.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":301341,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300314,"level":1,"description":"While above 80% health you now deal 10% increased damage and healing.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":301341,"durationMs":-1}]}],"talentEntryId":34031},{"id":"coa-tree-34029","classId":"sun-cleric","dbcSpellId":704909,"name":"Sintorcher","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_lavaspawn.png","sigil":"SI","description":"Increases your damage and healing done by 3% and your critical strike chance against Undead by 2%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":169,"miscValue":32,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704909,"level":1,"description":"Increases your damage and healing done by 3% and your critical strike chance against Undead by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":169,"miscValue":32,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34029},{"id":"coa-27-solar-embrace-96-500151","classId":"sun-cleric","dbcSpellId":500151,"name":"Solar Embrace","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_rayofhope.png","sigil":"SE","description":"Solar EmbraceRank 121% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 48 to 54. Can be used on an enemy or an ally.","target":"friendly","range":{"min":0,"max":40},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"heal","coefficient":0.4020000100135803,"basePoints":48,"dieSides":7,"pointsPerLevel":0.41600000858306885,"bonusPowerCoefficient":0.4020000100135803,"sourceLevel":1,"maxScalingLevel":11},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500151,"level":1,"description":"Solar EmbraceRank 121% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 48 to 54. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"heal","coefficient":0.4020000100135803,"basePoints":48,"dieSides":7,"pointsPerLevel":0.41600000858306885,"bonusPowerCoefficient":0.4020000100135803,"sourceLevel":1,"maxScalingLevel":11},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502434,"level":12,"description":"Solar EmbraceRank 221% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 75 to 81. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"heal","coefficient":1.0745125964835838,"basePoints":75,"dieSides":7,"pointsPerLevel":0.7529600262641907,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":23},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502435,"level":24,"description":"Solar EmbraceRank 321% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 121 to 128. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"heal","coefficient":1.2876759064503205,"basePoints":121,"dieSides":8,"pointsPerLevel":1.0899200439453125,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":34},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502436,"level":35,"description":"Solar EmbraceRank 421% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 188 to 196. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"heal","coefficient":1.6063866702715557,"basePoints":188,"dieSides":9,"pointsPerLevel":1.398800015449524,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":46},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502437,"level":47,"description":"Solar EmbraceRank 521% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 300 to 310. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"heal","coefficient":2.2442150436421877,"basePoints":300,"dieSides":11,"pointsPerLevel":2.3919999599456787,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":57},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502438,"level":58,"description":"Solar EmbraceRank 621% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 459 to 471. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"heal","coefficient":3.0054464753904298,"basePoints":459,"dieSides":13,"pointsPerLevel":3.3309099674224854,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":69},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502439,"level":70,"description":"Solar EmbraceRank 721% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 719 to 734. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21},"effects":[{"kind":"heal","coefficient":4,"basePoints":719,"dieSides":16,"pointsPerLevel":5.74399995803833,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34032","classId":"sun-cleric","dbcSpellId":704581,"name":"Solar Guardian","unlockLevel":1,"icon":"/assets/ui/spells/buff_forcesoforder.png","sigil":"SG","description":"Reduces the duration of stun effects on you by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":12,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704581,"level":1,"description":"Reduces the duration of stun effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":12,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34032},{"id":"coa-27-solar-incandescence-94-704913","classId":"sun-cleric","dbcSpellId":704913,"name":"Solar Incandescence","unlockLevel":1,"icon":"/assets/ui/spells/paladin_holy.png","sigil":"SI","description":"Solar IncandescenceRank 1Increases the damage of Sunflare by 5% and its critical strike chance by 2%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704913,"level":1,"description":"Solar IncandescenceRank 1Increases the damage of Sunflare by 5% and its critical strike chance by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":704914,"level":1,"description":"Solar IncandescenceRank 2Increases the damage of Sunflare by 10% and its critical strike chance by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29446","classId":"sun-cleric","dbcSpellId":806159,"name":"Solar Invocation: Resplendence","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_rayofhope.png","sigil":"SI","description":"Invoke the grace of An'she for 8 seconds, causing your llluminations to be instant cast and guaranteed to critically strike, but cost 100% more mana.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806159,"level":1,"description":"Invoke the grace of An'she for 8 seconds, causing your llluminations to be instant cast and guaranteed to critically strike, but cost 100% more mana.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":8000}]}],"talentEntryId":29446},{"id":"coa-tree-30153","classId":"sun-cleric","dbcSpellId":503651,"name":"Solar Invocation: Revelation","unlockLevel":1,"icon":"/assets/ui/spells/5_priestskill07_border.png","sigil":"SI","description":"Invoke An'she to root an enemy for 4 seconds with holy shackles or heal an ally for 10% maximum health and increase their movement speed by 50% for 4 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524288,"triggerSpellId":680702,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524288,"triggerSpellId":680701,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":503651,"level":1,"description":"Invoke An'she to root an enemy for 4 seconds with holy shackles or heal an ally for 10% maximum health and increase their movement speed by 50% for 4 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524288,"triggerSpellId":680702,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524288,"triggerSpellId":680701,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30153},{"id":"coa-tree-29513","classId":"sun-cleric","dbcSpellId":704916,"name":"Solar Might","unlockLevel":1,"icon":"/assets/ui/spells/ability_paladin_holyavenger.png","sigil":"SM","description":"Solar MightRank 1Increases your Strength and Intellect by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704916,"level":1,"description":"Solar MightRank 1Increases your Strength and Intellect by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":570120,"level":1,"description":"Solar MightRank 2Increases your Strength and Intellect by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29513},{"id":"coa-tree-33979","classId":"sun-cleric","dbcSpellId":806479,"name":"Solar Prayer","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_devineaegis.png","sigil":"SP","description":"Recite a solar prayer, instantly healing you for 25% of your maximum health plus an additional 100 + 100% SP, scaling with spell power. Usable while stunned.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":0.3333333333333333,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":80},{"kind":"heal","coefficient":1.4666666666666666,"basePoints":100,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":80}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806479,"level":1,"description":"Recite a solar prayer, instantly healing you for 25% of your maximum health plus an additional 100 + 100% SP, scaling with spell power. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":0.3333333333333333,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":80},{"kind":"heal","coefficient":1.4666666666666666,"basePoints":100,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":80}]}],"talentEntryId":33979},{"id":"coa-27-solstice-94-704949","classId":"sun-cleric","dbcSpellId":704949,"name":"Solstice","unlockLevel":1,"icon":"/assets/ui/spells/_time_3_sunset.png","sigil":"SO","description":"SolsticeRank 1Allows Dawn to affect an additional spell.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704949,"level":1,"description":"SolsticeRank 1Allows Dawn to affect an additional spell.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30148","classId":"sun-cleric","dbcSpellId":300348,"name":"Sun Shield","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holyinfusion_border.png","sigil":"SS","description":"Reduces your chance to be hit by spells by -3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":186,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300348,"level":1,"description":"Reduces your chance to be hit by spells by -3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":186,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30148},{"id":"coa-tree-31150","classId":"sun-cleric","dbcSpellId":680700,"name":"Sun Stride","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_archangel.png","sigil":"SS","description":"Rush forward at a high speed for 2 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":2000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680700,"level":1,"description":"Rush forward at a high speed for 2 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":2000}]}],"talentEntryId":31150},{"id":"coa-tree-4047","classId":"sun-cleric","dbcSpellId":92136,"name":"Sunlight","unlockLevel":1,"icon":"/assets/ui/spells/item_holyspark.png","sigil":"SU","description":"Level 10 Passive Fulfilling your Vow now unleashes Sunlight restoring 25 + 15% healing health to up to 5 allies within 40 yds, prioritizing the lowest health allies.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704911,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92136,"level":1,"description":"Level 10 Passive Fulfilling your Vow now unleashes Sunlight restoring 25 + 15% healing health to up to 5 allies within 40 yds, prioritizing the lowest health allies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704911,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4047},{"id":"coa-tree-4046","classId":"sun-cleric","dbcSpellId":92135,"name":"Sunrise and Sunset","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holymeditation_border.png","sigil":"SA","description":"Level 10 Passive After activating Dawn, casting a Holy spell grants Sunrise or casting a Fire spell grants Sunset. Entering Sunrise or Sunset prevents you from entering the other until you enter the next. SunriseIncreases all Holy Damage dealt by 20% for 2 minutes. SunsetIncreases your critical strike chance with Fire spells by 20% and Fire Damage by 10% for 2 minutes.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804098,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92135,"level":1,"description":"Level 10 Passive After activating Dawn, casting a Holy spell grants Sunrise or casting a Fire spell grants Sunset. Entering Sunrise or Sunset prevents you from entering the other until you enter the next. SunriseIncreases all Holy Damage dealt by 20% for 2 minutes. SunsetIncreases your critical strike chance with Fire spells by 20% and Fire Damage by 10% for 2 minutes.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804098,"durationMs":-1}]}],"talentEntryId":4046},{"id":"coa-tree-34025","classId":"sun-cleric","dbcSpellId":300331,"name":"Taking Vows","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_restoration.png","sigil":"TV","description":"Your Vow of Light now heals for an additional 5% of damage taken or direct healing done by you.","target":"friendly","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300331,"level":1,"description":"Your Vow of Light now heals for an additional 5% of damage taken or direct healing done by you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34025},{"id":"coa-tree-6564","classId":"sun-cleric","dbcSpellId":704579,"name":"Twilight","unlockLevel":1,"icon":"/assets/ui/spells/nhi_sundarkening_border.png","sigil":"TW","description":"Applying Vow of the Eclipse now blinds enemies struck, increasing their chance to miss their next attack by -10% for 6 seconds, stacking 5 times. Does not work on bosses. In addition, increases the effectiveness of the Fulfillment effect of Vow of the Eclipse by 100%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":506637,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":12,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704579,"level":1,"description":"Applying Vow of the Eclipse now blinds enemies struck, increasing their chance to miss their next attack by -10% for 6 seconds, stacking 5 times. Does not work on bosses. In addition, increases the effectiveness of the Fulfillment effect of Vow of the Eclipse by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":506637,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":12,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6564},{"id":"coa-tree-29178","classId":"sun-cleric","dbcSpellId":704945,"name":"Unbreakable Focus","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_auramastery.png","sigil":"UF","description":"Reduces the cooldown of Gavels and Horusath Blast by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704945,"level":1,"description":"Reduces the cooldown of Gavels and Horusath Blast by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29178},{"id":"coa-tree-6565","classId":"sun-cleric","dbcSpellId":805816,"name":"Valkyrie's Watch","unlockLevel":1,"icon":"/assets/ui/spells/inv_valkiergoldpet.png","sigil":"VS","description":"Damage that would take you below 35% health and damage taken while below 35% health is reduced by 25%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.11737089201877934,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"durationMs":1000}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805816,"level":1,"description":"Damage that would take you below 35% health and damage taken while below 35% health is reduced by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.11737089201877934,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"durationMs":1000}]}],"talentEntryId":6565},{"id":"coa-tree-6878","classId":"sun-cleric","dbcSpellId":704563,"name":"Warmth","unlockLevel":1,"icon":"/assets/ui/spells/inv_artifact_xp03.png","sigil":"WA","description":"Direct healing now increases the target's health by 300 for 15 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704564,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704563,"level":1,"description":"Direct healing now increases the target's health by 300 for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704564,"durationMs":-1}]}],"talentEntryId":6878},{"id":"coa-27-zealous-executions-none-560114","classId":"sun-cleric","dbcSpellId":560114,"name":"Zealous Executions","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holy_justicehammer_border.png","sigil":"ZE","description":"Zealous ExecutionsRank 2Increases the damage of Glorious Execution by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560114,"level":1,"description":"Zealous ExecutionsRank 2Increases the damage of Glorious Execution by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-27-devotion-of-grace-479-800852","classId":"sun-cleric","dbcSpellId":800852,"name":"Devotion of Grace","unlockLevel":4,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DO","description":"Devotion of GraceRank 15% of base mana Instant castPlaces a Devotion on the friendly target, restoring 5 mana every 5 seconds and reducing their costs by 5% for 30 min. Players may only have one Devotion on them per Sun Cleric at any one time.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800852,"level":4,"description":"Devotion of GraceRank 15% of base mana Instant castPlaces a Devotion on the friendly target, restoring 5 mana every 5 seconds and reducing their costs by 5% for 30 min. Players may only have one Devotion on them per Sun Cleric at any one time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]},{"rank":2,"spellId":300858,"level":14,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":1800000}]},{"rank":3,"spellId":300859,"level":24,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":1800000}]},{"rank":4,"spellId":300862,"level":34,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":1800000}]},{"rank":5,"spellId":300863,"level":44,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":1800000}]},{"rank":6,"spellId":300864,"level":54,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":1800000}]},{"rank":7,"spellId":300865,"level":60,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":6,"auraType":85,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"sun-cleric-gavel-of-light","classId":"sun-cleric","dbcSpellId":800611,"name":"Gavel of Light","unlockLevel":4,"icon":"/assets/ui/spells/ability_paladin_judgementofthepure.png","sigil":"GO","description":"Gavel of LightRank 15% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 12+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800611,"level":4,"description":"Gavel of LightRank 15% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 12+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502467,"level":10,"description":"Gavel of LightRank 25% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 17+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502468,"level":14,"description":"Gavel of LightRank 35% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 23+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502469,"level":20,"description":"Gavel of LightRank 45% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 34+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502470,"level":26,"description":"Gavel of LightRank 55% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 45+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502471,"level":32,"description":"Gavel of LightRank 65% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 68+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502472,"level":38,"description":"Gavel of LightRank 75% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 90+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502473,"level":44,"description":"Gavel of LightRank 85% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 125+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502474,"level":50,"description":"Gavel of LightRank 95% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 162+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502475,"level":56,"description":"Gavel of LightRank 105% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 198+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":502476,"level":60,"description":"Gavel of LightRank 115% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 232+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":502477,"level":68,"description":"Gavel of LightRank 125% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 268+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":13,"spellId":502478,"level":74,"description":"Gavel of LightRank 135% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 349+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"sun-cleric-sunflare","classId":"sun-cleric","dbcSpellId":502386,"name":"Sunflare","unlockLevel":6,"icon":"/assets/ui/spells/spell_priest_divinestar.png","sigil":"SU","description":"SunflareRank 210% of base mana 2 sec castBlast an enemy with the light of the sun, dealing 39 to 45 Holy damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.8042857192811512,"basePoints":39,"dieSides":7,"pointsPerLevel":1.4450000524520874,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502386,"level":6,"description":"SunflareRank 210% of base mana 2 sec castBlast an enemy with the light of the sun, dealing 39 to 45 Holy damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.8042857192811512,"basePoints":39,"dieSides":7,"pointsPerLevel":1.4450000524520874,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12}]},{"rank":3,"spellId":502387,"level":12,"description":"SunflareRank 311% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 71 to 77 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.234691360850393,"basePoints":71,"dieSides":7,"pointsPerLevel":2.1675000190734863,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}]},{"rank":4,"spellId":502388,"level":18,"description":"SunflareRank 411% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 92 to 99 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":1.43755556838681,"basePoints":92,"dieSides":8,"pointsPerLevel":2.6010000705718994,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22}]},{"rank":5,"spellId":502389,"level":24,"description":"SunflareRank 512% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 131 to 139 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.8153845958220654,"basePoints":131,"dieSides":9,"pointsPerLevel":3.2249999046325684,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28}]},{"rank":6,"spellId":502390,"level":30,"description":"SunflareRank 613% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 175 to 186 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"damage","coefficient":2.1814814708851,"basePoints":175,"dieSides":12,"pointsPerLevel":3.799999952316284,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34}]},{"rank":7,"spellId":502391,"level":36,"description":"SunflareRank 714% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 228 to 239 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"damage","coefficient":2.679084989759657,"basePoints":228,"dieSides":12,"pointsPerLevel":4.900000095367432,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40}]},{"rank":8,"spellId":502392,"level":40,"description":"SunflareRank 814% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 283 to 299 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"damage","coefficient":3.2363635901248817,"basePoints":283,"dieSides":17,"pointsPerLevel":6.074999809265137,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44}]},{"rank":9,"spellId":502393,"level":44,"description":"SunflareRank 915% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 345 to 366 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.8480226225772145,"basePoints":345,"dieSides":22,"pointsPerLevel":7.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48}]},{"rank":10,"spellId":502394,"level":50,"description":"SunflareRank 1015% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 403 to 403 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":403,"dieSides":1,"pointsPerLevel":18.600000381469727,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":52}]},{"rank":11,"spellId":502395,"level":56,"description":"SunflareRank 1115% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 478 to 478 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":478,"dieSides":1,"pointsPerLevel":7.483329772949219,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62}]},{"rank":12,"spellId":502396,"level":60,"description":"SunflareRank 1215% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 554 to 581 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":554,"dieSides":28,"pointsPerLevel":13.25,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120241,"triggerSpellId":0,"durationMs":0}]},{"rank":13,"spellId":502397,"level":74,"description":"SunflareRank 1315% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 637 to 675 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":637,"dieSides":39,"pointsPerLevel":10.633299827575684,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"utility","effectType":168,"auraType":0,"miscValue":120241,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-sunshine-96-500142","classId":"sun-cleric","dbcSpellId":500142,"name":"Sunshine","unlockLevel":9,"icon":"/assets/ui/spells/spell_holy_divineprovidence.png","sigil":"SU","description":"SunshineRank 127% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(16+0+Heal*.126) over 18 sec.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":0.23987500059107938,"basePoints":16,"dieSides":2,"pointsPerLevel":0.3840000033378601,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500142,"level":17,"description":"SunshineRank 127% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(16+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":0.23987500059107938,"basePoints":16,"dieSides":2,"pointsPerLevel":0.3840000033378601,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":2,"spellId":502412,"level":9,"description":"SunshineRank 227% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(28+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":0.4660488896899753,"basePoints":28,"dieSides":1,"pointsPerLevel":0.6172800064086914,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":30,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":3,"spellId":502413,"level":17,"description":"SunshineRank 327% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(40+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":0.5626966624210278,"basePoints":40,"dieSides":1,"pointsPerLevel":0.8246399760246277,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":36,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":4,"spellId":502414,"level":25,"description":"SunshineRank 427% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(55+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":0.6733333220084509,"basePoints":55,"dieSides":1,"pointsPerLevel":1.031999945640564,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":42,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":5,"spellId":502415,"level":33,"description":"SunshineRank 527% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(73+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":0.7909644386834569,"basePoints":73,"dieSides":1,"pointsPerLevel":1.239359974861145,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":6,"spellId":502416,"level":41,"description":"SunshineRank 627% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(99+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":0.9423542867104212,"basePoints":99,"dieSides":1,"pointsPerLevel":1.446720004081726,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":54,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":7,"spellId":502417,"level":49,"description":"SunshineRank 727% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(121+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":1.0523433418323596,"basePoints":121,"dieSides":1,"pointsPerLevel":1.6540800333023071,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":59,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":8,"spellId":502418,"level":57,"description":"SunshineRank 827% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(159+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":1.227324429485533,"basePoints":159,"dieSides":1,"pointsPerLevel":1.8614399433135986,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":66,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":9,"spellId":502419,"level":60,"description":"SunshineRank 927% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(210+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":1.4850133260091145,"basePoints":210,"dieSides":1,"pointsPerLevel":2.0687999725341797,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":72,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]},{"rank":10,"spellId":502420,"level":73,"description":"SunshineRank 1027% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(267+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"hot","coefficient":1.851969686421481,"basePoints":267,"dieSides":1,"pointsPerLevel":3.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":522239,"triggerSpellId":802941,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]}]},{"id":"coa-27-guidance-touch-of-light-96-804251","classId":"sun-cleric","dbcSpellId":804251,"name":"Guidance: Touch of Light","unlockLevel":10,"icon":"/assets/ui/spells/spell_holy_holyguidance.png","sigil":"GT","description":"Guidance: Touch of LightRank 113% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 63++SP*0.85 and an additional 3++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804251,"level":13,"description":"Guidance: Touch of LightRank 113% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 63++SP*0.85 and an additional 3++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]},{"rank":2,"spellId":503509,"level":10,"description":"Guidance: Touch of LightRank 213% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 85++SP*0.85 and an additional 8++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]},{"rank":3,"spellId":503510,"level":19,"description":"Guidance: Touch of LightRank 313% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 145++SP*0.85 and an additional 11++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]},{"rank":4,"spellId":503511,"level":28,"description":"Guidance: Touch of LightRank 413% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 179++SP*0.85 and an additional 15++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]},{"rank":5,"spellId":503512,"level":37,"description":"Guidance: Touch of LightRank 513% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 230++SP*0.85 and an additional 18++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]},{"rank":6,"spellId":503513,"level":45,"description":"Guidance: Touch of LightRank 613% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 397++SP*0.85 and an additional 21++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]},{"rank":7,"spellId":503514,"level":54,"description":"Guidance: Touch of LightRank 713% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 403++SP*0.85 and an additional 24++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]},{"rank":8,"spellId":503515,"level":63,"description":"Guidance: Touch of LightRank 813% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 455++SP*0.85 and an additional 27++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]},{"rank":9,"spellId":503516,"level":72,"description":"Guidance: Touch of LightRank 913% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 671++SP*0.85 and an additional 30++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680886,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680887,"durationMs":0}]}]},{"id":"coa-27-revivify-479-801790","classId":"sun-cleric","dbcSpellId":801790,"name":"Revivify","unlockLevel":10,"icon":"/assets/ui/spells/spell_holy_redemption.png","sigil":"RE","description":"RevivifyRank 160% of base mana 8 sec castBrings a dead ally back to life with 70 health and 135 mana. Not usable in combat.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801790,"level":10,"description":"RevivifyRank 160% of base mana 8 sec castBrings a dead ally back to life with 70 health and 135 mana. Not usable in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-dawnbreak-97-800654","classId":"sun-cleric","dbcSpellId":800654,"name":"Dawnbreak","unlockLevel":11,"icon":"/assets/ui/spells/nhi_energyshield_border.png","sigil":"DA","description":"DawnbreakRank 15% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 23+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","target":"hostile","range":{"min":0,"max":5},"radius":12,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":23,"dieSides":3,"pointsPerLevel":0.2857140004634857,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":11,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800654,"level":11,"description":"DawnbreakRank 15% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 23+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":23,"dieSides":3,"pointsPerLevel":0.2857140004634857,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":11,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502496,"level":20,"description":"DawnbreakRank 25% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 37+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.4666666689373198,"basePoints":37,"dieSides":3,"pointsPerLevel":0.550000011920929,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502497,"level":28,"description":"DawnbreakRank 35% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 53+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.6271317855332249,"basePoints":53,"dieSides":12,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502498,"level":36,"description":"DawnbreakRank 45% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 61+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.6836600475061952,"basePoints":61,"dieSides":21,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502499,"level":44,"description":"DawnbreakRank 55% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 79+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":0.8378531191982118,"basePoints":79,"dieSides":34,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":504579,"level":52,"description":"DawnbreakRank 65% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 103+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":1.2024875375168833,"basePoints":103,"dieSides":34,"pointsPerLevel":2.3499999046325684,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":504580,"level":58,"description":"DawnbreakRank 75% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 205+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"damage","coefficient":1.3674772558691295,"basePoints":205,"dieSides":34,"pointsPerLevel":1.34443998336792,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":67},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-dawnsear-94-500146","classId":"sun-cleric","dbcSpellId":500146,"name":"Dawnsear","unlockLevel":11,"icon":"/assets/ui/spells/nhi_fire_solar_border.png","sigil":"DA","description":"DawnsearRank 115% of base mana 3.5 sec castBlast an enemy with burning light, dealing 88+0+FireP*1 Fire damage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.3848718022688842,"basePoints":88,"dieSides":12,"pointsPerLevel":1.3200000524520874,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500146,"level":11,"description":"DawnsearRank 115% of base mana 3.5 sec castBlast an enemy with burning light, dealing 88+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.3848718022688842,"basePoints":88,"dieSides":12,"pointsPerLevel":1.3200000524520874,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16}]},{"rank":2,"spellId":502366,"level":18,"description":"DawnsearRank 215% of base mana 3.5 sec castBlast an enemy with burning light, dealing 114+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.357000004161488,"basePoints":114,"dieSides":16,"pointsPerLevel":6.213500022888184,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22}]},{"rank":3,"spellId":502367,"level":24,"description":"DawnsearRank 315% of base mana 3.5 sec castBlast an enemy with burning light, dealing 158+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.3680813455174112,"basePoints":158,"dieSides":26,"pointsPerLevel":4.440229892730713,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":4,"spellId":502368,"level":32,"description":"DawnsearRank 415% of base mana 3.5 sec castBlast an enemy with burning light, dealing 246+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.0891437936336437,"basePoints":246,"dieSides":37,"pointsPerLevel":5.361539840698242,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":5,"spellId":502369,"level":40,"description":"DawnsearRank 515% of base mana 3.5 sec castBlast an enemy with burning light, dealing 334+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.378787878787879,"basePoints":334,"dieSides":48,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44}]},{"rank":6,"spellId":502370,"level":46,"description":"DawnsearRank 615% of base mana 3.5 sec castBlast an enemy with burning light, dealing 411+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.4418952243575633,"basePoints":411,"dieSides":60,"pointsPerLevel":4.11667013168335,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52}]},{"rank":7,"spellId":502371,"level":54,"description":"DawnsearRank 715% of base mana 3.5 sec castBlast an enemy with burning light, dealing 531+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":531,"dieSides":72,"pointsPerLevel":8,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58}]},{"rank":8,"spellId":554406,"level":60,"description":"DawnsearRank 815% of base mana 3.5 sec castBlast an enemy with burning light, dealing 669+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":669,"dieSides":80,"pointsPerLevel":5.642859935760498,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":67}]}]},{"id":"coa-27-shining-ray-97-502460","classId":"sun-cleric","dbcSpellId":502460,"name":"Shining Ray","unlockLevel":11,"icon":"/assets/ui/spells/ability_priest_flashoflight.png","sigil":"SR","description":"Shining RayRank 2Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":10,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":502460,"level":11,"description":"Shining RayRank 2Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]},{"rank":3,"spellId":502461,"level":21,"description":"Shining RayRank 3Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]},{"rank":4,"spellId":502462,"level":31,"description":"Shining RayRank 4Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]},{"rank":5,"spellId":502463,"level":41,"description":"Shining RayRank 5Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]},{"rank":6,"spellId":502464,"level":51,"description":"Shining RayRank 6Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]},{"rank":7,"spellId":502465,"level":61,"description":"Shining RayRank 7Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]},{"rank":8,"spellId":502466,"level":71,"description":"Shining RayRank 8Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800616,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":10,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-27-transgression-94-503368","classId":"sun-cleric","dbcSpellId":503368,"name":"Transgression","unlockLevel":11,"icon":"/assets/ui/spells/inv_shoulder_robe_raidpriest_k_01.png","sigil":"TR","description":"TransgressionRank 213% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 25+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":141,"auraType":0,"miscValue":0,"triggerSpellId":806468,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503368,"level":11,"description":"TransgressionRank 213% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 25+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":141,"auraType":0,"miscValue":0,"triggerSpellId":806468,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":503369,"level":21,"description":"TransgressionRank 313% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 46+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":141,"auraType":0,"miscValue":0,"triggerSpellId":806468,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":503370,"level":31,"description":"TransgressionRank 413% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 80+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":141,"auraType":0,"miscValue":0,"triggerSpellId":806468,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":503371,"level":41,"description":"TransgressionRank 513% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 133+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":141,"auraType":0,"miscValue":0,"triggerSpellId":806468,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":503372,"level":51,"description":"TransgressionRank 613% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 213+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":141,"auraType":0,"miscValue":0,"triggerSpellId":806468,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":503373,"level":61,"description":"TransgressionRank 713% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 332+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":141,"auraType":0,"miscValue":0,"triggerSpellId":806468,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000}]},{"rank":8,"spellId":503374,"level":71,"description":"TransgressionRank 813% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 507+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"utility","effectType":141,"auraType":0,"miscValue":0,"triggerSpellId":806468,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-27-gavel-of-grace-97-800614","classId":"sun-cleric","dbcSpellId":800614,"name":"Gavel of Grace","unlockLevel":12,"icon":"/assets/ui/spells/ability_paladin_judgementofthewise.png","sigil":"GO","description":"Gavel of GraceRank 1Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 23+0) and restores 25 mana. Shares a cooldown with other Gavels.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":681317,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800614,"level":12,"description":"Gavel of GraceRank 1Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 23+0) and restores 25 mana. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":681317,"durationMs":0}]}]},{"id":"coa-27-solar-might-none-570120","classId":"sun-cleric","dbcSpellId":570120,"name":"Solar Might","unlockLevel":12,"icon":"/assets/ui/spells/ability_paladin_holyavenger.png","sigil":"SM","description":"Solar MightRank 2Increases your Strength and Intellect by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":570120,"level":12,"description":"Solar MightRank 2Increases your Strength and Intellect by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-27-flash-94-500144","classId":"sun-cleric","dbcSpellId":500144,"name":"Flash","unlockLevel":13,"icon":"/assets/ui/spells/nhi_holy_hand_border.png","sigil":"FL","description":"FlashRank 115% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 95+0+HolP*.75 Holy Damage and generating 1 Solar Power.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.483571430047353,"basePoints":95,"dieSides":15,"pointsPerLevel":1.7400000095367432,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500144,"level":13,"description":"FlashRank 115% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 95+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.483571430047353,"basePoints":95,"dieSides":15,"pointsPerLevel":1.7400000095367432,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502352,"level":20,"description":"FlashRank 215% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 130+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.7057143075125558,"basePoints":130,"dieSides":4,"pointsPerLevel":2.380000114440918,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":25},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502353,"level":27,"description":"FlashRank 315% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 175+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.102698418829176,"basePoints":175,"dieSides":7,"pointsPerLevel":3.2200000286102295,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502354,"level":34,"description":"FlashRank 415% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 191+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.1416326574727793,"basePoints":191,"dieSides":12,"pointsPerLevel":3.4800000190734863,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502355,"level":41,"description":"FlashRank 515% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 218+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.3292857096308754,"basePoints":218,"dieSides":18,"pointsPerLevel":4.019999980926514,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502356,"level":48,"description":"FlashRank 615% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 254+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.5986242950277982,"basePoints":254,"dieSides":26,"pointsPerLevel":4.679999828338623,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502357,"level":55,"description":"FlashRank 715% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 290+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.8680952730632963,"basePoints":290,"dieSides":36,"pointsPerLevel":5.360000133514404,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":60},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502358,"level":62,"description":"FlashRank 815% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 477+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.1642856886892607,"basePoints":477,"dieSides":47,"pointsPerLevel":3.7249999046325684,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":70},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-radiant-flame-94-806060","classId":"sun-cleric","dbcSpellId":806060,"name":"Radiant Flame","unlockLevel":13,"icon":"/assets/ui/spells/nhi_holysparks_border.png","sigil":"RF","description":"Radiant FlameRank 125% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 31+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":807058,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806060,"level":13,"description":"Radiant FlameRank 125% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 31+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":807058,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":2,"spellId":560862,"level":20,"description":"Radiant FlameRank 225% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 44+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":807058,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":3,"spellId":560863,"level":28,"description":"Radiant FlameRank 325% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 64+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":807058,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":4,"spellId":560864,"level":34,"description":"Radiant FlameRank 425% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 83+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":807058,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":5,"spellId":560865,"level":42,"description":"Radiant FlameRank 525% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 114+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":807058,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":6,"spellId":560866,"level":48,"description":"Radiant FlameRank 625% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 142+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":807058,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":7,"spellId":560867,"level":56,"description":"Radiant FlameRank 725% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 172+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":807058,"durationMs":4000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]}]},{"id":"sun-cleric-horusath-blast","classId":"sun-cleric","dbcSpellId":502380,"name":"Horusath Blast","unlockLevel":16,"icon":"/assets/ui/spells/paladin_holy.png","sigil":"HB","description":"Horusath BlastRank 233% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 107+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":1.4791397792036816,"basePoints":107,"dieSides":25,"pointsPerLevel":1.159999966621399,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502380,"level":16,"description":"Horusath BlastRank 233% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 107+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":1.4791397792036816,"basePoints":107,"dieSides":25,"pointsPerLevel":1.159999966621399,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}]},{"rank":3,"spellId":502381,"level":22,"description":"Horusath BlastRank 333% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 172+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":2.4563423362938135,"basePoints":172,"dieSides":37,"pointsPerLevel":3.756999969482422,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":27}]},{"rank":4,"spellId":502382,"level":28,"description":"Horusath BlastRank 433% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 256+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":2.988933341447697,"basePoints":256,"dieSides":48,"pointsPerLevel":3.788300037384033,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":33}]},{"rank":5,"spellId":502383,"level":34,"description":"Horusath BlastRank 533% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 337+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":3.126595500375138,"basePoints":337,"dieSides":61,"pointsPerLevel":2.7238099575042725,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39}]},{"rank":6,"spellId":502384,"level":40,"description":"Horusath BlastRank 633% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 422+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":3.5751515128395774,"basePoints":422,"dieSides":76,"pointsPerLevel":3.259999990463257,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":45}]},{"rank":7,"spellId":502385,"level":46,"description":"Horusath BlastRank 733% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 527+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33},"effects":[{"kind":"damage","coefficient":4,"basePoints":527,"dieSides":90,"pointsPerLevel":4.139999866485596,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":51}]}]},{"id":"coa-27-shine-96-800357","classId":"sun-cleric","dbcSpellId":800357,"name":"Shine","unlockLevel":16,"icon":"/assets/ui/spells/ability_priest_spiritoftheredeemer.png","sigil":"SH","description":"ShineRank 119% of base mana 1.5 sec castShine holy light upon an ally, healing for 136+0+SP*0.294699.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":1.6193548428115023,"basePoints":136,"dieSides":3,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800357,"level":16,"description":"ShineRank 119% of base mana 1.5 sec castShine holy light upon an ally, healing for 136+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":1.6193548428115023,"basePoints":136,"dieSides":3,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502449,"level":22,"description":"ShineRank 219% of base mana 1.5 sec castShine holy light upon an ally, healing for 189+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":1.8837837861464903,"basePoints":189,"dieSides":6,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":27},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502450,"level":28,"description":"ShineRank 319% of base mana 1.5 sec castShine holy light upon an ally, healing for 237+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":2.093550386354905,"basePoints":237,"dieSides":8,"pointsPerLevel":1.055999994277954,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":33},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502451,"level":34,"description":"ShineRank 419% of base mana 1.5 sec castShine holy light upon an ally, healing for 284+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":2.2808435482232747,"basePoints":284,"dieSides":10,"pointsPerLevel":1.3760000467300415,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502452,"level":40,"description":"ShineRank 519% of base mana 1.5 sec castShine holy light upon an ally, healing for 342+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":2.515030306035822,"basePoints":342,"dieSides":10,"pointsPerLevel":1.7120000123977661,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":45},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502453,"level":46,"description":"ShineRank 619% of base mana 1.5 sec castShine holy light upon an ally, healing for 402+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":2.759103814109427,"basePoints":402,"dieSides":14,"pointsPerLevel":2.0959999561309814,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":51},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502454,"level":52,"description":"ShineRank 719% of base mana 1.5 sec castShine holy light upon an ally, healing for 430+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":3.0092537486138036,"basePoints":430,"dieSides":20,"pointsPerLevel":3.180000066757202,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502455,"level":58,"description":"ShineRank 819% of base mana 1.5 sec castShine holy light upon an ally, healing for 511+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":3.208237458581794,"basePoints":511,"dieSides":26,"pointsPerLevel":3.0880000591278076,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":63},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502456,"level":64,"description":"ShineRank 919% of base mana 1.5 sec castShine holy light upon an ally, healing for 595+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19},"effects":[{"kind":"heal","coefficient":3.4184809817543513,"basePoints":595,"dieSides":32,"pointsPerLevel":3.119999885559082,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-blessing-of-absolution-96-804249","classId":"sun-cleric","dbcSpellId":804249,"name":"Blessing of Absolution","unlockLevel":17,"icon":"/assets/ui/spells/spell_paladin_lightofdawn.png","sigil":"BO","description":"Blessing of AbsolutionRank 118% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 32+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804249,"level":17,"description":"Blessing of AbsolutionRank 118% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 32+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0}]},{"rank":2,"spellId":503498,"level":22,"description":"Blessing of AbsolutionRank 218% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 66+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503499,"level":26,"description":"Blessing of AbsolutionRank 318% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 86+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503500,"level":32,"description":"Blessing of AbsolutionRank 418% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 126+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503501,"level":38,"description":"Blessing of AbsolutionRank 518% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 172+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503502,"level":44,"description":"Blessing of AbsolutionRank 618% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 214+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503503,"level":48,"description":"Blessing of AbsolutionRank 718% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 265+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503504,"level":54,"description":"Blessing of AbsolutionRank 818% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 326+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":503505,"level":60,"description":"Blessing of AbsolutionRank 918% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 404+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":503506,"level":64,"description":"Blessing of AbsolutionRank 1018% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 489+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":11,"spellId":503507,"level":70,"description":"Blessing of AbsolutionRank 1118% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 592+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":12,"spellId":503508,"level":74,"description":"Blessing of AbsolutionRank 1218% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 721+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":680893,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-daybreak-96-500147","classId":"sun-cleric","dbcSpellId":500147,"name":"Daybreak","unlockLevel":17,"icon":"/assets/ui/spells/ability_paladin_lightoftheprotector.png","sigil":"DA","description":"DaybreakRank 126% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 155+0+Heal*0.595.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":155,"dieSides":8,"pointsPerLevel":2.7408199310302734,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500147,"level":17,"description":"DaybreakRank 126% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 155+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":155,"dieSides":8,"pointsPerLevel":2.7408199310302734,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502432,"level":24,"description":"DaybreakRank 226% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 228+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"heal","coefficient":2.545865996271117,"basePoints":228,"dieSides":12,"pointsPerLevel":2.6819300651550293,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502433,"level":32,"description":"DaybreakRank 326% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 307+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"heal","coefficient":2.943232921843833,"basePoints":307,"dieSides":17,"pointsPerLevel":3.1248700618743896,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503623,"level":38,"description":"DaybreakRank 426% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 379+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"heal","coefficient":3.731946009509968,"basePoints":379,"dieSides":23,"pointsPerLevel":5.352089881896973,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503624,"level":46,"description":"DaybreakRank 526% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 444+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"heal","coefficient":4,"basePoints":444,"dieSides":32,"pointsPerLevel":6.582499980926514,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":572035,"level":58,"description":"DaybreakRank 626% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 515+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26},"effects":[{"kind":"heal","coefficient":4,"basePoints":515,"dieSides":70,"pointsPerLevel":6.968999862670898,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-gleaming-vigil-97-502486","classId":"sun-cleric","dbcSpellId":502486,"name":"Gleaming Vigil","unlockLevel":17,"icon":"/assets/ui/spells/inv_artifact_bulwarkoforder.png","sigil":"GV","description":"Gleaming VigilRank 220 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 113 to 126 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"shield","coefficient":2.956080675125122,"basePoints":113,"dieSides":14,"pointsPerLevel":9.663749694824219,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502486,"level":17,"description":"Gleaming VigilRank 220 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 113 to 126 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"shield","coefficient":2.956080675125122,"basePoints":113,"dieSides":14,"pointsPerLevel":9.663749694824219,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":3,"spellId":502487,"level":33,"description":"Gleaming VigilRank 320 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 333 to 350 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"shield","coefficient":4,"basePoints":333,"dieSides":18,"pointsPerLevel":14.523799896240234,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":4,"spellId":502488,"level":49,"description":"Gleaming VigilRank 420 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 521 to 543 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"shield","coefficient":4,"basePoints":521,"dieSides":23,"pointsPerLevel":19.383800506591797,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":5,"spellId":502489,"level":65,"description":"Gleaming VigilRank 520 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 806 to 833 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"shield","coefficient":4,"basePoints":806,"dieSides":28,"pointsPerLevel":24.24370002746582,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-27-guidance-intervention-96-503517","classId":"sun-cleric","dbcSpellId":503517,"name":"Guidance: Intervention","unlockLevel":17,"icon":"/assets/ui/spells/ability_paladin_beaconsoflight.png","sigil":"GI","description":"Guidance: InterventionRank 218% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":6,"auraType":40,"miscValue":127,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503517,"level":17,"description":"Guidance: InterventionRank 218% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":6,"auraType":40,"miscValue":127,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":3,"spellId":503518,"level":33,"description":"Guidance: InterventionRank 318% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":6,"auraType":40,"miscValue":127,"triggerSpellId":0,"durationMs":21000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":4,"spellId":503519,"level":49,"description":"Guidance: InterventionRank 418% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":6,"auraType":40,"miscValue":127,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":5,"spellId":503520,"level":65,"description":"Guidance: InterventionRank 518% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":6,"auraType":40,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}]},{"id":"coa-tree-4547","classId":"sun-cleric","dbcSpellId":704910,"name":"Sun Worship","unlockLevel":20,"icon":"/assets/ui/spells/ability_paladin_gaurdedbythelight.png","sigil":"SW","description":"Level 20 Passive Increases your healing power by 15% of your Intellect and your spell haste rating by 25% of your Intellect.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":175,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":524288,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704910,"level":20,"description":"Level 20 Passive Increases your healing power by 15% of your Intellect and your spell haste rating by 25% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":175,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":524288,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4547},{"id":"coa-tree-4649","classId":"sun-cleric","dbcSpellId":561023,"name":"Sun-Touched Armor","unlockLevel":20,"icon":"/assets/ui/spells/spell_fire_firearmor.png","sigil":"ST","description":"Level 20 Passive Increases your Armor by 150% of your Strength and Intellect and increases your total Stamina by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":182,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":182,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561023,"level":20,"description":"Level 20 Passive Increases your Armor by 150% of your Strength and Intellect and increases your total Stamina by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":182,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":182,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":2,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4649},{"id":"coa-tree-4546","classId":"sun-cleric","dbcSpellId":805301,"name":"Holy Form","unlockLevel":30,"icon":"/assets/ui/spells/spell_holy_auramastery.png","sigil":"HF","description":"Ascend into a holy form, increasing your healing done by 10%, increasing your Holy critical strike chance by 5%, and reducing your threat generated by -50%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":71,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":10,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805301,"level":30,"description":"Ascend into a holy form, increasing your healing done by 10%, increasing your Holy critical strike chance by 5%, and reducing your threat generated by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":71,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":10,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4546},{"id":"coa-tree-9650","classId":"sun-cleric","dbcSpellId":561159,"name":"Holy Strength","unlockLevel":30,"icon":"/assets/ui/spells/spell_holy_blessingofprotection.png","sigil":"HS","description":"Level 30 Passive Increases your spell power by 100% of your Strength.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":55,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":175,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561159,"level":30,"description":"Level 30 Passive Increases your spell power by 100% of your Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":55,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":174,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":175,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9650},{"id":"coa-27-radiant-cascade-96-500141","classId":"sun-cleric","dbcSpellId":500141,"name":"Radiant Cascade","unlockLevel":30,"icon":"/assets/ui/spells/ability_priest_cascade.png","sigil":"RC","description":"Radiant CascadeRank 131% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 207++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","target":"friendly","range":{"min":0,"max":40},"radius":15,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":2.25481484024613,"basePoints":207,"dieSides":23,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500141,"level":30,"description":"Radiant CascadeRank 131% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 207++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":2.25481484024613,"basePoints":207,"dieSides":23,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502407,"level":36,"description":"Radiant CascadeRank 231% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 271++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":2.648235321044922,"basePoints":271,"dieSides":26,"pointsPerLevel":3.380000114440918,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"utility","effectType":3,"auraType":0,"miscValue":120977,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502408,"level":42,"description":"Radiant CascadeRank 331% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 326++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":2.978596486543354,"basePoints":326,"dieSides":30,"pointsPerLevel":4.019999980926514,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"utility","effectType":3,"auraType":0,"miscValue":120977,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502409,"level":48,"description":"Radiant CascadeRank 431% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 401++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":3.4355555943080356,"basePoints":401,"dieSides":33,"pointsPerLevel":4.840000152587891,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"utility","effectType":3,"auraType":0,"miscValue":120977,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502410,"level":54,"description":"Radiant CascadeRank 531% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 477++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":4,"basePoints":477,"dieSides":37,"pointsPerLevel":11.720000267028809,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56},{"kind":"utility","effectType":3,"auraType":0,"miscValue":120977,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502411,"level":58,"description":"Radiant CascadeRank 631% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 523++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31},"effects":[{"kind":"heal","coefficient":2.9436529629851043,"basePoints":523,"dieSides":39,"pointsPerLevel":1.7699999809265137,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":74},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-solar-invocation-ascension-96-500152","classId":"sun-cleric","dbcSpellId":500152,"name":"Solar Invocation: Ascension","unlockLevel":30,"icon":"/assets/ui/spells/spell_priest_pontifex.png","sigil":"SI","description":"Solar Invocation: AscensionRank 135% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 107++SP*1.55. Shares a cooldown with other Solar Invocation spells.","target":"hostile","range":{"min":0,"max":0},"radius":40,"castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"heal","coefficient":0.44999998807907104,"basePoints":107,"dieSides":26,"pointsPerLevel":3.119999885559082,"bonusPowerCoefficient":0.44999998807907104,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500152,"level":30,"description":"Solar Invocation: AscensionRank 135% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 107++SP*1.55. Shares a cooldown with other Solar Invocation spells.","castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"heal","coefficient":0.44999998807907104,"basePoints":107,"dieSides":26,"pointsPerLevel":3.119999885559082,"bonusPowerCoefficient":0.44999998807907104,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502440,"level":38,"description":"Solar Invocation: AscensionRank 235% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 136++SP*1.55. Shares a cooldown with other Solar Invocation spells.","castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"heal","coefficient":1.684528317841344,"basePoints":136,"dieSides":42,"pointsPerLevel":2.930000066757202,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"utility","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502441,"level":48,"description":"Solar Invocation: AscensionRank 335% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 170++SP*1.55. Shares a cooldown with other Solar Invocation spells.","castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"heal","coefficient":2.3302645405764304,"basePoints":170,"dieSides":58,"pointsPerLevel":5.039999961853027,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":572157,"level":56,"description":"Solar Invocation: AscensionRank 435% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 203++SP*1.55. Shares a cooldown with other Solar Invocation spells.","castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"heal","coefficient":2.1877198376006364,"basePoints":203,"dieSides":72,"pointsPerLevel":4.062220096588135,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":65},{"kind":"utility","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4747","classId":"sun-cleric","dbcSpellId":300353,"name":"Heaven’s Appraisal","unlockLevel":40,"icon":"/assets/ui/spells/ability_priest_wordsofmeaning.png","sigil":"HS","description":"Level 40 Passive Increases the effectiveness of your Fulfillment effects by 25%. In addition, the Fulfillment effect granted by Vow of Dawn now triples the amount of targets struck.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300353,"level":40,"description":"Level 40 Passive Increases the effectiveness of your Fulfillment effects by 25%. In addition, the Fulfillment effect granted by Vow of Dawn now triples the amount of targets struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4747},{"id":"coa-tree-4651","classId":"sun-cleric","dbcSpellId":807654,"name":"Solar Discernment","unlockLevel":40,"icon":"/assets/ui/spells/5_paladinskill13_border.png","sigil":"SD","description":"Level 40 Passive Increases your critical strike rating and expertise rating by 12% of your Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":1792,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":8388608,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807654,"level":40,"description":"Level 40 Passive Increases your critical strike rating and expertise rating by 12% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":220,"miscValue":1792,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":220,"miscValue":8388608,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4651},{"id":"coa-tree-11651","classId":"sun-cleric","dbcSpellId":704935,"name":"Clarity of the Heavens","unlockLevel":50,"icon":"/assets/ui/spells/spell_holy_ardentdefender.png","sigil":"CO","description":"Level 50 Passive Increases your block value by 50% of your Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":707776,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704935,"level":50,"description":"Level 50 Passive Increases your block value by 50% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":707776,"durationMs":-1}]}],"talentEntryId":11651},{"id":"coa-tree-9747","classId":"sun-cleric","dbcSpellId":300339,"name":"The Redeemer","unlockLevel":50,"icon":"/assets/ui/spells/5_priestskill01_border.png","sigil":"TR","description":"Level 50 Passive When you critically heal your target, they will be healed for 30% of the amount originally healed the next time they take damage. Lasts 15 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300339,"level":50,"description":"Level 50 Passive When you critically heal your target, they will be healed for 30% of the amount originally healed the next time they take damage. Lasts 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9747},{"id":"coa-27-firefall-134-983368","classId":"sun-cleric","dbcSpellId":983368,"name":"Firefall","unlockLevel":60,"icon":"/assets/ui/spells/5_firerainnobg_border.png","sigil":"FI","description":"FirefallRank 135% of base mana Instant cast1 min cooldownYou summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing 121 to 136 Fire damage. Also causes 22 Fire damage to all other enemies within 5 yards of the enemy target. Maximum 16 stars. Lasts 8 sec. Shapeshifting into an animal form or mounting cancels the effect. Any effect which causes you to lose control of your character will suppress the starfall effect. After the effect ends you gain Hot Streak if you know the final talent of it.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":983369,"durationMs":8000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":983368,"level":60,"description":"FirefallRank 135% of base mana Instant cast1 min cooldownYou summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing 121 to 136 Fire damage. Also causes 22 Fire damage to all other enemies within 5 yards of the enemy target. Maximum 16 stars. Lasts 8 sec. Shapeshifting into an animal form or mounting cancels the effect. Any effect which causes you to lose control of your character will suppress the starfall effect. After the effect ends you gain Hot Streak if you know the final talent of it.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":983369,"durationMs":8000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":2,"spellId":284680,"level":70,"description":"FirefallRank 235% of base mana Instant cast1 min cooldownUnleash a flurry of fiery stars from the sky, each impact deals 121 to 136 Fire damage before exploding for an additional 22 Fire damage to enemies within 5 yards. The effect lasts 8 sec, summoning up to 16 stars within 20 yards of you. The final star grants you Hot Streak if known. This uses Starfall modifiers. Canceled if you shapeshift, lose character control, or mount. Hot Streak Your next Pyroblast is instant.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":284683,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":48108,"durationMs":8000}]},{"rank":3,"spellId":284681,"level":75,"description":"FirefallRank 335% of base mana Instant cast1 min cooldownUnleash a flurry of fiery stars from the sky, each impact deals 121 to 136 Fire damage before exploding for an additional 22 Fire damage to enemies within 5 yards. The effect lasts 8 sec, summoning up to 16 stars within 20 yards of you. The final star grants you Hot Streak if known. This uses Starfall modifiers. Canceled if you shapeshift, lose character control, or mount. Hot Streak Your next Pyroblast is instant.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":284684,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":48108,"durationMs":8000}]},{"rank":4,"spellId":284682,"level":80,"description":"FirefallRank 435% of base mana Instant cast1 min cooldownUnleash a flurry of fiery stars from the sky, each impact deals 121 to 136 Fire damage before exploding for an additional 22 Fire damage to enemies within 5 yards. The effect lasts 8 sec, summoning up to 16 stars within 20 yards of you. The final star grants you Hot Streak if known. This uses Starfall modifiers. Canceled if you shapeshift, lose character control, or mount. Hot Streak Your next Pyroblast is instant.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":284685,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":48108,"durationMs":8000}]}]}],"tinker":[{"id":"coa-tree-29440","classId":"tinker","dbcSpellId":801744,"name":"Air Strike","unlockLevel":1,"icon":"/assets/ui/spells/ability_mount_gyrocoptor.png","sigil":"AS","description":"Mark the target location for an Air Strike. After 7 seconds, it deals 1250 Fire damage to up to 12 enemies caught within the blast. This ability always critically strikes.","target":"hostile","range":{"min":0,"max":60},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":801745,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801744,"level":1,"description":"Mark the target location for an Air Strike. After 7 seconds, it deals 1250 Fire damage to up to 12 enemies caught within the blast. This ability always critically strikes.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":801745,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]}],"talentEntryId":29440},{"id":"coa-tree-5997","classId":"tinker","dbcSpellId":520445,"name":"Auto Resuscitation Device","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_enggizmos_15.png","sigil":"AR","description":"Attach a resuscitation device to your target ally for 20 seconds. When the target would otherwise die, they are instead healed for 50% of their maximum health.","target":"friendly","range":{"min":0,"max":20},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.4444444444444444,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520445,"level":1,"description":"Attach a resuscitation device to your target ally for 20 seconds. When the target would otherwise die, they are instead healed for 50% of their maximum health.","castMode":"cast","castTimeMs":1500,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.4444444444444444,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"durationMs":20000}]}],"talentEntryId":5997},{"id":"coa-28-blasting-barrels-99-705835","classId":"tinker","dbcSpellId":705835,"name":"Blasting Barrels","unlockLevel":1,"icon":"/assets/ui/spells/5_gunshot_(3)_border.png","sigil":"BB","description":"Blasting BarrelsRank 1InstantIncreases critical strike damage by 0% and increases damage dealt by Rounds by 0%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705835,"level":1,"description":"Blasting BarrelsRank 1InstantIncreases critical strike damage by 0% and increases damage dealt by Rounds by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30583","classId":"tinker","dbcSpellId":560754,"name":"Build: Alarm Beacon","unlockLevel":1,"icon":"/assets/ui/spells/inv_lightforgedmechsuit.png","sigil":"BA","description":"3 Charges, 15 sec recharge Throw down an alarm beacon for 10 seconds, removing fear, charm and sleep effects from up to 1 ally within 20 yds every 1 sec.","target":"hostile","range":{"min":0,"max":20},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":500361,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560754,"level":1,"description":"3 Charges, 15 sec recharge Throw down an alarm beacon for 10 seconds, removing fear, charm and sleep effects from up to 1 ally within 20 yds every 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":500361,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":30583},{"id":"coa-tree-29203","classId":"tinker","dbcSpellId":804673,"name":"Build: Destructo-Bot","unlockLevel":1,"icon":"/assets/ui/spells/little_bomb_bro.png","sigil":"BD","description":"Build a Destructo-Bot that you can see through and directly control. The bot is capable of exploding, dealing massive Fire damage to enemies nearby and disorienting them for 3 seconds.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"channel","castTimeMs":45000,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50300,"triggerSpellId":0,"durationMs":45000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":45000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804673,"level":1,"description":"Build a Destructo-Bot that you can see through and directly control. The bot is capable of exploding, dealing massive Fire damage to enemies nearby and disorienting them for 3 seconds.","castMode":"channel","castTimeMs":45000,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50300,"triggerSpellId":0,"durationMs":45000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":45000}]}],"talentEntryId":29203},{"id":"coa-tree-4051","classId":"tinker","dbcSpellId":92141,"name":"Build: Mechsuit","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_815_uberspanner.png","sigil":"BM","description":"Level 10 Passive Teaches you Build: Mechsuit. You can now generate Scrap to build your Mechsuit and Scrap Shot and Sticky Bomb now generate Scrap. Build: MechsuitActivate your Mechsuit, draining 5 Scrap every sec, increasing damage dealt by 10%, your armor by 800, and your movement speed by 15%. If you run out of Scrap while active, you are ejected from the Mechsuit. While active, your Scrap Shot is transformed into Gatling Gun.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706535,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92141,"level":1,"description":"Level 10 Passive Teaches you Build: Mechsuit. You can now generate Scrap to build your Mechsuit and Scrap Shot and Sticky Bomb now generate Scrap. Build: MechsuitActivate your Mechsuit, draining 5 Scrap every sec, increasing damage dealt by 10%, your armor by 800, and your movement speed by 15%. If you run out of Scrap while active, you are ejected from the Mechsuit. While active, your Scrap Shot is transformed into Gatling Gun.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706535,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4051},{"id":"coa-tree-9987","classId":"tinker","dbcSpellId":706904,"name":"Build: Repulsion Unit","unlockLevel":1,"icon":"/assets/ui/spells/repulsionunit.png","sigil":"BR","description":"Build a Repulsion Unit that periodically knocks nearby enemies back every 5 sec for 20 seconds.","target":"self","range":{"min":0,"max":0},"radius":2,"castMode":"cast","castTimeMs":1250,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":32},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":500366,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":706904,"level":1,"description":"Build a Repulsion Unit that periodically knocks nearby enemies back every 5 sec for 20 seconds.","castMode":"cast","castTimeMs":1250,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":32},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":500366,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":9987},{"id":"coa-tree-4050","classId":"tinker","dbcSpellId":92140,"name":"Build: ZIGGI-6K","unlockLevel":1,"icon":"/assets/ui/spells/inv_plate_mechagnome_c_01shoulder.png","sigil":"BZ","description":"Level 10 Passive Teaches you Build: ZIGGI-6K.Build: ZIGGI-6KBuild ZIGGI-6K, the latest in regenerative technology, to aid you in healing allies until dismissed.","target":"friendly","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":354,"miscValue":0,"triggerSpellId":520375,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92140,"level":1,"description":"Level 10 Passive Teaches you Build: ZIGGI-6K.Build: ZIGGI-6KBuild ZIGGI-6K, the latest in regenerative technology, to aid you in healing allies until dismissed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":354,"miscValue":0,"triggerSpellId":520375,"durationMs":-1}]}],"talentEntryId":4050},{"id":"coa-tree-29209","classId":"tinker","dbcSpellId":801706,"name":"Bunker Operative","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_sonicenvironmentenhancer.png","sigil":"BO","description":"Reduces the cooldown of Kinetic Shield, Discombobulate!, and Repulsion Unit by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801706,"level":1,"description":"Reduces the cooldown of Kinetic Shield, Discombobulate!, and Repulsion Unit by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29209},{"id":"coa-tree-5116","classId":"tinker","dbcSpellId":505336,"name":"Clockwork Ingenuity","unlockLevel":1,"icon":"/assets/ui/spells/t_roboticon.png","sigil":"CI","description":"Increases the maximum health of your summons by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":505336,"level":1,"description":"Increases the maximum health of your summons by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5116},{"id":"coa-tree-4871","classId":"tinker","dbcSpellId":704107,"name":"Concussive Spanner","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_brainfreeze.png","sigil":"CS","description":"Your Spanner Smash will now apply Concussion to the target.ConcussionYour target is unable to critically strike and their total primary attributes are reduced by -5% for 8 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":653254,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704107,"level":1,"description":"Your Spanner Smash will now apply Concussion to the target.ConcussionYour target is unable to critically strike and their total primary attributes are reduced by -5% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":653254,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4871},{"id":"coa-tree-4987","classId":"tinker","dbcSpellId":707398,"name":"Cutting Edge Technology","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_reavesmodule.png","sigil":"CE","description":"Increases the tick rate and healing done of Nanobot Reconstruction by 20%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707398,"level":1,"description":"Increases the tick rate and healing done of Nanobot Reconstruction by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4987},{"id":"coa-tree-30839","classId":"tinker","dbcSpellId":500236,"name":"Deathball","unlockLevel":1,"icon":"/assets/ui/spells/ability_garrosh_siege_engine.png","sigil":"DE","description":"Launch 3 Deathballs in a line, increasing in speed the further they travel. They explode when they come into contact with an enemy, dealing 1150 + 35% ranged AP Fire damage to nearby enemies, increased based on distance traveled. Bot and Build abilities reduce the cooldown of this ability by -2 sec.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":226312,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":226312,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":226312,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500236,"level":1,"description":"Launch 3 Deathballs in a line, increasing in speed the further they travel. They explode when they come into contact with an enemy, dealing 1150 + 35% ranged AP Fire damage to nearby enemies, increased based on distance traveled. Bot and Build abilities reduce the cooldown of this ability by -2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":226312,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":226312,"triggerSpellId":0,"durationMs":4000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":226312,"triggerSpellId":0,"durationMs":4000}]}],"talentEntryId":30839},{"id":"coa-28-demolition-100-705823","classId":"tinker","dbcSpellId":705823,"name":"Demolition","unlockLevel":1,"icon":"/assets/ui/spells/inv_firearm_2h_rifle_draenorraid_d_01.png","sigil":"DE","description":"DemolitionRank 1InstantIncreases the damage of Bomb Launcher shots by 4% and the critical strike chance of Rocket Launcher by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705823,"level":1,"description":"DemolitionRank 1InstantIncreases the damage of Bomb Launcher shots by 4% and the critical strike chance of Rocket Launcher by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705824,"level":1,"description":"DemolitionRank 2InstantIncreases the damage of Bomb Launcher shots by 8% and the critical strike chance of Rocket Launcher by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-31235","classId":"tinker","dbcSpellId":705806,"name":"Efficiency","unlockLevel":1,"icon":"/assets/ui/spells/inv_bountyhunting.png","sigil":"EF","description":"Reduces the mana cost of all spells and abilities by -10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705806,"level":1,"description":"Reduces the mana cost of all spells and abilities by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":31235},{"id":"coa-28-enhanced-remote-102-706373","classId":"tinker","dbcSpellId":706373,"name":"Enhanced Remote","unlockLevel":1,"icon":"/assets/ui/spells/_hearthstonegizmo_rogue.png","sigil":"ER","description":"Enhanced RemoteRank 2Increases the base damage of Bot: Crash & Thrash by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706373,"level":1,"description":"Enhanced RemoteRank 2Increases the base damage of Bot: Crash & Thrash by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-5998","classId":"tinker","dbcSpellId":704111,"name":"Explosive Personality","unlockLevel":1,"icon":"/assets/ui/spells/custom_engineerskill_35_border.png","sigil":"EP","description":"Increases your ranged attack power by 50% of your Intellect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":212,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704111,"level":1,"description":"Increases your ranged attack power by 50% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":212,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":707833,"level":1,"description":"Increases your ranged attack power by 100% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":212,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5998},{"id":"coa-28-flexible-thinking-100-705826","classId":"tinker","dbcSpellId":705826,"name":"Flexible Thinking","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_leystone_buoy.png","sigil":"FT","description":"Flexible ThinkingRank 2Increases Agility and Intellect by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705826,"level":1,"description":"Flexible ThinkingRank 2Increases Agility and Intellect by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6551","classId":"tinker","dbcSpellId":705825,"name":"Flexible Thinking","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_leystone_buoy.png","sigil":"FT","description":"Increases Agility and Intellect by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705825,"level":1,"description":"Increases Agility and Intellect by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705826,"level":1,"description":"Flexible ThinkingRank 2Increases Agility and Intellect by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":137,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6551},{"id":"coa-tree-5974","classId":"tinker","dbcSpellId":707265,"name":"Frozen Bomb Launcher","unlockLevel":1,"icon":"/assets/ui/spells/inv_eng_bombicestun.png","sigil":"FB","description":"Damage dealt by your Sentry Turrets will now slow enemy movement speed by -15% for 10 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":50,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":190,"auraType":42,"miscValue":0,"triggerSpellId":707266,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707265,"level":1,"description":"Damage dealt by your Sentry Turrets will now slow enemy movement speed by -15% for 10 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":190,"auraType":42,"miscValue":0,"triggerSpellId":707266,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5974},{"id":"coa-tree-5996","classId":"tinker","dbcSpellId":806762,"name":"Goblin Depravity","unlockLevel":1,"icon":"/assets/ui/spells/ability_mount_gyrocoptorelite.png","sigil":"GD","description":"Air Strike now drops Tear Gas, dealing 132 + 11% nature SP + 100% AP Nature damage every 2 sec for 12 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806762,"level":1,"description":"Air Strike now drops Tear Gas, dealing 132 + 11% nature SP + 100% AP Nature damage every 2 sec for 12 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5996},{"id":"coa-28-hastened-shots-100-705813","classId":"tinker","dbcSpellId":705813,"name":"Hastened Shots","unlockLevel":1,"icon":"/assets/ui/spells/_smallgun_red.png","sigil":"HS","description":"Hastened ShotsRank 2Reduces the cast time of Repair Shots and reduces the cooldown of Rounds by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705813,"level":1,"description":"Hastened ShotsRank 2Reduces the cast time of Repair Shots and reduces the cooldown of Rounds by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-28-high-tech-shots-none-806608","classId":"tinker","dbcSpellId":806608,"name":"High Tech Shots","unlockLevel":1,"icon":"/assets/ui/spells/nhi_poisongun_border.png","sigil":"HT","description":"High Tech ShotsRank 2Increases the critical strike chance of Repair Shot and Scrap Shot by 8%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":806608,"level":1,"description":"High Tech ShotsRank 2Increases the critical strike chance of Repair Shot and Scrap Shot by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6829","classId":"tinker","dbcSpellId":503534,"name":"I'm The Creator Now","unlockLevel":1,"icon":"/assets/ui/spells/nhi_tech_roboticcalm_border.png","sigil":"IM","description":"Damage dealt by your summons now has a 40% chance to increase your attack power and spell power by 9 for 30 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":190,"auraType":42,"miscValue":0,"triggerSpellId":503549,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503534,"level":1,"description":"Damage dealt by your summons now has a 40% chance to increase your attack power and spell power by 9 for 30 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":190,"auraType":42,"miscValue":0,"triggerSpellId":503549,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6829},{"id":"coa-28-improved-explosives-100-705773","classId":"tinker","dbcSpellId":705773,"name":"Improved Explosives","unlockLevel":1,"icon":"/assets/ui/spells/ability_vehicle_demolisherflamecatapult.png","sigil":"IE","description":"Improved ExplosivesRank 2Increases Fire Damage dealt by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705773,"level":1,"description":"Improved ExplosivesRank 2Increases Fire Damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-28-improved-reload-99-705768","classId":"tinker","dbcSpellId":705768,"name":"Improved Reload","unlockLevel":1,"icon":"/assets/ui/spells/_smallgun_orange.png","sigil":"IR","description":"Improved ReloadRank 1Reduces the cost of Reload by 0%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":705768,"level":1,"description":"Improved ReloadRank 1Reduces the cost of Reload by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":705769,"level":1,"description":"Improved ReloadRank 2Reduces the cost of Reload by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-28-improved-remote-detonation-102-705784","classId":"tinker","dbcSpellId":705784,"name":"Improved Remote Detonation","unlockLevel":1,"icon":"/assets/ui/spells/inv_wildfirebomb_blood.png","sigil":"IR","description":"Improved Remote DetonationRank 1Reduces the cooldown of Remote Detonation by 5 sec and increases its damage by 25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":705784,"level":1,"description":"Improved Remote DetonationRank 1Reduces the cooldown of Remote Detonation by 5 sec and increases its damage by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":705785,"level":1,"description":"Improved Remote DetonationRank 2Reduces the cooldown of Remote Detonation by 10 sec and increases its damage by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30869","classId":"tinker","dbcSpellId":806224,"name":"Kinetic Shield","unlockLevel":1,"icon":"/assets/ui/spells/garrison_bluearmorupgrade.png","sigil":"KS","description":"Create magnetic shields of kinetic energy on an ally target for 8 seconds, reducing damage taken by -40% and making them immune to stun effects. Usable while stunned.","target":"friendly","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"energy","amount":38},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":12,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806224,"level":1,"description":"Create magnetic shields of kinetic energy on an ally target for 8 seconds, reducing damage taken by -40% and making them immune to stun effects. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"energy","amount":38},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":12,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}],"talentEntryId":30869},{"id":"coa-tree-6890","classId":"tinker","dbcSpellId":506632,"name":"Mechanical Enhancements","unlockLevel":1,"icon":"/assets/ui/spells/inv_plate_mechagnome_c_01chest.png","sigil":"ME","description":"Reduces your damage taken from bleed effects by -10% and the duration of bleed effects on you by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":255,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":506632,"level":1,"description":"Reduces your damage taken from bleed effects by -10% and the duration of bleed effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":255,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6890},{"id":"coa-tree-8355","classId":"tinker","dbcSpellId":800347,"name":"Med Pack","unlockLevel":1,"icon":"/assets/ui/spells/inv_first_aid_70_medicalkit.png","sigil":"MP","description":"Med PackRank 130% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(34+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","target":"friendly","range":{"min":0,"max":10},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"hot","coefficient":0.5169892464914629,"basePoints":34,"dieSides":1,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806158,"durationMs":6000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800347,"level":1,"description":"Med PackRank 130% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(34+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"hot","coefficient":0.5169892464914629,"basePoints":34,"dieSides":1,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806158,"durationMs":6000}]}],"talentEntryId":8355},{"id":"coa-28-modular-charges-99-705767","classId":"tinker","dbcSpellId":705767,"name":"Modular Charges","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_ammo_bullet_01.png","sigil":"MC","description":"Modular ChargesRank 2Increases the effectiveness of the charge effects granted by Rounds by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705767,"level":1,"description":"Modular ChargesRank 2Increases the effectiveness of the charge effects granted by Rounds by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6979","classId":"tinker","dbcSpellId":560744,"name":"My Greatest Invention!","unlockLevel":1,"icon":"/assets/ui/spells/achievement_alliedrace_mechagnome.png","sigil":"MG","description":"Show off your Greatest Invention, healing party and raid members in a 30 yd radius for 823 + 65% healing every 2 sec for 9 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":22},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":500362,"triggerSpellId":0,"durationMs":9000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560744,"level":1,"description":"Show off your Greatest Invention, healing party and raid members in a 30 yd radius for 823 + 65% healing every 2 sec for 9 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":22},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":500362,"triggerSpellId":0,"durationMs":9000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000}]}],"talentEntryId":6979},{"id":"coa-28-nanobot-deconstruction-100-801808","classId":"tinker","dbcSpellId":801808,"name":"Nanobot Deconstruction","unlockLevel":1,"icon":"/assets/ui/spells/spell_druid_swarm.png","sigil":"ND","description":"Nanobot DeconstructionRank 17% of base mana Instant castSend your Nanobots to an enemy, dealing 4 to 5 Arcane damage every second for up to 24 sec. Your Nanobots can only be sent to 1 target at time.","target":"hostile","range":{"min":0,"max":45},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.10444444451067182,"basePoints":4,"dieSides":2,"pointsPerLevel":0.20000000298023224,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":8,"intervalMs":3000,"tag":"spell-801808"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":24000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":24000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801808,"level":1,"description":"Nanobot DeconstructionRank 17% of base mana Instant castSend your Nanobots to an enemy, dealing 4 to 5 Arcane damage every second for up to 24 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.10444444451067182,"basePoints":4,"dieSides":2,"pointsPerLevel":0.20000000298023224,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":8,"intervalMs":3000,"tag":"spell-801808"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":24000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":24000}]},{"rank":2,"spellId":502544,"level":10,"description":"Nanobot DeconstructionRank 27% of base mana Instant castSend your Nanobots to an enemy, dealing 6 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.1246666677792867,"basePoints":6,"dieSides":1,"pointsPerLevel":0.33500000834465027,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":15,"intervalMs":1000,"tag":"spell-502544"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":502545,"level":19,"description":"Nanobot DeconstructionRank 37% of base mana Instant castSend your Nanobots to an enemy, dealing 9 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.17326960668844335,"basePoints":9,"dieSides":1,"pointsPerLevel":0.45649999380111694,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27,"ticks":15,"intervalMs":1000,"tag":"spell-502545"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":502546,"level":28,"description":"Nanobot DeconstructionRank 47% of base mana Instant castSend your Nanobots to an enemy, dealing 15 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.24173643607501835,"basePoints":15,"dieSides":1,"pointsPerLevel":0.578000009059906,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":15,"intervalMs":1000,"tag":"spell-502546"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":502547,"level":37,"description":"Nanobot DeconstructionRank 57% of base mana Instant castSend your Nanobots to an enemy, dealing 23 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.3133429544858443,"basePoints":23,"dieSides":1,"pointsPerLevel":0.6995000243186951,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44,"ticks":15,"intervalMs":1000,"tag":"spell-502547"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":6,"spellId":502548,"level":45,"description":"Nanobot DeconstructionRank 67% of base mana Instant castSend your Nanobots to an enemy, dealing 36 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.4018750011920929,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8075000047683716,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53,"ticks":15,"intervalMs":1000,"tag":"spell-502548"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":7,"spellId":502549,"level":54,"description":"Nanobot DeconstructionRank 77% of base mana Instant castSend your Nanobots to an enemy, dealing 58 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.5225410680264091,"basePoints":58,"dieSides":1,"pointsPerLevel":0.9290000200271606,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62,"ticks":15,"intervalMs":1000,"tag":"spell-502549"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":8,"spellId":502550,"level":63,"description":"Nanobot DeconstructionRank 87% of base mana Instant castSend your Nanobots to an enemy, dealing 93 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":0.7070512756323203,"basePoints":93,"dieSides":1,"pointsPerLevel":1.149999976158142,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71,"ticks":15,"intervalMs":1000,"tag":"spell-502550"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":9,"spellId":502551,"level":72,"description":"Nanobot DeconstructionRank 97% of base mana Instant castSend your Nanobots to an enemy, dealing 147 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":7},"effects":[{"kind":"dot","coefficient":1.066666679820795,"basePoints":147,"dieSides":1,"pointsPerLevel":1.8250000476837158,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":15,"intervalMs":1000,"tag":"spell-502551"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-tree-29813","classId":"tinker","dbcSpellId":801809,"name":"Nanobot Reconstruction","unlockLevel":1,"icon":"/assets/ui/spells/ability_shaman_repulsiontotem.png","sigil":"NR","description":"Nanobot ReconstructionRank 117% of base mana Instant castSend Nanobots to an ally, healing them for 360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.05000000074505806,"basePoints":6,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10,"maxScalingLevel":14,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801809,"level":1,"description":"Nanobot ReconstructionRank 117% of base mana Instant castSend Nanobots to an ally, healing them for 360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.05000000074505806,"basePoints":6,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10,"maxScalingLevel":14,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]}],"talentEntryId":29813},{"id":"coa-tree-4049","classId":"tinker","dbcSpellId":92138,"name":"Napalm","unlockLevel":1,"icon":"/assets/ui/spells/inv_eng_bombfire.png","sigil":"NA","description":"Level 10 Passive Dealing direct Fire damage now applies Napalm to your target.Napalm (Damage)Fire Damage taken by you is increased and healing received reduced by -3% for 8 seconds. Stacks 10 times.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92138,"level":1,"description":"Level 10 Passive Dealing direct Fire damage now applies Napalm to your target.Napalm (Damage)Fire Damage taken by you is increased and healing received reduced by -3% for 8 seconds. Stacks 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4049},{"id":"coa-28-precision-scopes-99-705807","classId":"tinker","dbcSpellId":705807,"name":"Precision Scopes","unlockLevel":1,"icon":"/assets/ui/spells/inv_bountyhunting.png","sigil":"PS","description":"Precision ScopesRank 2Increases critical strike chance by 4%, and the effectiveness of both damaging and healing critical strikes by 20%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":290,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":163,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":50,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705807,"level":1,"description":"Precision ScopesRank 2Increases critical strike chance by 4%, and the effectiveness of both damaging and healing critical strikes by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":290,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":163,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":50,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-28-quickscope-99-805686","classId":"tinker","dbcSpellId":805686,"name":"Quickscope","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_snipingscope.png","sigil":"QU","description":"QuickscopeRank 1InstantGives Scrap Shot and Gunsling a 15% chance to make your next Snipe instant, deal 0% increased damage, and guaranteed to critically strike.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805663,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":805686,"level":1,"description":"QuickscopeRank 1InstantGives Scrap Shot and Gunsling a 15% chance to make your next Snipe instant, deal 0% increased damage, and guaranteed to critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805663,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6001","classId":"tinker","dbcSpellId":705781,"name":"Refined Gunpowder","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_ammo_gunpowder_02.png","sigil":"RG","description":"Increases your haste and your damage dealt against Mechanical creatures by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":168,"miscValue":256,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":168,"miscValue":256,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705781,"level":1,"description":"Increases your haste and your damage dealt against Mechanical creatures by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":168,"miscValue":256,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":168,"miscValue":256,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705782,"level":1,"description":"Increases your haste and your damage dealt against Mechanical creatures by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":168,"miscValue":256,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":168,"miscValue":256,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6001},{"id":"tinker-remote-detonation","classId":"tinker","dbcSpellId":801798,"name":"Remote Detonation","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_mindbomb.png","sigil":"RD","description":"Trigger a planted explosive from a safe distance.","target":"hostile","range":{"min":0,"max":30},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":7000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.25}],"source":"coa-starter"},{"id":"coa-tree-34987","classId":"tinker","dbcSpellId":706695,"name":"Rocket Bombardment","unlockLevel":1,"icon":"/assets/ui/spells/5_engineerskill25_border.png","sigil":"RB","description":"Casting Sticky Bomb now causes your Sentry Turret to fire a rocket cluster on its next attack, causing 126 Fire damage to enemies within 5 yds of the target.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706698,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706695,"level":1,"description":"Casting Sticky Bomb now causes your Sentry Turret to fire a rocket cluster on its next attack, causing 126 Fire damage to enemies within 5 yds of the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706698,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34987},{"id":"coa-tree-31113","classId":"tinker","dbcSpellId":500241,"name":"Rocket Boots","unlockLevel":1,"icon":"/assets/ui/spells/inv_gizmo_rocketbootextreme.png","sigil":"RB","description":"3 Charges, 30 sec recharge Activate your Rocket Boots, dispelling root effects and launching you forward.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":14},"effects":[{"kind":"utility","effectType":138,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":108,"auraType":0,"miscValue":7,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500241,"level":1,"description":"3 Charges, 30 sec recharge Activate your Rocket Boots, dispelling root effects and launching you forward.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":14},"effects":[{"kind":"utility","effectType":138,"auraType":0,"miscValue":150,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":108,"auraType":0,"miscValue":7,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":31113},{"id":"coa-tree-29613","classId":"tinker","dbcSpellId":500235,"name":"Rocket Launcher","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_rocketbarrage.png","sigil":"RL","description":"Rocket LauncherRank 18% of base mana 3 sec castFire a powerful rocket at an enemy that deals 126+0+RAP*0.35+FireP*.35 Fire damage.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500235,"level":1,"description":"Rocket LauncherRank 18% of base mana 3 sec castFire a powerful rocket at an enemy that deals 126+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29613},{"id":"tinker-rocket-pack","classId":"tinker","dbcSpellId":705820,"name":"Rocket Pack","unlockLevel":1,"icon":"/assets/ui/spells/inv_backpack_wrathion_c_01.png","sigil":"RP","description":"Blast toward a distant target on a rocket pack.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.65},{"kind":"status","status":"stun","durationMs":1200}],"source":"coa-starter"},{"id":"coa-28-rounds-and-rounds-99-300631","classId":"tinker","dbcSpellId":300631,"name":"Rounds and Rounds","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holybullet_border.png","sigil":"RA","description":"Reduces the cooldown of Rounds by $/1000;s1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":300631,"level":1,"description":"Reduces the cooldown of Rounds by $/1000;s1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":705765,"level":1,"description":"Rounds and RoundsRank 2Reduces the cooldown of Rounds by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29777","classId":"tinker","dbcSpellId":806627,"name":"Scrapshielding","unlockLevel":1,"icon":"/assets/ui/spells/uico_mecha_spell_02_border.png","sigil":"SC","description":"Your critical strikes now grant you a shield that absorbs 177 + 15% AP + 60% SP damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806628,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806627,"level":1,"description":"Your critical strikes now grant you a shield that absorbs 177 + 15% AP + 60% SP damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":806628,"durationMs":-1}]}],"talentEntryId":29777},{"id":"coa-28-smoking-gun-99-704108","classId":"tinker","dbcSpellId":704108,"name":"Smoking Gun","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_rifle_44.png","sigil":"SG","description":"Smoking GunRank 1Increases the damage of Gunsling and Handcannon against enemies affected by Sticky Bomb by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704108,"level":1,"description":"Smoking GunRank 1Increases the damage of Gunsling and Handcannon against enemies affected by Sticky Bomb by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-28-repair-shot-480-801707","classId":"tinker","dbcSpellId":801707,"name":"Repair Shot","unlockLevel":2,"icon":"/assets/ui/spells/ability_siege_engineer_automatic_repair_beam.png","sigil":"RS","description":"Repair ShotRank 128% of base mana 1.5 sec castFire a healing stimshot at an ally, healing them for 38+0+Heal*0.7.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":1.2999999523162842,"basePoints":38,"dieSides":12,"pointsPerLevel":2.326930046081543,"bonusPowerCoefficient":1.2999999523162842,"sourceLevel":2,"maxScalingLevel":9},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801707,"level":2,"description":"Repair ShotRank 128% of base mana 1.5 sec castFire a healing stimshot at an ally, healing them for 38+0+Heal*0.7.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":1.2999999523162842,"basePoints":38,"dieSides":12,"pointsPerLevel":2.326930046081543,"bonusPowerCoefficient":1.2999999523162842,"sourceLevel":2,"maxScalingLevel":9},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502573,"level":8,"description":"Repair ShotRank 228% of base mana 2 sec castFire a healing stimshot at an ally, healing them for 86+0+Heal*0.7.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":1.9280602828316067,"basePoints":86,"dieSides":16,"pointsPerLevel":4.942019939422607,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":10},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502574,"level":12,"description":"Repair ShotRank 328% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 142+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":2.9341604915665993,"basePoints":142,"dieSides":25,"pointsPerLevel":6.972249984741211,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502575,"level":18,"description":"Repair ShotRank 428% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 228+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":3.9694824796734434,"basePoints":228,"dieSides":25,"pointsPerLevel":8.498820304870605,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502576,"level":24,"description":"Repair ShotRank 528% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 327+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":4,"basePoints":327,"dieSides":25,"pointsPerLevel":6.603280067443848,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502577,"level":30,"description":"Repair ShotRank 628% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 447+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":4,"basePoints":447,"dieSides":39,"pointsPerLevel":8.616600036621094,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502578,"level":36,"description":"Repair ShotRank 728% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 561+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":4,"basePoints":561,"dieSides":47,"pointsPerLevel":10.77280044555664,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502579,"level":42,"description":"Repair ShotRank 828% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 739+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":4,"basePoints":739,"dieSides":56,"pointsPerLevel":14.128100395202637,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502580,"level":48,"description":"Repair ShotRank 928% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 589+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":4,"basePoints":589,"dieSides":68,"pointsPerLevel":11.465999603271484,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502581,"level":54,"description":"Repair ShotRank 1028% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 935+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":28},"effects":[{"kind":"heal","coefficient":4,"basePoints":935,"dieSides":81,"pointsPerLevel":17.97130012512207,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"tinker-warphole-generator","classId":"tinker","dbcSpellId":801544,"name":"Warphole Generator","unlockLevel":2,"icon":"/assets/ui/spells/inv_misc_enggizmos_35.png","sigil":"WG","description":"Warp the target through unstable machinery.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.65},{"kind":"status","status":"stun","durationMs":2500}],"source":"coa-starter"},{"id":"tinker-magic-cleanser-4000x","classId":"tinker","dbcSpellId":560472,"name":"Magic-Cleanser 4000X","unlockLevel":4,"icon":"/assets/ui/spells/inv_pet_magicalcradadbox.png","sigil":"MC","description":"Deploy a medical gizmo to repair an ally.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"heal","coefficient":1.55}],"source":"coa-starter"},{"id":"coa-28-power-module-480-706742","classId":"tinker","dbcSpellId":706742,"name":"Power Module","unlockLevel":4,"icon":"/assets/ui/spells/inv_gizmo_khoriumpowercore.png","sigil":"PM","description":"Power ModuleRank 19% of base mana Instant castActivates power module on an allied player, increasing attack power by 19 for 30 min. Only one Module per Tinker can be active.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":99,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":124,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706742,"level":4,"description":"Power ModuleRank 19% of base mana Instant castActivates power module on an allied player, increasing attack power by 19 for 30 min. Only one Module per Tinker can be active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":9},"effects":[{"kind":"utility","effectType":6,"auraType":99,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":6,"auraType":124,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-28-sticky-bomb-480-500232","classId":"tinker","dbcSpellId":500232,"name":"Sticky Bomb","unlockLevel":4,"icon":"/assets/ui/spells/inv_misc_blackironbomb.png","sigil":"SB","description":"Sticky BombRank 18% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 17+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500232,"level":4,"description":"Sticky BombRank 18% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 17+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":2,"spellId":502512,"level":12,"description":"Sticky BombRank 28% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 53+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":3,"spellId":502513,"level":20,"description":"Sticky BombRank 38% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 84+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":4,"spellId":502514,"level":28,"description":"Sticky BombRank 48% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 125+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":5,"spellId":502515,"level":36,"description":"Sticky BombRank 58% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 188+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":6,"spellId":502516,"level":44,"description":"Sticky BombRank 68% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 272+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":7,"spellId":502517,"level":52,"description":"Sticky BombRank 78% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 394+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}]},{"id":"coa-28-defibrillate-480-802175","classId":"tinker","dbcSpellId":802175,"name":"Defibrillate","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_enggizmos_02.png","sigil":"DE","description":"DefibrillateRank 120% of base mana 10 sec castBrings up to 5 dead allies within 15 yds back to life with 70 health and 135 mana. Cannot be cast when in combat.","target":"hostile","range":{"min":0,"max":10},"radius":15,"castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802175,"level":10,"description":"DefibrillateRank 120% of base mana 10 sec castBrings up to 5 dead allies within 15 yds back to life with 70 health and 135 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":135,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-28-nanobot-reconstruction-100-801809","classId":"tinker","dbcSpellId":801809,"name":"Nanobot Reconstruction","unlockLevel":10,"icon":"/assets/ui/spells/ability_shaman_repulsiontotem.png","sigil":"NR","description":"Nanobot ReconstructionRank 117% of base mana Instant castSend Nanobots to an ally, healing them for 360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.05000000074505806,"basePoints":6,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10,"maxScalingLevel":14,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801809,"level":10,"description":"Nanobot ReconstructionRank 117% of base mana Instant castSend Nanobots to an ally, healing them for 360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.05000000074505806,"basePoints":6,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10,"maxScalingLevel":14,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":2,"spellId":502552,"level":16,"description":"Nanobot ReconstructionRank 217% of base mana Instant castSend Nanobots to an ally, healing them for 600 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.12817204254929737,"basePoints":10,"dieSides":1,"pointsPerLevel":0.11999999731779099,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":18,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":3,"spellId":502553,"level":20,"description":"Nanobot ReconstructionRank 317% of base mana Instant castSend Nanobots to an ally, healing them for 960 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.17142857171240308,"basePoints":16,"dieSides":1,"pointsPerLevel":0.10000000149011612,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":4,"spellId":502554,"level":26,"description":"Nanobot ReconstructionRank 417% of base mana Instant castSend Nanobots to an ally, healing them for 1440 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.2627642261303537,"basePoints":24,"dieSides":1,"pointsPerLevel":0.3199999928474426,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":28,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":5,"spellId":502555,"level":30,"description":"Nanobot ReconstructionRank 517% of base mana Instant castSend Nanobots to an ally, healing them for 1920 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.27703703862649426,"basePoints":32,"dieSides":1,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":6,"spellId":502556,"level":36,"description":"Nanobot ReconstructionRank 617% of base mana Instant castSend Nanobots to an ally, healing them for 2580 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.38457516283770793,"basePoints":43,"dieSides":1,"pointsPerLevel":0.4399999976158142,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":38,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":7,"spellId":502557,"level":40,"description":"Nanobot ReconstructionRank 717% of base mana Instant castSend Nanobots to an ally, healing them for 3360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.4751515157294996,"basePoints":56,"dieSides":1,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":42,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":8,"spellId":502558,"level":44,"description":"Nanobot ReconstructionRank 817% of base mana Instant castSend Nanobots to an ally, healing them for 3900 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.45175141331839697,"basePoints":65,"dieSides":1,"pointsPerLevel":0.3400000035762787,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":9,"spellId":502559,"level":50,"description":"Nanobot ReconstructionRank 917% of base mana Instant castSend Nanobots to an ally, healing them for 4680 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.5076923043299943,"basePoints":78,"dieSides":1,"pointsPerLevel":0.41999998688697815,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":10,"spellId":502560,"level":56,"description":"Nanobot ReconstructionRank 1017% of base mana Instant castSend Nanobots to an ally, healing them for 5400 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.695962431285303,"basePoints":90,"dieSides":1,"pointsPerLevel":1.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":11,"spellId":502561,"level":60,"description":"Nanobot ReconstructionRank 1117% of base mana Instant castSend Nanobots to an ally, healing them for 6120 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.6239999961853028,"basePoints":102,"dieSides":1,"pointsPerLevel":0.6399999856948853,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":12,"spellId":502562,"level":66,"description":"Nanobot ReconstructionRank 1217% of base mana Instant castSend Nanobots to an ally, healing them for 6780 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.8887242642940317,"basePoints":113,"dieSides":1,"pointsPerLevel":1.559999942779541,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":68,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]},{"rank":13,"spellId":502563,"level":70,"description":"Nanobot ReconstructionRank 1317% of base mana Instant castSend Nanobots to an ally, healing them for 7560 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":17},"effects":[{"kind":"hot","coefficient":0.5995294126809813,"basePoints":126,"dieSides":1,"pointsPerLevel":0.3840000033378601,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80,"ticks":60,"intervalMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]}]},{"id":"coa-28-bomb-toss-99-801005","classId":"tinker","dbcSpellId":801005,"name":"Bomb Toss","unlockLevel":11,"icon":"/assets/ui/spells/5_bomb_border.png","sigil":"BT","description":"Bomb TossRank 16% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 36+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":0.5653846187469287,"basePoints":36,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":572053,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801005,"level":11,"description":"Bomb TossRank 16% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 36+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":0.5653846187469287,"basePoints":36,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":572053,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502510,"level":18,"description":"Bomb TossRank 26% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 65+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":0.8154545480554755,"basePoints":65,"dieSides":6,"pointsPerLevel":0.7350000143051147,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","effectType":32,"auraType":0,"miscValue":127,"triggerSpellId":572053,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":3,"spellId":502511,"level":26,"description":"Bomb TossRank 36% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 108+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":1.128455274473361,"basePoints":108,"dieSides":8,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30},{"kind":"utility","effectType":32,"auraType":0,"miscValue":127,"triggerSpellId":572053,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":4,"spellId":560600,"level":32,"description":"Bomb TossRank 46% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 150+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":1.3496453846600038,"basePoints":150,"dieSides":8,"pointsPerLevel":1.149999976158142,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":32,"auraType":0,"miscValue":127,"triggerSpellId":572053,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":5,"spellId":560601,"level":38,"description":"Bomb TossRank 56% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 192+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":1.5395597586841703,"basePoints":192,"dieSides":15,"pointsPerLevel":1.2050000429153442,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":32,"auraType":0,"miscValue":127,"triggerSpellId":572053,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":6,"spellId":560602,"level":46,"description":"Bomb TossRank 66% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 261+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":1.8579234972677596,"basePoints":261,"dieSides":21,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":32,"auraType":0,"miscValue":127,"triggerSpellId":572053,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":7,"spellId":560603,"level":52,"description":"Bomb TossRank 76% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 317+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":2.037313432835821,"basePoints":317,"dieSides":30,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":32,"auraType":0,"miscValue":127,"triggerSpellId":572053,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":8,"spellId":547209,"level":60,"description":"Bomb TossRank 86% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 401+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"damage","coefficient":2.2733333333333334,"basePoints":401,"dieSides":42,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":32,"auraType":0,"miscValue":127,"triggerSpellId":572053,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-28-snipe-99-800345","classId":"tinker","dbcSpellId":800345,"name":"Snipe","unlockLevel":13,"icon":"/assets/ui/spells/inv_firearm_2h_rifle_pvppandarias1_c_01.png","sigil":"SN","description":"SnipeRank 16% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 18, reducing the target's movement speed by 40% for 5 sec.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800345,"level":13,"description":"SnipeRank 16% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 18, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":2,"spellId":502500,"level":17,"description":"SnipeRank 26% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 90, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":3,"spellId":502501,"level":25,"description":"SnipeRank 36% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 162, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":4,"spellId":502502,"level":33,"description":"SnipeRank 46% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 259, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":6,"spellId":502504,"level":49,"description":"SnipeRank 66% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 463, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":7,"spellId":502505,"level":57,"description":"SnipeRank 76% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 636, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]},{"rank":8,"spellId":502506,"level":65,"description":"SnipeRank 86% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 984, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}]},{"id":"coa-28-build-shield-beacon-100-801799","classId":"tinker","dbcSpellId":801799,"name":"Build: Shield Beacon","unlockLevel":14,"icon":"/assets/ui/spells/inv_essenceofwintergrasp.png","sigil":"BS","description":"Build: Shield BeaconRank 110% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 220+1.0 Points Per Level. Shares a cooldown with other Beacons","target":"hostile","range":{"min":0,"max":20},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":50036,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801799,"level":14,"description":"Build: Shield BeaconRank 110% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 220+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":50036,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":2,"spellId":803799,"level":26,"description":"Build: Shield BeaconRank 210% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 370+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":51036,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":803800,"level":36,"description":"Build: Shield BeaconRank 310% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 504+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":53036,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":803801,"level":44,"description":"Build: Shield BeaconRank 410% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 635+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":54036,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":803802,"level":56,"description":"Build: Shield BeaconRank 510% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 760+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":55036,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":6,"spellId":803803,"level":64,"description":"Build: Shield BeaconRank 610% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 901+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":10},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":28,"auraType":0,"miscValue":56036,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-28-rocket-launcher-99-500235","classId":"tinker","dbcSpellId":500235,"name":"Rocket Launcher","unlockLevel":15,"icon":"/assets/ui/spells/ability_racial_rocketbarrage.png","sigil":"RL","description":"Rocket LauncherRank 18% of base mana 3 sec castFire a powerful rocket at an enemy that deals 126+0+RAP*0.35+FireP*.35 Fire damage.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500235,"level":15,"description":"Rocket LauncherRank 18% of base mana 3 sec castFire a powerful rocket at an enemy that deals 126+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":500647,"level":24,"description":"Rocket LauncherRank 28% of base mana 3 sec castFire a powerful rocket at an enemy that deals 172+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502521,"level":30,"description":"Rocket LauncherRank 38% of base mana 3 sec castFire a powerful rocket at an enemy that deals 234+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502522,"level":40,"description":"Rocket LauncherRank 48% of base mana 3 sec castFire a powerful rocket at an enemy that deals 328+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502523,"level":48,"description":"Rocket LauncherRank 58% of base mana 3 sec castFire a powerful rocket at an enemy that deals 440+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":573268,"level":54,"description":"Rocket LauncherRank 68% of base mana 3 sec castFire a powerful rocket at an enemy that deals 589+0+RAP*0.35+FireP*.8 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":500220,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-28-med-pack-100-800347","classId":"tinker","dbcSpellId":800347,"name":"Med Pack","unlockLevel":16,"icon":"/assets/ui/spells/inv_first_aid_70_medicalkit.png","sigil":"MP","description":"Med PackRank 130% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(34+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","target":"friendly","range":{"min":0,"max":10},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"hot","coefficient":0.5169892464914629,"basePoints":34,"dieSides":1,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806158,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800347,"level":16,"description":"Med PackRank 130% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(34+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"hot","coefficient":0.5169892464914629,"basePoints":34,"dieSides":1,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806158,"durationMs":6000}]},{"rank":2,"spellId":502533,"level":26,"description":"Med PackRank 230% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(59+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"hot","coefficient":0.6020844932494125,"basePoints":59,"dieSides":1,"pointsPerLevel":0.5790920257568359,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806158,"durationMs":6000}]},{"rank":3,"spellId":502534,"level":36,"description":"Med PackRank 330% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(99+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"hot","coefficient":0.8091882101071426,"basePoints":99,"dieSides":2,"pointsPerLevel":0.6751610040664673,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":44,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806158,"durationMs":6000}]},{"rank":4,"spellId":502535,"level":46,"description":"Med PackRank 430% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(145+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"hot","coefficient":0.8924666193665051,"basePoints":145,"dieSides":3,"pointsPerLevel":0.3765519857406616,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":54,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806158,"durationMs":6000}]},{"rank":5,"spellId":502536,"level":56,"description":"Med PackRank 530% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(200+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"hot","coefficient":1.477730692832123,"basePoints":200,"dieSides":4,"pointsPerLevel":2.022439956665039,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":66,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":806158,"durationMs":6000}]}]},{"id":"coa-28-supercharge-102-801708","classId":"tinker","dbcSpellId":801708,"name":"Supercharge","unlockLevel":27,"icon":"/assets/ui/spells/inv_engineering_intradalaranwormholegenerator.png","sigil":"SU","description":"SuperchargeRank 18% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 27 every 1 sec.","target":"friendly","range":{"min":0,"max":60},"radius":0,"castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":15000},{"kind":"hot","coefficient":0.800000011920929,"basePoints":27,"dieSides":2,"pointsPerLevel":0.6933330297470093,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":27,"maxScalingLevel":30,"ticks":15,"intervalMs":1000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801708,"level":27,"description":"SuperchargeRank 18% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 27 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":15000},{"kind":"hot","coefficient":0.800000011920929,"basePoints":27,"dieSides":2,"pointsPerLevel":0.6933330297470093,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":27,"maxScalingLevel":30,"ticks":15,"intervalMs":1000}]},{"rank":2,"spellId":502582,"level":32,"description":"SuperchargeRank 28% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 40%, and healing it for 39 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":0.5065713436045545,"basePoints":39,"dieSides":1,"pointsPerLevel":1.0133299827575684,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":35,"ticks":15,"intervalMs":1000}]},{"rank":3,"spellId":502583,"level":37,"description":"SuperchargeRank 38% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 40%, and healing it for 44 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":0.5540178807882162,"basePoints":44,"dieSides":1,"pointsPerLevel":1.1466699838638306,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":40,"ticks":15,"intervalMs":1000}]},{"rank":4,"spellId":502584,"level":42,"description":"SuperchargeRank 48% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 66 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":0.811695090511389,"basePoints":66,"dieSides":1,"pointsPerLevel":1.7333300113677979,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":45,"ticks":15,"intervalMs":1000}]},{"rank":5,"spellId":502585,"level":47,"description":"SuperchargeRank 58% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 90 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":1.0835834164773264,"basePoints":90,"dieSides":1,"pointsPerLevel":2.3733301162719727,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":50,"ticks":15,"intervalMs":1000}]},{"rank":6,"spellId":502586,"level":52,"description":"SuperchargeRank 68% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 109 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":1.2873632136862077,"basePoints":109,"dieSides":1,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":55,"ticks":15,"intervalMs":1000}]},{"rank":7,"spellId":502587,"level":57,"description":"SuperchargeRank 78% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 163 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":1.8946296749291596,"basePoints":163,"dieSides":1,"pointsPerLevel":4.320000171661377,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":60,"ticks":15,"intervalMs":1000}]},{"rank":8,"spellId":502588,"level":62,"description":"SuperchargeRank 88% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 254 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":2.910361583098705,"basePoints":254,"dieSides":1,"pointsPerLevel":6.746669769287109,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":65,"ticks":15,"intervalMs":1000}]},{"rank":9,"spellId":502589,"level":67,"description":"SuperchargeRank 98% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 391 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":4,"basePoints":391,"dieSides":1,"pointsPerLevel":10.399999618530273,"bonusPowerCoefficient":0,"sourceLevel":67,"maxScalingLevel":70,"ticks":15,"intervalMs":1000}]},{"rank":10,"spellId":502590,"level":72,"description":"SuperchargeRank 108% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 844 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":801415,"durationMs":15000},{"kind":"hot","coefficient":4,"basePoints":844,"dieSides":1,"pointsPerLevel":5.960000038146973,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":15,"intervalMs":1000}]}]},{"id":"coa-28-build-battle-turret-x-13-102-504519","classId":"tinker","dbcSpellId":504519,"name":"Build: Battle Turret X-13","unlockLevel":40,"icon":"/assets/ui/spells/ability_rogue_cannonballbarrage.png","sigil":"BB","description":"Build: Battle Turret X-13Rank 125% of base mana 3 sec cast10 min cooldownCreate the latest in turret technology, the Battle Turret X-13 for 30 sec that emanates an aura that increases the damage of your summons by 10%. Allies can enter the turret giving them access to unique abilities and the turret's health pool for the duration.","target":"friendly","range":{"min":0,"max":0},"radius":100,"castMode":"cast","castTimeMs":3000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":347770,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":190,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504519,"level":40,"description":"Build: Battle Turret X-13Rank 125% of base mana 3 sec cast10 min cooldownCreate the latest in turret technology, the Battle Turret X-13 for 30 sec that emanates an aura that increases the damage of your summons by 10%. Allies can enter the turret giving them access to unique abilities and the turret's health pool for the duration.","castMode":"cast","castTimeMs":3000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":347770,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":190,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":2,"spellId":504678,"level":50,"description":"Build: Battle Turret X-13Rank 225% of base mana 3 sec cast10 min cooldownCreate the latest in turret technology, the Battle Turret X-13 for 30 sec that emanates an aura that increases the damage of your summons by 10%. Allies can enter the turret giving them access to unique abilities and the turret's health pool for the duration.","castMode":"cast","castTimeMs":3000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":457771,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":190,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]},{"rank":3,"spellId":504680,"level":60,"description":"Build: Battle Turret X-13Rank 325% of base mana 3 sec cast10 min cooldownCreate the latest in turret technology, the Battle Turret X-13 for 30 sec that emanates an aura that increases the damage of your summons by 10%. Allies can enter the turret giving them access to unique abilities and the turret's health pool for the duration.","castMode":"cast","castTimeMs":3000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":28,"auraType":0,"miscValue":457772,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":190,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":30000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000}]}]},{"id":"coa-28-sticky-bomb-102-502564","classId":"tinker","dbcSpellId":502564,"name":"Sticky Bomb","unlockLevel":60,"icon":"/assets/ui/spells/inv_misc_blackironbomb.png","sigil":"SB","description":"Sticky BombRank 88% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 571+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-progression","ranks":[{"rank":8,"spellId":502564,"level":60,"description":"Sticky BombRank 88% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 571+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":8},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":801009,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":5000}]}]}],"venomancer":[{"id":"coa-29-acceleration-103-705960","classId":"venomancer","dbcSpellId":705960,"name":"Acceleration","unlockLevel":1,"icon":"/assets/ui/spells/_meat_rotten.png","sigil":"AC","description":"AccelerationRank 2Increases the tick rate of Wilt and Shadra's Vigil by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705960,"level":1,"description":"AccelerationRank 2Increases the tick rate of Wilt and Shadra's Vigil by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":19,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6086","classId":"venomancer","dbcSpellId":805775,"name":"Adrenal Venom","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a26.png","sigil":"AV","description":"Activate Adrenal Venom for 120 minutes, giving your casts a 25% chance to increase your haste by 6% for 6 seconds, stacking 3 times. You can have a maximum of 2 unique Venoms active at a time.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805894,"durationMs":7200000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":7200000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7200000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805775,"level":1,"description":"Activate Adrenal Venom for 120 minutes, giving your casts a 25% chance to increase your haste by 6% for 6 seconds, stacking 3 times. You can have a maximum of 2 unique Venoms active at a time.","castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805894,"durationMs":7200000},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":7200000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7200000}]}],"talentEntryId":6086},{"id":"coa-tree-29574","classId":"venomancer","dbcSpellId":800878,"name":"Ambush Predator","unlockLevel":1,"icon":"/assets/ui/spells/5_assassinskill12_border.png","sigil":"AP","description":"Casting Burrow will now apply Skulk to you if you are in Spider Form. While Skulk is active every 1 sec you reduce the cooldown of Burrow by -1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800843,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":802825,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800878,"level":1,"description":"Casting Burrow will now apply Skulk to you if you are in Spider Form. While Skulk is active every 1 sec you reduce the cooldown of Burrow by -1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":800843,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":802825,"durationMs":-1}]}],"talentEntryId":29574},{"id":"coa-29-arachnified-103-705958","classId":"venomancer","dbcSpellId":705958,"name":"Arachnified","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_pet_spider.png","sigil":"AR","description":"ArachnifiedRank 2Increases the damage of Fang of Shadra by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705958,"level":1,"description":"ArachnifiedRank 2Increases the damage of Fang of Shadra by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6090","classId":"venomancer","dbcSpellId":503856,"name":"Avatar of Shadra","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_monsterspidercarapace_01.png","sigil":"AO","description":"Damage and healing done now has a 10% chance to apply Curse of Shadra for 10 seconds. Dealing damage or healing with Serpent's Fang, Claw Strike, or Venom Fang on an enemy that is cursed will deal damage or heal them for an additional 25% of the value and heal you for 90.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504377,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503856,"level":1,"description":"Damage and healing done now has a 10% chance to apply Curse of Shadra for 10 seconds. Dealing damage or healing with Serpent's Fang, Claw Strike, or Venom Fang on an enemy that is cursed will deal damage or heal them for an additional 25% of the value and heal you for 90.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504377,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6090},{"id":"coa-29-bountiful-gifts-103-706009","classId":"venomancer","dbcSpellId":706009,"name":"Bountiful Gifts","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureseye_border.png","sigil":"BG","description":"Bountiful GiftsRank 1Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 10%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706009,"level":1,"description":"Bountiful GiftsRank 1Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706010,"level":1,"description":"Bountiful GiftsRank 2Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4053","classId":"venomancer","dbcSpellId":92143,"name":"Brood Marks","unlockLevel":1,"icon":"/assets/ui/spells/_d3corpsespiders.png","sigil":"BM","description":"Level 10 Passive Your Venom Fang now applies a Brood Mark for 15 seconds, stacking 5 times. Some abilities will consume them for an additional effect.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804972,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92143,"level":1,"description":"Level 10 Passive Your Venom Fang now applies a Brood Mark for 15 seconds, stacking 5 times. Some abilities will consume them for an additional effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804972,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4053},{"id":"coa-29-bugweaving-none-503963","classId":"venomancer","dbcSpellId":503963,"name":"Bugweaving","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_nerubian_01.png","sigil":"BU","description":"BugweavingRank 2Damage dealt with Fortitude and Spider Form melee abilities has a 20% chance to apply your Fang Venom effects.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805774,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":503963,"level":1,"description":"BugweavingRank 2Damage dealt with Fortitude and Spider Form melee abilities has a 20% chance to apply your Fang Venom effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805774,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-29-charm-of-warding-105-705968","classId":"venomancer","dbcSpellId":705968,"name":"Charm of Warding","unlockLevel":1,"icon":"/assets/ui/spells/inv_trinket_naxxramas01.png","sigil":"CO","description":"Charm of WardingRank 2Reduces damage taken by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705968,"level":1,"description":"Charm of WardingRank 2Reduces damage taken by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29576","classId":"venomancer","dbcSpellId":705996,"name":"Empowering Pheromones","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_deadenednerves.png","sigil":"EP","description":"Increases the effectiveness of your Pheromones by 20% and their duration by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705996,"level":1,"description":"Increases the effectiveness of your Pheromones by 20% and their duration by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29576},{"id":"coa-29-enduring-exoskeleton-105-706004","classId":"venomancer","dbcSpellId":706004,"name":"Enduring Exoskeleton","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_skinofearth.png","sigil":"EE","description":"Enduring ExoskeletonRank 1Increases Armor contribution from items by 10% and grants direct damage dealt and taken a 15% chance to generate 2 Rage. Can only occur once per sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":503953,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706004,"level":1,"description":"Enduring ExoskeletonRank 1Increases Armor contribution from items by 10% and grants direct damage dealt and taken a 15% chance to generate 2 Rage. Can only occur once per sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":503953,"durationMs":0}]}]},{"id":"coa-tree-29607","classId":"venomancer","dbcSpellId":300855,"name":"Envenomed Weapons","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_creepingvenom.png","sigil":"EW","description":"Envenoms the weapons of all nearby allies for 30 minutes, giving them a 5% chance to launch a jet of poison at their target whenever they deal damage, dealing 8 + 10% nature SP + 10% AP Nature damage.","target":"hostile","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803178,"durationMs":1800000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":300855,"level":1,"description":"Envenoms the weapons of all nearby allies for 30 minutes, giving them a 5% chance to launch a jet of poison at their target whenever they deal damage, dealing 8 + 10% nature SP + 10% AP Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":803178,"durationMs":1800000}]}],"talentEntryId":29607},{"id":"coa-tree-4054","classId":"venomancer","dbcSpellId":92144,"name":"Exposed Flesh","unlockLevel":1,"icon":"/assets/ui/spells/inv_nerubianbeetlepet_green.png","sigil":"EF","description":"Level 10 Passive Hostile attacks against you now have a 50% chance to grant a stack of Exposed Flesh. Exposed FleshGenerates 10 Rage and increases your Physical Damage taken 3% for 20 seconds, stacking 10 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92144,"level":1,"description":"Level 10 Passive Hostile attacks against you now have a 50% chance to grant a stack of Exposed Flesh. Exposed FleshGenerates 10 Rage and increases your Physical Damage taken 3% for 20 seconds, stacking 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4054},{"id":"coa-tree-6098","classId":"venomancer","dbcSpellId":800894,"name":"Fury of Anub'Rekhan","unlockLevel":1,"icon":"/assets/ui/spells/inv_mechanicalspiderpet.png","sigil":"FO","description":"Increases your maximum mana, Energy, and Rage by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":132,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800894,"level":1,"description":"Increases your maximum mana, Energy, and Rage by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":132,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":132,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":132,"miscValue":3,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":6098},{"id":"coa-29-genesis-103-705963","classId":"venomancer","dbcSpellId":705963,"name":"Genesis","unlockLevel":1,"icon":"/assets/ui/spells/uico_venom_spell_08_border.png","sigil":"GE","description":"GenesisRank 2Increases haste by 6% and healing done by 4%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":126,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705963,"level":1,"description":"GenesisRank 2Increases haste by 6% and healing done by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":136,"miscValue":126,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6117","classId":"venomancer","dbcSpellId":705962,"name":"Genesis","unlockLevel":1,"icon":"/assets/ui/spells/uico_venom_spell_08_border.png","sigil":"GE","description":"Increases your haste by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705962,"level":1,"description":"Increases your haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6117},{"id":"coa-tree-7722","classId":"venomancer","dbcSpellId":800902,"name":"Green Salve","unlockLevel":1,"icon":"/assets/ui/spells/inv_firstaid_healingsalve.png","sigil":"GS","description":"Green SalveRank 115% of base mana Instant cast10 sec cooldownRapidly heal an ally for 24 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47+Heal*0.244572.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":1.7999999523162842,"basePoints":4,"dieSides":1,"pointsPerLevel":0.05999999865889549,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":14,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800902,"level":1,"description":"Green SalveRank 115% of base mana Instant cast10 sec cooldownRapidly heal an ally for 24 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":1.7999999523162842,"basePoints":4,"dieSides":1,"pointsPerLevel":0.05999999865889549,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":14,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]}],"talentEntryId":7722},{"id":"coa-29-improved-facemelter-104-706039","classId":"venomancer","dbcSpellId":706039,"name":"Improved Facemelter","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_demoniccirclesummon.png","sigil":"IF","description":"Improved FacemelterRank 2Reduces the cooldown of Facemelter by 30 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706039,"level":1,"description":"Improved FacemelterRank 2Reduces the cooldown of Facemelter by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-29-improved-harden-105-705971","classId":"venomancer","dbcSpellId":705971,"name":"Improved Harden","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_pvppandarias3_c_01.png","sigil":"IH","description":"Improved HardenRank 1Reduces the cooldown of Harden by 20 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705971,"level":1,"description":"Improved HardenRank 1Reduces the cooldown of Harden by 20 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705972,"level":1,"description":"Improved HardenRank 2Reduces the cooldown of Harden by 40 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-29-improved-sting-105-705979","classId":"venomancer","dbcSpellId":705979,"name":"Improved Sting","unlockLevel":1,"icon":"/assets/ui/spells/hunter_pvp_vipersting.png","sigil":"IS","description":"Improved StingRank 2Reduces the cooldown of Sting by 4 sec and increases its damage by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705979,"level":1,"description":"Improved StingRank 2Reduces the cooldown of Sting by 4 sec and increases its damage by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-29-improved-venoxis-fang-103-706013","classId":"venomancer","dbcSpellId":706013,"name":"Improved Venoxis Fang","unlockLevel":1,"icon":"/assets/ui/spells/spell_hunter_exoticmunitions_poisoned.png","sigil":"IV","description":"Improved Venoxis FangRank 2Reduces the cast time of Venoxis Fang by 0.5 sec and its cost by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706013,"level":1,"description":"Improved Venoxis FangRank 2Reduces the cast time of Venoxis Fang by 0.5 sec and its cost by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-9590","classId":"venomancer","dbcSpellId":804963,"name":"Lifeblood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_volatilelife_green.png","sigil":"LI","description":"Embrace Shadra's lifeblood, reducing your damage taken and pushback from casting spells by -20% and causing all damage taken to cast Rejuvenating Venom. Lasts for 10 seconds.Rejuvenating Venom (Heal)Heal a random ally within 30 yds of your target for 67 + 9.2% healing over 6 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":630869,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804963,"level":1,"description":"Embrace Shadra's lifeblood, reducing your damage taken and pushback from casting spells by -20% and causing all damage taken to cast Rejuvenating Venom. Lasts for 10 seconds.Rejuvenating Venom (Heal)Heal a random ally within 30 yds of your target for 67 + 9.2% healing over 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":630869,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":149,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":9590},{"id":"coa-tree-7247","classId":"venomancer","dbcSpellId":504326,"name":"Master of Venoms","unlockLevel":1,"icon":"/assets/ui/spells/rogue_venomzest.png","sigil":"MO","description":"Increases the duration of your Venoms by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504326,"level":1,"description":"Increases the duration of your Venoms by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7247},{"id":"venomancer-myotoxin","classId":"venomancer","dbcSpellId":572304,"name":"Myotoxin","unlockLevel":1,"icon":"/assets/ui/spells/uico_venom_spell_04_border.png","sigil":"MY","description":"Afflict the target with a muscle-locking toxin.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.22,"ticks":5,"intervalMs":2000,"tag":"myotoxin"},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.35}],"source":"coa-starter"},{"id":"coa-tree-6756","classId":"venomancer","dbcSpellId":704235,"name":"Pinch","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_monsterclaw_10.png","sigil":"PI","description":"Disarm an enemy's melee weapons with your claws for 5 seconds and apply Weakening Venom to them for 10 sec.Weakening Venom (Proc)Deals 59 + 12.5% SP Shadow Damage and reduces attack power by 23.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":67,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":254,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":178,"auraType":0,"miscValue":524287,"triggerSpellId":706000,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":704235,"level":1,"description":"Disarm an enemy's melee weapons with your claws for 5 seconds and apply Weakening Venom to them for 10 sec.Weakening Venom (Proc)Deals 59 + 12.5% SP Shadow Damage and reduces attack power by 23.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"utility","effectType":6,"auraType":67,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":254,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":178,"auraType":0,"miscValue":524287,"triggerSpellId":706000,"durationMs":5000}]}],"talentEntryId":6756},{"id":"coa-tree-30482","classId":"venomancer","dbcSpellId":707563,"name":"Playing With Poison","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_nullifydisease.png","sigil":"PW","description":"Increases your Nature damage by 5% and healing done by 3%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707563,"level":1,"description":"Increases your Nature damage by 5% and healing done by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30482},{"id":"coa-29-protogenesis-105-705974","classId":"venomancer","dbcSpellId":705974,"name":"Protogenesis","unlockLevel":1,"icon":"/assets/ui/spells/achievement_guild_doctorisin.png","sigil":"PR","description":"ProtogenesisRank 2Increases healing recieved by 6%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705974,"level":1,"description":"ProtogenesisRank 2Increases healing recieved by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29588","classId":"venomancer","dbcSpellId":705966,"name":"Reinforced Shell","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_leather_shellfragment.png","sigil":"RS","description":"Increases your total armor by 20%. In addition, while Spider or Beetle form is active your attacks are unable to be parried or dodged.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705966,"level":1,"description":"Increases your total armor by 20%. In addition, while Spider or Beetle form is active your attacks are unable to be parried or dodged.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29588},{"id":"coa-tree-4052","classId":"venomancer","dbcSpellId":92142,"name":"Rot Lich","unlockLevel":1,"icon":"/assets/ui/spells/_instableaffliction_green.png","sigil":"RL","description":"Level 10 Passive Direct damage dealt now has a 20% chance to reset the cooldown of Serpent's Fang and grant you Rot Lich and allies Replenishment.Rot Lich (Proc)Your next Serpent's Fang within 15 seconds is free of cost.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706032,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92142,"level":1,"description":"Level 10 Passive Direct damage dealt now has a 20% chance to reset the cooldown of Serpent's Fang and grant you Rot Lich and allies Replenishment.Rot Lich (Proc)Your next Serpent's Fang within 15 seconds is free of cost.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706032,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":333,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4052},{"id":"coa-tree-9951","classId":"venomancer","dbcSpellId":680800,"name":"Shadra's Vigil","unlockLevel":1,"icon":"/assets/ui/spells/nhi_naturestaff_border.png","sigil":"SS","description":"Level 10 Passive Healing done by Serpent's Fang now applies Shadra's Vigil to allies.Shadra's VigilThe next 5 instances of periodic healing by you on this target will heal them for an additional 10% of the value.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":505203,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680800,"level":1,"description":"Level 10 Passive Healing done by Serpent's Fang now applies Shadra's Vigil to allies.Shadra's VigilThe next 5 instances of periodic healing by you on this target will heal them for an additional 10% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":505203,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9951},{"id":"coa-29-skin-shedder-103-705950","classId":"venomancer","dbcSpellId":705950,"name":"Skin Shedder","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_moonglow.png","sigil":"SS","description":"Skin ShedderRank 2Reduces the cost of shapeshifting spells by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705950,"level":1,"description":"Skin ShedderRank 2Reduces the cost of shapeshifting spells by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":3,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-7252","classId":"venomancer","dbcSpellId":800887,"name":"Spindlebind","unlockLevel":1,"icon":"/assets/ui/spells/nhi_poisonweb_border.png","sigil":"SP","description":"SpindlebindRank 130 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 61+0+NatP*0.4 Nature damage.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":61,"dieSides":10,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":16,"maxScalingLevel":22},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800887,"level":1,"description":"SpindlebindRank 130 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 61+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":61,"dieSides":10,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":16,"maxScalingLevel":22},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}]}],"talentEntryId":7252},{"id":"coa-tree-6331","classId":"venomancer","dbcSpellId":706035,"name":"Surprise Strategy","unlockLevel":1,"icon":"/assets/ui/spells/ability_fixated_state_green.png","sigil":"SS","description":"Critical strikes now have a 15% chance to increase the healing of your next Shadra's Prayer by 20% and make it instant cast for 10 seconds. Can only occur once per 5 sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504211,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706035,"level":1,"description":"Critical strikes now have a 15% chance to increase the healing of your next Shadra's Prayer by 20% and make it instant cast for 10 seconds. Can only occur once per 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504211,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6331},{"id":"coa-29-toxflinger-105-803203","classId":"venomancer","dbcSpellId":803203,"name":"Toxflinger","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_elementalshields.png","sigil":"TO","description":"ToxflingerRank 1Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 12 to 14 Nature Damage to affected enemies.","target":"hostile","range":{"min":0,"max":40},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803203,"level":1,"description":"ToxflingerRank 1Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 12 to 14 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503182,"level":9,"description":"ToxflingerRank 2Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 23 to 26 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503183,"level":17,"description":"ToxflingerRank 3Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 40 to 45 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503184,"level":25,"description":"ToxflingerRank 4Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 67 to 75 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503185,"level":33,"description":"ToxflingerRank 5Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 106 to 118 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503186,"level":41,"description":"ToxflingerRank 6Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 162 to 179 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503187,"level":49,"description":"ToxflingerRank 7Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 241 to 264 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503188,"level":57,"description":"ToxflingerRank 8Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 351 to 381 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":503189,"level":65,"description":"ToxflingerRank 9Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 503 to 541 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":503190,"level":73,"description":"ToxflingerRank 10Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 711 to 758 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":803204,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6553","classId":"venomancer","dbcSpellId":504347,"name":"Toxic Stride","unlockLevel":1,"icon":"/assets/ui/spells/nhi_naturepoisonedstep_border.png","sigil":"TS","description":"Embrace Shadra's blessing, granting you immunity to all silence and interrupt effects and allowing you to cast your spells while moving for 15 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":504346,"durationMs":0},{"kind":"utility","effectType":108,"auraType":0,"miscValue":11,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504347,"level":1,"description":"Embrace Shadra's blessing, granting you immunity to all silence and interrupt effects and allowing you to cast your spells while moving for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":504346,"durationMs":0},{"kind":"utility","effectType":108,"auraType":0,"miscValue":11,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":6553},{"id":"coa-tree-6118","classId":"venomancer","dbcSpellId":504799,"name":"Tranquil Essence","unlockLevel":1,"icon":"/assets/ui/spells/ui_notoriety_thevizier.png","sigil":"TE","description":"Reduces the threat generated by your healing spells by -10% and increases your periodic healing by 3%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504799,"level":1,"description":"Reduces the threat generated by your healing spells by -10% and increases your periodic healing by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":505204,"level":1,"description":"Reduces the threat generated by your healing spells by -20% and increases your periodic healing by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6118},{"id":"venomancer-venom-bolt","classId":"venomancer","dbcSpellId":800869,"name":"Venom Bolt","unlockLevel":1,"icon":"/assets/ui/spells/_venomorb_green.png","sigil":"VB","description":"Venom BoltRank 115% of base mana 2 sec castSpew poison on an enemy, dealing 19+0+NatP*.814 Nature damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":19,"dieSides":7,"pointsPerLevel":1.5479999780654907,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800869,"level":1,"description":"Venom BoltRank 115% of base mana 2 sec castSpew poison on an enemy, dealing 19+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":19,"dieSides":7,"pointsPerLevel":1.5479999780654907,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502870,"level":8,"description":"Venom BoltRank 215% of base mana 2.3 sec castSpew poison on an enemy, dealing 42+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":2300,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.8078260836393937,"basePoints":42,"dieSides":8,"pointsPerLevel":1.2799999713897705,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":13},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502871,"level":14,"description":"Venom BoltRank 315% of base mana 2.5 sec castSpew poison on an enemy, dealing 71+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.0770114865796319,"basePoints":71,"dieSides":10,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":19},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502872,"level":20,"description":"Venom BoltRank 415% of base mana 2.5 sec castSpew poison on an enemy, dealing 90+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.6579047702607654,"basePoints":90,"dieSides":13,"pointsPerLevel":3.9040000438690186,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":25},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502873,"level":26,"description":"Venom BoltRank 515% of base mana 3 sec castSpew poison on an enemy, dealing 159+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.9830894470214844,"basePoints":159,"dieSides":19,"pointsPerLevel":2.9200000762939453,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":31},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502874,"level":32,"description":"Venom BoltRank 615% of base mana 3 sec castSpew poison on an enemy, dealing 204+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.3781560262044272,"basePoints":204,"dieSides":23,"pointsPerLevel":3.759999990463257,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502875,"level":38,"description":"Venom BoltRank 715% of base mana 3 sec castSpew poison on an enemy, dealing 263+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.9036478306512414,"basePoints":263,"dieSides":29,"pointsPerLevel":4.860000133514404,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502876,"level":44,"description":"Venom BoltRank 815% of base mana 3 sec castSpew poison on an enemy, dealing 324+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":3.4131073493742,"basePoints":324,"dieSides":35,"pointsPerLevel":5.980000019073486,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":49},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-7231","classId":"venomancer","dbcSpellId":680794,"name":"Venomizer","unlockLevel":1,"icon":"/assets/ui/spells/uico_venom_spell_06_border.png","sigil":"VE","description":"Increases the proc chance of all Venoms by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680794,"level":1,"description":"Increases the proc chance of all Venoms by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7231},{"id":"coa-tree-6095","classId":"venomancer","dbcSpellId":681052,"name":"Versatile and Deadly","unlockLevel":1,"icon":"/assets/ui/spells/inv_fishing_f_seascorpion3.png","sigil":"VA","description":"Reduce all damage taken while in Beetle Form by -3% and increases your movement speed while in Spider Form by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681052,"level":1,"description":"Reduce all damage taken while in Beetle Form by -3% and increases your movement speed while in Spider Form by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":681492,"level":1,"description":"Reduce all damage taken while in Beetle Form by -6% and increases your movement speed while in Spider Form by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6095},{"id":"coa-29-vile-fury-105-706005","classId":"venomancer","dbcSpellId":706005,"name":"Vile Fury","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_removedisease.png","sigil":"VF","description":"Vile FuryRank 1Vile Stinger generates 5 Rage and the cost of Hivebreak is reduced by 5.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706005,"level":1,"description":"Vile FuryRank 1Vile Stinger generates 5 Rage and the cost of Hivebreak is reduced by 5.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6116","classId":"venomancer","dbcSpellId":805778,"name":"Weakening Venom","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a23.png","sigil":"WV","description":"Activate Weakening Venom for 120 minutes, giving your casts a 35% chance to deal 59 + 12.5% SP Shadow damage and reduce an enemy's attack power by 234 for 8 seconds. You can have a maximum of 2 unique Venoms active at a time.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706000,"durationMs":7200000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7200000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7200000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805778,"level":1,"description":"Activate Weakening Venom for 120 minutes, giving your casts a 35% chance to deal 59 + 12.5% SP Shadow damage and reduce an enemy's attack power by 234 for 8 seconds. You can have a maximum of 2 unique Venoms active at a time.","castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706000,"durationMs":7200000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7200000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7200000}]}],"talentEntryId":6116},{"id":"coa-29-web-wrap-103-800876","classId":"venomancer","dbcSpellId":800876,"name":"Web Wrap","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureweb_border.png","sigil":"WW","description":"Web WrapRank 18% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 20+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":0.4300000071525574,"basePoints":20,"dieSides":5,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0.4300000071525574,"sourceLevel":1,"maxScalingLevel":8,"ticks":4,"intervalMs":1000,"tag":"spell-800876"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800876,"level":1,"description":"Web WrapRank 18% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 20+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":0.4300000071525574,"basePoints":20,"dieSides":5,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0.4300000071525574,"sourceLevel":1,"maxScalingLevel":8,"ticks":4,"intervalMs":1000,"tag":"spell-800876"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":4000}]},{"rank":2,"spellId":502881,"level":9,"description":"Web WrapRank 28% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 30+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":0.4996599853038788,"basePoints":30,"dieSides":6,"pointsPerLevel":1.3519999980926514,"bonusPowerCoefficient":0.4996599853038788,"sourceLevel":9,"maxScalingLevel":16,"ticks":4,"intervalMs":1000,"tag":"spell-502881"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":3,"spellId":502882,"level":17,"description":"Web WrapRank 38% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 52+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":0.5772320032119751,"basePoints":52,"dieSides":7,"pointsPerLevel":1.9759999513626099,"bonusPowerCoefficient":0.5772320032119751,"sourceLevel":17,"maxScalingLevel":24,"ticks":4,"intervalMs":1000,"tag":"spell-502882"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":4,"spellId":502883,"level":25,"description":"Web WrapRank 48% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 70+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":0.6629509925842285,"basePoints":70,"dieSides":8,"pointsPerLevel":2.9119999408721924,"bonusPowerCoefficient":0.6629509925842285,"sourceLevel":25,"maxScalingLevel":32,"ticks":4,"intervalMs":1000,"tag":"spell-502883"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":5,"spellId":502884,"level":33,"description":"Web WrapRank 58% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 93+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":0.7569249868392944,"basePoints":93,"dieSides":9,"pointsPerLevel":4.159999847412109,"bonusPowerCoefficient":0.7569249868392944,"sourceLevel":33,"maxScalingLevel":40,"ticks":4,"intervalMs":1000,"tag":"spell-502884"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":6,"spellId":502885,"level":41,"description":"Web WrapRank 68% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 108+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":0.8591089844703674,"basePoints":108,"dieSides":10,"pointsPerLevel":5.71999979019165,"bonusPowerCoefficient":0.8591089844703674,"sourceLevel":41,"maxScalingLevel":48,"ticks":4,"intervalMs":1000,"tag":"spell-502885"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":7,"spellId":502886,"level":49,"description":"Web WrapRank 78% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 114+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":0.969290018081665,"basePoints":114,"dieSides":11,"pointsPerLevel":7.5920000076293945,"bonusPowerCoefficient":0.969290018081665,"sourceLevel":49,"maxScalingLevel":56,"ticks":4,"intervalMs":1000,"tag":"spell-502886"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":8,"spellId":502887,"level":57,"description":"Web WrapRank 88% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 147+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":1.0870599746704102,"basePoints":147,"dieSides":12,"pointsPerLevel":9.776000022888184,"bonusPowerCoefficient":1.0870599746704102,"sourceLevel":57,"maxScalingLevel":64,"ticks":4,"intervalMs":1000,"tag":"spell-502887"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":9,"spellId":502888,"level":65,"description":"Web WrapRank 98% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 179+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":1.2117999792099,"basePoints":179,"dieSides":13,"pointsPerLevel":12.272000312805176,"bonusPowerCoefficient":1.2117999792099,"sourceLevel":65,"maxScalingLevel":72,"ticks":4,"intervalMs":1000,"tag":"spell-502888"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]},{"rank":10,"spellId":502889,"level":73,"description":"Channels a beam of webbing at an enemy, reducing their movement speed by $s1% and inflicting ${$m2+$ppl2} Nature Damage every $t2 sec for $d. While active, the target takes $s3% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800923,"durationMs":4000},{"kind":"dot","coefficient":1.34266996383667,"basePoints":196,"dieSides":14,"pointsPerLevel":15.079999923706055,"bonusPowerCoefficient":1.34266996383667,"sourceLevel":73,"maxScalingLevel":80,"ticks":4,"intervalMs":1000,"tag":"spell-502889"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":4000}]}]},{"id":"venomancer-rejuvenating-venom","classId":"venomancer","dbcSpellId":630868,"name":"Rejuvenating Venom","unlockLevel":2,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a21.png","sigil":"RV","description":"Apply a curative venom that restores health over time.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"hot","coefficient":0.35,"ticks":5,"intervalMs":2000}],"source":"coa-starter"},{"id":"coa-29-serpents-fang-103-800946","classId":"venomancer","dbcSpellId":800946,"name":"Serpent's Fang","unlockLevel":2,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Serpent's FangRank 120% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 27+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.6568627450980392,"basePoints":27,"dieSides":6,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":10}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800946,"level":2,"description":"Serpent's FangRank 120% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 27+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.6568627450980392,"basePoints":27,"dieSides":6,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":10}]},{"rank":2,"spellId":503931,"level":12,"description":"Serpent's FangRank 220% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 64+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.6080246913580247,"basePoints":64,"dieSides":3,"pointsPerLevel":5.4375,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503932,"level":20,"description":"Serpent's FangRank 320% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 111+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":2.5761904761904764,"basePoints":111,"dieSides":10,"pointsPerLevel":7.75,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503933,"level":28,"description":"Serpent's FangRank 420% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 180+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":3.045643370280894,"basePoints":180,"dieSides":14,"pointsPerLevel":7.370999813079834,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503934,"level":36,"description":"Serpent's FangRank 520% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 245+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":3.6631045123330908,"basePoints":245,"dieSides":20,"pointsPerLevel":8.498749732971191,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503935,"level":44,"description":"Serpent's FangRank 620% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 431+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":3.8040859200860146,"basePoints":431,"dieSides":30,"pointsPerLevel":5.177800178527832,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":552781,"level":52,"description":"Serpent's FangRank 720% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 510+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":510,"dieSides":44,"pointsPerLevel":6.550000190734863,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":552783,"level":60,"description":"Serpent's FangRank 820% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 596+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":596,"dieSides":66,"pointsPerLevel":8.366669654846191,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-29-shadras-prayer-499-800870","classId":"venomancer","dbcSpellId":800870,"name":"Shadra's Prayer","unlockLevel":2,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","sigil":"SS","description":"Shadra's PrayerRank 125% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.10980392203611486,"basePoints":5,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":9,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":0.7333333352032829,"basePoints":32,"dieSides":4,"pointsPerLevel":1.9500000476837158,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":9},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800870,"level":2,"description":"Shadra's PrayerRank 125% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.10980392203611486,"basePoints":5,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":9,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":0.7333333352032829,"basePoints":32,"dieSides":4,"pointsPerLevel":1.9500000476837158,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":9},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":2,"spellId":502939,"level":10,"description":"Shadra's PrayerRank 225% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 60+0+Heal*0.263078, plus 9+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.25999999364217125,"basePoints":9,"dieSides":1,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.24,"basePoints":60,"dieSides":7,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":3,"spellId":502940,"level":16,"description":"Shadra's PrayerRank 325% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 84+0+Heal*0.263078, plus 13+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.29199500750469903,"basePoints":13,"dieSides":1,"pointsPerLevel":0.8847209811210632,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.0898924796811995,"basePoints":84,"dieSides":5,"pointsPerLevel":6.772500038146973,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":4,"spellId":502941,"level":22,"description":"Shadra's PrayerRank 425% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 122+0+Heal*0.263078, plus 18+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.26737230747669666,"basePoints":18,"dieSides":1,"pointsPerLevel":0.5308330059051514,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.8881306476421185,"basePoints":122,"dieSides":11,"pointsPerLevel":3.7537500858306885,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":5,"spellId":502942,"level":28,"description":"Shadra's PrayerRank 525% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 161+0+Heal*0.263078, plus 24+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.3177259596743325,"basePoints":24,"dieSides":1,"pointsPerLevel":0.6066660284996033,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.233733051507048,"basePoints":161,"dieSides":16,"pointsPerLevel":4.273270130157471,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":6,"spellId":502943,"level":34,"description":"Shadra's PrayerRank 625% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 199+0+Heal*0.263078, plus 30+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.3862244953103617,"basePoints":30,"dieSides":1,"pointsPerLevel":0.7875000238418579,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.5939004145511966,"basePoints":199,"dieSides":22,"pointsPerLevel":5.053040027618408,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":7,"spellId":502944,"level":40,"description":"Shadra's PrayerRank 725% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 241+0+Heal*0.263078, plus 36+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.42499999422015566,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8531249761581421,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.0434885198419743,"basePoints":241,"dieSides":30,"pointsPerLevel":6.1668901443481445,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":8,"spellId":502945,"level":46,"description":"Shadra's PrayerRank 825% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 291+0+Heal*0.263078, plus 44+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.45596751945266306,"basePoints":44,"dieSides":1,"pointsPerLevel":0.8574360013008118,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.10617652747149,"basePoints":291,"dieSides":39,"pointsPerLevel":5.6180500984191895,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":9,"spellId":502946,"level":52,"description":"Shadra's PrayerRank 925% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 322+0+Heal*0.263078, plus 50+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.5014462079574813,"basePoints":50,"dieSides":1,"pointsPerLevel":0.9767439961433411,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.3649008641788614,"basePoints":322,"dieSides":49,"pointsPerLevel":6.352789878845215,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":10,"spellId":502947,"level":58,"description":"Shadra's PrayerRank 1025% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 356+0+Heal*0.263078, plus 55+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.38650428867775555,"basePoints":55,"dieSides":1,"pointsPerLevel":0.5111110210418701,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.6037005463691605,"basePoints":356,"dieSides":49,"pointsPerLevel":3.2794899940490723,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]}]},{"id":"venomancer-debilitating-venom","classId":"venomancer","dbcSpellId":805731,"name":"Debilitating Venom","unlockLevel":4,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a22.png","sigil":"DV","description":"Drench the enemy in debilitating poison.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.7},{"kind":"status","status":"attack-speed","durationMs":7000,"magnitude":0.3}],"source":"coa-starter"},{"id":"coa-29-venom-fang-104-800880","classId":"venomancer","dbcSpellId":800880,"name":"Venom Fang","unlockLevel":4,"icon":"/assets/ui/spells/inv_pet_spiderdemon2.png","sigil":"VF","description":"Venom FangRank 135 Energy Instant castBite an enemy for 24+0+NatP*.4 Nature damage.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":0.5052631612409625,"basePoints":24,"dieSides":1,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":8},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800880,"level":4,"description":"Venom FangRank 135 Energy Instant castBite an enemy for 24+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":0.5052631612409625,"basePoints":24,"dieSides":1,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":8},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502896,"level":10,"description":"Venom FangRank 235 Energy Instant castBite an enemy for 39+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":0.7333333365122477,"basePoints":39,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502897,"level":18,"description":"Venom FangRank 335 Energy Instant castBite an enemy for 55+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1.0222222395617553,"basePoints":55,"dieSides":7,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502898,"level":24,"description":"Venom FangRank 435 Energy Instant castBite an enemy for 77+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1.0384615384615385,"basePoints":77,"dieSides":12,"pointsPerLevel":1.625,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502899,"level":32,"description":"Venom FangRank 535 Energy Instant castBite an enemy for 94+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1.1990070748836437,"basePoints":94,"dieSides":18,"pointsPerLevel":2.0799999237060547,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502900,"level":38,"description":"Venom FangRank 635 Energy Instant castBite an enemy for 117+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1.3516980926945525,"basePoints":117,"dieSides":19,"pointsPerLevel":2.3399999141693115,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502901,"level":46,"description":"Venom FangRank 735 Energy Instant castBite an enemy for 153+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":1.8013661441907205,"basePoints":153,"dieSides":30,"pointsPerLevel":3.5250000953674316,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502902,"level":52,"description":"Venom FangRank 835 Energy Instant castBite an enemy for 234+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":2.036153442230984,"basePoints":234,"dieSides":17,"pointsPerLevel":3.216670036315918,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502903,"level":60,"description":"Venom FangRank 935 Energy Instant castBite an enemy for 280+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":3.024444393581814,"basePoints":280,"dieSides":28,"pointsPerLevel":6.449999809265137,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":502904,"level":66,"description":"Venom FangRank 1035 Energy Instant castBite an enemy for 421+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"damage","coefficient":3.387242772451644,"basePoints":421,"dieSides":33,"pointsPerLevel":5.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-29-riftgate-prison-117-500280","classId":"venomancer","dbcSpellId":500280,"name":"Riftgate: Prison","unlockLevel":6,"icon":"/assets/ui/spells/spell_nature_astralrecalgroup.png","sigil":"RP","description":"Riftgate: PrisonRank 18% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 4 to 5 Arcane Damage and Stunning them for 2 sec.","target":"hostile","range":{"min":0,"max":25},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.20399999618530273,"basePoints":4,"dieSides":2,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":6,"maxScalingLevel":8},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500280,"level":6,"description":"Riftgate: PrisonRank 18% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 4 to 5 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.20399999618530273,"basePoints":4,"dieSides":2,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":6,"maxScalingLevel":8},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":2,"spellId":502650,"level":9,"description":"Riftgate: PrisonRank 28% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 5 to 6 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.11246388860874706,"basePoints":5,"dieSides":2,"pointsPerLevel":0.28859999775886536,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":3,"spellId":502651,"level":17,"description":"Riftgate: PrisonRank 38% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 9 to 10 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.17301458089301983,"basePoints":9,"dieSides":2,"pointsPerLevel":0.41819998621940613,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":4,"spellId":502652,"level":25,"description":"Riftgate: PrisonRank 48% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 12 to 14 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.22245833426713943,"basePoints":12,"dieSides":3,"pointsPerLevel":0.5478000044822693,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":5,"spellId":502653,"level":33,"description":"Riftgate: PrisonRank 58% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 16 to 19 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.27676527616050506,"basePoints":16,"dieSides":4,"pointsPerLevel":0.6773999929428101,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":40},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":6,"spellId":502654,"level":41,"description":"Riftgate: PrisonRank 68% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 24 to 29 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.3546845192710559,"basePoints":24,"dieSides":6,"pointsPerLevel":0.8069999814033508,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":48},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":7,"spellId":502655,"level":49,"description":"Riftgate: PrisonRank 78% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 34 to 41 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.43434063252061605,"basePoints":34,"dieSides":8,"pointsPerLevel":0.9366000294685364,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":56},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":8,"spellId":502656,"level":57,"description":"Riftgate: PrisonRank 88% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 50 to 60 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.5359879676942472,"basePoints":50,"dieSides":11,"pointsPerLevel":1.0662000179290771,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":64},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":9,"spellId":502657,"level":65,"description":"Riftgate: PrisonRank 98% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 71 to 84 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.6467791522542635,"basePoints":71,"dieSides":14,"pointsPerLevel":1.1957999467849731,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":72},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]},{"rank":10,"spellId":502658,"level":73,"description":"Riftgate: PrisonRank 108% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 101 to 117 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.7802485250162355,"basePoints":101,"dieSides":17,"pointsPerLevel":1.328570008277893,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500308,"durationMs":0}]}]},{"id":"coa-29-carapace-crash-105-803199","classId":"venomancer","dbcSpellId":803199,"name":"Carapace Crash","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CC","description":"Carapace CrashRank 125 Rage InstantSlam your body against the ground dealing 32+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":0.5433333365122477,"basePoints":32,"dieSides":4,"pointsPerLevel":0.7250000238418579,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803199,"level":10,"description":"Carapace CrashRank 125 Rage InstantSlam your body against the ground dealing 32+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":0.5433333365122477,"basePoints":32,"dieSides":4,"pointsPerLevel":0.7250000238418579,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14}]},{"rank":2,"spellId":803231,"level":16,"description":"Carapace CrashRank 225 Rage InstantSlam your body against the ground dealing 44+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":0.6612903225806451,"basePoints":44,"dieSides":4,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20}]},{"rank":3,"spellId":803232,"level":22,"description":"Carapace CrashRank 325 Rage InstantSlam your body against the ground dealing 58+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":0.7986486580994752,"basePoints":58,"dieSides":4,"pointsPerLevel":1.3250000476837158,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26}]},{"rank":4,"spellId":803233,"level":28,"description":"Carapace CrashRank 425 Rage InstantSlam your body against the ground dealing 72+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":0.9317829405614572,"basePoints":72,"dieSides":5,"pointsPerLevel":1.649999976158142,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32}]},{"rank":5,"spellId":803234,"level":34,"description":"Carapace CrashRank 525 Rage InstantSlam your body against the ground dealing 87+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":1.0656462640178448,"basePoints":87,"dieSides":6,"pointsPerLevel":1.975000023841858,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38}]},{"rank":6,"spellId":803235,"level":40,"description":"Carapace CrashRank 625 Rage InstantSlam your body against the ground dealing 110+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":1.2969697200890744,"basePoints":110,"dieSides":7,"pointsPerLevel":2.5250000953674316,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44}]},{"rank":7,"spellId":573061,"level":46,"description":"Carapace CrashRank 725 Rage InstantSlam your body against the ground dealing 141+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":1.6092896174863387,"basePoints":141,"dieSides":9,"pointsPerLevel":3.25,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50}]},{"rank":8,"spellId":573062,"level":52,"description":"Carapace CrashRank 825 Rage InstantSlam your body against the ground dealing 173+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":1.913930323586535,"basePoints":173,"dieSides":11,"pointsPerLevel":3.9749999046325684,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56}]},{"rank":9,"spellId":573063,"level":58,"description":"Carapace CrashRank 925 Rage InstantSlam your body against the ground dealing 272+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":2.121612527054739,"basePoints":272,"dieSides":17,"pointsPerLevel":3.1833300590515137,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64}]}]},{"id":"coa-29-green-salve-499-800902","classId":"venomancer","dbcSpellId":800902,"name":"Green Salve","unlockLevel":10,"icon":"/assets/ui/spells/inv_firstaid_healingsalve.png","sigil":"GS","description":"Green SalveRank 115% of base mana Instant cast10 sec cooldownRapidly heal an ally for 24 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47+Heal*0.244572.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":1.7999999523162842,"basePoints":4,"dieSides":1,"pointsPerLevel":0.05999999865889549,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":14,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800902,"level":10,"description":"Green SalveRank 115% of base mana Instant cast10 sec cooldownRapidly heal an ally for 24 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":1.7999999523162842,"basePoints":4,"dieSides":1,"pointsPerLevel":0.05999999865889549,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":14,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]},{"rank":2,"spellId":502974,"level":16,"description":"Green SalveRank 215% of base mana Instant cast10 sec cooldownRapidly heal an ally for 60 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 72+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.13849462488646147,"basePoints":10,"dieSides":1,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]},{"rank":3,"spellId":502975,"level":22,"description":"Green SalveRank 315% of base mana Instant cast10 sec cooldownRapidly heal an ally for 96 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 94+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.20360360596631025,"basePoints":16,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]},{"rank":4,"spellId":502976,"level":28,"description":"Green SalveRank 415% of base mana Instant cast10 sec cooldownRapidly heal an ally for 120 to 126 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 113+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.24139534780221392,"basePoints":20,"dieSides":2,"pointsPerLevel":0.3799999952316284,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]},{"rank":5,"spellId":502977,"level":34,"description":"Green SalveRank 515% of base mana Instant cast10 sec cooldownRapidly heal an ally for 150 to 156 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 130+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.28448979343686787,"basePoints":25,"dieSides":2,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]},{"rank":6,"spellId":502978,"level":40,"description":"Green SalveRank 615% of base mana Instant cast10 sec cooldownRapidly heal an ally for 168 to 180 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 144+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.3066666718685266,"basePoints":28,"dieSides":3,"pointsPerLevel":0.5400000214576721,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]},{"rank":7,"spellId":502979,"level":46,"description":"Green SalveRank 715% of base mana Instant cast10 sec cooldownRapidly heal an ally for 186 to 204 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 160+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.3284153065394834,"basePoints":31,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]},{"rank":8,"spellId":502980,"level":52,"description":"Green SalveRank 815% of base mana Instant cast10 sec cooldownRapidly heal an ally for 204 to 234 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 174+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.35233831524255854,"basePoints":34,"dieSides":6,"pointsPerLevel":0.6600000262260437,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000}]},{"rank":9,"spellId":502981,"level":58,"description":"Green SalveRank 915% of base mana Instant cast10 sec cooldownRapidly heal an ally for 312 to 354 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 13+1.0 Points Per Level+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.3770168301177351,"basePoints":52,"dieSides":8,"pointsPerLevel":0.4666669964790344,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-29-hivebreak-105-803193","classId":"venomancer","dbcSpellId":803193,"name":"Hivebreak","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HI","description":"HivebreakRank 120 Rage InstantPierce an enemy with your front leg, dealing 32+0+NatP*.35+AP*0.15 Nature damage.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.4266666666666667,"basePoints":32,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803193,"level":10,"description":"HivebreakRank 120 Rage InstantPierce an enemy with your front leg, dealing 32+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.4266666666666667,"basePoints":32,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":2,"spellId":503149,"level":16,"description":"HivebreakRank 220 Rage InstantPierce an enemy with your front leg, dealing 54+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.6075268817204301,"basePoints":54,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":3,"spellId":503150,"level":22,"description":"HivebreakRank 320 Rage InstantPierce an enemy with your front leg, dealing 87+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.8153153153153153,"basePoints":87,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":4,"spellId":503151,"level":28,"description":"HivebreakRank 420 Rage InstantPierce an enemy with your front leg, dealing 102+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.813953488372093,"basePoints":102,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":5,"spellId":503152,"level":34,"description":"HivebreakRank 520 Rage InstantPierce an enemy with your front leg, dealing 129+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.9217687074829932,"basePoints":129,"dieSides":14,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":6,"spellId":503153,"level":40,"description":"HivebreakRank 620 Rage InstantPierce an enemy with your front leg, dealing 161+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.0272727272727273,"basePoints":161,"dieSides":18,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":7,"spellId":503154,"level":46,"description":"HivebreakRank 720 Rage InstantPierce an enemy with your front leg, dealing 203+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.1584699453551912,"basePoints":203,"dieSides":19,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":8,"spellId":503155,"level":52,"description":"HivebreakRank 820 Rage InstantPierce an enemy with your front leg, dealing 268+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.3930348258706469,"basePoints":268,"dieSides":25,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":54},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":9,"spellId":572037,"level":56,"description":"HivebreakRank 920 Rage InstantPierce an enemy with your front leg, dealing 332+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.6150234741784038,"basePoints":332,"dieSides":25,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":10,"spellId":572038,"level":60,"description":"HivebreakRank 1020 Rage InstantPierce an enemy with your front leg, dealing 399+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.8244444444444445,"basePoints":399,"dieSides":24,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]},{"rank":11,"spellId":572039,"level":66,"description":"HivebreakRank 1120 Rage InstantPierce an enemy with your front leg, dealing 459+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.9526748971193415,"basePoints":459,"dieSides":32,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":805774,"durationMs":0}]}]},{"id":"coa-29-shadras-prayer-484-502939","classId":"venomancer","dbcSpellId":502939,"name":"Shadra's Prayer","unlockLevel":10,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","sigil":"SS","description":"Shadra's PrayerRank 225% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 60+0+Heal*0.263078, plus 9+0+Heal*0.131086 every 3 sec for 21 sec.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.25999999364217125,"basePoints":9,"dieSides":1,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.24,"basePoints":60,"dieSides":7,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502939,"level":10,"description":"Shadra's PrayerRank 225% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 60+0+Heal*0.263078, plus 9+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.25999999364217125,"basePoints":9,"dieSides":1,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.24,"basePoints":60,"dieSides":7,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":3,"spellId":502940,"level":16,"description":"Shadra's PrayerRank 325% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 84+0+Heal*0.263078, plus 13+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.29199500750469903,"basePoints":13,"dieSides":1,"pointsPerLevel":0.8847209811210632,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.0898924796811995,"basePoints":84,"dieSides":5,"pointsPerLevel":6.772500038146973,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":4,"spellId":502941,"level":22,"description":"Shadra's PrayerRank 425% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 122+0+Heal*0.263078, plus 18+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.26737230747669666,"basePoints":18,"dieSides":1,"pointsPerLevel":0.5308330059051514,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.8881306476421185,"basePoints":122,"dieSides":11,"pointsPerLevel":3.7537500858306885,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":5,"spellId":502942,"level":28,"description":"Shadra's PrayerRank 525% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 161+0+Heal*0.263078, plus 24+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.3177259596743325,"basePoints":24,"dieSides":1,"pointsPerLevel":0.6066660284996033,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.233733051507048,"basePoints":161,"dieSides":16,"pointsPerLevel":4.273270130157471,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":6,"spellId":502943,"level":34,"description":"Shadra's PrayerRank 625% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 199+0+Heal*0.263078, plus 30+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.3862244953103617,"basePoints":30,"dieSides":1,"pointsPerLevel":0.7875000238418579,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.5939004145511966,"basePoints":199,"dieSides":22,"pointsPerLevel":5.053040027618408,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":7,"spellId":502944,"level":40,"description":"Shadra's PrayerRank 725% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 241+0+Heal*0.263078, plus 36+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.42499999422015566,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8531249761581421,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.0434885198419743,"basePoints":241,"dieSides":30,"pointsPerLevel":6.1668901443481445,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":8,"spellId":502945,"level":46,"description":"Shadra's PrayerRank 825% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 291+0+Heal*0.263078, plus 44+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.45596751945266306,"basePoints":44,"dieSides":1,"pointsPerLevel":0.8574360013008118,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.10617652747149,"basePoints":291,"dieSides":39,"pointsPerLevel":5.6180500984191895,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]},{"rank":9,"spellId":502946,"level":52,"description":"Shadra's PrayerRank 925% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 322+0+Heal*0.263078, plus 50+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"hot","coefficient":0.5014462079574813,"basePoints":50,"dieSides":1,"pointsPerLevel":0.9767439961433411,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.3649008641788614,"basePoints":322,"dieSides":49,"pointsPerLevel":6.352789878845215,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":800874,"durationMs":21000}]}]},{"id":"coa-29-spider-pheromones-484-803177","classId":"venomancer","dbcSpellId":803177,"name":"Spider Pheromones","unlockLevel":10,"icon":"/assets/ui/spells/nhi_spiderweb_border.png","sigil":"SP","description":"Spider PheromonesRank 17% of base mana InstantInject an ally with spider pheromones, increasing their Agility by 6. Lasts 30 min.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":1,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803177,"level":10,"description":"Spider PheromonesRank 17% of base mana InstantInject an ally with spider pheromones, increasing their Agility by 6. Lasts 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":1,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-29-wilt-103-804982","classId":"venomancer","dbcSpellId":804982,"name":"Wilt","unlockLevel":11,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_naturewrath_border.png","sigil":"WI","description":"WiltRank 110% of base mana Instant castWilt the life of an enemy with vile poison, dealing 138 Nature damage over 18 sec.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.39560444003496414,"basePoints":23,"dieSides":1,"pointsPerLevel":0.7142860293388367,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18,"ticks":6,"intervalMs":3000,"tag":"spell-804982"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":18000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804982,"level":11,"description":"WiltRank 110% of base mana Instant castWilt the life of an enemy with vile poison, dealing 138 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.39560444003496414,"basePoints":23,"dieSides":1,"pointsPerLevel":0.7142860293388367,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18,"ticks":6,"intervalMs":3000,"tag":"spell-804982"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":18000}]},{"rank":2,"spellId":620067,"level":20,"description":"WiltRank 210% of base mana Instant castWilt the life of an enemy with vile poison, dealing 234 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.49841256595793226,"basePoints":39,"dieSides":1,"pointsPerLevel":0.6666659712791443,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26,"ticks":6,"intervalMs":3000,"tag":"spell-620067"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":18000}]},{"rank":3,"spellId":620068,"level":28,"description":"WiltRank 310% of base mana Instant castWilt the life of an enemy with vile poison, dealing 330 to 336 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.5568474762199461,"basePoints":55,"dieSides":2,"pointsPerLevel":0.5833330154418945,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34,"ticks":6,"intervalMs":3000,"tag":"spell-620068"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":18000}]},{"rank":4,"spellId":620069,"level":34,"description":"WiltRank 410% of base mana Instant castWilt the life of an enemy with vile poison, dealing 462 to 474 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.7182161434978044,"basePoints":77,"dieSides":3,"pointsPerLevel":0.8111109733581543,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42,"ticks":6,"intervalMs":3000,"tag":"spell-620069"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":18000}]},{"rank":5,"spellId":620070,"level":44,"description":"WiltRank 510% of base mana Instant castWilt the life of an enemy with vile poison, dealing 594 to 618 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":0.86064112119082,"basePoints":99,"dieSides":5,"pointsPerLevel":1.1666699647903442,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50,"ticks":6,"intervalMs":3000,"tag":"spell-620070"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":18000}]},{"rank":6,"spellId":620071,"level":52,"description":"WiltRank 610% of base mana Instant castWilt the life of an enemy with vile poison, dealing 810 to 846 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":1.2751244027816242,"basePoints":135,"dieSides":7,"pointsPerLevel":2.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":6,"intervalMs":3000,"tag":"spell-620071"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":18000}]},{"rank":7,"spellId":620072,"level":58,"description":"WiltRank 710% of base mana Instant castWilt the life of an enemy with vile poison, dealing 1104 to 1140 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"dot","coefficient":1.2378995560075594,"basePoints":184,"dieSides":7,"pointsPerLevel":1.4500000476837158,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66,"ticks":6,"intervalMs":3000,"tag":"spell-620072"},{"kind":"utility","effectType":6,"auraType":271,"miscValue":127,"triggerSpellId":0,"durationMs":18000}]}]},{"id":"coa-29-claw-strike-105-803198","classId":"venomancer","dbcSpellId":803198,"name":"Claw Strike","unlockLevel":12,"icon":"/assets/ui/spells/nhi_poisonedclaws_border.png","sigil":"CS","description":"Claw StrikeRank 1Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 25 Nature damage, scaling with your Stamina. Generates 20 Rage.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.3271604938271605,"basePoints":25,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803198,"level":12,"description":"Claw StrikeRank 1Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 25 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.3271604938271605,"basePoints":25,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":2,"spellId":503165,"level":18,"description":"Claw StrikeRank 2Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 37 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.3888888888888889,"basePoints":37,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":3,"spellId":503166,"level":24,"description":"Claw StrikeRank 3Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 53 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.452991452991453,"basePoints":53,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":4,"spellId":503167,"level":30,"description":"Claw StrikeRank 4Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 72 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5407407407407407,"basePoints":72,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":5,"spellId":503168,"level":36,"description":"Claw StrikeRank 5Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 94 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.6274509803921569,"basePoints":94,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":6,"spellId":503169,"level":42,"description":"Claw StrikeRank 6Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 118 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7222222222222222,"basePoints":118,"dieSides":12,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":7,"spellId":503170,"level":48,"description":"Claw StrikeRank 7Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 146 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.798941798941799,"basePoints":146,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":8,"spellId":503171,"level":54,"description":"Claw StrikeRank 8Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 172 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.8647342995169082,"basePoints":172,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":9,"spellId":503172,"level":60,"description":"Claw StrikeRank 9Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 199 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.9288888888888889,"basePoints":199,"dieSides":21,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":60},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":10,"spellId":503173,"level":62,"description":"Claw StrikeRank 10Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 206 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.948051948051948,"basePoints":206,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":66},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":11,"spellId":503174,"level":68,"description":"Claw StrikeRank 11Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 238 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.034136546184739,"basePoints":238,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":72},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":12,"spellId":503175,"level":74,"description":"Claw StrikeRank 12Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 303 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.2209737827715357,"basePoints":303,"dieSides":47,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":78},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]},{"rank":13,"spellId":503176,"level":80,"description":"Claw StrikeRank 13Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 367 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.4017543859649122,"basePoints":367,"dieSides":66,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":86},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":800001,"durationMs":0}]}]},{"id":"coa-29-toxic-sludge-105-803201","classId":"venomancer","dbcSpellId":803201,"name":"Toxic Sludge","unlockLevel":12,"icon":"/assets/ui/spells/achievment_boss_wellofeternity.png","sigil":"TS","description":"Toxic SludgeRank 140 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 6 sec, instantly Burning enemies inside for 37 Nature Damage. Enemies in the pool take 16 Nature Damage every 3 sec, and have 50% reduced movement speed.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":16,"dieSides":2,"pointsPerLevel":0.5329999923706055,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":12,"maxScalingLevel":20,"ticks":2,"intervalMs":3000,"tag":"spell-803201"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803218,"durationMs":6000},{"kind":"damage","coefficient":0.4000000059604645,"basePoints":37,"dieSides":2,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":12,"maxScalingLevel":20}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803201,"level":12,"description":"Toxic SludgeRank 140 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 6 sec, instantly Burning enemies inside for 37 Nature Damage. Enemies in the pool take 16 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"dot","coefficient":0.07000000029802322,"basePoints":16,"dieSides":2,"pointsPerLevel":0.5329999923706055,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":12,"maxScalingLevel":20,"ticks":2,"intervalMs":3000,"tag":"spell-803201"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803218,"durationMs":6000},{"kind":"damage","coefficient":0.4000000059604645,"basePoints":37,"dieSides":2,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":12,"maxScalingLevel":20}]},{"rank":2,"spellId":503177,"level":20,"description":"Toxic SludgeRank 240 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 47 Nature Damage. Enemies in the pool take 23 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"dot","coefficient":0.37142857369922455,"basePoints":23,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":30,"ticks":4,"intervalMs":3000,"tag":"spell-503177"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803218,"durationMs":12000},{"kind":"damage","coefficient":0.6428571405864897,"basePoints":47,"dieSides":4,"pointsPerLevel":0.949999988079071,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":30}]},{"rank":3,"spellId":503178,"level":30,"description":"Toxic SludgeRank 340 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 69 Nature Damage. Enemies in the pool take 37 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"dot","coefficient":0.5407407513371221,"basePoints":37,"dieSides":1,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":40,"ticks":4,"intervalMs":3000,"tag":"spell-503178"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803218,"durationMs":12000},{"kind":"damage","coefficient":0.7888888835906982,"basePoints":69,"dieSides":7,"pointsPerLevel":1.149999976158142,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":40}]},{"rank":4,"spellId":503179,"level":40,"description":"Toxic SludgeRank 440 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 87 Nature Damage. Enemies in the pool take 53 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"dot","coefficient":0.725090911171653,"basePoints":53,"dieSides":1,"pointsPerLevel":1.6660000085830688,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":50,"ticks":4,"intervalMs":3000,"tag":"spell-503179"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803218,"durationMs":12000},{"kind":"damage","coefficient":0.9484848542646929,"basePoints":87,"dieSides":12,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":50}]},{"rank":5,"spellId":503180,"level":50,"description":"Toxic SludgeRank 540 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 122 Nature Damage. Enemies in the pool take 80 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"dot","coefficient":0.905897427827884,"basePoints":80,"dieSides":1,"pointsPerLevel":1.9329999685287476,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":60,"ticks":4,"intervalMs":3000,"tag":"spell-503180"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803218,"durationMs":12000},{"kind":"damage","coefficient":1.2564102441836627,"basePoints":122,"dieSides":17,"pointsPerLevel":2.299999952316284,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":60}]},{"rank":6,"spellId":503181,"level":60,"description":"Toxic SludgeRank 640 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 172 Nature Damage. Enemies in the pool take 111 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":40},"effects":[{"kind":"dot","coefficient":1.1199999745686848,"basePoints":111,"dieSides":1,"pointsPerLevel":2.3499999046325684,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":70,"ticks":4,"intervalMs":3000,"tag":"spell-503181"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803218,"durationMs":12000},{"kind":"damage","coefficient":1.5288889016045464,"basePoints":172,"dieSides":21,"pointsPerLevel":2.700000047683716,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":70}]}]},{"id":"coa-29-spore-103-804983","classId":"venomancer","dbcSpellId":804983,"name":"Spore","unlockLevel":13,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"SporeRank 115% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 20+0+NatP*.175 Shadow damage, plus an additional 210 to 224 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.4309523818748338,"basePoints":30,"dieSides":3,"pointsPerLevel":0.4000000059604645,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18,"ticks":7,"intervalMs":3000,"tag":"spell-804983"},{"kind":"damage","coefficient":0.35833333148842766,"basePoints":20,"dieSides":3,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":21000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804983,"level":13,"description":"SporeRank 115% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 20+0+NatP*.175 Shadow damage, plus an additional 210 to 224 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.4309523818748338,"basePoints":30,"dieSides":3,"pointsPerLevel":0.4000000059604645,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18,"ticks":7,"intervalMs":3000,"tag":"spell-804983"},{"kind":"damage","coefficient":0.35833333148842766,"basePoints":20,"dieSides":3,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":2,"spellId":503983,"level":20,"description":"SporeRank 215% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 50+0+NatP*.175 Shadow damage, plus an additional 308 to 329 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.5953649498167493,"basePoints":44,"dieSides":4,"pointsPerLevel":0.8506659865379333,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26,"ticks":7,"intervalMs":3000,"tag":"spell-503983"},{"kind":"damage","coefficient":0.6936506634666806,"basePoints":50,"dieSides":8,"pointsPerLevel":0.9666659832000732,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":3,"spellId":503984,"level":28,"description":"SporeRank 315% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 71+0+NatP*.175 Shadow damage, plus an additional 539 to 574 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.7790697674418605,"basePoints":77,"dieSides":6,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":7,"intervalMs":3000,"tag":"spell-503984"},{"kind":"damage","coefficient":0.9573643410852714,"basePoints":71,"dieSides":15,"pointsPerLevel":1.625,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":4,"spellId":503985,"level":34,"description":"SporeRank 415% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 106+0+NatP*.175 Shadow damage, plus an additional 700 to 742 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":0.8760770267369796,"basePoints":100,"dieSides":7,"pointsPerLevel":0.7583330273628235,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":7,"intervalMs":3000,"tag":"spell-503985"},{"kind":"damage","coefficient":1.0979591891879128,"basePoints":106,"dieSides":20,"pointsPerLevel":1.350000023841858,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":5,"spellId":503986,"level":42,"description":"SporeRank 515% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 124+0+NatP*.175 Shadow damage, plus an additional 896 to 945 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":1.1067251461988303,"basePoints":128,"dieSides":8,"pointsPerLevel":1.375,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":7,"intervalMs":3000,"tag":"spell-503986"},{"kind":"damage","coefficient":1.4154970994469716,"basePoints":124,"dieSides":25,"pointsPerLevel":2.5250000953674316,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":6,"spellId":572868,"level":48,"description":"SporeRank 615% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 179+0+NatP*.175 Shadow damage, plus an additional 1106 to 1155 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":1.1846560725459345,"basePoints":158,"dieSides":8,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54,"ticks":7,"intervalMs":3000,"tag":"spell-572868"},{"kind":"damage","coefficient":1.5402107844277033,"basePoints":179,"dieSides":30,"pointsPerLevel":2.033329963684082,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]},{"rank":7,"spellId":572869,"level":56,"description":"SporeRank 715% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 209+0+NatP*.175 Shadow damage, plus an additional 1337 to 1386 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"dot","coefficient":1.284507048521803,"basePoints":191,"dieSides":8,"pointsPerLevel":1.412500023841858,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":64,"ticks":7,"intervalMs":3000,"tag":"spell-572869"},{"kind":"damage","coefficient":1.5830986040858595,"basePoints":209,"dieSides":39,"pointsPerLevel":1.9500000476837158,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":64},{"kind":"utility","effectType":6,"auraType":308,"miscValue":0,"triggerSpellId":0,"durationMs":21000}]}]},{"id":"coa-29-mending-mist-499-800899","classId":"venomancer","dbcSpellId":800899,"name":"Mending Mist","unlockLevel":15,"icon":"/assets/ui/spells/ability_druid_focusedgrowth.png","sigil":"MM","description":"Mending MistRank 135% of base mana 1.8 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 9+0+Heal*0.15 every 1 sec for 7 sec. After 1.69 sec, all allies within 30 yds are healed for an additional 96+2.5 Points Per Level+Heal*0.231.","target":"hostile","range":{"min":0,"max":40},"radius":30,"castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.1213333343466123,"basePoints":9,"dieSides":1,"pointsPerLevel":0.12800000607967377,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803538,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800899,"level":15,"description":"Mending MistRank 135% of base mana 1.8 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 9+0+Heal*0.15 every 1 sec for 7 sec. After 1.69 sec, all allies within 30 yds are healed for an additional 96+2.5 Points Per Level+Heal*0.231.","castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.1213333343466123,"basePoints":9,"dieSides":1,"pointsPerLevel":0.12800000607967377,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803538,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":2,"spellId":502951,"level":22,"description":"Mending MistRank 235% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 15+0+Heal*0.15 every 1 sec for 7 sec. After 1.64 sec, all allies within 30 yds are healed for an additional 149+4.0 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.1951351353714058,"basePoints":15,"dieSides":2,"pointsPerLevel":0.2800000011920929,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803539,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":3,"spellId":502952,"level":28,"description":"Mending MistRank 335% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 18+0+Heal*0.15 every 1 sec for 7 sec. After 1.59 sec, all allies within 30 yds are healed for an additional 185+4.7 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.221085272094076,"basePoints":18,"dieSides":3,"pointsPerLevel":0.3400000035762787,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803540,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":4,"spellId":502953,"level":34,"description":"Mending MistRank 435% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 22+0+Heal*0.15 every 1 sec for 7 sec. After 1.55 sec, all allies within 30 yds are healed for an additional 219+5.4 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.2570067996881446,"basePoints":22,"dieSides":4,"pointsPerLevel":0.41999998688697815,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803541,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":5,"spellId":502954,"level":40,"description":"Mending MistRank 535% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 25+0+Heal*0.15 every 1 sec for 7 sec. After 1.5 sec, all allies within 30 yds are healed for an additional 260+5.3 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.27999999739907006,"basePoints":25,"dieSides":5,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803542,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":6,"spellId":502955,"level":46,"description":"Mending MistRank 635% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 29+0+Heal*0.15 every 1 sec for 7 sec. After 1.5 sec, all allies within 30 yds are healed for an additional 287+5.7 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.3128961754626915,"basePoints":29,"dieSides":6,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803543,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":7,"spellId":502956,"level":52,"description":"Mending MistRank 735% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 32+0+Heal*0.15 every 1 sec for 7 sec. After 1.5 sec, all allies within 30 yds are healed for an additional 314+6.3 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.33452736441768816,"basePoints":32,"dieSides":7,"pointsPerLevel":0.6200000047683716,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803544,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]},{"rank":8,"spellId":502957,"level":58,"description":"Mending MistRank 835% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 48+0+Heal*0.15 every 1 sec for 7 sec. After 1.5 sec, all allies within 30 yds are healed for an additional 692+1.0 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"hot","coefficient":0.3610350949579178,"basePoints":48,"dieSides":9,"pointsPerLevel":0.4666669964790344,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":7,"intervalMs":1000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":803545,"durationMs":7000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":7000}]}]},{"id":"coa-29-nerubian-sting-104-800882","classId":"venomancer","dbcSpellId":800882,"name":"Nerubian Sting","unlockLevel":15,"icon":"/assets/ui/spells/inv_misc_head_nerubian_01.png","sigil":"NS","description":"Nerubian StingRank 135 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 26+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(4+0+ShaP*.1) over 15 sec, stacking up to 3 times.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":0.1100000023841858,"basePoints":4,"dieSides":2,"pointsPerLevel":0.36000001430511475,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18,"ticks":5,"intervalMs":3000,"tag":"spell-800882"},{"kind":"damage","coefficient":0.4333333902888828,"basePoints":26,"dieSides":4,"pointsPerLevel":0.7666670083999634,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800882,"level":15,"description":"Nerubian StingRank 135 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 26+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(4+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":0.1100000023841858,"basePoints":4,"dieSides":2,"pointsPerLevel":0.36000001430511475,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18,"ticks":5,"intervalMs":3000,"tag":"spell-800882"},{"kind":"damage","coefficient":0.4333333902888828,"basePoints":26,"dieSides":4,"pointsPerLevel":0.7666670083999634,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":2,"spellId":502905,"level":20,"description":"Nerubian StingRank 235 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 32+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(7+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":0.1956761950538272,"basePoints":7,"dieSides":3,"pointsPerLevel":0.6273000240325928,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26,"ticks":5,"intervalMs":3000,"tag":"spell-502905"},{"kind":"damage","coefficient":0.4539428574698312,"basePoints":32,"dieSides":5,"pointsPerLevel":0.6832000017166138,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":502906,"level":28,"description":"Nerubian StingRank 335 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 42+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(12+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":0.30130542525949405,"basePoints":12,"dieSides":6,"pointsPerLevel":0.8702999949455261,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":5,"intervalMs":3000,"tag":"spell-502906"},{"kind":"damage","coefficient":0.5511627881101859,"basePoints":42,"dieSides":6,"pointsPerLevel":0.949999988079071,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":502907,"level":34,"description":"Nerubian StingRank 435 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 52+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(18+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":0.4105591757767865,"basePoints":18,"dieSides":10,"pointsPerLevel":1.1132999658584595,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":5,"intervalMs":3000,"tag":"spell-502907"},{"kind":"damage","coefficient":0.657970058674715,"basePoints":52,"dieSides":8,"pointsPerLevel":1.212399959564209,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":502908,"level":42,"description":"Nerubian StingRank 535 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 69+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(31+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":0.5553485371215999,"basePoints":31,"dieSides":15,"pointsPerLevel":1.3562999963760376,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":5,"intervalMs":3000,"tag":"spell-502908"},{"kind":"damage","coefficient":0.8195906549866436,"basePoints":69,"dieSides":11,"pointsPerLevel":1.5750000476837158,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":6,"spellId":502909,"level":48,"description":"Nerubian StingRank 635 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 94+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(51+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":0.728922758152876,"basePoints":51,"dieSides":21,"pointsPerLevel":1.5993000268936157,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54,"ticks":5,"intervalMs":3000,"tag":"spell-502909"},{"kind":"damage","coefficient":0.9752804085060403,"basePoints":94,"dieSides":15,"pointsPerLevel":1.7359999418258667,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":7,"spellId":502910,"level":56,"description":"Nerubian StingRank 735 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 125+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(80+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":1.4009389922092779,"basePoints":80,"dieSides":29,"pointsPerLevel":3.6500000953674316,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58,"ticks":5,"intervalMs":3000,"tag":"spell-502910"},{"kind":"damage","coefficient":2.1455399061032865,"basePoints":125,"dieSides":21,"pointsPerLevel":5.75,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":8,"spellId":502911,"level":60,"description":"Nerubian StingRank 835 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 418+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(222+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":35},"effects":[{"kind":"dot","coefficient":1.6249688805474176,"basePoints":222,"dieSides":38,"pointsPerLevel":2.0852999687194824,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68,"ticks":5,"intervalMs":3000,"tag":"spell-502911"},{"kind":"damage","coefficient":2.522577747768826,"basePoints":418,"dieSides":28,"pointsPerLevel":2.2679998874664307,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-29-shadras-balm-499-800901","classId":"venomancer","dbcSpellId":800901,"name":"Shadra's Balm","unlockLevel":16,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Shadra's BalmRank 118% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 14+0+Heal*0.251685 every 3 sec for 18 sec.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.558603020124538,"basePoints":14,"dieSides":2,"pointsPerLevel":2.340630054473877,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800901,"level":16,"description":"Shadra's BalmRank 118% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 14+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.558603020124538,"basePoints":14,"dieSides":2,"pointsPerLevel":2.340630054473877,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}]},{"rank":2,"spellId":502968,"level":24,"description":"Shadra's BalmRank 218% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 41+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.6550796622903938,"basePoints":41,"dieSides":1,"pointsPerLevel":1.4851800203323364,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}]},{"rank":3,"spellId":502969,"level":32,"description":"Shadra's BalmRank 318% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 65+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.8466905093362146,"basePoints":65,"dieSides":1,"pointsPerLevel":1.6994800567626953,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}]},{"rank":4,"spellId":502970,"level":40,"description":"Shadra's BalmRank 418% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 84+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.9606860709912849,"basePoints":84,"dieSides":1,"pointsPerLevel":1.8628300428390503,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}]},{"rank":5,"spellId":502971,"level":48,"description":"Shadra's BalmRank 518% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 102+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.8455746060325986,"basePoints":102,"dieSides":1,"pointsPerLevel":1.204450011253357,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}]},{"rank":6,"spellId":502972,"level":54,"description":"Shadra's BalmRank 618% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 142+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":1.2447912220793647,"basePoints":142,"dieSides":1,"pointsPerLevel":2.1420700550079346,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}]},{"rank":7,"spellId":502973,"level":60,"description":"Shadra's BalmRank 718% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 190+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":1.0719999101426867,"basePoints":190,"dieSides":1,"pointsPerLevel":0.8533329963684082,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}]},{"rank":8,"spellId":570206,"level":68,"description":"Shadra's BalmRank 818% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 235+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"hot","coefficient":0.9437751004016064,"basePoints":235,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":68,"ticks":6,"intervalMs":3000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":4,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":6,"auraType":178,"miscValue":2,"triggerSpellId":0,"durationMs":18000}]}]},{"id":"coa-29-spindlebind-103-800887","classId":"venomancer","dbcSpellId":800887,"name":"Spindlebind","unlockLevel":16,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"SpindlebindRank 130 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 61+0+NatP*0.4 Nature damage.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":61,"dieSides":10,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":16,"maxScalingLevel":22},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800887,"level":16,"description":"SpindlebindRank 130 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 61+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":61,"dieSides":10,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":16,"maxScalingLevel":22},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}]},{"rank":2,"spellId":502890,"level":24,"description":"SpindlebindRank 230 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 83+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.2509140074253082,"basePoints":83,"dieSides":14,"pointsPerLevel":1.2666699886322021,"bonusPowerCoefficient":0.2509140074253082,"sourceLevel":24,"maxScalingLevel":30},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}]},{"rank":3,"spellId":502891,"level":32,"description":"SpindlebindRank 330 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 104+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.31091898679733276,"basePoints":104,"dieSides":19,"pointsPerLevel":1.5833300352096558,"bonusPowerCoefficient":0.31091898679733276,"sourceLevel":32,"maxScalingLevel":38},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}]},{"rank":4,"spellId":502892,"level":40,"description":"SpindlebindRank 430 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 144+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.3804759979248047,"basePoints":144,"dieSides":26,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0.3804759979248047,"sourceLevel":40,"maxScalingLevel":46},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}]},{"rank":5,"spellId":502893,"level":48,"description":"SpindlebindRank 530 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 201+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.45972299575805664,"basePoints":201,"dieSides":37,"pointsPerLevel":4.625,"bonusPowerCoefficient":0.45972299575805664,"sourceLevel":48,"maxScalingLevel":52},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}]},{"rank":6,"spellId":502894,"level":54,"description":"SpindlebindRank 630 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 281+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.5483840107917786,"basePoints":281,"dieSides":52,"pointsPerLevel":6.474999904632568,"bonusPowerCoefficient":0.5483840107917786,"sourceLevel":54,"maxScalingLevel":58},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}]},{"rank":7,"spellId":502895,"level":60,"description":"SpindlebindRank 730 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 392+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"damage","coefficient":0.6456829905509949,"basePoints":392,"dieSides":109,"pointsPerLevel":6.033329963684082,"bonusPowerCoefficient":0.6456829905509949,"sourceLevel":60,"maxScalingLevel":66},{"kind":"status","status":"root","durationMs":4000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":800868,"durationMs":4000}]}]},{"id":"coa-29-unity-103-502982","classId":"venomancer","dbcSpellId":502982,"name":"Unity","unlockLevel":19,"icon":"/assets/ui/spells/ability_druid_cyclone.png","sigil":"UN","description":"UnityRank 325% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 48 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","target":"hostile","range":{"min":0,"max":40},"radius":12,"castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":0.9522823562809065,"basePoints":48,"dieSides":16,"pointsPerLevel":2.191200017929077,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":502982,"level":19,"description":"UnityRank 325% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 48 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":0.9522823562809065,"basePoints":48,"dieSides":16,"pointsPerLevel":2.191200017929077,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502983,"level":28,"description":"UnityRank 425% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 79 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":1.2959937975388165,"basePoints":79,"dieSides":22,"pointsPerLevel":2.774399995803833,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502984,"level":37,"description":"UnityRank 525% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 125 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":1.6905846091417165,"basePoints":125,"dieSides":30,"pointsPerLevel":3.357599973678589,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502985,"level":45,"description":"UnityRank 625% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 185 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":2.1023333152135213,"basePoints":185,"dieSides":39,"pointsPerLevel":3.875999927520752,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502986,"level":54,"description":"UnityRank 725% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 279 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":2.6318685743543835,"basePoints":279,"dieSides":51,"pointsPerLevel":4.459199905395508,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502987,"level":63,"description":"UnityRank 825% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 414 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":3.2635521053249,"basePoints":414,"dieSides":65,"pointsPerLevel":5.042399883270264,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502988,"level":72,"description":"UnityRank 925% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 605 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"heal","coefficient":4,"basePoints":605,"dieSides":80,"pointsPerLevel":5.6255998611450195,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-29-venomtip-poison-105-803195","classId":"venomancer","dbcSpellId":803195,"name":"Venomtip Poison","unlockLevel":27,"icon":"/assets/ui/spells/5_poisonclaw_border.png","sigil":"VP","description":"Venomtip PoisonRank 120 Rage InstantSpray poison on an enemy and all enemies near them, dealing 30+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","target":"hostile","range":{"min":0,"max":20},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.09000000357627869,"basePoints":30,"dieSides":2,"pointsPerLevel":0.5400000214576721,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803195,"level":27,"description":"Venomtip PoisonRank 120 Rage InstantSpray poison on an enemy and all enemies near them, dealing 30+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.09000000357627869,"basePoints":30,"dieSides":2,"pointsPerLevel":0.5400000214576721,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0}]},{"rank":2,"spellId":503156,"level":34,"description":"Venomtip PoisonRank 220 Rage InstantSpray poison on an enemy and all enemies near them, dealing 37+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.42857142857142855,"basePoints":37,"dieSides":2,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503157,"level":40,"description":"Venomtip PoisonRank 320 Rage InstantSpray poison on an enemy and all enemies near them, dealing 45+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.5030303001403809,"basePoints":45,"dieSides":1,"pointsPerLevel":0.949999988079071,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503158,"level":46,"description":"Venomtip PoisonRank 420 Rage InstantSpray poison on an enemy and all enemies near them, dealing 54+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.5904371464838747,"basePoints":54,"dieSides":1,"pointsPerLevel":1.1749999523162842,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503159,"level":52,"description":"Venomtip PoisonRank 520 Rage InstantSpray poison on an enemy and all enemies near them, dealing 65+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.6985074750226529,"basePoints":65,"dieSides":1,"pointsPerLevel":1.4500000476837158,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503160,"level":58,"description":"Venomtip PoisonRank 620 Rage InstantSpray poison on an enemy and all enemies near them, dealing 78+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":0.8285388064711061,"basePoints":78,"dieSides":2,"pointsPerLevel":1.774999976158142,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503161,"level":64,"description":"Venomtip PoisonRank 720 Rage InstantSpray poison on an enemy and all enemies near them, dealing 97+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.0101265565252506,"basePoints":97,"dieSides":1,"pointsPerLevel":2.2249999046325684,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":68},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503162,"level":70,"description":"Venomtip PoisonRank 820 Rage InstantSpray poison on an enemy and all enemies near them, dealing 120+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.2254901960784315,"basePoints":120,"dieSides":1,"pointsPerLevel":2.75,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":74},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":503163,"level":76,"description":"Venomtip PoisonRank 920 Rage InstantSpray poison on an enemy and all enemies near them, dealing 147+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.47985347985348,"basePoints":147,"dieSides":2,"pointsPerLevel":3.375,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":9,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":503164,"level":82,"description":"Venomtip PoisonRank 1020 Rage InstantSpray poison on an enemy and all enemies near them, dealing 263+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"damage","coefficient":1.6880861066051365,"basePoints":263,"dieSides":1,"pointsPerLevel":2.783329963684082,"bonusPowerCoefficient":0,"sourceLevel":82,"maxScalingLevel":88},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":572058,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-29-facemelter-103-502877","classId":"venomancer","dbcSpellId":502877,"name":"Facemelter","unlockLevel":34,"icon":"/assets/ui/spells/spell_deathvortex.png","sigil":"FA","description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(23+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*3.50} Nature damage.","target":"hostile","range":{"min":0,"max":20},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"dot","coefficient":0.2846938720365771,"basePoints":24,"dieSides":1,"pointsPerLevel":0.5249999761581421,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":5,"intervalMs":3000,"tag":"spell-502877"},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502877,"level":34,"description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(23+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*3.50} Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"dot","coefficient":0.2846938720365771,"basePoints":24,"dieSides":1,"pointsPerLevel":0.5249999761581421,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":5,"intervalMs":3000,"tag":"spell-502877"},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":502878,"level":40,"description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(30+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(30+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(30+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(30+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(30+0+$spn*.15))*3.50} Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"dot","coefficient":0.3575757546858354,"basePoints":31,"dieSides":1,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":5,"intervalMs":3000,"tag":"spell-502878"},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":502879,"level":46,"description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(37+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(37+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(37+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(37+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(37+0+$spn*.15))*3.50} Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"dot","coefficient":0.42677596227718834,"basePoints":38,"dieSides":3,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":5,"intervalMs":3000,"tag":"spell-502879"},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":5,"spellId":502880,"level":52,"description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(45+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(45+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(45+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(45+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(45+0+$spn*.15))*3.50} Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":30},"effects":[{"kind":"dot","coefficient":0.5054726244798348,"basePoints":46,"dieSides":3,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":5,"intervalMs":3000,"tag":"spell-502880"},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-29-venoxis-fang-103-805405","classId":"venomancer","dbcSpellId":805405,"name":"Venoxis Fang","unlockLevel":35,"icon":"/assets/ui/spells/spell_nature_poisoncleansingtotem.png","sigil":"VF","description":"Venoxis FangRank 19% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 123+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1.4206666644414265,"basePoints":123,"dieSides":23,"pointsPerLevel":2.259999990463257,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":40},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":527873,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805405,"level":35,"description":"Venoxis FangRank 19% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 123+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"damage","coefficient":1.4206666644414265,"basePoints":123,"dieSides":23,"pointsPerLevel":2.259999990463257,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":40},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":527873,"durationMs":6000}]},{"rank":2,"spellId":503941,"level":42,"description":"Venoxis FangRank 210% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 157+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.7245613566616127,"basePoints":157,"dieSides":14,"pointsPerLevel":7.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":44},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":527873,"durationMs":6000}]},{"rank":3,"spellId":503942,"level":46,"description":"Venoxis FangRank 312% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 191+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.302185840294009,"basePoints":191,"dieSides":18,"pointsPerLevel":8.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":48},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":527873,"durationMs":6000}]},{"rank":4,"spellId":503943,"level":50,"description":"Venoxis FangRank 413% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 403+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":13},"effects":[{"kind":"damage","coefficient":3.790597426585662,"basePoints":403,"dieSides":20,"pointsPerLevel":6.533329963684082,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":53},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":527873,"durationMs":6000}]},{"rank":5,"spellId":503944,"level":55,"description":"Venoxis FangRank 514% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 450+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"damage","coefficient":4,"basePoints":450,"dieSides":33,"pointsPerLevel":7.533329963684082,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":527873,"durationMs":6000}]},{"rank":6,"spellId":503945,"level":60,"description":"Venoxis FangRank 615% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 792+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":792,"dieSides":28,"pointsPerLevel":4.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","effectType":6,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":527873,"durationMs":6000}]}]},{"id":"coa-29-spawn-484-805568","classId":"venomancer","dbcSpellId":805568,"name":"Spawn","unlockLevel":40,"icon":"/assets/ui/spells/achievement_halloween_rottenegg_01.png","sigil":"SP","description":"SpawnRank 120% of base mana 2 sec cast10 min cooldownBring a dead ally back to life with 400 health and 635 mana. Can be used in combat. Not usable in arena.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":635,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805568,"level":40,"description":"SpawnRank 120% of base mana 2 sec cast10 min cooldownBring a dead ally back to life with 400 health and 635 mana. Can be used in combat. Not usable in arena.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":113,"auraType":0,"miscValue":635,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-29-green-salve-103-502981","classId":"venomancer","dbcSpellId":502981,"name":"Green Salve","unlockLevel":58,"icon":"/assets/ui/spells/inv_firstaid_healingsalve.png","sigil":"GS","description":"Green SalveRank 915% of base mana Instant cast10 sec cooldownRapidly heal an ally for 312 to 354 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 13+1.0 Points Per Level+Heal*0.244572.","target":"friendly","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.3770168301177351,"basePoints":52,"dieSides":8,"pointsPerLevel":0.4666669964790344,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":9,"spellId":502981,"level":58,"description":"Green SalveRank 915% of base mana Instant cast10 sec cooldownRapidly heal an ally for 312 to 354 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 13+1.0 Points Per Level+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"hot","coefficient":0.3770168301177351,"basePoints":52,"dieSides":8,"pointsPerLevel":0.4666669964790344,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":6,"intervalMs":1000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803529,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]}],"reaper":[{"id":"coa-tree-6708","classId":"reaper","dbcSpellId":706790,"name":"Backswing","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(32)_border.png","sigil":"BA","description":"Increases the Runic Power generated by Reap by 5.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706790,"level":1,"description":"Increases the Runic Power generated by Reap by 5.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6708},{"id":"coa-tree-34500","classId":"reaper","dbcSpellId":560412,"name":"Between Shadows","unlockLevel":1,"icon":"/assets/ui/spells/5_shadowworld_border.png","sigil":"BS","description":"Casting Spectre Stride now generates 1 Reaped Soul.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504390,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560412,"level":1,"description":"Casting Spectre Stride now generates 1 Reaped Soul.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504390,"durationMs":-1}]}],"talentEntryId":34500},{"id":"coa-tree-31289","classId":"reaper","dbcSpellId":680337,"name":"Bolstered Form","unlockLevel":1,"icon":"/assets/ui/spells/achievement_raid_torghast_shadowscourge_prisonofnerzhul.png","sigil":"BF","description":"Assume a bolstered form for 15 seconds, generating 30 Runic Power, increasing your Armor and your parry chance by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359505,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":47,"miscValue":127,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680337,"level":1,"description":"Assume a bolstered form for 15 seconds, generating 30 Runic Power, increasing your Armor and your parry chance by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359505,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":47,"miscValue":127,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":31289},{"id":"coa-tree-6780","classId":"reaper","dbcSpellId":560422,"name":"Burial Rites","unlockLevel":1,"icon":"/assets/ui/spells/achievement_raid_torghast_thenine.png","sigil":"BR","description":"Increases the effectiveness of your Rites by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560422,"level":1,"description":"Increases the effectiveness of your Rites by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":137,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6780},{"id":"coa-30-corporeal-flay-107-800938","classId":"reaper","dbcSpellId":800938,"name":"Corporeal Flay","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_soulsiphon.png","sigil":"CF","description":"Corporeal FlayRank 1Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 17 to 18 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.4004444440205892,"basePoints":17,"dieSides":2,"pointsPerLevel":0.5199999809265137,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":8,"ticks":3,"intervalMs":2000,"tag":"spell-800938"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800938,"level":1,"description":"Corporeal FlayRank 1Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 17 to 18 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.4004444440205892,"basePoints":17,"dieSides":2,"pointsPerLevel":0.5199999809265137,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":8,"ticks":3,"intervalMs":2000,"tag":"spell-800938"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":2,"spellId":502685,"level":9,"description":"Corporeal FlayRank 2Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 32 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.5337444436219003,"basePoints":32,"dieSides":1,"pointsPerLevel":0.7143999934196472,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16,"ticks":3,"intervalMs":2000,"tag":"spell-502685"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":3,"spellId":502686,"level":17,"description":"Corporeal FlayRank 3Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 60 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.7998166705171267,"basePoints":60,"dieSides":1,"pointsPerLevel":0.9872000217437744,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24,"ticks":3,"intervalMs":2000,"tag":"spell-502686"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":4,"spellId":502687,"level":25,"description":"Corporeal FlayRank 4Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 92 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":1.0374999900658926,"basePoints":92,"dieSides":1,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32,"ticks":3,"intervalMs":2000,"tag":"spell-502687"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":5,"spellId":502688,"level":33,"description":"Corporeal FlayRank 5Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 113 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":1.151388894352648,"basePoints":113,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":40,"ticks":3,"intervalMs":2000,"tag":"spell-502688"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":6,"spellId":502689,"level":41,"description":"Corporeal FlayRank 6Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 157 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":1.4784010081064134,"basePoints":157,"dieSides":1,"pointsPerLevel":2.228569984436035,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":48,"ticks":3,"intervalMs":2000,"tag":"spell-502689"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":7,"spellId":502690,"level":49,"description":"Corporeal FlayRank 7Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 212 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":1.8734386178354423,"basePoints":212,"dieSides":1,"pointsPerLevel":3.0142900943756104,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":56,"ticks":3,"intervalMs":2000,"tag":"spell-502690"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":8,"spellId":502691,"level":57,"description":"Corporeal FlayRank 8Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 257 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":2.154893430294814,"basePoints":257,"dieSides":1,"pointsPerLevel":3.657140016555786,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":64,"ticks":3,"intervalMs":2000,"tag":"spell-502691"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":9,"spellId":502692,"level":65,"description":"Corporeal FlayRank 9Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 319 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":2.559524591763814,"basePoints":319,"dieSides":1,"pointsPerLevel":4.54286003112793,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":72,"ticks":3,"intervalMs":2000,"tag":"spell-502692"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":10,"spellId":502693,"level":73,"description":"Corporeal FlayRank 10Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 413 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":3.191881866166086,"basePoints":413,"dieSides":1,"pointsPerLevel":5.885709762573242,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80,"ticks":3,"intervalMs":2000,"tag":"spell-502693"},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-30-crimson-quickness-106-705411","classId":"reaper","dbcSpellId":705411,"name":"Crimson Quickness","unlockLevel":1,"icon":"/assets/ui/spells/inv_knife_1h_artifactcthun_d_03.png","sigil":"CQ","description":"Crimson QuicknessRank 1Reduces the cooldown of Crimson Scythe by 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":704551,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705411,"level":1,"description":"Crimson QuicknessRank 1Reduces the cooldown of Crimson Scythe by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":704551,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705412,"level":1,"description":"Crimson QuicknessRank 2Reduces the cooldown of Crimson Scythe by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":704551,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-30-cursed-rosary-none-504307","classId":"reaper","dbcSpellId":504307,"name":"Cursed Rosary","unlockLevel":1,"icon":"/assets/ui/spells/nhi_shadowcross_border.png","sigil":"CR","description":"Cursed RosaryRank 2Increases Physical and Shadow Damage dealt by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":79,"miscValue":32,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":504307,"level":1,"description":"Cursed RosaryRank 2Increases Physical and Shadow Damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":79,"miscValue":32,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6726","classId":"reaper","dbcSpellId":704558,"name":"Dark Passage","unlockLevel":1,"icon":"/assets/ui/spells/inv_artifact_stolenpower.png","sigil":"DP","description":"Dealing direct critical strikes with Shadow damage reduce the cooldown of Limbo by -2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504035,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704558,"level":1,"description":"Dealing direct critical strikes with Shadow damage reduce the cooldown of Limbo by -2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":504035,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6726},{"id":"coa-tree-30324","classId":"reaper","dbcSpellId":805186,"name":"Essence Invigoration","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_lesseressence.png","sigil":"EI","description":"Casting abilities that require Soul Infusion now has a 50% chance to restore 5% of your missing health.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805187,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805186,"level":1,"description":"Casting abilities that require Soul Infusion now has a 50% chance to restore 5% of your missing health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805187,"durationMs":-1}]}],"talentEntryId":30324},{"id":"coa-tree-34492","classId":"reaper","dbcSpellId":805192,"name":"Ghastly Advance","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","sigil":"GA","description":"Increases the range of Spectre Stride by 5 yds and causes it to generate 5 more Runic Power.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805192,"level":1,"description":"Increases the range of Spectre Stride by 5 yds and causes it to generate 5 more Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":807885,"level":1,"description":"Increases the range of Spectre Stride by 10 yds and causes it to generate 10 more Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34492},{"id":"coa-tree-6778","classId":"reaper","dbcSpellId":704357,"name":"Ghastly Form","unlockLevel":1,"icon":"/assets/ui/spells/ability_argus_deathfog.png","sigil":"GF","description":"After using Spectre Stride, Scythe Rush, or Veilwalk you now gain a shield that absorbs 114 + 33% AP damage for 6 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704358,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704357,"level":1,"description":"After using Spectre Stride, Scythe Rush, or Veilwalk you now gain a shield that absorbs 114 + 33% AP damage for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":704358,"durationMs":-1}]}],"talentEntryId":6778},{"id":"coa-tree-9321","classId":"reaper","dbcSpellId":806146,"name":"Ghastly Screech","unlockLevel":1,"icon":"/assets/ui/spells/_d3horrify.png","sigil":"GS","description":"Screech with ghastly intent, silencing all nearby enemies for 4 seconds, and dealing 90 + 25% AP Shadowfrost Damage at the end of the duration.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"utility","effectType":68,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"status","status":"interrupt","durationMs":4000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":806147,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806146,"level":1,"description":"Screech with ghastly intent, silencing all nearby enemies for 4 seconds, and dealing 90 + 25% AP Shadowfrost Damage at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":200},"effects":[{"kind":"utility","effectType":68,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"status","status":"interrupt","durationMs":4000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":806147,"durationMs":4000}]}],"talentEntryId":9321},{"id":"coa-30-grim-skin-none-560494","classId":"reaper","dbcSpellId":560494,"name":"Grim Skin","unlockLevel":1,"icon":"/assets/ui/spells/inv_tradeskill_skinning_shaleather.png","sigil":"GS","description":"Grim SkinRank 2Reduces damage taken by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560494,"level":1,"description":"Grim SkinRank 2Reduces damage taken by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4055","classId":"reaper","dbcSpellId":92145,"name":"Harvester","unlockLevel":1,"icon":"/assets/ui/spells/ability_revendreth_deathknight.png","sigil":"HA","description":"Level 10 Passive You now heal yourself equal to 15% of all damage dealt.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92145,"level":1,"description":"Level 10 Passive You now heal yourself equal to 15% of all damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4055},{"id":"coa-tree-34505","classId":"reaper","dbcSpellId":805188,"name":"Harvester's Scythe","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_restlessblades.png","sigil":"HS","description":"Increases the amount leeched by Soul Strike by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805188,"level":1,"description":"Increases the amount leeched by Soul Strike by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34505},{"id":"coa-30-improved-blood-siphon-106-705407","classId":"reaper","dbcSpellId":705407,"name":"Improved Blood Siphon","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_soulleech.png","sigil":"IB","description":"Improved Blood SiphonRank 1Increases the damage of Blood Siphon by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705407,"level":1,"description":"Improved Blood SiphonRank 1Increases the damage of Blood Siphon by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705408,"level":1,"description":"Improved Blood SiphonRank 2Increases the damage of Blood Siphon by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-13500","classId":"reaper","dbcSpellId":561342,"name":"Into The Shadow Realm","unlockLevel":1,"icon":"/assets/ui/spells/5_spirit_border.png","sigil":"IT","description":"Reduces the cooldown of Deathstalker, Soulstone Lure, and Soul Shear by -25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561342,"level":1,"description":"Reduces the cooldown of Deathstalker, Soulstone Lure, and Soul Shear by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":13500},{"id":"coa-tree-9322","classId":"reaper","dbcSpellId":805718,"name":"Jailer's Bargain","unlockLevel":1,"icon":"/assets/ui/spells/nhi_spiritarmor_border.png","sigil":"JS","description":"Beckon the jailer, gaining a shield that absorbs damage equal to 30% of your maximum health for 10 seconds. While this is active you are considered Undead and are immune to fear, sleep, and charm effects.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805718,"level":1,"description":"Beckon the jailer, gaining a shield that absorbs damage equal to 30% of your maximum health for 10 seconds. While this is active you are considered Undead and are immune to fear, sleep, and charm effects.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"shield","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":1,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":77,"miscValue":5,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":9322},{"id":"coa-tree-5600","classId":"reaper","dbcSpellId":800845,"name":"Limbo","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_shadowdance.png","sigil":"LI","description":"Rip out of your mortal shell for 5 seconds, making you immune to all harmful spell effects and instantly restoring 30% of your maximum health and Runic Power. Usable while stunned, feared, or polymorphed.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.6666666666666666,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"utility","effectType":137,"auraType":0,"miscValue":6,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":39,"miscValue":126,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800845,"level":1,"description":"Rip out of your mortal shell for 5 seconds, making you immune to all harmful spell effects and instantly restoring 30% of your maximum health and Runic Power. Usable while stunned, feared, or polymorphed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.6666666666666666,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"utility","effectType":137,"auraType":0,"miscValue":6,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":6,"auraType":39,"miscValue":126,"triggerSpellId":0,"durationMs":5000}]}],"talentEntryId":5600},{"id":"coa-tree-30535","classId":"reaper","dbcSpellId":803030,"name":"Masochistic Rage","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_vendetta.png","sigil":"MR","description":"After a 1 sec delay, you suffer 660 + 36% AP damage, enraging you and increasing your damage dealt by 20% for 15 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":570097,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803030,"level":1,"description":"After a 1 sec delay, you suffer 660 + 36% AP damage, enraging you and increasing your damage dealt by 20% for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":570097,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30535},{"id":"coa-tree-31125","classId":"reaper","dbcSpellId":805203,"name":"Mawborn","unlockLevel":1,"icon":"/assets/ui/spells/warlock_siphonlife.png","sigil":"MA","description":"Reduces the duration of disarm and incapacitate effects against you by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":232,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":30,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805203,"level":1,"description":"Reduces the duration of disarm and incapacitate effects against you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":232,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":232,"miscValue":30,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":31125},{"id":"reaper-murder","classId":"reaper","dbcSpellId":500376,"name":"Murder","unlockLevel":1,"icon":"/assets/ui/spells/_d3companion.png","sigil":"MU","description":"MurderRank 130 Runic Power Instant castSend soulcrows at an enemy, dealing 13+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":0.3020833333333333,"basePoints":13,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500374,"durationMs":0},{"kind":"utility","effectType":32,"auraType":0,"miscValue":524287,"triggerSpellId":560421,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500376,"level":1,"description":"MurderRank 130 Runic Power Instant castSend soulcrows at an enemy, dealing 13+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":0.3020833333333333,"basePoints":13,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500374,"durationMs":0},{"kind":"utility","effectType":32,"auraType":0,"miscValue":524287,"triggerSpellId":560421,"durationMs":0}]},{"rank":2,"spellId":502679,"level":8,"description":"MurderRank 230 Runic Power Instant castSend soulcrows at an enemy, dealing 29+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":0.5739130490068076,"basePoints":29,"dieSides":3,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":18},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500374,"durationMs":0},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":560421,"durationMs":0}]},{"rank":3,"spellId":502680,"level":20,"description":"MurderRank 330 Runic Power Instant castSend soulcrows at an enemy, dealing 61+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":0.8904761859348842,"basePoints":61,"dieSides":10,"pointsPerLevel":1.399999976158142,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500374,"durationMs":0},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":560421,"durationMs":0}]},{"rank":4,"spellId":502681,"level":28,"description":"MurderRank 430 Runic Power Instant castSend soulcrows at an enemy, dealing 94+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":1.1193798346112864,"basePoints":94,"dieSides":15,"pointsPerLevel":1.5499999523162842,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500374,"durationMs":0},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":560421,"durationMs":0}]},{"rank":5,"spellId":502682,"level":36,"description":"MurderRank 530 Runic Power Instant castSend soulcrows at an enemy, dealing 134+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":1.34248365452087,"basePoints":134,"dieSides":25,"pointsPerLevel":1.649999976158142,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500374,"durationMs":0},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":560421,"durationMs":0}]},{"rank":6,"spellId":502683,"level":44,"description":"MurderRank 630 Runic Power Instant castSend soulcrows at an enemy, dealing 206+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":1.7062146892655368,"basePoints":206,"dieSides":39,"pointsPerLevel":1.75,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500374,"durationMs":0},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":560421,"durationMs":0}]},{"rank":7,"spellId":502684,"level":52,"description":"MurderRank 730 Runic Power Instant castSend soulcrows at an enemy, dealing 320+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"damage","coefficient":2.211940286171377,"basePoints":320,"dieSides":63,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500374,"durationMs":0},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":560421,"durationMs":0}]}]},{"id":"coa-tree-30109","classId":"reaper","dbcSpellId":561108,"name":"Mysterious Omen","unlockLevel":1,"icon":"/assets/ui/spells/nhi_frozenghost_border.png","sigil":"MO","description":"Increases the range of Murder and Soul Shock by 5 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561108,"level":1,"description":"Increases the range of Murder and Soul Shock by 5 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30109},{"id":"coa-tree-30534","classId":"reaper","dbcSpellId":680995,"name":"Painbringer","unlockLevel":1,"icon":"/assets/ui/spells/nhi_reaperscythe_border.png","sigil":"PA","description":"Generating Reaped Souls now has a 10% chance to trigger Masochistic Rage for 5 sec. If Masochistic Rage is already active, it will instead extend the duration by 3 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520533,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520877,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680995,"level":1,"description":"Generating Reaped Souls now has a 10% chance to trigger Masochistic Rage for 5 sec. If Masochistic Rage is already active, it will instead extend the duration by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520533,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520877,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30534},{"id":"reaper-scythe-rush","classId":"reaper","dbcSpellId":500359,"name":"Scythe Rush","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_bladedance.png","sigil":"SR","description":"Rush towards an enemy and generate 15 Runic Power. Cannot be used on the same target more than once every 20 seconds.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}],"source":"coa-tree","passive":false,"ranks":[{"rank":1,"spellId":500359,"level":1,"description":"Rush towards an enemy and generate 15 Runic Power. Cannot be used on the same target more than once every 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":96,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":18000}]}]},{"id":"coa-tree-34499","classId":"reaper","dbcSpellId":805184,"name":"Soul Furnace","unlockLevel":1,"icon":"/assets/ui/spells/nhi_spiritamulet_border.png","sigil":"SF","description":"Increases the amount leeched from Soul Harvest by an additional 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":27,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805184,"level":1,"description":"Increases the amount leeched from Soul Harvest by an additional 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":27,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34499},{"id":"coa-tree-34502","classId":"reaper","dbcSpellId":504012,"name":"Soul Harvest","unlockLevel":1,"icon":"/assets/ui/spells/nhi_spiritfire_border.png","sigil":"SH","description":"Generating Reaped Souls now triggers Soul Harvest. Soul Harvest (Damage)Blasts your target for 1 + 5% AP + 10% shadow SP Shadow Damage, healing for 100% of the damage dealt.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":573050,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504012,"level":1,"description":"Generating Reaped Souls now triggers Soul Harvest. Soul Harvest (Damage)Blasts your target for 1 + 5% AP + 10% shadow SP Shadow Damage, healing for 100% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":573050,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34502},{"id":"coa-tree-6722","classId":"reaper","dbcSpellId":804311,"name":"Soul Harvester","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathknight_soulreaper.png","sigil":"SH","description":"Landing the killing blow on a target that yields experience or honor now grants Soul Harvester for 10 seconds.Soul HarvesterAfter killing an enemy you generate 2 Runic Power every 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804312,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804311,"level":1,"description":"Landing the killing blow on a target that yields experience or honor now grants Soul Harvester for 10 seconds.Soul HarvesterAfter killing an enemy you generate 2 Runic Power every 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":804312,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":6722},{"id":"coa-tree-34497","classId":"reaper","dbcSpellId":300553,"name":"Soul Protector","unlockLevel":1,"icon":"/assets/ui/spells/inv_helmet_146.png","sigil":"SP","description":"Increases Armor contribution from items by 25% and increases your magic resistances by 21.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":22,"miscValue":127,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300553,"level":1,"description":"Increases Armor contribution from items by 25% and increases your magic resistances by 21.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":22,"miscValue":127,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34497},{"id":"coa-tree-29564","classId":"reaper","dbcSpellId":807397,"name":"Soul Tap","unlockLevel":1,"icon":"/assets/ui/spells/_d3soulharvest.png","sigil":"ST","description":"Chip away at the very essence of your own soul, generating 50 Runic Power. Usable while stealthed.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":500}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":807397,"level":1,"description":"Chip away at the very essence of your own soul, generating 50 Runic Power. Usable while stealthed.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":500}]}],"talentEntryId":29564},{"id":"coa-tree-34510","classId":"reaper","dbcSpellId":560419,"name":"Soul Warden","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_ghostland_border.png","sigil":"SW","description":"Increases your melee attack power by 1 for every 100 Armor you have.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":285,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560419,"level":1,"description":"Increases your melee attack power by 1 for every 100 Armor you have.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":285,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":561337,"level":1,"description":"Increases your melee attack power by 1 for every 50 Armor you have.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":285,"miscValue":2,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":34510},{"id":"reaper-soulspear","classId":"reaper","dbcSpellId":803984,"name":"Soulspear","unlockLevel":1,"icon":"/assets/ui/spells/ability_bastion_warlock.png","sigil":"SO","description":"SoulspearRank 11.5 sec cast20 sec cooldownDeals 31 to 35 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.6991666667163372,"basePoints":31,"dieSides":5,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":7},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":803984,"level":1,"description":"SoulspearRank 11.5 sec cast20 sec cooldownDeals 31 to 35 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.6991666667163372,"basePoints":31,"dieSides":5,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":7},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503276,"level":8,"description":"SoulspearRank 21.5 sec cast20 sec cooldownDeals 54 to 58 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.8993789009425951,"basePoints":54,"dieSides":5,"pointsPerLevel":0.7571430206298828,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":15}]},{"rank":3,"spellId":503277,"level":16,"description":"SoulspearRank 31.5 sec cast20 sec cooldownDeals 96 to 100 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.326164307132844,"basePoints":96,"dieSides":5,"pointsPerLevel":1.5833300352096558,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22}]},{"rank":4,"spellId":503278,"level":23,"description":"SoulspearRank 41.5 sec cast20 sec cooldownDeals 123 to 127 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.5067244663573147,"basePoints":123,"dieSides":5,"pointsPerLevel":2.033329963684082,"bonusPowerCoefficient":0,"sourceLevel":23,"maxScalingLevel":29}]},{"rank":5,"spellId":503279,"level":30,"description":"SoulspearRank 51.5 sec cast20 sec cooldownDeals 148 to 152 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.6555555661519368,"basePoints":148,"dieSides":5,"pointsPerLevel":2.450000047683716,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36}]},{"rank":7,"spellId":503281,"level":45,"description":"SoulspearRank 71.5 sec cast20 sec cooldownDeals 219 to 224 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.138888082239363,"basePoints":219,"dieSides":6,"pointsPerLevel":3.6333301067352295,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":51}]},{"rank":8,"spellId":503282,"level":52,"description":"SoulspearRank 81.5 sec cast20 sec cooldownDeals 266 to 272 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.480929512289626,"basePoints":266,"dieSides":7,"pointsPerLevel":4.416669845581055,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58}]},{"rank":9,"spellId":503283,"level":59,"description":"SoulspearRank 91.5 sec cast20 sec cooldownDeals 339 to 346 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.039939019057128,"basePoints":339,"dieSides":8,"pointsPerLevel":5.63332986831665,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":65},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":503284,"level":66,"description":"SoulspearRank 101.5 sec cast20 sec cooldownDeals 422 to 430 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.386597244827836,"basePoints":422,"dieSides":9,"pointsPerLevel":6.014289855957031,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":73}]},{"rank":11,"spellId":503285,"level":74,"description":"SoulspearRank 111.5 sec castDeals 1670 to 1679 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1670,"dieSides":10,"pointsPerLevel":27.816699981689453,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80}]}]},{"id":"coa-tree-5495","classId":"reaper","dbcSpellId":572340,"name":"Soulstrider","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_spiritwalkersgrace.png","sigil":"SO","description":"Increases the movement speed granted by Veilwalk by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":572340,"level":1,"description":"Increases the movement speed granted by Veilwalk by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":5495},{"id":"coa-30-soultwister-none-706796","classId":"reaper","dbcSpellId":706796,"name":"Soultwister","unlockLevel":1,"icon":"/assets/ui/spells/sha_inv_elemental_primal_shadow.png","sigil":"SO","description":"SoultwisterRank 2Soul Tap and Soulwarden's Resolve reduce the remaining cooldown of Requiem by 3 sec on use.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706796,"level":1,"description":"SoultwisterRank 2Soul Tap and Soulwarden's Resolve reduce the remaining cooldown of Requiem by 3 sec on use.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30113","classId":"reaper","dbcSpellId":500483,"name":"Tormented Souls","unlockLevel":1,"icon":"/assets/ui/spells/_soulsdevourer_blue.png","sigil":"TS","description":"Create 1 Tormented Soul and generate Runic Power for each Reaped Soul active. Consumes Reaped Souls and Soul Infusion. Tormented SoulsReduces all direct damage you take by -10% and heals you for 35 + 5.8% AP + 24% Stamina, removing 1 stack. Lasts 20 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500481,"durationMs":0},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":500481,"durationMs":0},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":500481,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500483,"level":1,"description":"Create 1 Tormented Soul and generate Runic Power for each Reaped Soul active. Consumes Reaped Souls and Soul Infusion. Tormented SoulsReduces all direct damage you take by -10% and heals you for 35 + 5.8% AP + 24% Stamina, removing 1 stack. Lasts 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":500481,"durationMs":0},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":500481,"durationMs":0},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":500481,"durationMs":0}]}],"talentEntryId":30113},{"id":"coa-tree-4057","classId":"reaper","dbcSpellId":92147,"name":"Tormentor","unlockLevel":1,"icon":"/assets/ui/spells/nhi_ghosthand_border.png","sigil":"TO","description":"Level 10 Passive Consuming Soul Infusion now reduces the cooldown of Tormented Souls by -3 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":359019,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805077,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92147,"level":1,"description":"Level 10 Passive Consuming Soul Infusion now reduces the cooldown of Tormented Souls by -3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":359019,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":805077,"durationMs":-1}]}],"talentEntryId":4057},{"id":"coa-tree-6719","classId":"reaper","dbcSpellId":803990,"name":"Veilwalk","unlockLevel":1,"icon":"/assets/ui/spells/_diablo3_thunderclap_warlock.png","sigil":"VE","description":"2 Charges, 60 sec recharge Move with spectral agility, gaining 50% increased movement speed for 5 seconds, stacking 2 times. Removes all movement impairing effects. Usable while stealthed.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":7,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":11,"triggerSpellId":0,"durationMs":5000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803990,"level":1,"description":"2 Charges, 60 sec recharge Move with spectral agility, gaining 50% increased movement speed for 5 seconds, stacking 2 times. Removes all movement impairing effects. Usable while stealthed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":7,"triggerSpellId":0,"durationMs":5000},{"kind":"utility","effectType":108,"auraType":0,"miscValue":11,"triggerSpellId":0,"durationMs":5000}]}],"talentEntryId":6719},{"id":"coa-tree-4056","classId":"reaper","dbcSpellId":92146,"name":"Weakened Souls","unlockLevel":1,"icon":"/assets/ui/spells/nhi_souldarkening_border.png","sigil":"WS","description":"Level 10 Passive Your Soulrend now also applies Weakened Soul, increasing the target's Shadow and Frost damage taken from you by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807085,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92146,"level":1,"description":"Level 10 Passive Your Soulrend now also applies Weakened Soul, increasing the target's Shadow and Frost damage taken from you by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807085,"durationMs":-1}]}],"talentEntryId":4056},{"id":"coa-30-wicked-shadows-107-705390","classId":"reaper","dbcSpellId":705390,"name":"Wicked Shadows","unlockLevel":1,"icon":"/assets/ui/spells/inv_helm_cloth_raidwarlockmythic_q_01.png","sigil":"WS","description":"Wicked ShadowsRank 1Increases the damage of Soul Harvest by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705390,"level":1,"description":"Wicked ShadowsRank 1Increases the damage of Soul Harvest by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705391,"level":1,"description":"Wicked ShadowsRank 2Increases the damage of Soul Harvest by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34495","classId":"reaper","dbcSpellId":573071,"name":"Withering Touch","unlockLevel":1,"icon":"/assets/ui/spells/_d3spiritbarrage.png","sigil":"WT","description":"Your touch rots armor and resolve, reducing the target’s armor by -20% and increasing their Magic damage taken by 10% for 1 minute, and generates Runic Power.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":573071,"level":1,"description":"Your touch rots armor and resolve, reducing the target’s armor by -20% and increasing their Magic damage taken by 10% for 1 minute, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":101,"miscValue":1,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]}],"talentEntryId":34495},{"id":"coa-tree-30107","classId":"reaper","dbcSpellId":805258,"name":"Wraithblade","unlockLevel":1,"icon":"/assets/ui/spells/inv_archaeology_orcclans_tattooknife.png","sigil":"WR","description":"Generates 3 Reaped Souls Strike for 150% Weapon Damage plus 36 + 62.5% SP + 18% AP Shadow damage, ignoring resistances, absorption, and invulnerability effects.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.6733333365122477,"basePoints":36,"dieSides":3,"pointsPerLevel":1.350000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805258,"level":1,"description":"Generates 3 Reaped Souls Strike for 150% Weapon Damage plus 36 + 62.5% SP + 18% AP Shadow damage, ignoring resistances, absorption, and invulnerability effects.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":400},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.6733333365122477,"basePoints":36,"dieSides":3,"pointsPerLevel":1.350000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30107},{"id":"reaper-rite-of-resolve","classId":"reaper","dbcSpellId":800198,"name":"Rite of Resolve","unlockLevel":4,"icon":"/assets/ui/spells/ui_sigil_venthyr.png","sigil":"RO","description":"Rite of ResolveRank 1Instant castPerform a resolving rite upon an ally, increasing their Stamina by 4 for 30 min.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":2,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800198,"level":4,"description":"Rite of ResolveRank 1Instant castPerform a resolving rite upon an ally, increasing their Stamina by 4 for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":29,"miscValue":2,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-30-reap-483-504056","classId":"reaper","dbcSpellId":504056,"name":"Reap","unlockLevel":6,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"ReapRank 2InstantRequires Melee Weapon Generates 1 Soul Fragment Strike an enemy for 80% Weapon Damage plus 5, and generates Runic Power.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":504056,"level":6,"description":"ReapRank 2InstantRequires Melee Weapon Generates 1 Soul Fragment Strike an enemy for 80% Weapon Damage plus 5, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":504057,"level":16,"description":"ReapRank 3InstantRequires Melee Weapon Generates 1 Soul Fragment Strike an enemy for 80% Weapon Damage plus 10, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":801327,"durationMs":0}]},{"rank":4,"spellId":504058,"level":24,"description":"ReapRank 4InstantRequires Melee Weapon Generates 1 Soul Fragment Strike an enemy for 80% Weapon Damage plus 17, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-30-deathchaser-107-805190","classId":"reaper","dbcSpellId":805190,"name":"Deathchaser","unlockLevel":11,"icon":"/assets/ui/spells/nhi_spiritstab_border.png","sigil":"DE","description":"DeathchaserRank 1InstantRequires Melee Weapon Force death upon an enemy, dealing 13+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.1794871794871795,"basePoints":13,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16,"ticks":4,"intervalMs":250,"tag":"spell-805190"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805190,"level":11,"description":"DeathchaserRank 1InstantRequires Melee Weapon Force death upon an enemy, dealing 13+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.1794871794871795,"basePoints":13,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16,"ticks":4,"intervalMs":250,"tag":"spell-805190"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":2,"spellId":560428,"level":18,"description":"DeathchaserRank 2InstantRequires Melee Weapon Force death upon an enemy, dealing 26+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.2828282828282828,"basePoints":26,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":23,"ticks":4,"intervalMs":250,"tag":"spell-560428"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":3,"spellId":560429,"level":25,"description":"DeathchaserRank 3InstantRequires Melee Weapon Force death upon an enemy, dealing 42+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.375,"basePoints":42,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":30,"ticks":4,"intervalMs":250,"tag":"spell-560429"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":4,"spellId":561032,"level":32,"description":"DeathchaserRank 4InstantRequires Melee Weapon Force death upon an enemy, dealing 60+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.4574468085106383,"basePoints":60,"dieSides":10,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37,"ticks":4,"intervalMs":250,"tag":"spell-561032"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":5,"spellId":561033,"level":39,"description":"DeathchaserRank 5InstantRequires Melee Weapon Force death upon an enemy, dealing 80+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.5370370370370371,"basePoints":80,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":44,"ticks":4,"intervalMs":250,"tag":"spell-561033"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":6,"spellId":561034,"level":46,"description":"DeathchaserRank 6InstantRequires Melee Weapon Force death upon an enemy, dealing 102+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.6147540983606558,"basePoints":102,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":51,"ticks":4,"intervalMs":250,"tag":"spell-561034"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":7,"spellId":573052,"level":53,"description":"DeathchaserRank 7InstantRequires Melee Weapon Force death upon an enemy, dealing 132+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.6985294117647058,"basePoints":132,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":53,"maxScalingLevel":58,"ticks":4,"intervalMs":250,"tag":"spell-573052"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]},{"rank":8,"spellId":573053,"level":60,"description":"DeathchaserRank 8InstantRequires Melee Weapon Force death upon an enemy, dealing 176+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dot","coefficient":0.8288888888888889,"basePoints":176,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":67,"ticks":4,"intervalMs":250,"tag":"spell-573053"},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":359009,"durationMs":1000},{"kind":"utility","effectType":6,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":1000}]}]},{"id":"coa-30-doomrend-106-800172","classId":"reaper","dbcSpellId":800172,"name":"Doomrend","unlockLevel":11,"icon":"/assets/ui/spells/inv_knife_1h_revendrethquest_b_03.png","sigil":"DO","description":"DoomrendRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 17+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 75+Str*1 healing done to them for 5 sec, and generates Runic Power.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.23076923076923078,"basePoints":17,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":560361,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800172,"level":11,"description":"DoomrendRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 17+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 75+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.23076923076923078,"basePoints":17,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":560361,"durationMs":0}]},{"rank":2,"spellId":502668,"level":20,"description":"DoomrendRank 2InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 34+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 100+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.34285714285714286,"basePoints":34,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":560361,"durationMs":0}]},{"rank":3,"spellId":502669,"level":28,"description":"DoomrendRank 3InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 77+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 135+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.624031007751938,"basePoints":77,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":560361,"durationMs":0}]},{"rank":4,"spellId":502670,"level":34,"description":"DoomrendRank 4InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 121+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 185+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.8571428571428571,"basePoints":121,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":560361,"durationMs":0}]},{"rank":5,"spellId":502671,"level":40,"description":"DoomrendRank 5InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 159+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 245+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.006060606060606,"basePoints":159,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":560361,"durationMs":0}]},{"rank":6,"spellId":567531,"level":48,"description":"DoomrendRank 6InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 287+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 330+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.5873015873015872,"basePoints":287,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":560361,"durationMs":0}]},{"rank":7,"spellId":567532,"level":54,"description":"DoomrendRank 7InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 408+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 430+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.0603864734299515,"basePoints":408,"dieSides":38,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":142,"auraType":0,"miscValue":0,"triggerSpellId":560361,"durationMs":0}]}]},{"id":"coa-30-dreadwake-108-803992","classId":"reaper","dbcSpellId":803992,"name":"Dreadwake","unlockLevel":11,"icon":"/assets/ui/spells/ability_argus_edgeofobliteration.png","sigil":"DR","description":"DreadwakeRank 130 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 5 Frost damage.","target":"self","range":{"min":0,"max":0},"radius":12,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803992,"level":11,"description":"DreadwakeRank 130 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 5 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503286,"level":18,"description":"DreadwakeRank 230 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 10 to 12 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503287,"level":26,"description":"DreadwakeRank 330 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 18 to 22 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503288,"level":34,"description":"DreadwakeRank 430 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 35 to 40 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503289,"level":42,"description":"DreadwakeRank 530 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 65 to 72 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503324,"level":50,"description":"DreadwakeRank 630 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 97 to 108 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503531,"level":58,"description":"DreadwakeRank 730 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 135 to 149 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-30-hungering-scythe-108-502708","classId":"reaper","dbcSpellId":502708,"name":"Hungering Scythe","unlockLevel":11,"icon":"/assets/ui/spells/inv_artifact_thalkielsdiscord.png","sigil":"HS","description":"Hungering ScytheRank 220% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":128,"triggerSpellId":801097,"durationMs":10000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502708,"level":11,"description":"Hungering ScytheRank 220% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":128,"triggerSpellId":801097,"durationMs":10000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":502709,"level":21,"description":"Hungering ScytheRank 320% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":128,"triggerSpellId":801097,"durationMs":10000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":502710,"level":31,"description":"Hungering ScytheRank 420% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":128,"triggerSpellId":801097,"durationMs":10000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":502711,"level":41,"description":"Hungering ScytheRank 520% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":128,"triggerSpellId":801097,"durationMs":10000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":502712,"level":51,"description":"Hungering ScytheRank 620% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":128,"triggerSpellId":801097,"durationMs":10000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":502713,"level":61,"description":"Hungering ScytheRank 720% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":128,"triggerSpellId":801097,"durationMs":10000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":8,"spellId":502714,"level":71,"description":"Hungering ScytheRank 820% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":227,"miscValue":128,"triggerSpellId":801097,"durationMs":10000},{"kind":"utility","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-30-red-wake-106-801041","classId":"reaper","dbcSpellId":801041,"name":"Red Wake","unlockLevel":13,"icon":"/assets/ui/spells/ability_revendreth_shaman.png","sigil":"RW","description":"Red WakeRank 1InstantDraw blood from up to 8 enemies within 20 yds, dealing 50+0+AP*0.18 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","target":"hostile","range":{"min":0,"max":20},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7803571465469542,"basePoints":50,"dieSides":10,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801041,"level":13,"description":"Red WakeRank 1InstantDraw blood from up to 8 enemies within 20 yds, dealing 50+0+AP*0.18 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7803571465469542,"basePoints":50,"dieSides":10,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502672,"level":20,"description":"Red WakeRank 2InstantDraw blood from up to 8 enemies within 20 yds, dealing 89+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.1798095339820498,"basePoints":89,"dieSides":15,"pointsPerLevel":1.3940000534057617,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":25},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502673,"level":27,"description":"Red WakeRank 3InstantDraw blood from up to 8 enemies within 20 yds, dealing 132+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.545380955650693,"basePoints":132,"dieSides":22,"pointsPerLevel":1.934000015258789,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502674,"level":34,"description":"Red WakeRank 4InstantDraw blood from up to 8 enemies within 20 yds, dealing 170+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.8205170015088554,"basePoints":170,"dieSides":28,"pointsPerLevel":2.4739999771118164,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502675,"level":41,"description":"Red WakeRank 5InstantDraw blood from up to 8 enemies within 20 yds, dealing 221+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.1581785565330867,"basePoints":221,"dieSides":37,"pointsPerLevel":3.0139999389648438,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502676,"level":48,"description":"Red WakeRank 6InstantDraw blood from up to 8 enemies within 20 yds, dealing 287+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.481968228779142,"basePoints":287,"dieSides":24,"pointsPerLevel":3.553999900817871,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502677,"level":55,"description":"Red WakeRank 7InstantDraw blood from up to 8 enemies within 20 yds, dealing 335+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.731761868794759,"basePoints":335,"dieSides":28,"pointsPerLevel":4.093999862670898,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":60},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502678,"level":62,"description":"Red WakeRank 8InstantDraw blood from up to 8 enemies within 20 yds, dealing 482+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.501333286235859,"basePoints":482,"dieSides":80,"pointsPerLevel":4.633999824523926,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":69},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-30-bane-107-503295","classId":"reaper","dbcSpellId":503295,"name":"Bane","unlockLevel":14,"icon":"/assets/ui/spells/spell_warlock_demonicportal_purple.png","sigil":"BA","description":"BaneRank 2Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 54 to 65 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.1846896533308358,"basePoints":54,"dieSides":12,"pointsPerLevel":3.111999988555908,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27},{"kind":"utility","effectType":6,"auraType":330,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503295,"level":14,"description":"BaneRank 2Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 54 to 65 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.1846896533308358,"basePoints":54,"dieSides":12,"pointsPerLevel":3.111999988555908,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27},{"kind":"utility","effectType":6,"auraType":330,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":3,"spellId":503296,"level":28,"description":"BaneRank 3Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 122 to 146 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.0424186203830925,"basePoints":122,"dieSides":25,"pointsPerLevel":4.624000072479248,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":40},{"kind":"utility","effectType":6,"auraType":330,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":4,"spellId":503297,"level":41,"description":"BaneRank 4Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 222 to 264 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.91754758925665,"basePoints":222,"dieSides":43,"pointsPerLevel":6.0279998779296875,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":53},{"kind":"utility","effectType":6,"auraType":330,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":5,"spellId":503298,"level":54,"description":"BaneRank 5Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 411 to 476 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":411,"dieSides":66,"pointsPerLevel":7.432000160217285,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":67},{"kind":"utility","effectType":6,"auraType":330,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]},{"rank":6,"spellId":503299,"level":68,"description":"BaneRank 6Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 749 to 845 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":749,"dieSides":97,"pointsPerLevel":8.944000244140625,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"utility","effectType":6,"auraType":330,"miscValue":127,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-30-deathwind-108-800174","classId":"reaper","dbcSpellId":800174,"name":"Deathwind","unlockLevel":16,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DE","description":"DeathwindRank 130 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 11+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","target":"friendly","range":{"min":0,"max":20},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":524287,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800174,"level":16,"description":"DeathwindRank 130 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 11+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":524287,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":2,"spellId":502989,"level":24,"description":"DeathwindRank 230 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 18+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":502990,"level":31,"description":"DeathwindRank 330 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 25+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":502991,"level":38,"description":"DeathwindRank 430 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 39+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":502992,"level":45,"description":"DeathwindRank 530 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 50+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":502993,"level":52,"description":"DeathwindRank 630 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 63+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":502994,"level":59,"description":"DeathwindRank 730 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 75+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":8,"spellId":502995,"level":66,"description":"DeathwindRank 8Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 89+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":9,"spellId":502996,"level":69,"description":"DeathwindRank 930 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 94+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":10,"spellId":502997,"level":72,"description":"DeathwindRank 1030 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 103+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":11,"spellId":502998,"level":75,"description":"DeathwindRank 1130 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 113+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":12,"spellId":502999,"level":78,"description":"DeathwindRank 1230 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 133+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]},{"rank":13,"spellId":503000,"level":81,"description":"DeathwindRank 1330 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 153+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":300},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":27,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":582526,"durationMs":10000},{"kind":"utility","effectType":27,"auraType":271,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-30-crimson-harvest-106-502666","classId":"reaper","dbcSpellId":502666,"name":"Crimson Harvest","unlockLevel":28,"icon":"/assets/ui/spells/ability_revendreth_priest.png","sigil":"CH","description":"Crimson HarvestRank 2Instant cast30 sec cooldownTransfers 36 health every 1.5 sec from the target to the caster for 15 sec. Soul Infusion: Has a % increased tick rate.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"channel","castTimeMs":15000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":3,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":3,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502666,"level":28,"description":"Crimson HarvestRank 2Instant cast30 sec cooldownTransfers 36 health every 1.5 sec from the target to the caster for 15 sec. Soul Infusion: Has a % increased tick rate.","castMode":"channel","castTimeMs":15000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":3,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":3,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":502667,"level":54,"description":"Crimson HarvestRank 3Instant cast30 sec cooldownTransfers 100 health every 1.5 sec from the target to the caster for 15 sec. Soul Infusion: Has a % increased tick rate.","castMode":"channel","castTimeMs":15000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":3,"auraType":53,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":3,"auraType":118,"miscValue":127,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}]}],"primalist":[{"id":"coa-tree-29362","classId":"primalist","dbcSpellId":800094,"name":"Bearskin","unlockLevel":1,"icon":"/assets/ui/spells/spell_druid_primaltenacity.png","sigil":"BE","description":"Reduces all damage taken by -60% and reduces the duration of root, stun, and incapacitate effects on you by -30% for 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":232,"miscValue":5,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":232,"miscValue":12,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800094,"level":1,"description":"Reduces all damage taken by -60% and reduces the duration of root, stun, and incapacitate effects on you by -30% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":232,"miscValue":5,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":232,"miscValue":12,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":29362},{"id":"coa-tree-29252","classId":"primalist","dbcSpellId":500692,"name":"Boulder Dash","unlockLevel":1,"icon":"/assets/ui/spells/custom_elementl(earth)_b_01_border.png","sigil":"BD","description":"Raise a boulder out of the ground and encase yourself within it, preventing you from attacking or casting spells. For 10 seconds, you roll forward at 70% increased movement speed, dealing 1 + 50% AP + 100% SP Physical damage to enemies you roll over, and you are immune to crowd control effects.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":500693,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500692,"level":1,"description":"Raise a boulder out of the ground and encase yourself within it, preventing you from attacking or casting spells. For 10 seconds, you roll forward at 70% increased movement speed, dealing 1 + 50% AP + 100% SP Physical damage to enemies you roll over, and you are immune to crowd control effects.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":500693,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"utility","effectType":6,"auraType":241,"miscValue":0,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":29252},{"id":"coa-31-bountiful-boons-114-706203","classId":"primalist","dbcSpellId":706203,"name":"Bountiful Boons","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_giftofthewild.png","sigil":"BB","description":"Bountiful BoonsRank 1Increases the effectiveness of Boons and Instincts by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706203,"level":1,"description":"Bountiful BoonsRank 1Increases the effectiveness of Boons and Instincts by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706204,"level":1,"description":"Bountiful BoonsRank 2Increases the effectiveness of Boons and Instincts by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29299","classId":"primalist","dbcSpellId":806415,"name":"Bramblepatch","unlockLevel":1,"icon":"/assets/ui/spells/inv_eng_bombroot.png","sigil":"BR","description":"Grow a patch of brambles at your location for 12 seconds. Allies in the area are immune to grip and knockback effects. Enemies in the area are unable to leap, dash, or charge.","target":"hostile","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":18},"effects":[{"kind":"utility","effectType":183,"auraType":0,"miscValue":5242870,"triggerSpellId":807859,"durationMs":12000},{"kind":"utility","effectType":27,"auraType":77,"miscValue":6,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":807120,"durationMs":12000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806415,"level":1,"description":"Grow a patch of brambles at your location for 12 seconds. Allies in the area are immune to grip and knockback effects. Enemies in the area are unable to leap, dash, or charge.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":18},"effects":[{"kind":"utility","effectType":183,"auraType":0,"miscValue":5242870,"triggerSpellId":807859,"durationMs":12000},{"kind":"utility","effectType":27,"auraType":77,"miscValue":6,"triggerSpellId":0,"durationMs":12000},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":807120,"durationMs":12000}]}],"talentEntryId":29299},{"id":"coa-31-cascading-restoration-114-706169","classId":"primalist","dbcSpellId":706169,"name":"Cascading Restoration","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_flourish.png","sigil":"CR","description":"Cascading RestorationRank 1Reduces the cost of Primal Wave by 5 and increases the radius by 2 yds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706169,"level":1,"description":"Cascading RestorationRank 1Reduces the cost of Primal Wave by 5 and increases the radius by 2 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706170,"level":1,"description":"Cascading RestorationRank 2Reduces the cost of Primal Wave by 10 and increases the radius by 4 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":14,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":6,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30591","classId":"primalist","dbcSpellId":504446,"name":"Earthmother's Pendant","unlockLevel":1,"icon":"/assets/ui/spells/_hearthstone_necklace_warrior.png","sigil":"ES","description":"With every strike, the Earthmother’s pendant restores what was lost, healing you equal to 10% of your damage dealt. Can only occur once every 0.5 sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":524972,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504446,"level":1,"description":"With every strike, the Earthmother’s pendant restores what was lost, healing you equal to 10% of your damage dealt. Can only occur once every 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":524972,"durationMs":-1}]}],"talentEntryId":30591},{"id":"coa-tree-29233","classId":"primalist","dbcSpellId":555723,"name":"Earthmother's Precision","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_naturetouchdecay.png","sigil":"ES","description":"Seismic Crash now increases the chance for allies to hit with all spells against the enemy by 3% for 15 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":555724,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":555723,"level":1,"description":"Seismic Crash now increases the chance for allies to hit with all spells against the enemy by 3% for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":555724,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29233},{"id":"coa-tree-4059","classId":"primalist","dbcSpellId":92149,"name":"Earthshaping","unlockLevel":1,"icon":"/assets/ui/spells/inv_custom_hearthstone_fire.png","sigil":"EA","description":"Level 10 Passive Casting Geode Barrage and your Seismic abilities now generate Earthshaping.EarthshapingEmpowers some of your abilities and increases your spell haste by 1% for 20 seconds, stacking 15 times. Additional applications do not refresh duration.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":681072,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":5,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92149,"level":1,"description":"Level 10 Passive Casting Geode Barrage and your Seismic abilities now generate Earthshaping.EarthshapingEmpowers some of your abilities and increases your spell haste by 1% for 20 seconds, stacking 15 times. Additional applications do not refresh duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":681072,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":5,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4059},{"id":"coa-tree-12208","classId":"primalist","dbcSpellId":300729,"name":"Environmentalist","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureclover_border.png","sigil":"EN","description":"Reduces the cost of your spells and abilities by -5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300729,"level":1,"description":"Reduces the cost of your spells and abilities by -5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":72,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12208},{"id":"coa-tree-29231","classId":"primalist","dbcSpellId":681281,"name":"Fae Presence","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_faerie_dragon.png","sigil":"FP","description":"Removes the reagent cost from Fae Dust and causes it to increase the target's stealth detection.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":256,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681281,"level":1,"description":"Removes the reagent cost from Fae Dust and causes it to increase the target's stealth detection.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":256,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29231},{"id":"coa-tree-30633","classId":"primalist","dbcSpellId":800145,"name":"Grip","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_stoneclawtotem.png","sigil":"GR","description":"Summon a stone hand to grip the target, incapacitating them for 40 seconds (8 sec vs. players). Damage dealt will break the effect.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"status","status":"stun","durationMs":40000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804315,"durationMs":40000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":10,"triggerSpellId":0,"durationMs":40000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800145,"level":1,"description":"Summon a stone hand to grip the target, incapacitating them for 40 seconds (8 sec vs. players). Damage dealt will break the effect.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":8},"effects":[{"kind":"status","status":"stun","durationMs":40000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":804315,"durationMs":40000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":10,"triggerSpellId":0,"durationMs":40000}]}],"talentEntryId":30633},{"id":"coa-tree-7108","classId":"primalist","dbcSpellId":503721,"name":"Grove Guardian","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_naturesguardian_border.png","sigil":"GG","description":"Mark a location as your Grove for 20 seconds. Allies within gain 30% movement speed and are healed for 404 + 25% AP every 5 sec, removing 1 poison and disease effect. Enemies within are slowed by -30% and take 504 + 45% AP Nature damage every 5 sec and are rooted for 2 seconds.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":504824,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":505208,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":503721,"level":1,"description":"Mark a location as your Grove for 20 seconds. Allies within gain 30% movement speed and are healed for 404 + 25% AP every 5 sec, removing 1 poison and disease effect. Enemies within are slowed by -30% and take 504 + 45% AP Nature damage every 5 sec and are rooted for 2 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":504824,"durationMs":15000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":505208,"durationMs":15000}]}],"talentEntryId":7108},{"id":"coa-tree-4060","classId":"primalist","dbcSpellId":92150,"name":"Grove Training","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_keeper_of_the_grove.png","sigil":"GT","description":"Level 10 Passive All melee damage, or healing done, now has a 10% chance to grant you Aftershock for 15 seconds.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":301086,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92150,"level":1,"description":"Level 10 Passive All melee damage, or healing done, now has a 10% chance to grant you Aftershock for 15 seconds.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":301086,"durationMs":-1}]}],"talentEntryId":4060},{"id":"coa-tree-6445","classId":"primalist","dbcSpellId":706344,"name":"Heavy Handed","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_misc_06.png","sigil":"HH","description":"Hand of the Earthmother now increases the Armor of yourself and your target by 10% for 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706345,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706344,"level":1,"description":"Hand of the Earthmother now increases the Armor of yourself and your target by 10% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":706345,"durationMs":-1}]}],"talentEntryId":6445},{"id":"coa-31-improved-boons-114-706146","classId":"primalist","dbcSpellId":706146,"name":"Improved Boons","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","sigil":"IB","description":"Improved BoonsRank 2Increases the effectiveness of Boons by 40%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706146,"level":1,"description":"Improved BoonsRank 2Increases the effectiveness of Boons by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-7326","classId":"primalist","dbcSpellId":806533,"name":"Keen Senses","unlockLevel":1,"icon":"/assets/ui/spells/5_assassinskill31_border.png","sigil":"KS","description":"Increases your critical strike chance and haste by 3%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806533,"level":1,"description":"Increases your critical strike chance and haste by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":290,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":216,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7326},{"id":"coa-31-lavabender-112-706206","classId":"primalist","dbcSpellId":706206,"name":"Lavabender","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_firelands.png","sigil":"LA","description":"LavabenderRank 1Increases Fire Damage dealt by 3% and reduces the cost of Nature spells by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":72,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706206,"level":1,"description":"LavabenderRank 1Increases Fire Damage dealt by 3% and reduces the cost of Nature spells by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":72,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706207,"level":1,"description":"LavabenderRank 2Increases Fire Damage dealt by 6% and reduces the cost of Nature spells by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":72,"miscValue":8,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4064","classId":"primalist","dbcSpellId":680395,"name":"Mountain Giant","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_devotion.png","sigil":"MG","description":"Level 10 Passive Auto attacks now have a 20% chance to grant you Aftershock.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":301086,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680395,"level":1,"description":"Level 10 Passive Auto attacks now have a 20% chance to grant you Aftershock.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":301086,"durationMs":-1}]}],"talentEntryId":4064},{"id":"coa-tree-7339","classId":"primalist","dbcSpellId":706167,"name":"Natural Efficiency","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_protectionformnature.png","sigil":"NE","description":"Whenever you are struck by a root, stun, or incapacitate effect you are now instantly healed for 4% of your maximum health.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":707806,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706167,"level":1,"description":"Whenever you are struck by a root, stun, or incapacitate effect you are now instantly healed for 4% of your maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":707806,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7339},{"id":"coa-31-power-of-ursol-110-706361","classId":"primalist","dbcSpellId":706361,"name":"Power of Ursol","unlockLevel":1,"icon":"/assets/ui/spells/custom_bear_paw_border.png","sigil":"PO","description":"Power of UrsolRank 1Reduces the cooldown of Bear's Maw by 2 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706361,"level":1,"description":"Power of UrsolRank 1Reduces the cooldown of Bear's Maw by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":706362,"level":1,"description":"Power of UrsolRank 2Reduces the cooldown of Bear's Maw by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-31-primal-defusion-114-706144","classId":"primalist","dbcSpellId":706144,"name":"Primal Defusion","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_abolishmagic.png","sigil":"PD","description":"Primal DefusionRank 2Reduces mana cost of Primal Infusion and increases healing by 20%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706144,"level":1,"description":"Primal DefusionRank 2Reduces mana cost of Primal Infusion and increases healing by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":22,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30689","classId":"primalist","dbcSpellId":504193,"name":"Primal Fury","unlockLevel":1,"icon":"/assets/ui/spells/nhi_earthtranquility_border.png","sigil":"PF","description":"You now passively generate 4 Rage every 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":24,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504193,"level":1,"description":"You now passively generate 4 Rage every 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":24,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30689},{"id":"coa-tree-12567","classId":"primalist","dbcSpellId":706171,"name":"Primal Strikes","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_unleashweapon_life.png","sigil":"PS","description":"Critical strikes with abilities that deal Physical damage now generate 3 Rage.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560970,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706171,"level":1,"description":"Critical strikes with abilities that deal Physical damage now generate 3 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560970,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12567},{"id":"coa-tree-6269","classId":"primalist","dbcSpellId":504229,"name":"Primal Totem","unlockLevel":1,"icon":"/assets/ui/spells/inv_relics_totemofrebirth.png","sigil":"PT","description":"Summon a Primal Totem that increases the primary stats of party and raid members by 20% within 40 yds for 15 seconds.","target":"hostile","range":{"min":0,"max":20},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":224861,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504229,"level":1,"description":"Summon a Primal Totem that increases the primary stats of party and raid members by 20% within 40 yds for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":224861,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":6269},{"id":"primalist-protective-roar","classId":"primalist","dbcSpellId":800142,"name":"Protective Roar","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_kingofthejungle.png","sigil":"PR","description":"Protective RoarRank 14% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 13 health.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":0.5,"basePoints":13,"dieSides":5,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0.5,"sourceLevel":1,"maxScalingLevel":10},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}],"source":"coa-progression","passive":true,"ranks":[{"rank":1,"spellId":800142,"level":1,"description":"Protective RoarRank 14% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 13 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":0.5,"basePoints":13,"dieSides":5,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0.5,"sourceLevel":1,"maxScalingLevel":10},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}]},{"rank":2,"spellId":502741,"level":11,"description":"Protective RoarRank 24% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 29 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":0.8226666817298303,"basePoints":29,"dieSides":10,"pointsPerLevel":2.7880001068115234,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":20},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}]},{"rank":3,"spellId":502742,"level":21,"description":"Protective RoarRank 34% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 60 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":1.3863703763043438,"basePoints":60,"dieSides":18,"pointsPerLevel":3.868000030517578,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":30},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}]},{"rank":4,"spellId":502743,"level":31,"description":"Protective RoarRank 44% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 112 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":2.0281739027603813,"basePoints":112,"dieSides":30,"pointsPerLevel":4.947999954223633,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":40},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}]},{"rank":5,"spellId":502744,"level":41,"description":"Protective RoarRank 54% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 194 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":2.756833303542364,"basePoints":194,"dieSides":45,"pointsPerLevel":6.0279998779296875,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":50},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}]},{"rank":6,"spellId":502745,"level":51,"description":"Protective RoarRank 64% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 419 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":4,"basePoints":419,"dieSides":63,"pointsPerLevel":7.107999801635742,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}]},{"rank":7,"spellId":502746,"level":61,"description":"Protective RoarRank 74% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 506 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":4,"basePoints":506,"dieSides":85,"pointsPerLevel":8.187999725341797,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}]},{"rank":8,"spellId":502747,"level":71,"description":"Protective RoarRank 84% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 781 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"rage","amount":4},"effects":[{"kind":"heal","coefficient":4,"basePoints":781,"dieSides":110,"pointsPerLevel":9.267999649047852,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"utility","effectType":3,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":200}]}]},{"id":"coa-tree-6665","classId":"primalist","dbcSpellId":561191,"name":"Rage Rolling","unlockLevel":1,"icon":"/assets/ui/spells/inv_ore_blackrock_ore.png","sigil":"RR","description":"Casting Boulder Dash now instantly generates 50 Rage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":521230,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561191,"level":1,"description":"Casting Boulder Dash now instantly generates 50 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":521230,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6665},{"id":"coa-tree-6289","classId":"primalist","dbcSpellId":680446,"name":"Rolling Momentum","unlockLevel":1,"icon":"/assets/ui/spells/5_assassinskill26_border.png","sigil":"RM","description":"Increases the movement speed granted by Boulder Dash by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680446,"level":1,"description":"Increases the movement speed granted by Boulder Dash by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6289},{"id":"coa-31-rumbler-none-560144","classId":"primalist","dbcSpellId":560144,"name":"Rumbler","unlockLevel":1,"icon":"/assets/ui/spells/inv_elementalearth2.png","sigil":"RU","description":"RumblerRank 2Gives Nature damage dealt a 12% chance to grant Groundshaker. Rumbler","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":1,"triggerSpellId":804355,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560144,"level":1,"description":"RumblerRank 2Gives Nature damage dealt a 12% chance to grant Groundshaker. Rumbler","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":1,"triggerSpellId":804355,"durationMs":-1}]}]},{"id":"coa-tree-4058","classId":"primalist","dbcSpellId":92148,"name":"Spirit Beast Master","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_ripandtear.png","sigil":"SB","description":"Level 10 Passive You may now tame beasts in Azeroth to aid you as a companion.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":119,"auraType":42,"miscValue":0,"triggerSpellId":806589,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92148,"level":1,"description":"Level 10 Passive You may now tame beasts in Azeroth to aid you as a companion.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":119,"auraType":42,"miscValue":0,"triggerSpellId":806589,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":190,"auraType":133,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4058},{"id":"coa-31-stone-cold-none-560159","classId":"primalist","dbcSpellId":560159,"name":"Stone Cold","unlockLevel":1,"icon":"/assets/ui/spells/inv_custom_hearthstone_nature.png","sigil":"SC","description":"Stone ColdRank 2Increases your maximum health by 8%.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":2,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560159,"level":1,"description":"Stone ColdRank 2Increases your maximum health by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":133,"miscValue":2,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-6305","classId":"primalist","dbcSpellId":706201,"name":"Stonefaced","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_stonetablet_05.png","sigil":"ST","description":"Casting Seismic abilities now also grants 2 stacks of Earth's Rage.Earth's RageIncreases movement speed by 4% and haste by 2% for 8 seconds, stacking 5 times.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":573215,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706201,"level":1,"description":"Casting Seismic abilities now also grants 2 stacks of Earth's Rage.Earth's RageIncreases movement speed by 4% and haste by 2% for 8 seconds, stacking 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":573215,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6305},{"id":"coa-tree-6262","classId":"primalist","dbcSpellId":504219,"name":"Therazane's Gift","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_giftearthmother.png","sigil":"TS","description":"Therazane's Rage now generates an additional 5 Rage and 5% additional mana.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504219,"level":1,"description":"Therazane's Rage now generates an additional 5 Rage and 5% additional mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6262},{"id":"coa-31-tides-favor-none-500734","classId":"primalist","dbcSpellId":500734,"name":"Tide's Favor","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_throne_of_the_tides.png","sigil":"TS","description":"Tide's FavorRank 2Reduces the Rage cost of Hammer of Life by 0.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":500734,"level":1,"description":"Tide's FavorRank 2Reduces the Rage cost of Hammer of Life by 0.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-30105","classId":"primalist","dbcSpellId":803980,"name":"Wildheart","unlockLevel":1,"icon":"/assets/ui/spells/spell_druid_ironbark.png","sigil":"WI","description":"The Earthmother marks you as her chosen one, reducing the cooldown of all other non-damaging spells and abilities by 5%, repeating every 2 sec for 15 seconds. Instantly restores 5% missing health, mana, and Rage to you, repeating every 3 sec.","target":"friendly","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807249,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":810040,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":239,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803980,"level":1,"description":"The Earthmother marks you as her chosen one, reducing the cooldown of all other non-damaging spells and abilities by 5%, repeating every 2 sec for 15 seconds. Instantly restores 5% missing health, mana, and Rage to you, repeating every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807249,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":810040,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":239,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":30105},{"id":"primalist-primal-strike","classId":"primalist","dbcSpellId":805950,"name":"Primal Strike","unlockLevel":2,"icon":"/assets/ui/spells/ability_druid_catformattack.png","sigil":"PS","description":"Strike with the fury of a primal beast.","target":"hostile","range":{"min":0,"max":3},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.3}],"source":"coa-starter"},{"id":"coa-31-seismic-crash-112-803981","classId":"primalist","dbcSpellId":803981,"name":"Seismic Crash","unlockLevel":2,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SC","description":"Seismic CrashRank 124% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 2001 times, dealing ((1*1000/0.5)+1)*(11+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":0.22026149022812938,"basePoints":11,"dieSides":1,"pointsPerLevel":0.11666800081729889,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":14,"ticks":2,"intervalMs":500,"tag":"spell-803981"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803981,"level":2,"description":"Seismic CrashRank 124% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 2001 times, dealing ((1*1000/0.5)+1)*(11+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":0.22026149022812938,"basePoints":11,"dieSides":1,"pointsPerLevel":0.11666800081729889,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":14,"ticks":2,"intervalMs":500,"tag":"spell-803981"}]},{"rank":2,"spellId":503258,"level":16,"description":"Seismic CrashRank 224% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 3334 times, dealing ((1*1000/0.3)+1)*(29+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":0.39136705603650823,"basePoints":29,"dieSides":1,"pointsPerLevel":0.462321013212204,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":3,"intervalMs":300,"tag":"spell-503258"}]},{"rank":3,"spellId":503259,"level":24,"description":"Seismic CrashRank 324% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 3334 times, dealing ((1*1000/0.3)+1)*(51+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":0.5468531266236917,"basePoints":51,"dieSides":1,"pointsPerLevel":0.5409089922904968,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29,"ticks":3,"intervalMs":300,"tag":"spell-503259"}]},{"rank":4,"spellId":503260,"level":30,"description":"Seismic CrashRank 424% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 3334 times, dealing ((1*1000/0.3)+1)*(71+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":0.736296373826486,"basePoints":71,"dieSides":1,"pointsPerLevel":0.9466670155525208,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36,"ticks":3,"intervalMs":300,"tag":"spell-503260"}]},{"rank":5,"spellId":503261,"level":38,"description":"Seismic CrashRank 524% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 4001 times, dealing ((1*1000/0.25)+1)*(77+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":0.643605945995019,"basePoints":77,"dieSides":1,"pointsPerLevel":0.6666669845581055,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44,"ticks":4,"intervalMs":250,"tag":"spell-503261"}]},{"rank":6,"spellId":503262,"level":46,"description":"Seismic CrashRank 624% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 4001 times, dealing ((1*1000/0.25)+1)*(111+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":0.9856551866062352,"basePoints":111,"dieSides":1,"pointsPerLevel":1.5081499814987183,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":4,"intervalMs":250,"tag":"spell-503262"}]},{"rank":7,"spellId":503263,"level":52,"description":"Seismic CrashRank 724% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 4001 times, dealing ((1*1000/0.25)+1)*(135+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":1.0153514449276142,"basePoints":135,"dieSides":1,"pointsPerLevel":1.328570008277893,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58,"ticks":4,"intervalMs":250,"tag":"spell-503263"}]},{"rank":8,"spellId":503264,"level":60,"description":"Seismic CrashRank 824% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 4001 times, dealing ((1*1000/0.25)+1)*(155+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":1.3056835386488173,"basePoints":155,"dieSides":1,"pointsPerLevel":2.3129799365997314,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":4,"intervalMs":250,"tag":"spell-503264"}]},{"rank":9,"spellId":503265,"level":66,"description":"Seismic CrashRank 924% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 5001 times, dealing ((1*1000/0.2)+1)*(156+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":1.1580246848824582,"basePoints":156,"dieSides":1,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":71,"ticks":5,"intervalMs":200,"tag":"spell-503265"}]},{"rank":10,"spellId":503266,"level":73,"description":"Seismic CrashRank 1024% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 5001 times, dealing ((1*1000/0.2)+1)*(178+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":24},"effects":[{"kind":"dot","coefficient":1.1072292174353744,"basePoints":178,"dieSides":1,"pointsPerLevel":1.5658700466156006,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80,"ticks":5,"intervalMs":200,"tag":"spell-503266"}]}]},{"id":"primalist-geode-barrage","classId":"primalist","dbcSpellId":502769,"name":"Geode Barrage","unlockLevel":6,"icon":"/assets/ui/spells/ability_rogue_throwingspecialization.png","sigil":"GB","description":"Geode BarrageRank 212% of base mana 2 sec castFling three stones at an enemy over 1 sec, each dealing 17+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502769,"level":6,"description":"Geode BarrageRank 212% of base mana 2 sec castFling three stones at an enemy over 1 sec, each dealing 17+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":3,"spellId":502770,"level":14,"description":"Geode BarrageRank 312% of base mana 2.2 sec castFling three stones at an enemy over 1 sec, each dealing 29+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2200,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":4,"spellId":502771,"level":22,"description":"Geode BarrageRank 412% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 51+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":5,"spellId":502772,"level":30,"description":"Geode BarrageRank 512% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 80+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":6,"spellId":502773,"level":38,"description":"Geode BarrageRank 612% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 105+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":7,"spellId":502774,"level":46,"description":"Geode BarrageRank 712% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 130+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":8,"spellId":502775,"level":54,"description":"Geode BarrageRank 812% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 160+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":9,"spellId":502776,"level":60,"description":"Geode BarrageRank 912% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 207+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":10,"spellId":502777,"level":68,"description":"Geode BarrageRank 1012% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 290+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":803138,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]}]},{"id":"primalist-hand-of-the-earthmother","classId":"primalist","dbcSpellId":800135,"name":"Hand of the Earthmother","unlockLevel":6,"icon":"/assets/ui/spells/spell_shaman_spiritlink.png","sigil":"HO","description":"Hand of the EarthmotherRank 135 Rage Instant castRejuvenate an ally, healing them for 49+0+AP*0.2+Heal*0.3.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":0.8704761891137986,"basePoints":49,"dieSides":5,"pointsPerLevel":0.6399999856948853,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800135,"level":6,"description":"Hand of the EarthmotherRank 135 Rage Instant castRejuvenate an ally, healing them for 49+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":0.8704761891137986,"basePoints":49,"dieSides":5,"pointsPerLevel":0.6399999856948853,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502802,"level":14,"description":"Hand of the EarthmotherRank 235 Rage Instant castRejuvenate an ally, healing them for 112+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":1.5772413823796414,"basePoints":112,"dieSides":10,"pointsPerLevel":1.4800000190734863,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502803,"level":22,"description":"Hand of the EarthmotherRank 335 Rage Instant castRejuvenate an ally, healing them for 169+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":2.0340540559442193,"basePoints":169,"dieSides":16,"pointsPerLevel":2.240000009536743,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502804,"level":30,"description":"Hand of the EarthmotherRank 435 Rage Instant castRejuvenate an ally, healing them for 219+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":2.3533340948599357,"basePoints":219,"dieSides":24,"pointsPerLevel":2.906670093536377,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502805,"level":38,"description":"Hand of the EarthmotherRank 535 Rage Instant castRejuvenate an ally, healing them for 266+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":2.624317852955944,"basePoints":266,"dieSides":35,"pointsPerLevel":3.533329963684082,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502806,"level":46,"description":"Hand of the EarthmotherRank 635 Rage Instant castRejuvenate an ally, healing them for 315+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":2.9021137268816837,"basePoints":315,"dieSides":48,"pointsPerLevel":4.186669826507568,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502807,"level":54,"description":"Hand of the EarthmotherRank 735 Rage Instant castRejuvenate an ally, healing them for 376+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":4,"basePoints":376,"dieSides":63,"pointsPerLevel":15,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502808,"level":58,"description":"Hand of the EarthmotherRank 835 Rage Instant castRejuvenate an ally, healing them for 1121+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":4,"basePoints":1121,"dieSides":81,"pointsPerLevel":4.480000019073486,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-31-primal-rush-482-500696","classId":"primalist","dbcSpellId":500696,"name":"Primal Rush","unlockLevel":10,"icon":"/assets/ui/spells/ability_druid_berserk.png","sigil":"PR","description":"Primal RushRank 110% of base mana Instant cast25 sec cooldownRush forward 20 yd through enemies in a line, dealing 40 Nature damage. Generates 20 Rage.","target":"hostile","range":{"min":0,"max":0},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1250,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"resource","amount":200},{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.6000000238418579,"basePoints":40,"dieSides":6,"pointsPerLevel":1.375,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":10,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500696,"level":10,"description":"Primal RushRank 110% of base mana Instant cast25 sec cooldownRush forward 20 yd through enemies in a line, dealing 40 Nature damage. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1250,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"resource","amount":200},{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.6000000238418579,"basePoints":40,"dieSides":6,"pointsPerLevel":1.375,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":10,"maxScalingLevel":16}]},{"rank":6,"spellId":502723,"level":50,"description":"Primal RushRank 610% of base mana Instant cast25 sec cooldownRush forward 20 yd through enemies in a line, dealing 463 Nature damage. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1250,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"resource","amount":200},{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":4,"basePoints":463,"dieSides":13,"pointsPerLevel":7.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":7,"spellId":502724,"level":58,"description":"Primal RushRank 710% of base mana Instant cast25 sec cooldownRush forward 20 yd through enemies in a line, dealing 614 Nature damage. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1250,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"resource","amount":200},{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":4,"basePoints":614,"dieSides":17,"pointsPerLevel":10.216699600219727,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64}]}]},{"id":"coa-31-fury-of-the-wild-110-502748","classId":"primalist","dbcSpellId":502748,"name":"Fury of the Wild","unlockLevel":11,"icon":"/assets/ui/spells/druid_stagstatue01.png","sigil":"FO","description":"Fury of the WildRank 2Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":502748,"level":11,"description":"Fury of the WildRank 2Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":3,"spellId":502749,"level":21,"description":"Fury of the WildRank 3Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":4,"spellId":502750,"level":31,"description":"Fury of the WildRank 4Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":5,"spellId":502751,"level":41,"description":"Fury of the WildRank 5Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":6,"spellId":502752,"level":51,"description":"Fury of the WildRank 6Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":7,"spellId":502753,"level":61,"description":"Fury of the WildRank 7Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":8,"spellId":502754,"level":71,"description":"Fury of the WildRank 8Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","effectType":0,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-31-quake-496-803974","classId":"primalist","dbcSpellId":803974,"name":"Quake","unlockLevel":11,"icon":"/assets/ui/spells/spell_shaman_earthquake.png","sigil":"QU","description":"QuakeRank 15% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 13+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":520463,"durationMs":0},{"kind":"damage","coefficient":0.16666666666666666,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803974,"level":11,"description":"QuakeRank 15% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 13+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":520463,"durationMs":0},{"kind":"damage","coefficient":0.16666666666666666,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18}]},{"rank":2,"spellId":503267,"level":20,"description":"QuakeRank 25% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 25+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":520463,"durationMs":0},{"kind":"damage","coefficient":0.23809523809523808,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26}]},{"rank":3,"spellId":503268,"level":28,"description":"QuakeRank 35% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 43+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":520463,"durationMs":0},{"kind":"damage","coefficient":0.3372093023255814,"basePoints":43,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32}]},{"rank":4,"spellId":504571,"level":34,"description":"QuakeRank 45% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 64+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":520463,"durationMs":0},{"kind":"damage","coefficient":0.4387755102040816,"basePoints":64,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":5,"spellId":505155,"level":42,"description":"QuakeRank 55% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 90+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":520463,"durationMs":0},{"kind":"damage","coefficient":0.5292397660818714,"basePoints":90,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46}]},{"rank":6,"spellId":505156,"level":48,"description":"QuakeRank 65% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 121+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":520463,"durationMs":0},{"kind":"damage","coefficient":0.6428571428571429,"basePoints":121,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":7,"spellId":505157,"level":56,"description":"QuakeRank 75% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 167+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":520463,"durationMs":0},{"kind":"damage","coefficient":0.7863849765258216,"basePoints":167,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":66}]}]},{"id":"coa-31-seismic-spike-112-804433","classId":"primalist","dbcSpellId":804433,"name":"Seismic Spike","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Seismic SpikeRank 123% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 58+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","target":"hostile","range":{"min":0,"max":20},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":23},"effects":[{"kind":"damage","coefficient":1,"basePoints":58,"dieSides":4,"pointsPerLevel":1.4249999523162842,"bonusPowerCoefficient":1,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804433,"level":12,"description":"Seismic SpikeRank 123% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 58+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":23},"effects":[{"kind":"damage","coefficient":1,"basePoints":58,"dieSides":4,"pointsPerLevel":1.4249999523162842,"bonusPowerCoefficient":1,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":560171,"level":18,"description":"Seismic SpikeRank 223% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 79+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":23},"effects":[{"kind":"damage","coefficient":1,"basePoints":79,"dieSides":6,"pointsPerLevel":1.9500000476837158,"bonusPowerCoefficient":1,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":560172,"level":24,"description":"Seismic SpikeRank 323% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 109+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":23},"effects":[{"kind":"damage","coefficient":1,"basePoints":109,"dieSides":9,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":1,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":560173,"level":32,"description":"Seismic SpikeRank 423% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 153+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":23},"effects":[{"kind":"damage","coefficient":1,"basePoints":153,"dieSides":13,"pointsPerLevel":2.533329963684082,"bonusPowerCoefficient":1,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":560174,"level":40,"description":"Seismic SpikeRank 523% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 212+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":23},"effects":[{"kind":"damage","coefficient":1,"basePoints":212,"dieSides":19,"pointsPerLevel":3.516669988632202,"bonusPowerCoefficient":1,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":560175,"level":48,"description":"Seismic SpikeRank 623% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 296+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":23},"effects":[{"kind":"damage","coefficient":1,"basePoints":296,"dieSides":27,"pointsPerLevel":4.916669845581055,"bonusPowerCoefficient":1,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":582532,"level":56,"description":"Seismic SpikeRank 723% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 413+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"rage","amount":23},"effects":[{"kind":"damage","coefficient":1,"basePoints":413,"dieSides":80,"pointsPerLevel":5.150000095367432,"bonusPowerCoefficient":1,"sourceLevel":56,"maxScalingLevel":64},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-31-spirit-charge-114-800144","classId":"primalist","dbcSpellId":800144,"name":"Spirit Charge","unlockLevel":13,"icon":"/assets/ui/spells/ability_monk_pathofmists.png","sigil":"SC","description":"Spirit ChargeRank 116% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 53+0+Heal*0.2+AP*.2 and dealing 67+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","target":"friendly","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"rage","amount":16},"effects":[{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":0.5,"basePoints":53,"dieSides":2,"pointsPerLevel":1.1799999475479126,"bonusPowerCoefficient":0.5,"sourceLevel":13,"maxScalingLevel":22},{"kind":"damage","coefficient":0.8904761941660018,"basePoints":67,"dieSides":1,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800144,"level":13,"description":"Spirit ChargeRank 116% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 53+0+Heal*0.2+AP*.2 and dealing 67+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"rage","amount":16},"effects":[{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":0.5,"basePoints":53,"dieSides":2,"pointsPerLevel":1.1799999475479126,"bonusPowerCoefficient":0.5,"sourceLevel":13,"maxScalingLevel":22},{"kind":"damage","coefficient":0.8904761941660018,"basePoints":67,"dieSides":1,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":22}]},{"rank":2,"spellId":502809,"level":24,"description":"Spirit ChargeRank 216% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 72+0+Heal*0.2+AP*.2 and dealing 86+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"rage","amount":16},"effects":[{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":1.0063247843685312,"basePoints":72,"dieSides":2,"pointsPerLevel":1.8849999904632568,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":32},{"kind":"damage","coefficient":0.9572649572649573,"basePoints":86,"dieSides":2,"pointsPerLevel":1.0625,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":32}]},{"rank":3,"spellId":502810,"level":34,"description":"Spirit ChargeRank 316% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 99+0+Heal*0.2+AP*.2 and dealing 107+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"rage","amount":16},"effects":[{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":1.3082993241394458,"basePoints":99,"dieSides":2,"pointsPerLevel":2.7300000190734863,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42},{"kind":"damage","coefficient":1.0343537525254853,"basePoints":107,"dieSides":1,"pointsPerLevel":1.3250000476837158,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42}]},{"rank":4,"spellId":502811,"level":44,"description":"Spirit ChargeRank 416% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 141+0+Heal*0.2+AP*.2 and dealing 152+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"rage","amount":16},"effects":[{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":1.6943502587787176,"basePoints":141,"dieSides":2,"pointsPerLevel":3.5999999046325684,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":52},{"kind":"damage","coefficient":1.3307909723055564,"basePoints":152,"dieSides":2,"pointsPerLevel":1.8875000476837158,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":52}]},{"rank":5,"spellId":504570,"level":54,"description":"Spirit ChargeRank 516% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 204+0+Heal*0.2+AP*.2 and dealing 220+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"rage","amount":16},"effects":[{"kind":"utility","effectType":149,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"heal","coefficient":2.503141969874285,"basePoints":204,"dieSides":1,"pointsPerLevel":5.817599773406982,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62},{"kind":"damage","coefficient":1.7769323547105282,"basePoints":220,"dieSides":1,"pointsPerLevel":2.737499952316284,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62}]}]},{"id":"coa-31-primal-shred-110-500940","classId":"primalist","dbcSpellId":500940,"name":"Primal Shred","unlockLevel":15,"icon":"/assets/ui/spells/ability_druid_freshwound.png","sigil":"PS","description":"Primal ShredRank 125 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(7+1.1 Points Per Level+AP*0.05) Physical damage over 21 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504669,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500940,"level":15,"description":"Primal ShredRank 125 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(7+1.1 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504669,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502725,"level":20,"description":"Primal ShredRank 225 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(10+1.2 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504670,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502726,"level":26,"description":"Primal ShredRank 325 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(14+1.2 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504671,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502727,"level":32,"description":"Primal ShredRank 425 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(18+1.3 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504672,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502728,"level":38,"description":"Primal ShredRank 525 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/$5046731)*(25+1.4 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504673,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502729,"level":44,"description":"Primal ShredRank 625 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(34+1.5 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504674,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502730,"level":50,"description":"Primal ShredRank 725 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(45+1.5 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504675,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502731,"level":56,"description":"Primal ShredRank 825 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(56+1.5 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504676,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502732,"level":60,"description":"Primal ShredRank 925 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(76+1.5 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":140,"auraType":0,"miscValue":0,"triggerSpellId":504684,"durationMs":0}]},{"rank":10,"spellId":502733,"level":68,"description":"Primal ShredRank 1025 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(7+1.1 Points Per Level+AP*0.08) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"dot","coefficient":2.2027052377601226,"basePoints":355,"dieSides":1,"pointsPerLevel":2.8452000617980957,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80,"ticks":1,"intervalMs":2000,"tag":"spell-502733"},{"kind":"utility","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500945,"durationMs":0}]}]},{"id":"coa-31-sacred-grove-114-502820","classId":"primalist","dbcSpellId":502820,"name":"Sacred Grove","unlockLevel":21,"icon":"/assets/ui/spells/achievement_reputation_guardiansofcenarius.png","sigil":"SG","description":"Sacred GroveRank 235% of base mana 2 sec cast6 min cooldownSummon a magical tree to encompass your body, rooting you, preventing you from dealing damage for 15 sec, and instantly healing up to 12 allies for 2472. While active, a Sacred Grove is created in a radius around you. Up to 12 allies in the grove take 0% reduced damage, 25% increased healing received, and regain 3% of maximum health and 3% of maximum mana every 2 sec.","target":"hostile","range":{"min":0,"max":40},"radius":0,"castMode":"cast","castTimeMs":2000,"cooldownMs":360000,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":4,"basePoints":2472,"dieSides":10,"pointsPerLevel":3.007999897003174,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":40},{"kind":"status","status":"root","durationMs":15000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502820,"level":21,"description":"Sacred GroveRank 235% of base mana 2 sec cast6 min cooldownSummon a magical tree to encompass your body, rooting you, preventing you from dealing damage for 15 sec, and instantly healing up to 12 allies for 2472. While active, a Sacred Grove is created in a radius around you. Up to 12 allies in the grove take 0% reduced damage, 25% increased healing received, and regain 3% of maximum health and 3% of maximum mana every 2 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":360000,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":4,"basePoints":2472,"dieSides":10,"pointsPerLevel":3.007999897003174,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":40},{"kind":"status","status":"root","durationMs":15000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000}]},{"rank":3,"spellId":502821,"level":41,"description":"Sacred GroveRank 335% of base mana 2 sec cast6 min cooldownSummon a magical tree to encompass your body, rooting you, preventing you from dealing damage for 15 sec, and instantly healing up to 12 allies for 2759. While active, a Sacred Grove is created in a radius around you. Up to 12 allies in the grove take 0% reduced damage, 25% increased healing received, and regain 3% of maximum health and 3% of maximum mana every 2 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":360000,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":4,"basePoints":2759,"dieSides":25,"pointsPerLevel":4.736000061035156,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":60},{"kind":"status","status":"root","durationMs":15000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000}]},{"rank":4,"spellId":502822,"level":61,"description":"Sacred GroveRank 435% of base mana 2 sec cast6 min cooldownSummon a magical tree to encompass your body, rooting you, preventing you from dealing damage for 15 sec, and instantly healing up to 12 allies for 3042. While active, a Sacred Grove is created in a radius around you. Up to 12 allies in the grove take 0% reduced damage, 25% increased healing received, and regain 3% of maximum health and 3% of maximum mana every 2 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":360000,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":4,"basePoints":3042,"dieSides":48,"pointsPerLevel":6.464000225067139,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":80},{"kind":"status","status":"root","durationMs":15000},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":15000}]}]},{"id":"coa-31-primal-pulse-114-800177","classId":"primalist","dbcSpellId":800177,"name":"Primal Pulse","unlockLevel":27,"icon":"/assets/ui/spells/ability_demonhunter_chaosnova.png","sigil":"PP","description":"Primal PulseRank 120 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 132.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0.23999999463558197,"basePoints":132,"dieSides":13,"pointsPerLevel":2.619999885559082,"bonusPowerCoefficient":0.23999999463558197,"sourceLevel":27,"maxScalingLevel":31},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800177,"level":27,"description":"Primal PulseRank 120 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 132.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0.23999999463558197,"basePoints":132,"dieSides":13,"pointsPerLevel":2.619999885559082,"bonusPowerCoefficient":0.23999999463558197,"sourceLevel":27,"maxScalingLevel":31},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502812,"level":33,"description":"Primal PulseRank 220 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 156.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.0374992059336767,"basePoints":156,"dieSides":3,"pointsPerLevel":4.13332986831665,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":36},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502813,"level":38,"description":"Primal PulseRank 320 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 181.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.2981132531316026,"basePoints":181,"dieSides":5,"pointsPerLevel":4.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":41},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502814,"level":43,"description":"Primal PulseRank 420 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 206.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.55498167564129,"basePoints":206,"dieSides":8,"pointsPerLevel":5.466670036315918,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":46},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502815,"level":48,"description":"Primal PulseRank 520 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 231.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.808993828990472,"basePoints":231,"dieSides":12,"pointsPerLevel":6.13332986831665,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":51},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502816,"level":53,"description":"Primal PulseRank 620 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 266.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":3.176634837599362,"basePoints":266,"dieSides":16,"pointsPerLevel":7.066669940948486,"bonusPowerCoefficient":0,"sourceLevel":53,"maxScalingLevel":56},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502817,"level":58,"description":"Primal PulseRank 720 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 301.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":3.538812785388128,"basePoints":301,"dieSides":21,"pointsPerLevel":8,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":61},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502818,"level":63,"description":"Primal PulseRank 820 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 451.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":451,"dieSides":27,"pointsPerLevel":12,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":66},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502819,"level":68,"description":"Primal PulseRank 920 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 812.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":812,"dieSides":34,"pointsPerLevel":8.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":73},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]}],"runemaster":[{"id":"coa-32-ancient-carvings-117-705616","classId":"runemaster","dbcSpellId":705616,"name":"Ancient Carvings","unlockLevel":1,"icon":"/assets/ui/spells/inv_relics_6orunestone_ogremissive.png","sigil":"AC","description":"Ancient CarvingsRank 2InstantReduces the cooldown of Words by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705616,"level":1,"description":"Ancient CarvingsRank 2InstantReduces the cooldown of Words by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29226","classId":"runemaster","dbcSpellId":806797,"name":"Ancient Teachings","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_potentspirit.png","sigil":"AT","description":"Increases the effectiveness of Etching of the Dextrous by 20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806797,"level":1,"description":"Increases the effectiveness of Etching of the Dextrous by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":216,"miscValue":126,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":192,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":8,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29226},{"id":"coa-32-arcane-imprisonment-116-705629","classId":"runemaster","dbcSpellId":705629,"name":"Arcane Imprisonment","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_void_blast.png","sigil":"AI","description":"Arcane ImprisonmentRank 2Reduces the cooldown of Sorcerer's Cage by 4 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705629,"level":1,"description":"Arcane ImprisonmentRank 2Reduces the cooldown of Sorcerer's Cage by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-32-arcane-wrath-none-520060","classId":"runemaster","dbcSpellId":520060,"name":"Arcane Wrath","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_arcane02.png","sigil":"AW","description":"Arcane WrathRank 2Increases the damage of Spellwrath by 10% and the critical strike chance by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":520060,"level":1,"description":"Arcane WrathRank 2Increases the damage of Spellwrath by 10% and the critical strike chance by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"runemaster-augurs-shield","classId":"runemaster","dbcSpellId":804126,"name":"Augur's Shield","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_prismaticcloak.png","sigil":"AS","description":"Augur's ShieldRank 1Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 10% for 8 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":3,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":804126,"level":1,"description":"Augur's ShieldRank 1Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 10% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":3,"auraType":4,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":2,"spellId":503391,"level":17,"description":"Augur's ShieldRank 27% of base mana Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 13% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":127,"triggerSpellId":520416,"durationMs":8000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":3,"spellId":503392,"level":33,"description":"Augur's ShieldRank 37% of base mana Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 16% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":127,"triggerSpellId":520416,"durationMs":8000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":4,"spellId":503393,"level":49,"description":"Augur's ShieldRank 47% of base mana Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 20% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":127,"triggerSpellId":520416,"durationMs":8000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":5,"spellId":503394,"level":65,"description":"Augur's ShieldRank 57% of base mana Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 25% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":127,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":127,"triggerSpellId":520416,"durationMs":8000},{"kind":"utility","effectType":137,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}]},{"id":"coa-tree-34612","classId":"runemaster","dbcSpellId":520237,"name":"Blade Rift","unlockLevel":1,"icon":"/assets/ui/spells/5_magicresistance_border.png","sigil":"BR","description":"While stealthed, using Warpdagger now increases your Magic Damage dealt by 10% for 8 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520238,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520237,"level":1,"description":"While stealthed, using Warpdagger now increases your Magic Damage dealt by 10% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":520238,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34612},{"id":"coa-tree-29637","classId":"runemaster","dbcSpellId":801086,"name":"Convergence","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcaneaid_border.png","sigil":"CO","description":"For 15 seconds, the next 10 Weapon Engravings you trigger will now deal an additional 348 + 30% SP + 20% AP Elemental Damage.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560241,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801086,"level":1,"description":"For 15 seconds, the next 10 Weapon Engravings you trigger will now deal an additional 348 + 30% SP + 20% AP Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":560241,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000}]}],"talentEntryId":29637},{"id":"coa-tree-6483","classId":"runemaster","dbcSpellId":706523,"name":"Decoder","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_magicartifact_10.png","sigil":"DE","description":"Your Elemental Burst and Runeblade now have a 20% chance to instantly trigger your Weapon Engravings.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":707152,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":681241,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":681500,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706523,"level":1,"description":"Your Elemental Burst and Runeblade now have a 20% chance to instantly trigger your Weapon Engravings.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":707152,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":681241,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":681500,"durationMs":-1}]}],"talentEntryId":6483},{"id":"coa-32-devour-mana-116-800104","classId":"runemaster","dbcSpellId":800104,"name":"Devour Mana","unlockLevel":1,"icon":"/assets/ui/spells/_soulsdevourer_blue.png","sigil":"DM","description":"Devour ManaRank 1Instant cast12 sec cooldownDestroys 15 to 19 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","target":"hostile","range":{"min":0,"max":30},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":62,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800104,"level":1,"description":"Devour ManaRank 1Instant cast12 sec cooldownDestroys 15 to 19 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":62,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502619,"level":17,"description":"Devour ManaRank 2Instant cast12 sec cooldownDestroys 37 to 45 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":62,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502620,"level":33,"description":"Devour ManaRank 3Instant cast12 sec cooldownDestroys 87 to 104 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":62,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502621,"level":49,"description":"Devour ManaRank 4Instant cast12 sec cooldownDestroys 184 to 214 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":62,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502622,"level":65,"description":"Devour ManaRank 5Instant cast12 sec cooldownDestroys 362 to 410 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":62,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34647","classId":"runemaster","dbcSpellId":707149,"name":"Elemental Secrets","unlockLevel":1,"icon":"/assets/ui/spells/novart_books_(7)_border.png","sigil":"ES","description":"Increases the cooldown of Speed Rune by 30 sec, but it now applies stealth to allies who walk on the pathway for the duration.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707149,"level":1,"description":"Increases the cooldown of Speed Rune by 30 sec, but it now applies stealth to allies who walk on the pathway for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34647},{"id":"coa-tree-34616","classId":"runemaster","dbcSpellId":707413,"name":"Elements of Fury","unlockLevel":1,"icon":"/assets/ui/spells/ability_shaman_echooftheelements.png","sigil":"EO","description":"Your Palm Sigils now affect 1 additional instance of damage.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707413,"level":1,"description":"Your Palm Sigils now affect 1 additional instance of damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":4,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34616},{"id":"coa-32-everfrost-scroll-119-801090","classId":"runemaster","dbcSpellId":801090,"name":"Everfrost Scroll","unlockLevel":1,"icon":"/assets/ui/spells/trade_engineering.png","sigil":"ES","description":"Everfrost ScrollRank 15% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801090,"level":1,"description":"Everfrost ScrollRank 15% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":2,"spellId":502634,"level":9,"description":"Everfrost ScrollRank 25% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":3,"spellId":502635,"level":17,"description":"Everfrost ScrollRank 35% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":4,"spellId":502636,"level":25,"description":"Everfrost ScrollRank 45% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":5,"spellId":502637,"level":33,"description":"Everfrost ScrollRank 55% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":6,"spellId":502638,"level":41,"description":"Everfrost ScrollRank 65% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":7,"spellId":502639,"level":49,"description":"Everfrost ScrollRank 75% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":8,"spellId":502640,"level":57,"description":"Everfrost ScrollRank 85% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":9,"spellId":502641,"level":65,"description":"Everfrost ScrollRank 95% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]},{"rank":10,"spellId":502642,"level":73,"description":"Everfrost ScrollRank 105% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5},"effects":[{"kind":"utility","effectType":64,"auraType":0,"miscValue":456703,"triggerSpellId":500285,"durationMs":3500},{"kind":"utility","effectType":6,"auraType":271,"miscValue":4,"triggerSpellId":0,"durationMs":3500},{"kind":"status","status":"stun","durationMs":3500}]}]},{"id":"coa-32-frozen-inferno-119-705571","classId":"runemaster","dbcSpellId":705571,"name":"Frozen Inferno","unlockLevel":1,"icon":"/assets/ui/spells/spell_fireresistancetotem_01.png","sigil":"FI","description":"Frozen InfernoRank 2Increases Fire and Frost damage dealt by 6%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":20,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705571,"level":1,"description":"Frozen InfernoRank 2Increases Fire and Frost damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":20,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-31102","classId":"runemaster","dbcSpellId":807842,"name":"Glacial Rune","unlockLevel":1,"icon":"/assets/ui/spells/nhi_icespectator_border.png","sigil":"GR","description":"Place a rune at the target location that explodes after 1 sec with frigid magic, dealing 128 + 30% SP Frost damage to enemies inside and freezing them in place for 40 seconds (8 sec vs players). Damage caused may interrupt the effect.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":1250,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":805730,"durationMs":1500}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":807842,"level":1,"description":"Place a rune at the target location that explodes after 1 sec with frigid magic, dealing 128 + 30% SP Frost damage to enemies inside and freezing them in place for 40 seconds (8 sec vs players). Damage caused may interrupt the effect.","castMode":"cast","castTimeMs":1250,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":27,"auraType":23,"miscValue":0,"triggerSpellId":805730,"durationMs":1500}]}],"talentEntryId":31102},{"id":"coa-tree-30728","classId":"runemaster","dbcSpellId":520229,"name":"Granite Resolve","unlockLevel":1,"icon":"/assets/ui/spells/nhi_earthtranquility_border.png","sigil":"GR","description":"Become hard as stone, reducing your Physical damage taken by -30% for 8 seconds. Usable while stunned.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":1,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520229,"level":1,"description":"Become hard as stone, reducing your Physical damage taken by -30% for 8 seconds. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"utility","effectType":6,"auraType":87,"miscValue":1,"triggerSpellId":0,"durationMs":8000}]}],"talentEntryId":30728},{"id":"coa-32-improved-fastcast-116-705637","classId":"runemaster","dbcSpellId":705637,"name":"Improved Fastcast","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_consumemagic.png","sigil":"IF","description":"Improved FastcastRank 2Reduces the cooldown of Fastcast by 4 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705637,"level":1,"description":"Improved FastcastRank 2Reduces the cooldown of Fastcast by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-32-improved-primordial-blast-116-705607","classId":"runemaster","dbcSpellId":705607,"name":"Improved Primordial Blast","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_spectraltransformation.png","sigil":"IP","description":"Improved Primordial BlastRank 2Reduces the cooldown of Primordial Blast by 4 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705607,"level":1,"description":"Improved Primordial BlastRank 2Reduces the cooldown of Primordial Blast by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29166","classId":"runemaster","dbcSpellId":705562,"name":"Ley Constitution","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_mindtwisting.png","sigil":"LC","description":"Your Armor contribution from items is increased by 30%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705562,"level":1,"description":"Your Armor contribution from items is increased by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":142,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29166},{"id":"coa-tree-30327","classId":"runemaster","dbcSpellId":705546,"name":"Magic Feeder","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_shadowmeld.png","sigil":"MF","description":"Your Leyfeed now steals 1 additional magic effect from the target.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705546,"level":1,"description":"Your Leyfeed now steals 1 additional magic effect from the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30327},{"id":"coa-tree-6378","classId":"runemaster","dbcSpellId":705605,"name":"Master Engraver","unlockLevel":1,"icon":"/assets/ui/spells/inv_blacksmithing_greatersharpeningstone.png","sigil":"ME","description":"Increases the chance to trigger your Weapon Engravings by 5%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705605,"level":1,"description":"Increases the chance to trigger your Weapon Engravings by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6378},{"id":"coa-tree-34609","classId":"runemaster","dbcSpellId":804531,"name":"Master of Runes","unlockLevel":1,"icon":"/assets/ui/spells/inv_custom_rune.png","sigil":"MO","description":"Reduces the cooldown of your Rune spells by -25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804531,"level":1,"description":"Reduces the cooldown of your Rune spells by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34609},{"id":"coa-tree-34607","classId":"runemaster","dbcSpellId":802669,"name":"Mind Over Matter","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_mindmastery.png","sigil":"MO","description":"Increases the duration of Ley Lock by 0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":802669,"level":1,"description":"Increases the duration of Ley Lock by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34607},{"id":"coa-tree-6477","classId":"runemaster","dbcSpellId":800757,"name":"Mind Wrath","unlockLevel":1,"icon":"/assets/ui/spells/nhi_corruptionmind_border.png","sigil":"MW","description":"Your Ley Lock now interrupts 1 additional enemy near your primary target.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800757,"level":1,"description":"Your Ley Lock now interrupts 1 additional enemy near your primary target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6477},{"id":"coa-tree-11647","classId":"runemaster","dbcSpellId":707653,"name":"Nomad's Scroll","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_scroll_07_b.png","sigil":"NS","description":"Swapping to Runic Tattoos: Air now instantly dispels 1 movement slowing effect on you.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":712452,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707653,"level":1,"description":"Swapping to Runic Tattoos: Air now instantly dispels 1 movement slowing effect on you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":712452,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":11647},{"id":"coa-32-portal-hopper-116-705553","classId":"runemaster","dbcSpellId":705553,"name":"Portal Hopper","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_teleport.png","sigil":"PH","description":"Portal HopperRank 3InstantReduces the cooldown of Warp by 6 sec and Ley Walk by 3 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":3,"spellId":705553,"level":1,"description":"Portal HopperRank 3InstantReduces the cooldown of Warp by 6 sec and Ley Walk by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-29228","classId":"runemaster","dbcSpellId":500296,"name":"Power Engraving","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathknight_hungeringruneblade.png","sigil":"PE","description":"Create a Power Engraving beneath you for 20 seconds, granting 20% increased Magic Damage dealt and 20% increased critical strike chance to up to 5 allies standing in the area.","target":"self","range":{"min":0,"max":0},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":27,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":27,"auraType":290,"miscValue":126,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":27,"auraType":21,"miscValue":0,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500296,"level":1,"description":"Create a Power Engraving beneath you for 20 seconds, granting 20% increased Magic Damage dealt and 20% increased critical strike chance to up to 5 allies standing in the area.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":18},"effects":[{"kind":"utility","effectType":27,"auraType":79,"miscValue":126,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":27,"auraType":290,"miscValue":126,"triggerSpellId":0,"durationMs":20000},{"kind":"utility","effectType":27,"auraType":21,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]}],"talentEntryId":29228},{"id":"coa-32-power-of-air-62-705696","classId":"runemaster","dbcSpellId":705696,"name":"Power of Air","unlockLevel":1,"icon":"/assets/ui/spells/sha_inv_elemental_primal_shadow.png","sigil":"PO","description":"Power of AirRank 1Increases the damage your Air Elemental deals by 20%.","target":"hostile","range":{"min":0,"max":50000},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705696,"level":1,"description":"Power of AirRank 1Increases the damage your Air Elemental deals by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705697,"level":1,"description":"Power of AirRank 2Instant castIncreases the damage your Air Elemental deals by 12%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":3,"spellId":705698,"level":1,"description":"Power of AirRank 3Instant castIncreases the damage your Air Elemental deals by 18%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":79,"miscValue":127,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-33375","classId":"runemaster","dbcSpellId":705636,"name":"Primal Rune","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_fortifiedbark.png","sigil":"PR","description":"Granite Resolve now reduces damage taken by an additional -10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705636,"level":1,"description":"Granite Resolve now reduces damage taken by an additional -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":33375},{"id":"coa-32-primordial-glyphs-116-705602","classId":"runemaster","dbcSpellId":705602,"name":"Primordial Glyphs","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_rune_15.png","sigil":"PG","description":"Primordial GlyphsRank 2Increases Fire and Frost Damage dealt by 4%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":20,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705602,"level":1,"description":"Primordial GlyphsRank 2Increases Fire and Frost Damage dealt by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":79,"miscValue":20,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-32-primordial-power-116-705557","classId":"runemaster","dbcSpellId":705557,"name":"Primordial Power","unlockLevel":1,"icon":"/assets/ui/spells/spell_mage_overpowered.png","sigil":"PP","description":"Primordial PowerRank 2InstantIncreases spell critical strike damage by 100%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":705557,"level":1,"description":"Primordial PowerRank 2InstantIncreases spell critical strike damage by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":163,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34614","classId":"runemaster","dbcSpellId":520054,"name":"Primordialism","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_astralrecalgroup.png","sigil":"PR","description":"Increases your critical strike chance by 10% for 5 seconds after leaving Runeshroud.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520054,"level":1,"description":"Increases your critical strike chance by 10% for 5 seconds after leaving Runeshroud.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34614},{"id":"coa-32-prismatic-blade-119-804127","classId":"runemaster","dbcSpellId":804127,"name":"Prismatic Blade","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_76.png","sigil":"PB","description":"Prismatic BladeRank 19% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804127,"level":1,"description":"Prismatic BladeRank 19% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503384,"level":11,"description":"Prismatic BladeRank 29% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503385,"level":21,"description":"Prismatic BladeRank 39% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503386,"level":31,"description":"Prismatic BladeRank 49% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503387,"level":41,"description":"Prismatic BladeRank 59% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503388,"level":51,"description":"Prismatic BladeRank 69% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503389,"level":61,"description":"Prismatic BladeRank 79% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503390,"level":71,"description":"Prismatic BladeRank 89% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":87,"miscValue":126,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-32-quickslinger-116-705626","classId":"runemaster","dbcSpellId":705626,"name":"Quickslinger","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_arcanebarrage_nightborne.png","sigil":"QU","description":"QuickslingerRank 2Reduces the cast time of Primordial Blast by 0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":21,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705626,"level":1,"description":"QuickslingerRank 2Reduces the cast time of Primordial Blast by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":21,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-4063","classId":"runemaster","dbcSpellId":92154,"name":"Riftblade","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_zinrokh_sword.png","sigil":"RI","description":"Level 10 Passive Your Primordial Blast and Smolder now refresh a charge of Runeblade. In addition, every 3rd Runeblade now restores 388 + 30% AP mana, increased by 20% while Runic Tattoos: Water is active.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":500468,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92154,"level":1,"description":"Level 10 Passive Your Primordial Blast and Smolder now refresh a charge of Runeblade. In addition, every 3rd Runeblade now restores 388 + 30% AP mana, increased by 20% while Runic Tattoos: Water is active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":500468,"durationMs":-1}]}],"talentEntryId":4063},{"id":"coa-32-runesleeve-116-706383","classId":"runemaster","dbcSpellId":706383,"name":"Runesleeve","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_tarot_6omeleecard.png","sigil":"RU","description":"RunesleeveRank 2Ace of Runes makes Thaumaturgy incur a 8 sec reduced cooldown.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706383,"level":1,"description":"RunesleeveRank 2Ace of Runes makes Thaumaturgy incur a 8 sec reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":23,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-tree-34580","classId":"runemaster","dbcSpellId":705621,"name":"Runic Affinity","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_rune_05.png","sigil":"RA","description":"Increases the duration of Zenith by 6 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705621,"level":1,"description":"Increases the duration of Zenith by 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34580},{"id":"coa-tree-34617","classId":"runemaster","dbcSpellId":705583,"name":"Runic Breakout","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_teleport.png","sigil":"RB","description":"Abilities requiring Runeshroud can now be used for 3 sec and have no cast time after Runeshroud breaks.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705583,"level":1,"description":"Abilities requiring Runeshroud can now be used for 3 sec and have no cast time after Runeshroud breaks.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34617},{"id":"coa-32-runic-devastation-117-705544","classId":"runemaster","dbcSpellId":705544,"name":"Runic Devastation","unlockLevel":1,"icon":"/assets/ui/spells/ability_shaman_astralshift.png","sigil":"RD","description":"Runic DevastationRank 2InstantIncreases the damage caused by Displace Familiar and Runic Pulse by 20%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705544,"level":1,"description":"Runic DevastationRank 2InstantIncreases the damage caused by Displace Familiar and Runic Pulse by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34615","classId":"runemaster","dbcSpellId":705563,"name":"Shroudwalker","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_shroudofconcealment.png","sigil":"SH","description":"Your Warpdagger now incurs no cooldown if used while your Runeshroud is active.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705563,"level":1,"description":"Your Warpdagger now incurs no cooldown if used while your Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":3,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34615},{"id":"coa-tree-6485","classId":"runemaster","dbcSpellId":705586,"name":"Sigilist","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_runestone_05.png","sigil":"SI","description":"After using a Palm Sigil, the duration of your crowd control effects is increased by 20%. Reduces the cast time of all Palm Sigils by -0.5 sec and increases the duration of your Palm Sigil buffs by 50%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":4,"triggerSpellId":706525,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705586,"level":1,"description":"After using a Palm Sigil, the duration of your crowd control effects is increased by 20%. Reduces the cast time of all Palm Sigils by -0.5 sec and increases the duration of your Palm Sigil buffs by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":42,"miscValue":4,"triggerSpellId":706525,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":10,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":6485},{"id":"coa-tree-30158","classId":"runemaster","dbcSpellId":801103,"name":"Speed Rune","unlockLevel":1,"icon":"/assets/ui/spells/runeofspeed.png","sigil":"SR","description":"Conjure a path of runes in the direction you are facing for 10 seconds, increasing the movement speed of allies by 70%. This effect can persist for a short duration after leaving the runic path.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572134,"durationMs":100},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801103,"level":1,"description":"Conjure a path of runes in the direction you are facing for 10 seconds, increasing the movement speed of allies by 70%. This effect can persist for a short duration after leaving the runic path.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":14},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":572134,"durationMs":100},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]}],"talentEntryId":30158},{"id":"coa-tree-34663","classId":"runemaster","dbcSpellId":705554,"name":"Speedy Attuner","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicspeed_border.png","sigil":"SA","description":"Increases your movement speed by 8% and reduces the mana cost of your Runic Tattoos by -25%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705554,"level":1,"description":"Increases your movement speed by 8% and reduces the mana cost of your Runic Tattoos by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":707746,"level":1,"description":"Increases your movement speed by 15% and reduces the mana cost of your Runic Tattoos by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":31,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":108,"miscValue":14,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34663},{"id":"coa-32-spellbrand-none-560052","classId":"runemaster","dbcSpellId":560052,"name":"Spellbrand","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_wizardmark.png","sigil":"SP","description":"SpellbrandRank 2Increases the damage caused by Elemental Burst by 10% and allows Runic Brand to affect 4 additional enemies.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560052,"level":1,"description":"SpellbrandRank 2Increases the damage caused by Elemental Burst by 10% and allows Runic Brand to affect 4 additional enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":108,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":17,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}]},{"id":"coa-32-symbols-of-power-117-705613","classId":"runemaster","dbcSpellId":705613,"name":"Symbols of Power","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(17)_border.png","sigil":"SO","description":"Symbols of PowerRank 1Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 15%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705613,"level":33,"description":"Symbols of PowerRank 1Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705614,"level":1,"description":"Symbols of PowerRank 2Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":12,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-9210","classId":"runemaster","dbcSpellId":806718,"name":"Unbound","unlockLevel":1,"icon":"/assets/ui/spells/inv_azerite_explosion.png","sigil":"UN","description":"Reduces the duration of harmful magic and curse effects on you by -20%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":245,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806718,"level":1,"description":"Reduces the duration of harmful magic and curse effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":2,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":245,"miscValue":1,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":9210},{"id":"coa-tree-34610","classId":"runemaster","dbcSpellId":804232,"name":"Warding Rune","unlockLevel":1,"icon":"/assets/ui/spells/inv_qiraj_jewelglyphed.png","sigil":"WR","description":"Engrave anti-magic runes around you, removing all harmful magic effects and causing harmful magic effects to have no duration when cast on you for 6 seconds.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":1,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804232,"level":1,"description":"Engrave anti-magic runes around you, removing all harmful magic effects and causing harmful magic effects to have no duration when cast on you for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":27},"effects":[{"kind":"utility","effectType":6,"auraType":245,"miscValue":1,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":38,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":6000}]}],"talentEntryId":34610},{"id":"coa-tree-29218","classId":"runemaster","dbcSpellId":500287,"name":"Warpdagger","unlockLevel":1,"icon":"/assets/ui/spells/warpblade.png","sigil":"WA","description":"Toss an enchanted dagger forward in a line. Upon reactivation, you instantly teleport to the location of the dagger and deal 124 + 44% SP + 20% AP Elemental Damage to nearby enemies. Usable while stealthed.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500606,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500287,"level":1,"description":"Toss an enchanted dagger forward in a line. Upon reactivation, you instantly teleport to the location of the dagger and deal 124 + 44% SP + 20% AP Elemental Damage to nearby enemies. Usable while stealthed.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":500,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":500606,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29218},{"id":"coa-tree-34649","classId":"runemaster","dbcSpellId":560992,"name":"Warpmaster","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_archway_01.png","sigil":"WA","description":"Reduces the cooldown of Warpdagger by -5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560992,"level":1,"description":"Reduces the cooldown of Warpdagger by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":11,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":34649},{"id":"coa-tree-30173","classId":"runemaster","dbcSpellId":807376,"name":"Wind Walker","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_windwalkon.png","sigil":"WW","description":"While Runic Tattoos: Air is active, the remaining cooldown of Rune spells is reduced by 5% every 5 sec.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807746,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807529,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807376,"level":1,"description":"While Runic Tattoos: Air is active, the remaining cooldown of Rune spells is reduced by 5% every 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807746,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":23,"miscValue":0,"triggerSpellId":807529,"durationMs":-1},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":30173},{"id":"coa-32-words-of-power-117-705611","classId":"runemaster","dbcSpellId":705611,"name":"Words of Power","unlockLevel":1,"icon":"/assets/ui/spells/_runesauvagepourpre.png","sigil":"WO","description":"Words of PowerRank 1Increases the critical strike chance of Words by 10%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":705610,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705611,"level":1,"description":"Words of PowerRank 1Increases the critical strike chance of Words by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":705610,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":-1}]},{"rank":2,"spellId":705612,"level":1,"description":"Words of PowerRank 2InstantIncreases the critical strike chance of Words by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":7,"triggerSpellId":705610,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":4,"miscValue":34,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-29521","classId":"runemaster","dbcSpellId":712325,"name":"Zenith","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magickeeper_border.png","sigil":"ZE","description":"For 6 seconds, your runic tattoos flare up, increasing your chance to trigger your Weapon Engravings by 100%.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":1,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":138,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":712325,"level":1,"description":"For 6 seconds, your runic tattoos flare up, increasing your chance to trigger your Weapon Engravings by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"utility","effectType":6,"auraType":107,"miscValue":18,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":87,"miscValue":1,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":138,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}],"talentEntryId":29521},{"id":"runemaster-primordial-blast","classId":"runemaster","dbcSpellId":800732,"name":"Primordial Blast","unlockLevel":2,"icon":"/assets/ui/spells/spell_frostfire_orb.png","sigil":"PB","description":"Primordial BlastRank 122% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 25+0+SP*.66+AP*.22 Elemental Damage.","target":"hostile","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":0.4300000071525574,"basePoints":25,"dieSides":3,"pointsPerLevel":1.4057600498199463,"bonusPowerCoefficient":0.4300000071525574,"sourceLevel":2,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800732,"level":2,"description":"Primordial BlastRank 122% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 25+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":0.4300000071525574,"basePoints":25,"dieSides":3,"pointsPerLevel":1.4057600498199463,"bonusPowerCoefficient":0.4300000071525574,"sourceLevel":2,"maxScalingLevel":6},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502823,"level":8,"description":"Primordial BlastRank 222% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 58+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":1.0794133310732634,"basePoints":58,"dieSides":10,"pointsPerLevel":1.497439980506897,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":18},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":800734,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":804568,"durationMs":0}]},{"rank":3,"spellId":502824,"level":20,"description":"Primordial BlastRank 322% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 144+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":1.7712076232546852,"basePoints":144,"dieSides":22,"pointsPerLevel":1.5738400220870972,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":30},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":800734,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":804568,"durationMs":0}]},{"rank":4,"spellId":502825,"level":32,"description":"Primordial BlastRank 422% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 242+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":2.2134751664831285,"basePoints":242,"dieSides":42,"pointsPerLevel":1.5499999523162842,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":42},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":800734,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":804568,"durationMs":0}]},{"rank":5,"spellId":502826,"level":44,"description":"Primordial BlastRank 522% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 306+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"damage","coefficient":2.3501694808572027,"basePoints":306,"dieSides":52,"pointsPerLevel":1.9199999570846558,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":54},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":800734,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":524287,"triggerSpellId":804568,"durationMs":0}]}]},{"id":"coa-32-unleash-essences-119-502591","classId":"runemaster","dbcSpellId":502591,"name":"Unleash Essences","unlockLevel":7,"icon":"/assets/ui/spells/ability_paladin_bladeofjusticeblue.png","sigil":"UE","description":"Unleash EssencesRank 210% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 12 to 14 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","target":"hostile","range":{"min":0,"max":50000},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502591,"level":7,"description":"Unleash EssencesRank 210% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 12 to 14 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":3,"spellId":502592,"level":13,"description":"Unleash EssencesRank 310% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 19 to 22 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":4,"spellId":502593,"level":19,"description":"Unleash EssencesRank 410% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 30 to 35 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":5,"spellId":502594,"level":26,"description":"Unleash EssencesRank 510% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 48 to 56 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":6,"spellId":502595,"level":32,"description":"Unleash EssencesRank 610% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 69 to 80 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":7,"spellId":502596,"level":38,"description":"Unleash EssencesRank 710% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 97 to 111 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":8,"spellId":502597,"level":44,"description":"Unleash EssencesRank 810% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 134 to 152 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":9,"spellId":502598,"level":50,"description":"Unleash EssencesRank 910% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 182 to 204 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":10,"spellId":502599,"level":56,"description":"Unleash EssencesRank 1010% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 244 to 271 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":11,"spellId":502600,"level":63,"description":"Unleash EssencesRank 1110% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 337 to 370 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":12,"spellId":502601,"level":69,"description":"Unleash EssencesRank 1210% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 443 to 482 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]},{"rank":13,"spellId":502602,"level":75,"description":"Unleash EssencesRank 1310% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 578 to 623 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804102,"durationMs":1000}]}]},{"id":"coa-32-inscription-permafrost-119-503423","classId":"runemaster","dbcSpellId":503423,"name":"Inscription: Permafrost","unlockLevel":9,"icon":"/assets/ui/spells/nhi_icestone_border.png","sigil":"IP","description":"Inscription: PermafrostRank 27% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503423,"level":9,"description":"Inscription: PermafrostRank 27% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":3,"spellId":503424,"level":17,"description":"Inscription: PermafrostRank 37% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":4,"spellId":503425,"level":25,"description":"Inscription: PermafrostRank 47% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":5,"spellId":503426,"level":33,"description":"Inscription: PermafrostRank 57% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":6,"spellId":503427,"level":41,"description":"Inscription: PermafrostRank 67% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":7,"spellId":503428,"level":49,"description":"Inscription: PermafrostRank 77% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":8,"spellId":503429,"level":57,"description":"Inscription: PermafrostRank 87% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":9,"spellId":503430,"level":65,"description":"Inscription: PermafrostRank 97% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]},{"rank":10,"spellId":503431,"level":73,"description":"Inscription: PermafrostRank 107% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"status","status":"stun","durationMs":8000},{"kind":"utility","effectType":6,"auraType":294,"miscValue":0,"triggerSpellId":0,"durationMs":8000}]}]},{"id":"coa-32-displace-familiar-117-800741","classId":"runemaster","dbcSpellId":800741,"name":"Displace Familiar","unlockLevel":10,"icon":"/assets/ui/spells/_enslavespell_arcane.png","sigil":"DF","description":"Displace FamiliarRank 17% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 8 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","target":"hostile","range":{"min":0,"max":40},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800741,"level":10,"description":"Displace FamiliarRank 17% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 8 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]},{"rank":2,"spellId":502845,"level":17,"description":"Displace FamiliarRank 27% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 16 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]},{"rank":3,"spellId":502846,"level":22,"description":"Displace FamiliarRank 37% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 36 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]},{"rank":4,"spellId":502847,"level":28,"description":"Displace FamiliarRank 47% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 63 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]},{"rank":5,"spellId":502848,"level":37,"description":"Displace FamiliarRank 57% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 104 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]},{"rank":6,"spellId":502849,"level":45,"description":"Displace FamiliarRank 67% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 158 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]},{"rank":7,"spellId":502850,"level":54,"description":"Displace FamiliarRank 77% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 244 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]},{"rank":8,"spellId":502851,"level":63,"description":"Displace FamiliarRank 87% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 367 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]},{"rank":9,"spellId":502852,"level":72,"description":"Displace FamiliarRank 97% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 542 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","effectType":5,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":2000},{"kind":"utility","effectType":175,"auraType":0,"miscValue":0,"triggerSpellId":800740,"durationMs":2000},{"kind":"utility","effectType":6,"auraType":227,"miscValue":0,"triggerSpellId":804701,"durationMs":2000}]}]},{"id":"coa-32-elder-magi-rune-119-500253","classId":"runemaster","dbcSpellId":500253,"name":"Elder Magi Rune","unlockLevel":10,"icon":"/assets/ui/spells/_runeorcpurple.png","sigil":"EM","description":"Elder Magi RuneRank 110% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 7 to 8 Arcane damage and increases all Arcane damage they take from you by 15% for 15 sec.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.2849999964237213,"basePoints":7,"dieSides":2,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0.2849999964237213,"sourceLevel":10,"maxScalingLevel":10},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500253,"level":10,"description":"Elder Magi RuneRank 110% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 7 to 8 Arcane damage and increases all Arcane damage they take from you by 15% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.2849999964237213,"basePoints":7,"dieSides":2,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0.2849999964237213,"sourceLevel":10,"maxScalingLevel":10},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":15000},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":15000}]},{"rank":2,"spellId":502643,"level":11,"description":"Elder Magi RuneRank 210% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 15 to 18 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.35898077487945557,"basePoints":15,"dieSides":4,"pointsPerLevel":1.0455000400543213,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":20},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502644,"level":21,"description":"Elder Magi RuneRank 310% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 28 to 34 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.5690787059289438,"basePoints":28,"dieSides":7,"pointsPerLevel":1.4505000114440918,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":30},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502645,"level":31,"description":"Elder Magi RuneRank 410% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 44 to 54 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":0.7718876773032589,"basePoints":44,"dieSides":11,"pointsPerLevel":1.8554999828338623,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":40},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502646,"level":41,"description":"Elder Magi RuneRank 510% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 76 to 92 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.0516696316855294,"basePoints":76,"dieSides":17,"pointsPerLevel":2.260499954223633,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":50},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502647,"level":51,"description":"Elder Magi RuneRank 610% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 123 to 146 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.365861091950927,"basePoints":123,"dieSides":24,"pointsPerLevel":2.6654999256134033,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502648,"level":61,"description":"Elder Magi RuneRank 710% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 194 to 211 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.7096512882333053,"basePoints":194,"dieSides":18,"pointsPerLevel":3.070499897003174,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502649,"level":71,"description":"Elder Magi RuneRank 810% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 299 to 326 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.167676385983016,"basePoints":299,"dieSides":28,"pointsPerLevel":3.4755001068115234,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"utility","effectType":165,"auraType":0,"miscValue":804948,"triggerSpellId":500282,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":64,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4062","classId":"runemaster","dbcSpellId":92153,"name":"Fists of Power","unlockLevel":10,"icon":"/assets/ui/spells/novart_magicspell_(14)_border.png","sigil":"FO","description":"Level 10 Passive Runeblade now strikes your target an additional time for 50% of the damage dealt with your offhand weapon.","target":"self","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92153,"level":10,"description":"Level 10 Passive Runeblade now strikes your target an additional time for 50% of the damage dealt with your offhand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","effectType":6,"auraType":4,"miscValue":1,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4062},{"id":"coa-tree-4061","classId":"runemaster","dbcSpellId":92152,"name":"Frost Glyph","unlockLevel":10,"icon":"/assets/ui/spells/70_inscription_vantus_rune_azure.png","sigil":"FG","description":"Level 10 Passive Using Elemental Burst and Primordial Blast now grants you Frost Glyph. Frost GlyphUnleash: Deals 437 Frost Damage and slows movement speed by -30% for 4 seconds.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92152,"level":10,"description":"Level 10 Passive Using Elemental Burst and Primordial Blast now grants you Frost Glyph. Frost GlyphUnleash: Deals 437 Frost Damage and slows movement speed by -30% for 4 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":107,"miscValue":5,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","effectType":6,"auraType":353,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4061},{"id":"coa-32-glyphic-ruin-116-801179","classId":"runemaster","dbcSpellId":801179,"name":"Glyphic Ruin","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GR","description":"Glyphic RuinRank 110% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 82+0+SP*1 Elemental Damage.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.48485333442688,"basePoints":82,"dieSides":20,"pointsPerLevel":1.9864000082015991,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801179,"level":10,"description":"Glyphic RuinRank 110% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 82+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":1.48485333442688,"basePoints":82,"dieSides":20,"pointsPerLevel":1.9864000082015991,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":520067,"level":20,"description":"Glyphic RuinRank 210% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 153+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.2932190486363004,"basePoints":153,"dieSides":36,"pointsPerLevel":3.514400005340576,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":520068,"level":28,"description":"Glyphic RuinRank 310% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 222+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.660207460092944,"basePoints":222,"dieSides":52,"pointsPerLevel":3.416670083999634,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":520069,"level":36,"description":"Glyphic RuinRank 410% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 270+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.676471392313639,"basePoints":270,"dieSides":70,"pointsPerLevel":2.916670083999634,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":520070,"level":44,"description":"Glyphic RuinRank 510% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 311+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":2.8826750254226945,"basePoints":311,"dieSides":90,"pointsPerLevel":3.516669988632202,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":572119,"level":52,"description":"Glyphic RuinRank 610% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 360+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":3.22636815920398,"basePoints":360,"dieSides":110,"pointsPerLevel":4.5,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":572120,"level":60,"description":"Glyphic RuinRank 710% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 457+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":3.4022222476535373,"basePoints":457,"dieSides":135,"pointsPerLevel":4.025000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":572121,"level":70,"description":"Glyphic RuinRank 810% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 633+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":4,"basePoints":633,"dieSides":150,"pointsPerLevel":6.550000190734863,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":76},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":572122,"level":78,"description":"Glyphic RuinRank 910% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 789+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10},"effects":[{"kind":"damage","coefficient":4,"basePoints":789,"dieSides":162,"pointsPerLevel":24.049999237060547,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":80},{"kind":"utility","effectType":32,"auraType":0,"miscValue":0,"triggerSpellId":520882,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-32-smolder-119-801087","classId":"runemaster","dbcSpellId":801087,"name":"Smolder","unlockLevel":11,"icon":"/assets/ui/spells/uico_fire_spell_02_border.png","sigil":"SM","description":"SmolderRank 16% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 19 Fire Damage.","target":"hostile","range":{"min":0,"max":5},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801087,"level":11,"description":"SmolderRank 16% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 19 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502623,"level":18,"description":"SmolderRank 26% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 37 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":3,"spellId":502624,"level":26,"description":"SmolderRank 36% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 65 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":4,"spellId":502625,"level":34,"description":"SmolderRank 46% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 100 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":5,"spellId":502626,"level":42,"description":"SmolderRank 56% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 146 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":6,"spellId":502627,"level":50,"description":"SmolderRank 66% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 219 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":7,"spellId":502628,"level":58,"description":"SmolderRank 76% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 329 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":8,"spellId":502629,"level":66,"description":"SmolderRank 86% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 448 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":9,"spellId":502630,"level":72,"description":"SmolderRank 96% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 568 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":10,"spellId":502631,"level":80,"description":"SmolderRank 106% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 712 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":11,"spellId":502632,"level":88,"description":"SmolderRank 116% of base mana Instant6 sec cooldownRequires Daggers Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 885 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]},{"rank":12,"spellId":502633,"level":82,"description":"SmolderRank 126% of base mana Instant6 sec cooldownRequires One-Handed Axes, Two-Handed Axes Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 1094 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6},"effects":[{"kind":"utility","effectType":121,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":6,"auraType":271,"miscValue":126,"triggerSpellId":0,"durationMs":0},{"kind":"utility","effectType":31,"auraType":0,"miscValue":456703,"triggerSpellId":500271,"durationMs":0}]}]},{"id":"runemaster-elemental-burst","classId":"runemaster","dbcSpellId":502828,"name":"Elemental Burst","unlockLevel":14,"icon":"/assets/ui/spells/nhi_arcanebolt_border.png","sigil":"EB","description":"Elemental BurstRank 212% of base mana 2 sec castBlasts an enemy for 65+0+SP*.55+AP*.05 Elemental Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.2766278255944965,"basePoints":65,"dieSides":11,"pointsPerLevel":2.9333300590515137,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502828,"level":14,"description":"Elemental BurstRank 212% of base mana 2 sec castBlasts an enemy for 65+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.2766278255944965,"basePoints":65,"dieSides":11,"pointsPerLevel":2.9333300590515137,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20}]},{"rank":3,"spellId":502829,"level":22,"description":"Elemental BurstRank 312% of base mana 2 sec castBlasts an enemy for 92+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.3946871886382233,"basePoints":92,"dieSides":11,"pointsPerLevel":2.627739906311035,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28}]},{"rank":4,"spellId":502830,"level":30,"description":"Elemental BurstRank 412% of base mana 2 sec castBlasts an enemy for 140+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.8178992730599863,"basePoints":140,"dieSides":19,"pointsPerLevel":3.2138800621032715,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36}]},{"rank":5,"spellId":502831,"level":38,"description":"Elemental BurstRank 512% of base mana 2 sec castBlasts an enemy for 175+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.8625762117733746,"basePoints":175,"dieSides":21,"pointsPerLevel":2.924989938735962,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44}]},{"rank":6,"spellId":502832,"level":46,"description":"Elemental BurstRank 612% of base mana 2 sec castBlasts an enemy for 213+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.940437134497804,"basePoints":213,"dieSides":23,"pointsPerLevel":2.8499999046325684,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52}]},{"rank":7,"spellId":502833,"level":54,"description":"Elemental BurstRank 712% of base mana 2 sec castBlasts an enemy for 275+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.897826111834982,"basePoints":275,"dieSides":27,"pointsPerLevel":5.775000095367432,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58}]},{"rank":8,"spellId":502834,"level":60,"description":"Elemental BurstRank 812% of base mana 2 sec castBlasts an enemy for 393+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.084444393581814,"basePoints":393,"dieSides":39,"pointsPerLevel":4.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66}]},{"rank":9,"spellId":502835,"level":68,"description":"Elemental BurstRank 912% of base mana 2 sec castBlasts an enemy for 459+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":459,"dieSides":51,"pointsPerLevel":9.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":72}]},{"rank":10,"spellId":502836,"level":74,"description":"Elemental BurstRank 1012% of base mana 2 sec castBlasts an enemy for 549+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":549,"dieSides":55,"pointsPerLevel":24.049999237060547,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":76}]},{"rank":11,"spellId":502837,"level":78,"description":"Elemental BurstRank 1112% of base mana 2 sec castBlasts an enemy for 2716+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":2716,"dieSides":55,"pointsPerLevel":2.700000047683716,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":78}]},{"rank":12,"spellId":502838,"level":80,"description":"Elemental BurstRank 1212% of base mana 2 sec castBlasts an enemy for 3311+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":4,"basePoints":3311,"dieSides":55,"pointsPerLevel":2.700000047683716,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80}]}]},{"id":"coa-32-frigid-blast-116-500118","classId":"runemaster","dbcSpellId":500118,"name":"Frigid Blast","unlockLevel":17,"icon":"/assets/ui/spells/skill_icon_skill40_border.png","sigil":"FB","description":"Blast an enemy with frigid runic magic, dealing cond(gt(SPFR, SPA), 40+0+SPFR*0.65, 40+0+SPA*0.65) Frost damage and applying Frigid Fusion. Frigid Fusion (Aura)Accumulate 20% of your damage dealt to the target over 6 seconds. After the duration, deal it as Frost Damage to the target.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.8157066528995832,"basePoints":40,"dieSides":8,"pointsPerLevel":2.0475199222564697,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500118,"level":17,"description":"Blast an enemy with frigid runic magic, dealing cond(gt(SPFR, SPA), 40+0+SPFR*0.65, 40+0+SPA*0.65) Frost damage and applying Frigid Fusion. Frigid Fusion (Aura)Accumulate 20% of your damage dealt to the target over 6 seconds. After the duration, deal it as Frost Damage to the target.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":0.8157066528995832,"basePoints":40,"dieSides":8,"pointsPerLevel":2.0475199222564697,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502853,"level":24,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.0264950450668988,"basePoints":73,"dieSides":12,"pointsPerLevel":1.7333300113677979,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502854,"level":32,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.0258621324038675,"basePoints":90,"dieSides":16,"pointsPerLevel":1.473330020904541,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502855,"level":40,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.2268679069750237,"basePoints":108,"dieSides":20,"pointsPerLevel":2.1233301162719727,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502856,"level":48,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":1.27999999031188,"basePoints":132,"dieSides":25,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502857,"level":56,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.282159599340018,"basePoints":158,"dieSides":30,"pointsPerLevel":5.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502858,"level":60,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.500000006357829,"basePoints":441,"dieSides":37,"pointsPerLevel":1.725000023841858,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":502859,"level":70,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":2.7522866436079436,"basePoints":501,"dieSides":41,"pointsPerLevel":2.583329916000366,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":76},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":502860,"level":78,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":569,"dieSides":43,"pointsPerLevel":8.600000381469727,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":803225,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-32-warp-shift-117-800120","classId":"runemaster","dbcSpellId":800120,"name":"Warp Shift","unlockLevel":17,"icon":"/assets/ui/spells/spell_nature_massteleport.png","sigil":"WS","description":"Warp ShiftRank 112% of base mana Instant cast30 sec cooldownDeal 45 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","target":"hostile","range":{"min":0,"max":20},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.40400001406669617,"basePoints":45,"dieSides":4,"pointsPerLevel":0.8199999928474426,"bonusPowerCoefficient":0.40400001406669617,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800120,"level":17,"description":"Warp ShiftRank 112% of base mana Instant cast30 sec cooldownDeal 45 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.40400001406669617,"basePoints":45,"dieSides":4,"pointsPerLevel":0.8199999928474426,"bonusPowerCoefficient":0.40400001406669617,"sourceLevel":17,"maxScalingLevel":22},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":2,"spellId":502659,"level":24,"description":"Warp ShiftRank 212% of base mana Instant cast30 sec cooldownDeal 64 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":0.8585983015533186,"basePoints":64,"dieSides":7,"pointsPerLevel":1.3940000534057617,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":3,"spellId":502660,"level":31,"description":"Warp ShiftRank 312% of base mana Instant cast30 sec cooldownDeal 79 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.046768119369728,"basePoints":79,"dieSides":12,"pointsPerLevel":1.934000015258789,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":36},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":4,"spellId":502661,"level":38,"description":"Warp ShiftRank 412% of base mana Instant cast30 sec cooldownDeal 104 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.3019622586808115,"basePoints":104,"dieSides":19,"pointsPerLevel":2.4739999771118164,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":5,"spellId":502662,"level":45,"description":"Warp ShiftRank 512% of base mana Instant cast30 sec cooldownDeal 122 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.5062777625189887,"basePoints":122,"dieSides":28,"pointsPerLevel":3.0139999389648438,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":50},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":6,"spellId":502663,"level":52,"description":"Warp ShiftRank 612% of base mana Instant cast30 sec cooldownDeal 157 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":1.797552213146912,"basePoints":157,"dieSides":40,"pointsPerLevel":3.553999900817871,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":57},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":7,"spellId":502664,"level":59,"description":"Warp ShiftRank 712% of base mana Instant cast30 sec cooldownDeal 246 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":2.4340540439158946,"basePoints":246,"dieSides":54,"pointsPerLevel":4.539999961853027,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":64},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]},{"rank":8,"spellId":502665,"level":66,"description":"Warp ShiftRank 812% of base mana Instant cast30 sec cooldownDeal 379 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12},"effects":[{"kind":"damage","coefficient":3.0596707818930042,"basePoints":379,"dieSides":70,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":73},{"kind":"utility","effectType":183,"auraType":0,"miscValue":0,"triggerSpellId":520525,"durationMs":1000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}]}]},{"id":"coa-32-palm-sigil-arcane-119-805380","classId":"runemaster","dbcSpellId":805380,"name":"Palm Sigil: Arcane","unlockLevel":20,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Palm Sigil: ArcaneRank 14% of base mana 1.5 sec cast Requires StealthEngrave an arcane rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal an additional 5% of the damage dealt as Arcane damage every 3 sec for 12 sec and silences the target for 3 sec. Usable while moving.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807819,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805380,"level":20,"description":"Palm Sigil: ArcaneRank 14% of base mana 1.5 sec cast Requires StealthEngrave an arcane rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal an additional 5% of the damage dealt as Arcane damage every 3 sec for 12 sec and silences the target for 3 sec. Usable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807819,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":6000}]},{"rank":2,"spellId":807322,"level":34,"description":"Palm Sigil: ArcaneRank 24% of base mana 1.5 sec cast Requires StealthEngrave an arcane rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal an additional 8% of the damage dealt as Arcane damage every 3 sec for 12 sec and silences the target for 3 sec. Usable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807819,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":6000}]},{"rank":3,"spellId":807323,"level":50,"description":"Palm Sigil: ArcaneRank 34% of base mana 1.5 sec cast Requires StealthEngrave an arcane rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal an additional 10% of the damage dealt as Arcane damage every 3 sec for 12 sec and silences the target for 3 sec. Usable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807819,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":290,"miscValue":0,"triggerSpellId":0,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":108,"miscValue":15,"triggerSpellId":0,"durationMs":6000}]}]},{"id":"coa-32-scrying-orb-481-804674","classId":"runemaster","dbcSpellId":804674,"name":"Scrying Orb","unlockLevel":22,"icon":"/assets/ui/spells/spell_druid_momentofclarity.png","sigil":"SO","description":"Scrying OrbRank 122% of base mana ChanneledConjure a Scrying Orb for 1 min that you can control directly and see through.","target":"hostile","range":{"min":0,"max":25},"radius":8,"castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50038,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804674,"level":22,"description":"Scrying OrbRank 122% of base mana ChanneledConjure a Scrying Orb for 1 min that you can control directly and see through.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":22},"effects":[{"kind":"utility","effectType":28,"auraType":0,"miscValue":50038,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","effectType":6,"auraType":4,"miscValue":0,"triggerSpellId":0,"durationMs":60000}]}]},{"id":"runemaster-runed-cascade","classId":"runemaster","dbcSpellId":804128,"name":"Runed Cascade","unlockLevel":27,"icon":"/assets/ui/spells/nhi_arcanebeam_border.png","sigil":"RC","description":"Runed CascadeRank 111% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 133 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":2.0341276857588024,"basePoints":133,"dieSides":28,"pointsPerLevel":4.066669940948486,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":30},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":804128,"level":27,"description":"Runed CascadeRank 111% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 133 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":2.0341276857588024,"basePoints":133,"dieSides":28,"pointsPerLevel":4.066669940948486,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":30},{"kind":"utility","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":503395,"level":32,"description":"Runed CascadeRank 211% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 167 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":2.3494081970647716,"basePoints":167,"dieSides":1,"pointsPerLevel":5.13332986831665,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":35},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503396,"level":37,"description":"Runed CascadeRank 311% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 208 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":2.85128207390125,"basePoints":208,"dieSides":1,"pointsPerLevel":6.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":40},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503397,"level":42,"description":"Runed CascadeRank 411% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 269 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":3.6035096464101333,"basePoints":269,"dieSides":1,"pointsPerLevel":8.266670227050781,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":45},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":503398,"level":47,"description":"Runed CascadeRank 511% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 307 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":3.975268769007857,"basePoints":307,"dieSides":1,"pointsPerLevel":9.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":50},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":503399,"level":52,"description":"Runed CascadeRank 611% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 360 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":360,"dieSides":1,"pointsPerLevel":11.066699981689453,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":55},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":503400,"level":57,"description":"Runed CascadeRank 711% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 476 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":476,"dieSides":1,"pointsPerLevel":11.399999618530273,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":60},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":503401,"level":62,"description":"Runed CascadeRank 811% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 1081 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11},"effects":[{"kind":"damage","coefficient":4,"basePoints":1081,"dieSides":1,"pointsPerLevel":4.974999904632568,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":70},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":524988,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-32-thaumaturgy-116-804550","classId":"runemaster","dbcSpellId":804550,"name":"Thaumaturgy","unlockLevel":29,"icon":"/assets/ui/spells/spell_nature_elementalprecision_2.png","sigil":"TH","description":"ThaumaturgyRank 18% of base mana Instant cast15 sec cooldownBlast an enemy for 67+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","target":"hostile","range":{"min":0,"max":35},"radius":0,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.9204943116867181,"basePoints":67,"dieSides":2,"pointsPerLevel":1.8622499704360962,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804551,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804550,"level":29,"description":"ThaumaturgyRank 18% of base mana Instant cast15 sec cooldownBlast an enemy for 67+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.9204943116867181,"basePoints":67,"dieSides":2,"pointsPerLevel":1.8622499704360962,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804551,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":520071,"level":36,"description":"ThaumaturgyRank 28% of base mana Instant cast15 sec cooldownBlast an enemy for 98+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":0.9452365925109464,"basePoints":98,"dieSides":7,"pointsPerLevel":1.2116999626159668,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":44},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804551,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":520072,"level":46,"description":"ThaumaturgyRank 38% of base mana Instant cast15 sec cooldownBlast an enemy for 117+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":1.005859986029036,"basePoints":117,"dieSides":12,"pointsPerLevel":1.3385299444198608,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":54},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804551,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":520073,"level":56,"description":"ThaumaturgyRank 48% of base mana Instant cast15 sec cooldownBlast an enemy for 165+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":2.2450703723889562,"basePoints":165,"dieSides":17,"pointsPerLevel":5.449999809265137,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804551,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":520074,"level":60,"description":"ThaumaturgyRank 58% of base mana Instant cast15 sec cooldownBlast an enemy for 523+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":2.6811555629306367,"basePoints":523,"dieSides":24,"pointsPerLevel":1.1460000276565552,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":74},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804551,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":520075,"level":76,"description":"ThaumaturgyRank 68% of base mana Instant cast15 sec cooldownBlast an enemy for 590+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":4,"basePoints":590,"dieSides":34,"pointsPerLevel":8.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804551,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":520076,"level":80,"description":"ThaumaturgyRank 78% of base mana Instant cast15 sec cooldownBlast an enemy for 1318+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8},"effects":[{"kind":"damage","coefficient":4,"basePoints":1318,"dieSides":48,"pointsPerLevel":1.8641599416732788,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"utility","effectType":64,"auraType":0,"miscValue":0,"triggerSpellId":804551,"durationMs":0},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-32-palm-sigil-frost-119-805381","classId":"runemaster","dbcSpellId":805381,"name":"Palm Sigil: Frost","unlockLevel":34,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Palm Sigil: FrostRank 14% of base mana 1.5 sec cast Requires StealthEngrave a frost rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal 30% of the damage dealt as Frost damage and slow the enemy's movement speed by 70% for 8 sec. Usable while moving.","target":"hostile","range":{"min":0,"max":0},"radius":0,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807825,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":808022,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805381,"level":34,"description":"Palm Sigil: FrostRank 14% of base mana 1.5 sec cast Requires StealthEngrave a frost rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal 30% of the damage dealt as Frost damage and slow the enemy's movement speed by 70% for 8 sec. Usable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","effectType":6,"auraType":354,"miscValue":0,"triggerSpellId":807825,"durationMs":6000},{"kind":"utility","effectType":6,"auraType":42,"miscValue":0,"triggerSpellId":808022,"durationMs":6000},{"kind":"utility","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}]}]}]},"resourcesByClass":{"barbarian":{"type":"energy","name":"Energy","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"witch-doctor":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"felsworn":{"type":"rage","name":"Felfury","color":"#a330c9","maximum":100,"initial":0,"regenerationPerSecond":5},"witch-hunter":{"type":"rage","name":"Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"stormbringer":{"type":"mana","name":"Mana / Static","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"knight-of-xoroth":{"type":"rage","name":"Deathfire","color":"#d64747","maximum":100,"initial":0,"regenerationPerSecond":5},"guardian":{"type":"energy","name":"Energy","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"templar":{"type":"energy","name":"Energy / Holy Runes","color":"#00d989","maximum":100,"initial":100,"regenerationPerSecond":10},"bloodmage":{"type":"rage","name":"Sanguine Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"ranger":{"type":"energy","name":"Focus","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"chronomancer":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"necromancer":{"type":"mana","name":"Mana / Runic Power","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"pyromancer":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"cultist":{"type":"mana","name":"Mana / Insanity","color":"#6950a1","maximum":100,"initial":100,"regenerationPerSecond":4},"starcaller":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"sun-cleric":{"type":"mana","name":"Solar Mana","color":"#dcae35","maximum":100,"initial":100,"regenerationPerSecond":4},"tinker":{"type":"energy","name":"Energy / Ammunition","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"venomancer":{"type":"mana","name":"Venom","color":"#65a43a","maximum":100,"initial":100,"regenerationPerSecond":4},"reaper":{"type":"mana","name":"Souls","color":"#6950a1","maximum":100,"initial":100,"regenerationPerSecond":4},"primalist":{"type":"rage","name":"Primal Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"runemaster":{"type":"mana","name":"Mana / Runes","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4}}} +{"schemaVersion":1,"abilitiesByClass":{"barbarian":[{"id":"coa-tree-30762","classId":"barbarian","dbcSpellId":500918,"name":"Ancestral Roar","unlockLevel":1,"icon":"/assets/ui/spells/_d3threateningshout.png","sigil":"AR","description":"Ancestral RoarRank 1Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 100+0+AP*0.5.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.6580645243326824,"basePoints":100,"dieSides":7,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500918,"level":1,"description":"Ancestral RoarRank 1Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 100+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.6580645243326824,"basePoints":100,"dieSides":7,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30762},{"id":"coa-12-ancestral-spirit-47-705153","classId":"barbarian","dbcSpellId":705153,"name":"Ancestral Spirit","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Ancestral SpiritRank 1Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705153:effect:0:aura:108","name":"Ancestral Spirit (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705153:effect:1:aura:108","name":"Ancestral Spirit (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705153,"level":1,"description":"Ancestral SpiritRank 1Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705153:effect:0:aura:108","name":"Ancestral Spirit (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705153:effect:1:aura:108","name":"Ancestral Spirit (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":705154,"level":1,"description":"Ancestral SpiritRank 2Reduces the Energy cost of your Spirit spells and increases the duration of your Shouts by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705154:effect:0:aura:108","name":"Ancestral Spirit (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705154:effect:1:aura:108","name":"Ancestral Spirit (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-34279","classId":"barbarian","dbcSpellId":560456,"name":"Athleticism","unlockLevel":1,"icon":"/assets/ui/spells/5_run_border.png","sigil":"AT","description":"Increases your Energy regeneration by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560456:effect:0:aura:110","name":"Athleticism (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560456,"level":1,"description":"Increases your Energy regeneration by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560456:effect:0:aura:110","name":"Athleticism (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34279},{"id":"barbarian-barbaric-strike","classId":"barbarian","dbcSpellId":801787,"name":"Barbaric Strike","unlockLevel":1,"icon":"/assets/ui/spells/warrior_wild_strike.png","sigil":"BS","description":"Barbaric StrikeRank 160 Energy Instant6 sec cooldownRequires Weapon \"Strikes an enemy for Weapon Damage plus 2 to 3 and applies 2 stacks of Carnage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801787,"level":1,"description":"Barbaric StrikeRank 160 Energy Instant6 sec cooldownRequires Weapon \"Strikes an enemy for Weapon Damage plus 2 to 3 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}]},{"rank":2,"spellId":501036,"level":11,"description":"Barbaric StrikeRank 260 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 5 to 6 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}]},{"rank":3,"spellId":501037,"level":21,"description":"Barbaric StrikeRank 360 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 10 to 11 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}]},{"rank":4,"spellId":501038,"level":31,"description":"Barbaric StrikeRank 460 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 18 to 19 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}]},{"rank":5,"spellId":501039,"level":41,"description":"Barbaric StrikeRank 560 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 30 to 31 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}]},{"rank":6,"spellId":501040,"level":51,"description":"Barbaric StrikeRank 660 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 48 to 49 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}]},{"rank":7,"spellId":501041,"level":61,"description":"Barbaric StrikeRank 760 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 73 to 74 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}]},{"rank":8,"spellId":501042,"level":71,"description":"Barbaric StrikeRank 860 Energy Instant6 sec cooldownRequires Weapon Strikes an enemy for Weapon Damage plus 107 to 108 and applies 2 stacks of Carnage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500917},{"kind":"trigger-spell","spellId":500917}]}]},{"id":"coa-tree-14303","classId":"barbarian","dbcSpellId":800193,"name":"Battle Rhythm","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_2h_orcwarrior_c_01.png","sigil":"BR","description":"Critical strikes with abilities now generate 5 Energy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800193:effect:0:aura:42","name":"Battle Rhythm (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800193:proc:0:800951","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800951}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800951}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800193,"level":1,"description":"Critical strikes with abilities now generate 5 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800193:effect:0:aura:42","name":"Battle Rhythm (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800193:proc:0:800951","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800951}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800951}]}],"talentEntryId":14303},{"id":"coa-tree-34276","classId":"barbarian","dbcSpellId":561322,"name":"Bellowing Voice","unlockLevel":1,"icon":"/assets/ui/spells/ability_fomor_boss_shout.png","sigil":"BV","description":"Increases the effectiveness of your Shouts by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561322:effect:0:aura:108","name":"Bellowing Voice (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561322,"level":1,"description":"Increases the effectiveness of your Shouts by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561322:effect:0:aura:108","name":"Bellowing Voice (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":34276},{"id":"coa-tree-30163","classId":"barbarian","dbcSpellId":804138,"name":"Berserker Axe","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_draenorcrafted_d_02_a_horde.png","sigil":"BA","description":"Berserker AxeRank 130 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","target":"hostile","range":{"min":5,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804138,"level":1,"description":"Berserker AxeRank 130 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":30163},{"id":"coa-tree-34303","classId":"barbarian","dbcSpellId":805821,"name":"Blood and Glory","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_operator_thogar.png","sigil":"BA","description":"Taking damage while at or below 35% maximum health now grants you 20% increased healing received and -10% reduced damage taken.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805821:effect:0:aura:42","name":"Blood and Glory (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805821:proc:0:805822","triggers":["heal","damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805822}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805822}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805821,"level":1,"description":"Taking damage while at or below 35% maximum health now grants you 20% increased healing received and -10% reduced damage taken.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805821:effect:0:aura:42","name":"Blood and Glory (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805821:proc:0:805822","triggers":["heal","damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805822}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805822}]}],"talentEntryId":34303},{"id":"coa-tree-4297","classId":"barbarian","dbcSpellId":801767,"name":"Bloodbound","unlockLevel":1,"icon":"/assets/ui/spells/_d3gargantuan.png","sigil":"BL","description":"Reduces the cooldown of your Warband by -30 sec and Ancestral Roar by -5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801767:effect:0:aura:107","name":"Bloodbound (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801767:effect:1:aura:107","name":"Bloodbound (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801767,"level":1,"description":"Reduces the cooldown of your Warband by -30 sec and Ancestral Roar by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801767:effect:0:aura:107","name":"Bloodbound (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801767:effect:1:aura:107","name":"Bloodbound (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":4297},{"id":"coa-tree-11302","classId":"barbarian","dbcSpellId":707583,"name":"Bloody Onslaught","unlockLevel":1,"icon":"/assets/ui/spells/inv_fishing_bait_spinefinpiranha.png","sigil":"BO","description":"Increases the duration of Onslaught by 6 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707583:effect:0:aura:4","name":"Bloody Onslaught (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707583:effect:1:aura:107","name":"Bloody Onslaught (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":60}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707583,"level":1,"description":"Increases the duration of Onslaught by 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707583:effect:0:aura:4","name":"Bloody Onslaught (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707583:effect:1:aura:107","name":"Bloody Onslaught (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":60}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":11302},{"id":"coa-tree-5373","classId":"barbarian","dbcSpellId":800131,"name":"Born Killer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_trinket6oih_ironskull1.png","sigil":"BK","description":"Killing an enemy that yields experience or honor now grants you 5% increased armor penetration and movement speed for 5 seconds, stacking 20 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800131:effect:0:aura:42","name":"Born Killer (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800131:proc:0:802760","triggers":["kill"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802760}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":802760}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800131,"level":1,"description":"Killing an enemy that yields experience or honor now grants you 5% increased armor penetration and movement speed for 5 seconds, stacking 20 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800131:effect:0:aura:42","name":"Born Killer (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800131:proc:0:802760","triggers":["kill"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802760}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":802760}]}],"talentEntryId":5373},{"id":"coa-12-bottomless-tankard-47-705160","classId":"barbarian","dbcSpellId":705160,"name":"Bottomless Tankard","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_beerhat_a_01.png","sigil":"BT","description":"Bottomless TankardRank 2Reduces the cooldown of Tankard Toss by 30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705160:effect:0:aura:107","name":"Bottomless Tankard (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705160,"level":1,"description":"Bottomless TankardRank 2Reduces the cooldown of Tankard Toss by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705160:effect:0:aura:107","name":"Bottomless Tankard (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-12-boulderfist-41-705184","classId":"barbarian","dbcSpellId":705184,"name":"Boulderfist","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_110.png","sigil":"BO","description":"BoulderfistRank 1Reduces the Energy cost of Wrecker by 15.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705184:effect:0:aura:107","name":"Boulderfist (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705184,"level":1,"description":"BoulderfistRank 1Reduces the Energy cost of Wrecker by 15.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705184:effect:0:aura:107","name":"Boulderfist (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]},{"rank":2,"spellId":705185,"level":1,"description":"BoulderfistRank 2Reduces the Energy cost of Wrecker by 30.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705185:effect:0:aura:107","name":"Boulderfist (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-tree-34299","classId":"barbarian","dbcSpellId":804746,"name":"Dauntless","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate_nightmare.png","sigil":"DA","description":"Dealing damage with Whirling Advance now dispels 1 movement slowing effect from you and refunds 2 Energy.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804746:effect:0:aura:42","name":"Dauntless (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804746:proc:0:560916","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560916}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560916}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804746,"level":1,"description":"Dealing damage with Whirling Advance now dispels 1 movement slowing effect from you and refunds 2 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804746:effect:0:aura:42","name":"Dauntless (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804746:proc:0:560916","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560916}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560916}]}],"talentEntryId":34299},{"id":"coa-tree-30870","classId":"barbarian","dbcSpellId":806228,"name":"Defiance","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_bloodsurge.png","sigil":"DE","description":"Attempt to defy death, reducing all damage taken by 30% to 80% based on your current missing health for 15 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806228:effect:0:aura:4","name":"Defiance (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":64,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806228:effect:1:aura:87","name":"Defiance (Aura 87)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806228,"level":1,"description":"Attempt to defy death, reducing all damage taken by 30% to 80% based on your current missing health for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806228:effect:0:aura:4","name":"Defiance (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":64,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806228:effect:1:aura:87","name":"Defiance (Aura 87)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":30870},{"id":"coa-12-empty-kegs-47-706346","classId":"barbarian","dbcSpellId":706346,"name":"Empty Kegs","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_beer_01.png","sigil":"EK","description":"Empty KegsRank 1Reduces the Energy cost of Keg Smash by 10 and increases its range by $s2yd.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706346:effect:0:aura:107","name":"Empty Kegs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706346:effect:1:aura:107","name":"Empty Kegs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706346,"level":1,"description":"Empty KegsRank 1Reduces the Energy cost of Keg Smash by 10 and increases its range by $s2yd.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706346:effect:0:aura:107","name":"Empty Kegs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706346:effect:1:aura:107","name":"Empty Kegs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]},{"rank":2,"spellId":706347,"level":1,"description":"Empty KegsRank 2Reduces the Energy cost of Keg Smash by 20 and increases its range by $s2yd.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706347:effect:0:aura:107","name":"Empty Kegs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706347:effect:1:aura:107","name":"Empty Kegs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]}]},{"id":"coa-tree-6803","classId":"barbarian","dbcSpellId":705238,"name":"Entrails","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_lifedrain.png","sigil":"EN","description":"Damage dealt by bleed effects now increases your Agility by 1% for 8 seconds, stacking 10 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705238:effect:0:aura:42","name":"Entrails (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705238:proc:0:783102","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":783102}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":783102}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705238,"level":1,"description":"Damage dealt by bleed effects now increases your Agility by 1% for 8 seconds, stacking 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705238:effect:0:aura:42","name":"Entrails (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705238:proc:0:783102","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":783102}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":783102}]}],"talentEntryId":6803},{"id":"coa-tree-4001","classId":"barbarian","dbcSpellId":92081,"name":"Excessive Power","unlockLevel":1,"icon":"/assets/ui/spells/_orc_06.png","sigil":"EP","description":"Level 10 Passive Increases your maximum Energy by 100%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92081:effect:0:aura:132","name":"Excessive Power (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92081:effect:1:aura:240","name":"Excessive Power (Aura 240)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"expertise","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":240,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92081,"level":1,"description":"Level 10 Passive Increases your maximum Energy by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92081:effect:0:aura:132","name":"Excessive Power (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92081:effect:1:aura:240","name":"Excessive Power (Aura 240)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"expertise","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":240,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4001},{"id":"coa-tree-29608","classId":"barbarian","dbcSpellId":706354,"name":"Face Smasher","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_innerrage.png","sigil":"FS","description":"Your ability critical strikes now reduce the cooldown of your Battle Vigor and Thick Skull by -1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706354:effect:0:aura:42","name":"Face Smasher (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706354:proc:0:562323","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":562323}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":562323}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706354,"level":1,"description":"Your ability critical strikes now reduce the cooldown of your Battle Vigor and Thick Skull by -1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706354:effect:0:aura:42","name":"Face Smasher (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706354:proc:0:562323","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":562323}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":562323}]}],"talentEntryId":29608},{"id":"coa-tree-4003","classId":"barbarian","dbcSpellId":92083,"name":"Fill Level","unlockLevel":1,"icon":"/assets/ui/spells/spell_brew_wheat.png","sigil":"FL","description":"Level 10 Passive Grants you Fill Level and the ability to manipulate a Tankard.Fill LevelYou have a magical Tankard that fills up over time, granting you 1 stack of Fill Level every 2 sec. Some of your other abilities empty your Tankard to trigger with a reduced cooldown.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92083:effect:0:aura:4","name":"Fill Level (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92083,"level":1,"description":"Level 10 Passive Grants you Fill Level and the ability to manipulate a Tankard.Fill LevelYou have a magical Tankard that fills up over time, granting you 1 stack of Fill Level every 2 sec. Some of your other abilities empty your Tankard to trigger with a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92083:effect:0:aura:4","name":"Fill Level (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4003},{"id":"coa-tree-29803","classId":"barbarian","dbcSpellId":560906,"name":"First Blood","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_skirmisher.png","sigil":"FB","description":"Increases all damage dealt to enemies above 80% health by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560906:effect:0:aura:303","name":"First Blood (Aura 303)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":303,"miscValue":28,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560906,"level":1,"description":"Increases all damage dealt to enemies above 80% health by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560906:effect:0:aura:303","name":"First Blood (Aura 303)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":303,"miscValue":28,"triggerSpellId":0}]}],"talentEntryId":29803},{"id":"coa-tree-30770","classId":"barbarian","dbcSpellId":707207,"name":"Forward Advance","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_whirlpool_b_01.png","sigil":"FA","description":"Increases the range of your Whirling Advance by 3 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707207:effect:0:aura:107","name":"Forward Advance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707207,"level":1,"description":"Increases the range of your Whirling Advance by 3 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707207:effect:0:aura:107","name":"Forward Advance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}]}],"talentEntryId":30770},{"id":"coa-12-frothing-41-706326","classId":"barbarian","dbcSpellId":706326,"name":"Frothing","unlockLevel":1,"icon":"/assets/ui/spells/inv_tourofdutyzuldazar.png","sigil":"FR","description":"FrothingRank 1Increases the critical strike chance of Savage Strike by 8% and causes it to strike 1 additional nearby enemy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706326:effect:0:aura:107","name":"Frothing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706326:effect:1:aura:107","name":"Frothing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706326,"level":1,"description":"FrothingRank 1Increases the critical strike chance of Savage Strike by 8% and causes it to strike 1 additional nearby enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706326:effect:0:aura:107","name":"Frothing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706326:effect:1:aura:107","name":"Frothing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":2,"spellId":706327,"level":1,"description":"FrothingRank 2Increases the critical strike chance of Savage Strike by 15% and causes it to strike 2 additional nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706327:effect:0:aura:107","name":"Frothing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706327:effect:1:aura:107","name":"Frothing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}]},{"id":"coa-tree-4002","classId":"barbarian","dbcSpellId":92082,"name":"Headhunter","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_2h_artifactmaw_d_01.png","sigil":"HE","description":"Level 10 Passive Reduces the Energy cost of Throw Weapon, Maiming Spear, and Whirling Advance by -15.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92082:effect:0:aura:4","name":"Headhunter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92082,"level":1,"description":"Level 10 Passive Reduces the Energy cost of Throw Weapon, Maiming Spear, and Whirling Advance by -15.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92082:effect:0:aura:4","name":"Headhunter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4002},{"id":"coa-tree-29793","classId":"barbarian","dbcSpellId":804137,"name":"Headhunter's Spear","unlockLevel":1,"icon":"/assets/ui/spells/headhunting_spear.png","sigil":"HS","description":"Hurl a light spear at an enemy dealing 140% Ranged Weapon Damage plus 21 and restores 30% of your maximum Energy.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.4},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804137,"level":1,"description":"Hurl a light spear at an enemy dealing 140% Ranged Weapon Damage plus 21 and restores 30% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.4},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29793},{"id":"coa-tree-30767","classId":"barbarian","dbcSpellId":800152,"name":"Hodir's Wrath","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_icegiant_01.png","sigil":"HS","description":"Erupt with the power of Hodir, dealing 1361 + 120% AP Frost damage to nearby enemies and restoring 100% of your maximum Energy.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"damage","coefficient":4,"basePoints":1361,"dieSides":198,"pointsPerLevel":68,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800152,"level":1,"description":"Erupt with the power of Hodir, dealing 1361 + 120% AP Frost damage to nearby enemies and restoring 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"damage","coefficient":4,"basePoints":1361,"dieSides":198,"pointsPerLevel":68,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60}]}],"talentEntryId":30767},{"id":"barbarian-impaling-rush","classId":"barbarian","dbcSpellId":500009,"name":"Impaling Rush","unlockLevel":1,"icon":"/assets/ui/spells/_d3furiouscharge.png","sigil":"IR","description":"Impaling RushRank 115 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500009:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500009:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:500009:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500009,"level":1,"description":"Impaling RushRank 115 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500009:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500009:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:500009:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":2,"spellId":501043,"level":9,"description":"Impaling RushRank 215 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501043:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501043:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501043:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":3,"spellId":501044,"level":17,"description":"Impaling RushRank 315 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec..","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501044:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501044:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501044:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":4,"spellId":501045,"level":25,"description":"Impaling RushRank 415 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501045:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501045:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501045:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":5,"spellId":501046,"level":33,"description":"Impaling RushRank 515 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501046:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501046:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501046:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":6,"spellId":501047,"level":41,"description":"Impaling RushRank 615 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501047:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501047:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501047:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":7,"spellId":501048,"level":49,"description":"Impaling RushRank 715 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501048:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501048:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501048:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":8,"spellId":501049,"level":57,"description":"Impaling RushRank 815 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501049:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501049:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501049:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":9,"spellId":501050,"level":65,"description":"Impaling RushRank 915 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501050:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501050:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501050:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]},{"rank":10,"spellId":501051,"level":73,"description":"Impaling RushRank 1015 Energy Instant20 sec cooldownIncreases your movement speed by 40% for 5 sec. Your next attack within the duration will consume the effect to impale your target, causing them to Bleed for 40 Physical damage every 1 sec for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501051:effect:0:aura:31","name":"Impaling Rush (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501051:effect:1:aura:231","name":"Impaling Rush (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:501051:proc:1:500006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":500006}]}]},{"id":"coa-12-improved-ancestral-combat-47-705209","classId":"barbarian","dbcSpellId":705209,"name":"Improved Ancestral Combat","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_82.png","sigil":"IA","description":"Improved Ancestral CombatRank 1Reduces the Energy cost of your Ancestral Combat by 10 and allows it to trigger 3 additional times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705209:effect:0:aura:107","name":"Improved Ancestral Combat (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705209:effect:1:aura:107","name":"Improved Ancestral Combat (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705209,"level":1,"description":"Improved Ancestral CombatRank 1Reduces the Energy cost of your Ancestral Combat by 10 and allows it to trigger 3 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705209:effect:0:aura:107","name":"Improved Ancestral Combat (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705209:effect:1:aura:107","name":"Improved Ancestral Combat (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0}]},{"rank":2,"spellId":705210,"level":1,"description":"Improved Ancestral CombatRank 2Reduces the Energy cost of your Ancestral Combat by 20 and allows it to trigger 6 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705210:effect:0:aura:107","name":"Improved Ancestral Combat (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705210:effect:1:aura:107","name":"Improved Ancestral Combat (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0}]}]},{"id":"coa-12-improved-thunderous-leap-47-705215","classId":"barbarian","dbcSpellId":705215,"name":"Improved Thunderous Leap","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_iceboundfortitude.png","sigil":"IT","description":"Improved Thunderous LeapRank 2Instant castReduces the Energy cost of Thunderous Leap by 40 and its cooldown by 60 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705215:effect:0:aura:107","name":"Improved Thunderous Leap (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705215:effect:1:aura:107","name":"Improved Thunderous Leap (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705215,"level":1,"description":"Improved Thunderous LeapRank 2Instant castReduces the Energy cost of Thunderous Leap by 40 and its cooldown by 60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705215:effect:0:aura:107","name":"Improved Thunderous Leap (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705215:effect:1:aura:107","name":"Improved Thunderous Leap (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-34295","classId":"barbarian","dbcSpellId":707721,"name":"Iron Gut","unlockLevel":1,"icon":"/assets/ui/spells/5_warriorskill44_border.png","sigil":"IG","description":"Reduces the duration of poison effects on you by -40%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707721:effect:0:aura:245","name":"Iron Gut (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":4,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707721,"level":1,"description":"Reduces the duration of poison effects on you by -40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707721:effect:0:aura:245","name":"Iron Gut (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":4,"triggerSpellId":0}]}],"talentEntryId":34295},{"id":"coa-tree-29783","classId":"barbarian","dbcSpellId":802792,"name":"Jawbreaker","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_bastion_of_twilight_halfus_wyrmbreaker.png","sigil":"JA","description":"Attempt to break an enemy's jaw, interrupting them and preventing any spell from that school from being cast for 4 seconds.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":14000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"interrupt","lockoutMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802792,"level":1,"description":"Attempt to break an enemy's jaw, interrupting them and preventing any spell from that school from being cast for 4 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":14000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"interrupt","lockoutMs":4000}]}],"talentEntryId":29783},{"id":"coa-tree-6871","classId":"barbarian","dbcSpellId":705196,"name":"Knockout Artist","unlockLevel":1,"icon":"/assets/ui/spells/item_onepunch.png","sigil":"KA","description":"Successfully interrupting a target with Jawbreaker now increases your haste by 30% for 4 seconds and refunds half its Energy cost.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705196:effect:0:aura:42","name":"Knockout Artist (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705196:proc:0:804862","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804862}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804862},{"kind":"apply-aura","aura":{"id":"coa:705196:effect:1:aura:4","name":"Knockout Artist (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705196,"level":1,"description":"Successfully interrupting a target with Jawbreaker now increases your haste by 30% for 4 seconds and refunds half its Energy cost.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705196:effect:0:aura:42","name":"Knockout Artist (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705196:proc:0:804862","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804862}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804862},{"kind":"apply-aura","aura":{"id":"coa:705196:effect:1:aura:4","name":"Knockout Artist (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6871},{"id":"coa-tree-30166","classId":"barbarian","dbcSpellId":706804,"name":"Legacy of the Amani","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(25)_border.png","sigil":"LO","description":"Damage dealt by your Spears now has a 25% chance to cause you to quickly throw an additional spear that strikes for 40% of the damage dealt.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706804:effect:0:aura:354","name":"Legacy of the Amani (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":707660}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706804,"level":1,"description":"Damage dealt by your Spears now has a 25% chance to cause you to quickly throw an additional spear that strikes for 40% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706804:effect:0:aura:354","name":"Legacy of the Amani (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":707660}]}],"talentEntryId":30166},{"id":"coa-12-leroys-legacy-47-706350","classId":"barbarian","dbcSpellId":706350,"name":"Leroy's Legacy","unlockLevel":1,"icon":"/assets/ui/spells/_d3furiouscharge.png","sigil":"LS","description":"Leroy's LegacyRank 1Reduces the Energy cost of Whirling Advance by 100% and increases its distance by $s2yd.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706350:effect:0:aura:108","name":"Leroy's Legacy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706350:effect:1:aura:107","name":"Leroy's Legacy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706350,"level":1,"description":"Leroy's LegacyRank 1Reduces the Energy cost of Whirling Advance by 100% and increases its distance by $s2yd.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706350:effect:0:aura:108","name":"Leroy's Legacy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706350:effect:1:aura:107","name":"Leroy's Legacy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}]},{"rank":2,"spellId":706351,"level":1,"description":"Leroy's LegacyRank 2Reduces the Energy cost of Whirling Advance by 100% and increases its distance by $s2yd.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706351:effect:0:aura:108","name":"Leroy's Legacy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706351:effect:1:aura:107","name":"Leroy's Legacy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}]}]},{"id":"coa-tree-30162","classId":"barbarian","dbcSpellId":804139,"name":"Maiming Spear","unlockLevel":1,"icon":"/assets/ui/spells/maiming_spear.png","sigil":"MS","description":"Throw your ranged weapon at your enemy's legs, dealing 100% Ranged Weapon Damage plus 2 and slowing their movement speed by -50% for 10 seconds.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804139:effect:2:aura:33","name":"Maiming Spear (Aura 33)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.5}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804139,"level":1,"description":"Throw your ranged weapon at your enemy's legs, dealing 100% Ranged Weapon Damage plus 2 and slowing their movement speed by -50% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804139:effect:2:aura:33","name":"Maiming Spear (Aura 33)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.5}]}],"talentEntryId":30162},{"id":"coa-tree-34320","classId":"barbarian","dbcSpellId":705206,"name":"Ogre's Endurance","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_highmaul_king.png","sigil":"OS","description":"Increases your healing received by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705206:effect:0:aura:118","name":"Ogre's Endurance (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705206:effect:1:aura:4","name":"Ogre's Endurance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705206,"level":1,"description":"Increases your healing received by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705206:effect:0:aura:118","name":"Ogre's Endurance (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705206:effect:1:aura:4","name":"Ogre's Endurance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34320},{"id":"coa-tree-29322","classId":"barbarian","dbcSpellId":801759,"name":"Outrage","unlockLevel":1,"icon":"/assets/ui/spells/_d3frenzy.png","sigil":"OU","description":"Requires Enraged Increases your haste and critical strike chance by 20%, but increases your damage taken by 30% for 10 seconds. Physical critical strikes extend this effect by 1 sec.","target":"self","range":{"min":0,"max":0},"radius":0.5,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801759:effect:0:aura:290","name":"Outrage (Aura 290)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801759:effect:1:aura:87","name":"Outrage (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801759:effect:2:aura:192","name":"Outrage (Aura 192)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801759,"level":1,"description":"Requires Enraged Increases your haste and critical strike chance by 20%, but increases your damage taken by 30% for 10 seconds. Physical critical strikes extend this effect by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801759:effect:0:aura:290","name":"Outrage (Aura 290)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801759:effect:1:aura:87","name":"Outrage (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801759:effect:2:aura:192","name":"Outrage (Aura 192)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29322},{"id":"coa-tree-13168","classId":"barbarian","dbcSpellId":561314,"name":"Plugging the Hole","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_bloodfog_border.png","sigil":"PT","description":"Your Skull Smash now removes all bleed effects on the enemy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561314:effect:0:aura:107","name":"Plugging the Hole (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561314:effect:1:aura:42","name":"Plugging the Hole (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:561314:proc:1:560460","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560460}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":524287,"triggerSpellId":560460}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561314,"level":1,"description":"Your Skull Smash now removes all bleed effects on the enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561314:effect:0:aura:107","name":"Plugging the Hole (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561314:effect:1:aura:42","name":"Plugging the Hole (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:561314:proc:1:560460","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560460}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":524287,"triggerSpellId":560460}]}],"talentEntryId":13168},{"id":"coa-12-punisher-41-705172","classId":"barbarian","dbcSpellId":705172,"name":"Punisher","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_bladedarmor.png","sigil":"PU","description":"PunisherRank 2Increases the damage of Javelin Toss and Crush by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705172:effect:0:aura:108","name":"Punisher (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705172,"level":1,"description":"PunisherRank 2Increases the damage of Javelin Toss and Crush by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705172:effect:0:aura:108","name":"Punisher (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-12770","classId":"barbarian","dbcSpellId":561321,"name":"Rage Whirling","unlockLevel":1,"icon":"/assets/ui/spells/5_druideskill45_border.png","sigil":"RW","description":"Increases the critical strike chance of Whirling Advance by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561321:effect:0:aura:110","name":"Rage Whirling (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561321:effect:1:aura:107","name":"Rage Whirling (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561321,"level":1,"description":"Increases the critical strike chance of Whirling Advance by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561321:effect:0:aura:110","name":"Rage Whirling (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561321:effect:1:aura:107","name":"Rage Whirling (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}],"talentEntryId":12770},{"id":"coa-12-rancor-41-801752","classId":"barbarian","dbcSpellId":801752,"name":"Rancor","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_artifactmagnar_d_03.png","sigil":"RA","description":"RancorRank 115 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 19 to 21 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801752:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801752,"level":1,"description":"RancorRank 115 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 19 to 21 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801752:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501019,"level":10,"description":"RancorRank 215 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 40 to 44 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501019:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501020,"level":19,"description":"RancorRank 315 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 75 to 82 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501020:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501021,"level":28,"description":"RancorRank 415 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 132 to 143 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501021:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501022,"level":37,"description":"RancorRank 515 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 218 to 234 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501022:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501023,"level":45,"description":"RancorRank 615 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 331 to 353 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501023:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501024,"level":54,"description":"RancorRank 715 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 510 to 540 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501024:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501025,"level":63,"description":"RancorRank 815 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 766 to 805 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501025:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501026,"level":72,"description":"RancorRank 915 Energy Instant5 sec cooldownDeals 1% Weapon Damage plus 1130 to 1179 Pysical Damage. Cannot be blocked, dodged, or parried, but is only usable while below 20% health unless Savage Rage is active.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501026:effect:1:aura:271","name":"Rancor (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-34302","classId":"barbarian","dbcSpellId":705171,"name":"Rapid Recovery","unlockLevel":1,"icon":"/assets/ui/spells/custom_warriorskill_11_border.png","sigil":"RR","description":"Your Onslaught's effect now occurs -50% faster.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705171:effect:0:aura:108","name":"Rapid Recovery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705171:effect:1:aura:107","name":"Rapid Recovery (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705171,"level":1,"description":"Your Onslaught's effect now occurs -50% faster.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705171:effect:0:aura:108","name":"Rapid Recovery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705171:effect:1:aura:107","name":"Rapid Recovery (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":34302},{"id":"coa-tree-14304","classId":"barbarian","dbcSpellId":807861,"name":"Savage Cadence","unlockLevel":1,"icon":"/assets/ui/spells/inv_offhand_1h_artifactskulloferedar_d_05.png","sigil":"SC","description":"Direct critical strikes now extend the duration of your Unbridled Rage by 0.5 sec. This effect can occur only once per sec. Killing blows extend the duration of your Unbridled Rage by 0.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807861:effect:0:aura:42","name":"Savage Cadence (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807861:proc:0:577977","triggers":["crit","kill"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":577977}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":577977}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807861,"level":1,"description":"Direct critical strikes now extend the duration of your Unbridled Rage by 0.5 sec. This effect can occur only once per sec. Killing blows extend the duration of your Unbridled Rage by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807861:effect:0:aura:42","name":"Savage Cadence (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807861:proc:0:577977","triggers":["crit","kill"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":577977}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":577977}]}],"talentEntryId":14304},{"id":"coa-tree-6844","classId":"barbarian","dbcSpellId":800943,"name":"Savagery","unlockLevel":1,"icon":"/assets/ui/spells/ability_garrosh_hellscreams_warsong.png","sigil":"SA","description":"While below 35% health, your auto attacks, Ancestral Strike, and Throw Weapon now grant Born in Blood. Can only occur once every 2 sec. Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800943:effect:0:aura:42","name":"Savagery (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800943:proc:0:804347","triggers":["hit"],"chance":1,"internalCooldownMs":2000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804347}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804347},{"kind":"apply-aura","aura":{"id":"coa:800943:effect:1:aura:4","name":"Savagery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800943,"level":1,"description":"While below 35% health, your auto attacks, Ancestral Strike, and Throw Weapon now grant Born in Blood. Can only occur once every 2 sec. Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800943:effect:0:aura:42","name":"Savagery (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800943:proc:0:804347","triggers":["hit"],"chance":1,"internalCooldownMs":2000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804347}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804347},{"kind":"apply-aura","aura":{"id":"coa:800943:effect:1:aura:4","name":"Savagery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6844},{"id":"coa-tree-12563","classId":"barbarian","dbcSpellId":560532,"name":"Skull Smash","unlockLevel":1,"icon":"/assets/ui/spells/skullsmash2.png","sigil":"SS","description":"Pick up a rock and hurl it at an enemy's skull, disorienting them for 40 seconds (8 sec vs players). Damage taken will end this effect.","target":"hostile","range":{"min":0,"max":25},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560532:effect:0:aura:33","name":"Skull Smash (Aura 33)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.6}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":40000,"magnitude":0.6},{"kind":"apply-aura","aura":{"id":"coa:560532:effect:1:aura:5","name":"Skull Smash (Aura 5)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":5,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560554},{"kind":"dispel-mechanic","mechanic":15,"maxCount":10}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560532,"level":1,"description":"Pick up a rock and hurl it at an enemy's skull, disorienting them for 40 seconds (8 sec vs players). Damage taken will end this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560532:effect:0:aura:33","name":"Skull Smash (Aura 33)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.6}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":40000,"magnitude":0.6},{"kind":"apply-aura","aura":{"id":"coa:560532:effect:1:aura:5","name":"Skull Smash (Aura 5)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":5,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560554},{"kind":"dispel-mechanic","mechanic":15,"maxCount":10}]}],"talentEntryId":12563},{"id":"coa-tree-11168","classId":"barbarian","dbcSpellId":561394,"name":"Smasher","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_eviscerate.png","sigil":"SM","description":"Removes the Energy cost from Skull Smash.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561394:effect:0:aura:108","name":"Smasher (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561394:effect:1:aura:42","name":"Smasher (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:561394:proc:1:560460","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560460}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":524287,"triggerSpellId":560460}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561394,"level":1,"description":"Removes the Energy cost from Skull Smash.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561394:effect:0:aura:108","name":"Smasher (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561394:effect:1:aura:42","name":"Smasher (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:561394:proc:1:560460","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560460}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":524287,"triggerSpellId":560460}]}],"talentEntryId":11168},{"id":"coa-tree-6802","classId":"barbarian","dbcSpellId":705202,"name":"Strength of Goria","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_highmaul_butcher.png","sigil":"SO","description":"Casting Unbridled Rage now grants you Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705202:effect:0:aura:42","name":"Strength of Goria (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705202:proc:0:560521","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560521}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560521},{"kind":"apply-aura","aura":{"id":"coa:705202:effect:1:aura:42","name":"Strength of Goria (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705202:proc:1:560521","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560521}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":1,"triggerSpellId":560521}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705202,"level":1,"description":"Casting Unbridled Rage now grants you Born in Blood.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705202:effect:0:aura:42","name":"Strength of Goria (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705202:proc:0:560521","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560521}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560521},{"kind":"apply-aura","aura":{"id":"coa:705202:effect:1:aura:42","name":"Strength of Goria (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705202:proc:1:560521","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560521}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":1,"triggerSpellId":560521}]}],"talentEntryId":6802},{"id":"coa-tree-6374","classId":"barbarian","dbcSpellId":801549,"name":"Thick Skull","unlockLevel":1,"icon":"/assets/ui/spells/inv_helm_laughingskull_01.png","sigil":"TS","description":"Your thick skull makes you immune to all stun effects for 10 seconds and while active taking direct damage grants you Born in Blood. Usable while stunned.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801549:effect:0:aura:147","name":"Thick Skull (Aura 147)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":147,"miscValue":1024,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801549:effect:1:aura:77","name":"Thick Skull (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801549:effect:2:aura:42","name":"Thick Skull (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801549:proc:2:560521","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560521}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":524287,"triggerSpellId":560521}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801549,"level":1,"description":"Your thick skull makes you immune to all stun effects for 10 seconds and while active taking direct damage grants you Born in Blood. Usable while stunned.Born in BloodBattle fuels your vitality, restoring 18 health and 12 Energy over 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801549:effect:0:aura:147","name":"Thick Skull (Aura 147)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":147,"miscValue":1024,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801549:effect:1:aura:77","name":"Thick Skull (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801549:effect:2:aura:42","name":"Thick Skull (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801549:proc:2:560521","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560521}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":524287,"triggerSpellId":560521}]}],"talentEntryId":6374},{"id":"coa-12-torture-41-705241","classId":"barbarian","dbcSpellId":705241,"name":"Torture","unlockLevel":1,"icon":"/assets/ui/spells/inv_artifact_corruptedbloodofzakajz.png","sigil":"TO","description":"TortureRank 2InstantIncreases the damage of Piercing Throw, Axe Volley, and Berserker Axe by 20% against Bleeding enemies.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705241:effect:0:aura:112","name":"Torture (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage"},"recipient":"caster","sourceEffectType":3,"sourceAuraType":112,"miscValue":20007,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705241,"level":1,"description":"TortureRank 2InstantIncreases the damage of Piercing Throw, Axe Volley, and Berserker Axe by 20% against Bleeding enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705241:effect:0:aura:112","name":"Torture (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage"},"recipient":"caster","sourceEffectType":3,"sourceAuraType":112,"miscValue":20007,"triggerSpellId":0}]}]},{"id":"coa-12-undying-41-705174","classId":"barbarian","dbcSpellId":705174,"name":"Undying","unlockLevel":1,"icon":"/assets/ui/spells/inv_helm_plate_raidwarriormythic_q_01.png","sigil":"UN","description":"UndyingRank 1Reduces damage taken by 1% at all times and the cooldown of Deathless Resolve by 30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705174:effect:0:aura:87","name":"Undying (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705174:effect:1:aura:107","name":"Undying (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705174,"level":1,"description":"UndyingRank 1Reduces damage taken by 1% at all times and the cooldown of Deathless Resolve by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705174:effect:0:aura:87","name":"Undying (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705174:effect:1:aura:107","name":"Undying (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-12-unrelenting-41-705170","classId":"barbarian","dbcSpellId":705170,"name":"Unrelenting","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_runetap.png","sigil":"UN","description":"UnrelentingRank 2Every 5 points of Energy now increases the critical strike chance of Piercing Javelin and Crush by 1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705170:effect:0:aura:189","name":"Unrelenting (Aura 189)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"combat-rating:768","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":189,"miscValue":768,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705170,"level":1,"description":"UnrelentingRank 2Every 5 points of Energy now increases the critical strike chance of Piercing Javelin and Crush by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705170:effect:0:aura:189","name":"Unrelenting (Aura 189)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"combat-rating:768","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":189,"miscValue":768,"triggerSpellId":0}]}]},{"id":"coa-tree-34291","classId":"barbarian","dbcSpellId":705169,"name":"Unrelenting","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_runetap.png","sigil":"UN","description":"Increases your Physical damage dealt and taken by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705169:effect:0:aura:79","name":"Unrelenting (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705169:effect:1:aura:87","name":"Unrelenting (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705169,"level":1,"description":"Increases your Physical damage dealt and taken by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705169:effect:0:aura:79","name":"Unrelenting (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705169:effect:1:aura:87","name":"Unrelenting (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":34291},{"id":"coa-tree-6462","classId":"barbarian","dbcSpellId":706353,"name":"Unstoppable Rage","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_innerrage.png","sigil":"UR","description":"Increases the duration of Unbridled Rage by 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706353:effect:0:aura:107","name":"Unstoppable Rage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706353,"level":1,"description":"Increases the duration of Unbridled Rage by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706353:effect:0:aura:107","name":"Unstoppable Rage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":6462},{"id":"coa-tree-6796","classId":"barbarian","dbcSpellId":560564,"name":"You Want Axe?","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_garrison_a_01.png","sigil":"YW","description":"While enraged, casting Spears now refreshes 3 charges of Berserker Axe and your next 3 casts cost -50% less Energy. Lasts 12 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560564:effect:0:aura:42","name":"You Want Axe? (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","procs":[{"id":"coa:560564:proc:0:807261","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807261}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807261}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560564,"level":1,"description":"While enraged, casting Spears now refreshes 3 charges of Berserker Axe and your next 3 casts cost -50% less Energy. Lasts 12 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560564:effect:0:aura:42","name":"You Want Axe? (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","procs":[{"id":"coa:560564:proc:0:807261","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807261}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807261}]}],"talentEntryId":6796},{"id":"barbarian-smash","classId":"barbarian","dbcSpellId":801755,"name":"Smash","unlockLevel":2,"icon":"/assets/ui/spells/inv_mace_2h_revendrethquest_b_01.png","sigil":"SM","description":"SmashRank 1Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 135% Weapon Damage plus 8.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":570724},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.35}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801755,"level":2,"description":"SmashRank 1Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 135% Weapon Damage plus 8.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":570724},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.35}]},{"rank":2,"spellId":501027,"level":10,"description":"SmashRank 2Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 13 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578277},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]},{"rank":3,"spellId":501028,"level":18,"description":"SmashRank 3Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 32 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578278},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]},{"rank":4,"spellId":501029,"level":26,"description":"SmashRank 4Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 69 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578279},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]},{"rank":5,"spellId":501030,"level":34,"description":"SmashRank 5Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 99 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578280},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]},{"rank":6,"spellId":501031,"level":42,"description":"SmashRank 6Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 131 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578281},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]},{"rank":7,"spellId":501032,"level":50,"description":"SmashRank 7Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 171 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578282},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]},{"rank":8,"spellId":501033,"level":58,"description":"SmashRank 8Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 202 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578283},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]},{"rank":9,"spellId":501034,"level":60,"description":"SmashRank 9Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 232 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578284},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]},{"rank":10,"spellId":501035,"level":66,"description":"SmashRank 10Instant3 sec cooldownRequires Melee Weapon Requires Enraged Smash an enemy with both weapons for 150% Weapon Damage, plus 279 with your main-hand.","castMode":"instant","castTimeMs":0,"cooldownMs":3000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":578285},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5},{"kind":"damage","coefficient":1.5}]}]},{"id":"coa-12-berserker-axe-42-804138","classId":"barbarian","dbcSpellId":804138,"name":"Berserker Axe","unlockLevel":11,"icon":"/assets/ui/spells/inv_axe_1h_draenorcrafted_d_02_a_horde.png","sigil":"BA","description":"Berserker AxeRank 130 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","target":"hostile","range":{"min":5,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804138,"level":11,"description":"Berserker AxeRank 130 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 16+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":503408,"level":20,"description":"Berserker AxeRank 230 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 23+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":3,"spellId":503409,"level":28,"description":"Berserker AxeRank 330 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 35+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":4,"spellId":503410,"level":36,"description":"Berserker AxeRank 430 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 50+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":5,"spellId":503411,"level":44,"description":"Berserker AxeRank 530 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 69+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":6,"spellId":503412,"level":52,"description":"Berserker AxeRank 630 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 93+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":7,"spellId":503413,"level":60,"description":"Berserker AxeRank 730 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 125+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":8,"spellId":503414,"level":65,"description":"Berserker AxeRank 830 Energy InstantRequires Thrown Requires Enraged 3 Charges, 8 sec recharge Hurl two axes at an enemy, each dealing 181+0+RAP*.4 Physical damage and reducing their armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806960},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-12-hodirs-wrath-47-503313","classId":"barbarian","dbcSpellId":503313,"name":"Hodir's Wrath","unlockLevel":12,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_icegiant_01.png","sigil":"HS","description":"Hodir's WrathRank 2Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","target":"hostile","range":{"min":0,"max":0},"radius":25,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:503313:effect:1:aura:79","name":"Hodir's Wrath (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.15}]},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"damage","coefficient":0.9409289956092834,"basePoints":59,"dieSides":6,"pointsPerLevel":2.4700000286102295,"bonusPowerCoefficient":0.9409289956092834,"sourceLevel":12,"maxScalingLevel":23}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503313,"level":12,"description":"Hodir's WrathRank 2Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:503313:effect:1:aura:79","name":"Hodir's Wrath (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.15}]},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"damage","coefficient":0.9409289956092834,"basePoints":59,"dieSides":6,"pointsPerLevel":2.4700000286102295,"bonusPowerCoefficient":0.9409289956092834,"sourceLevel":12,"maxScalingLevel":23}]},{"rank":3,"spellId":503314,"level":24,"description":"Hodir's WrathRank 3Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:503314:effect:1:aura:79","name":"Hodir's Wrath (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.15}]},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"damage","coefficient":1.1659400463104248,"basePoints":98,"dieSides":7,"pointsPerLevel":3.609999895095825,"bonusPowerCoefficient":1.1659400463104248,"sourceLevel":24,"maxScalingLevel":34}]},{"rank":4,"spellId":503315,"level":35,"description":"Hodir's WrathRank 4Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:503315:effect:1:aura:79","name":"Hodir's Wrath (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.15}]},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"damage","coefficient":1.4267799854278564,"basePoints":147,"dieSides":9,"pointsPerLevel":5.320000171661377,"bonusPowerCoefficient":1.4267799854278564,"sourceLevel":35,"maxScalingLevel":46}]},{"rank":5,"spellId":503316,"level":47,"description":"Hodir's WrathRank 5Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:503316:effect:1:aura:79","name":"Hodir's Wrath (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.15}]},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"damage","coefficient":1.723960041999817,"basePoints":231,"dieSides":11,"pointsPerLevel":7.599999904632568,"bonusPowerCoefficient":1.723960041999817,"sourceLevel":47,"maxScalingLevel":57}]},{"rank":6,"spellId":503317,"level":58,"description":"Hodir's WrathRank 6Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:503317:effect:1:aura:79","name":"Hodir's Wrath (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.15}]},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"damage","coefficient":2.0564401149749756,"basePoints":359,"dieSides":13,"pointsPerLevel":10.449999809265137,"bonusPowerCoefficient":2.0564401149749756,"sourceLevel":58,"maxScalingLevel":69}]},{"rank":7,"spellId":503318,"level":70,"description":"Hodir's WrathRank 7Instant cast1 min cooldownDeals 15+0+AP*0.40 Frost damage to enemies within 25 yds and restores 100% of your maximum Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":100,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:503318:effect:1:aura:79","name":"Hodir's Wrath (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.15}]},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"damage","coefficient":2.4213099479675293,"basePoints":527,"dieSides":15,"pointsPerLevel":13.869999885559082,"bonusPowerCoefficient":2.4213099479675293,"sourceLevel":70,"maxScalingLevel":80}]}]},{"id":"barbarian-barbaric-whirl","classId":"barbarian","dbcSpellId":500002,"name":"Barbaric Whirl","unlockLevel":14,"icon":"/assets/ui/spells/ability_garrosh_whirling_corruption.png","sigil":"BW","description":"Barbaric WhirlRank 130 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 3.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.2},{"kind":"damage","coefficient":1}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500002,"level":14,"description":"Barbaric WhirlRank 130 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 3.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.2},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":500450,"level":22,"description":"Barbaric WhirlRank 230 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 10.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.2},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":500451,"level":30,"description":"Barbaric WhirlRank 330 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.2},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":500452,"level":42,"description":"Barbaric WhirlRank 430 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 31.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.2},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":500453,"level":54,"description":"Barbaric WhirlRank 530 Energy Instant6 sec cooldownRequires Melee Weapon Whirl in a barbaric fury, striking up to 5 nearby enemies with both weapons, dealing 120% Weapon Damage plus 53.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":1.2},{"kind":"damage","coefficient":1}]}]},{"id":"coa-12-ancestral-roar-47-500918","classId":"barbarian","dbcSpellId":500918,"name":"Ancestral Roar","unlockLevel":16,"icon":"/assets/ui/spells/_d3threateningshout.png","sigil":"AR","description":"Ancestral RoarRank 1Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 100+0+AP*0.5.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.6580645243326824,"basePoints":100,"dieSides":7,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500918,"level":16,"description":"Ancestral RoarRank 1Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 100+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1.6580645243326824,"basePoints":100,"dieSides":7,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501057,"level":24,"description":"Ancestral RoarRank 2Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 190+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":2.5252649682199855,"basePoints":190,"dieSides":13,"pointsPerLevel":4.144000053405762,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501058,"level":32,"description":"Ancestral RoarRank 3Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 265+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":3.534780191191545,"basePoints":265,"dieSides":28,"pointsPerLevel":6.872000217437744,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501059,"level":40,"description":"Ancestral RoarRank 4Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 346+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":346,"dieSides":48,"pointsPerLevel":8.600000381469727,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501060,"level":48,"description":"Ancestral RoarRank 5Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 466+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":466,"dieSides":73,"pointsPerLevel":10.32800006866455,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501061,"level":56,"description":"Ancestral RoarRank 6Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 574+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":574,"dieSides":104,"pointsPerLevel":15.279999732971191,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501062,"level":60,"description":"Ancestral RoarRank 7Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 906+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":906,"dieSides":140,"pointsPerLevel":13.784000396728516,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501063,"level":64,"description":"Ancestral RoarRank 8Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 1074+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":1074,"dieSides":181,"pointsPerLevel":15.51200008392334,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":74},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501064,"level":71,"description":"Ancestral RoarRank 9Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 1563+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":1563,"dieSides":227,"pointsPerLevel":17.239999771118164,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":76},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501065,"level":78,"description":"Ancestral RoarRank 10Instant cast25 sec cooldownRequires Enraged Roar with ancestral fervor, healing you for 2235+0+AP*0.5.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":2235,"dieSides":279,"pointsPerLevel":59.560001373291016,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":80},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-12-mock-47-806221","classId":"barbarian","dbcSpellId":806221,"name":"Mock","unlockLevel":16,"icon":"/assets/ui/spells/spell_magic_polymorphchicken.png","sigil":"MO","description":"MockRank 115 Energy Instant cast15 sec cooldownMock all enemies in a 10 yd radius, reducing their attack power by 35 for 8 sec and applying Shattered Ego. Shattered Ego Reduces an enemy's Intellect by 20% for 8 sec.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806221:effect:0:aura:344","name":"Mock (Aura 344)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806221,"level":16,"description":"MockRank 115 Energy Instant cast15 sec cooldownMock all enemies in a 10 yd radius, reducing their attack power by 35 for 8 sec and applying Shattered Ego. Shattered Ego Reduces an enemy's Intellect by 20% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806221:effect:0:aura:344","name":"Mock (Aura 344)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":5,"spellId":560469,"level":54,"description":"Mock all opponents in a $a yd radius, reducing their attack power by $s1 for $d and applies Shattered Ego.@s:560912:0@","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560469:effect:0:aura:344","name":"Mock (Aura 344)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":64}]}]},{"id":"coa-12-brutal-swing-41-500913","classId":"barbarian","dbcSpellId":500913,"name":"Brutal Swing","unlockLevel":17,"icon":"/assets/ui/spells/5_axe_border.png","sigil":"BS","description":"Brutal SwingRank 145 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 10.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500913,"level":17,"description":"Brutal SwingRank 145 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}]},{"rank":2,"spellId":500996,"level":24,"description":"Brutal SwingRank 245 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 17.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}]},{"rank":3,"spellId":500997,"level":32,"description":"Brutal SwingRank 345 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 26.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}]},{"rank":4,"spellId":500998,"level":40,"description":"Brutal SwingRank 445 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 35.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}]},{"rank":5,"spellId":500999,"level":48,"description":"Brutal SwingRank 545 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 50.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}]},{"rank":6,"spellId":501000,"level":56,"description":"Brutal SwingRank 645 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 61.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}]},{"rank":7,"spellId":501001,"level":60,"description":"Brutal SwingRank 745 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 79.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}]},{"rank":8,"spellId":501002,"level":68,"description":"Brutal SwingRank 845 Energy InstantRequires Melee Weapon Your next attack causes you to swing violently at an enemy and up to 2 nearby enemies, dealing 120% Weapon Damage plus 99.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.2}]}]}],"witch-doctor":[{"id":"coa-tree-30147","classId":"witch-doctor","dbcSpellId":705921,"name":"Alchemical Enhancement","unlockLevel":1,"icon":"/assets/ui/spells/inv_alchemy_71_potion4.png","sigil":"AE","description":"Increases your haste by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705921:effect:0:aura:216","name":"Alchemical Enhancement (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705921:effect:1:aura:192","name":"Alchemical Enhancement (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705921,"level":1,"description":"Increases your haste by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705921:effect:0:aura:216","name":"Alchemical Enhancement (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705921:effect:1:aura:192","name":"Alchemical Enhancement (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":30147},{"id":"coa-tree-11323","classId":"witch-doctor","dbcSpellId":301297,"name":"Blatant Curse","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_removecurse.png","sigil":"BC","description":"Reduces the mana cost of your Jinxes by -25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301297:effect:0:aura:108","name":"Blatant Curse (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301297:effect:1:aura:108","name":"Blatant Curse (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301297,"level":1,"description":"Reduces the mana cost of your Jinxes by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301297:effect:0:aura:108","name":"Blatant Curse (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301297:effect:1:aura:108","name":"Blatant Curse (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":11323},{"id":"coa-tree-12048","classId":"witch-doctor","dbcSpellId":572870,"name":"Blessing of Hir'eek","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_trollbatidol.png","sigil":"BO","description":"Your Hexbreak now removes an additional curse effect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572870:effect:0:aura:107","name":"Blessing of Hir'eek (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":572870,"level":1,"description":"Your Hexbreak now removes an additional curse effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572870:effect:0:aura:107","name":"Blessing of Hir'eek (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":12048},{"id":"coa-tree-4005","classId":"witch-doctor","dbcSpellId":92085,"name":"Cauldron Brewer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_cauldron_nature.png","sigil":"CB","description":"Level 10 Passive You may now prepare Ingredients into a Cauldron, crafting a brew. Nearby allies are buffed based on the active brew. Only 1 of each Ingredient can be active at a time.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92085:effect:0:aura:4","name":"Cauldron Brewer (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92085,"level":1,"description":"Level 10 Passive You may now prepare Ingredients into a Cauldron, crafting a brew. Nearby allies are buffed based on the active brew. Only 1 of each Ingredient can be active at a time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92085:effect:0:aura:4","name":"Cauldron Brewer (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4005},{"id":"coa-tree-29309","classId":"witch-doctor","dbcSpellId":504840,"name":"Cleansing Idol","unlockLevel":1,"icon":"/assets/ui/spells/wd_cleansing_ward.png","sigil":"CI","description":"Drop a Cleansing Idol near you for 1 minute. Allies within 30 yds have 1 poison and disease effect removed from them every 3 sec.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"summon","creatureId":50217,"coefficient":0.08,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504840,"level":1,"description":"Drop a Cleansing Idol near you for 1 minute. Allies within 30 yds have 1 poison and disease effect removed from them every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"summon","creatureId":50217,"coefficient":0.08,"durationMs":60000}]}],"talentEntryId":29309},{"id":"coa-tree-5113","classId":"witch-doctor","dbcSpellId":706542,"name":"Cursed Effigy","unlockLevel":1,"icon":"/assets/ui/spells/wd_cursed_effigy.png","sigil":"CE","description":"Drop a Cursed Effigy near you for 15 seconds. Enemies within 15 yds are unable to critically strike.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"summon","creatureId":50121,"coefficient":0.08,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":706542,"level":1,"description":"Drop a Cursed Effigy near you for 15 seconds. Enemies within 15 yds are unable to critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"summon","creatureId":50121,"coefficient":0.08,"durationMs":15000}]}],"talentEntryId":5113},{"id":"coa-13-dark-magic-48-705923","classId":"witch-doctor","dbcSpellId":705923,"name":"Dark Magic","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_troll_tablet.png","sigil":"DM","description":"Dark MagicRank 2Instant castIncreases the damage of Hir'eek and Bwonsamdi spells by 6%, and boosts spell power by 21% of Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705923:effect:0:aura:108","name":"Dark Magic (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705923:effect:1:aura:174","name":"Dark Magic (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.21}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705923:effect:2:aura:4","name":"Dark Magic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705923,"level":1,"description":"Dark MagicRank 2Instant castIncreases the damage of Hir'eek and Bwonsamdi spells by 6%, and boosts spell power by 21% of Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705923:effect:0:aura:108","name":"Dark Magic (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705923:effect:1:aura:174","name":"Dark Magic (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.21}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705923:effect:2:aura:4","name":"Dark Magic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-tree-6048","classId":"witch-doctor","dbcSpellId":712396,"name":"Dark Mojo","unlockLevel":1,"icon":"/assets/ui/spells/_troll_06.png","sigil":"DM","description":"Increases your chance to resist magic and curse effects by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712396:effect:0:aura:178","name":"Dark Mojo (Aura 178)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:712396:effect:1:aura:178","name":"Dark Mojo (Aura 178)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":178,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":712396,"level":1,"description":"Increases your chance to resist magic and curse effects by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712396:effect:0:aura:178","name":"Dark Mojo (Aura 178)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:712396:effect:1:aura:178","name":"Dark Mojo (Aura 178)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":178,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":6048},{"id":"coa-tree-31118","classId":"witch-doctor","dbcSpellId":602220,"name":"Death Draught","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcanepotion_border.png","sigil":"DD","description":"Drink a potent voodoo draught that slows your body to a deathlike stillness for up to 5 minutes, causing you to feign death which may trick enemies into ignoring you.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:602220:effect:0:aura:66","name":"Death Draught (Aura 66)","disposition":"buff","durationMs":300000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["feign-death"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":66,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":93,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":300000},{"kind":"trigger-spell","spellId":985329},{"kind":"threat","mode":"percent","amount":-99}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":602220,"level":1,"description":"Drink a potent voodoo draught that slows your body to a deathlike stillness for up to 5 minutes, causing you to feign death which may trick enemies into ignoring you.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:602220:effect:0:aura:66","name":"Death Draught (Aura 66)","disposition":"buff","durationMs":300000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["feign-death"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":66,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":93,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":300000},{"kind":"trigger-spell","spellId":985329},{"kind":"threat","mode":"percent","amount":-99}]}],"talentEntryId":31118},{"id":"coa-tree-29757","classId":"witch-doctor","dbcSpellId":802756,"name":"Devotion to Bwonsamdi","unlockLevel":1,"icon":"/assets/ui/spells/inv_helmet_114.png","sigil":"DT","description":"Your direct damage now heals you for 10% of the damage done.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802756:effect:0:aura:354","name":"Devotion to Bwonsamdi (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":570156}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":802756,"level":1,"description":"Your direct damage now heals you for 10% of the damage done.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802756:effect:0:aura:354","name":"Devotion to Bwonsamdi (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":570156}]}],"talentEntryId":29757},{"id":"witch-doctor-drakkari-barrier","classId":"witch-doctor","dbcSpellId":500963,"name":"Drakkari Barrier","unlockLevel":1,"icon":"/assets/ui/spells/ivn_helm_armor_zandalaritroll_d_01.png","sigil":"DB","description":"Drakkari BarrierRank 111% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 6 to 7 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500963:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500963:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500963:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":6,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500963,"level":1,"description":"Drakkari BarrierRank 111% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 6 to 7 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500963:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500963:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500963:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":6,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501119,"level":10,"description":"Drakkari BarrierRank 211% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 17 to 21 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501119:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501119:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501119:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":17,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501120,"level":19,"description":"Drakkari BarrierRank 311% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 37 to 46 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501120:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501120:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501120:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":37,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501121,"level":28,"description":"Drakkari BarrierRank 411% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 70 to 86 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501121:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501121:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501121:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":70,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501122,"level":37,"description":"Drakkari BarrierRank 511% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 121 to 146 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501122:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501122:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501122:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":121,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501123,"level":45,"description":"Drakkari BarrierRank 611% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 188 to 223 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501123:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501123:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501123:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":188,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501124,"level":54,"description":"Drakkari BarrierRank 711% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 294 to 342 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501124:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501124:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501124:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":294,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501125,"level":63,"description":"Drakkari BarrierRank 811% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 447 to 510 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501125:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501125:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501125:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":447,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501126,"level":72,"description":"Drakkari BarrierRank 911% of base mana Instant cast2 min cooldownYou place a barrier on the target ally, causing them to reflect all spells and return 665 to 745 Shadow damage to enemies that strike them with a melee attack, lasts for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501126:effect:0:aura:28","name":"Drakkari Barrier (Aura 28)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501126:effect:1:aura:15","name":"Drakkari Barrier (Aura 15)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501126:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":665,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-6049","classId":"witch-doctor","dbcSpellId":705906,"name":"For Da Loa!","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_zuldazar_loacouncil.png","sigil":"FD","description":"Transforms Allcure Elixir into Mass Allcure Elixir.Mass Allcure ElixirRemoves all poison, disease and curse effects from party and raid members within 30 yds, and grants immunity to such effects for 3 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705906:effect:0:aura:42","name":"For Da Loa! (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705906,"level":1,"description":"Transforms Allcure Elixir into Mass Allcure Elixir.Mass Allcure ElixirRemoves all poison, disease and curse effects from party and raid members within 30 yds, and grants immunity to such effects for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705906:effect:0:aura:42","name":"For Da Loa! (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6049},{"id":"coa-tree-29744","classId":"witch-doctor","dbcSpellId":500957,"name":"Healing Ward","unlockLevel":1,"icon":"/assets/ui/spells/inv_banner_01.png","sigil":"HW","description":"Drop a Healing Ward near you for 1 minute, healing 8 nearby allies within 30 yds for 48 + 20% SP + 12% ranged AP + 10% Spirit every 3 sec.","target":"self","range":{"min":0,"max":0},"radius":3.5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"summon","creatureId":50104,"coefficient":0.08,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500957,"level":1,"description":"Drop a Healing Ward near you for 1 minute, healing 8 nearby allies within 30 yds for 48 + 20% SP + 12% ranged AP + 10% Spirit every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"summon","creatureId":50104,"coefficient":0.08,"durationMs":60000}]}],"talentEntryId":29744},{"id":"coa-13-improved-jinxes-48-705842","classId":"witch-doctor","dbcSpellId":705842,"name":"Improved Jinxes","unlockLevel":1,"icon":"/assets/ui/spells/ability_shaman_totemcooldownrefund.png","sigil":"IJ","description":"Improved JinxesRank 2Increases the effectiveness of Jinxes by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705842:effect:0:aura:108","name":"Improved Jinxes (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705842:effect:1:aura:4","name":"Improved Jinxes (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705842,"level":1,"description":"Improved JinxesRank 2Increases the effectiveness of Jinxes by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705842:effect:0:aura:108","name":"Improved Jinxes (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705842:effect:1:aura:4","name":"Improved Jinxes (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-13-improved-juju-burst-48-705888","classId":"witch-doctor","dbcSpellId":705888,"name":"Improved Juju Burst","unlockLevel":1,"icon":"/assets/ui/spells/_liquidstone_poison.png","sigil":"IJ","description":"Improved Juju BurstRank 2Reduces the cooldown of Juju Burst by 4 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705888:effect:0:aura:107","name":"Improved Juju Burst (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705888:effect:1:aura:4","name":"Improved Juju Burst (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705888:effect:2:aura:4","name":"Improved Juju Burst (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705888,"level":1,"description":"Improved Juju BurstRank 2Reduces the cooldown of Juju Burst by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705888:effect:0:aura:107","name":"Improved Juju Burst (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705888:effect:1:aura:4","name":"Improved Juju Burst (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705888:effect:2:aura:4","name":"Improved Juju Burst (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-13-improved-revitalize-51-705852","classId":"witch-doctor","dbcSpellId":705852,"name":"Improved Revitalize","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_convection.png","sigil":"IR","description":"Improved RevitalizeRank 2Increases the radius of Revitalize by 10 yds and its healing by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705852:effect:0:aura:107","name":"Improved Revitalize (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705852:effect:1:aura:108","name":"Improved Revitalize (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705852:effect:2:aura:4","name":"Improved Revitalize (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705852,"level":1,"description":"Improved RevitalizeRank 2Increases the radius of Revitalize by 10 yds and its healing by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705852:effect:0:aura:107","name":"Improved Revitalize (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705852:effect:1:aura:108","name":"Improved Revitalize (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705852:effect:2:aura:4","name":"Improved Revitalize (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-tree-12749","classId":"witch-doctor","dbcSpellId":681465,"name":"Jinx of Decay","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","sigil":"JO","description":"Your Lethargy Jinx now also reduces the target's periodic healing received by -30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:681465:effect:0:aura:107","name":"Jinx of Decay (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681465,"level":1,"description":"Your Lethargy Jinx now also reduces the target's periodic healing received by -30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:681465:effect:0:aura:107","name":"Jinx of Decay (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":12749},{"id":"coa-13-jinxweaver-48-705889","classId":"witch-doctor","dbcSpellId":705889,"name":"Jinxweaver","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_soulleech_1.png","sigil":"JI","description":"JinxweaverRank 1Reduces the cast time of Jinxes by 0.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705889:effect:0:aura:107","name":"Jinxweaver (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705889:effect:1:aura:4","name":"Jinxweaver (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705889:effect:2:aura:4","name":"Jinxweaver (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705889,"level":1,"description":"JinxweaverRank 1Reduces the cast time of Jinxes by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705889:effect:0:aura:107","name":"Jinxweaver (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705889:effect:1:aura:4","name":"Jinxweaver (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705889:effect:2:aura:4","name":"Jinxweaver (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]},{"rank":2,"spellId":705890,"level":1,"description":"JinxweaverRank 2Reduces the cast time of Jinxes by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705890:effect:0:aura:107","name":"Jinxweaver (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705890:effect:1:aura:4","name":"Jinxweaver (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705890:effect:2:aura:4","name":"Jinxweaver (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-13-juju-48-705873","classId":"witch-doctor","dbcSpellId":705873,"name":"Juju","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_abolishmagic.png","sigil":"JU","description":"JujuRank 3Instant castIncreases spell haste by 9%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705873:effect:0:aura:216","name":"Juju (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.09}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705873:effect:1:aura:4","name":"Juju (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705873:effect:2:aura:4","name":"Juju (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":3,"spellId":705873,"level":1,"description":"JujuRank 3Instant castIncreases spell haste by 9%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705873:effect:0:aura:216","name":"Juju (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.09}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705873:effect:1:aura:4","name":"Juju (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705873:effect:2:aura:4","name":"Juju (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-tree-29743","classId":"witch-doctor","dbcSpellId":806283,"name":"Latent Curse","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_jinx.png","sigil":"LC","description":"When your Shrinking Jinx is dispelled it now applies Misery to the dispeller.MiserySilences the target for 5 seconds and deals 9 + 60% shadow SP Shadow Damage every 1 sec for the duration.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806283:effect:0:aura:42","name":"Latent Curse (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:806283:proc:0:807192","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807192}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807192}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806283,"level":1,"description":"When your Shrinking Jinx is dispelled it now applies Misery to the dispeller.MiserySilences the target for 5 seconds and deals 9 + 60% shadow SP Shadow Damage every 1 sec for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806283:effect:0:aura:42","name":"Latent Curse (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:806283:proc:0:807192","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807192}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807192}]}],"talentEntryId":29743},{"id":"coa-13-legacy-of-zandalar-51-705849","classId":"witch-doctor","dbcSpellId":705849,"name":"Legacy of Zandalar","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_2h_zandalarquest_b_01.png","sigil":"LO","description":"Legacy of ZandalarRank 2Reduces the cooldown of Gift of the Loa by 0 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705849,"level":1,"description":"Legacy of ZandalarRank 2Reduces the cooldown of Gift of the Loa by 0 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6052","classId":"witch-doctor","dbcSpellId":705907,"name":"Loa Communion","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_soulleech_2.png","sigil":"LC","description":"Increases the damage dealt by Veil of Darkness by 100%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705907:effect:0:aura:108","name":"Loa Communion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705907:effect:1:aura:107","name":"Loa Communion (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705907:effect:2:aura:4","name":"Loa Communion (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705907,"level":1,"description":"Increases the damage dealt by Veil of Darkness by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705907:effect:0:aura:108","name":"Loa Communion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705907:effect:1:aura:107","name":"Loa Communion (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705907:effect:2:aura:4","name":"Loa Communion (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}],"talentEntryId":6052},{"id":"coa-tree-6381","classId":"witch-doctor","dbcSpellId":706368,"name":"Loa Empowerment","unlockLevel":1,"icon":"/assets/ui/spells/nhi_scrollofearth_border.png","sigil":"LE","description":"Reduces the cost of your Wujus by -50% and increases the effectiveness of Power Wuju by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706368:effect:0:aura:108","name":"Loa Empowerment (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706368:effect:1:aura:108","name":"Loa Empowerment (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706368,"level":1,"description":"Reduces the cost of your Wujus by -50% and increases the effectiveness of Power Wuju by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706368:effect:0:aura:108","name":"Loa Empowerment (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706368:effect:1:aura:108","name":"Loa Empowerment (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":6381},{"id":"coa-13-loas-brew-49-801670","classId":"witch-doctor","dbcSpellId":801670,"name":"Loa's Brew","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_potion_special.png","sigil":"LS","description":"Loa's BrewRank 133% of base mana 2 sec castBrew a potion and then throw it to an ally target, restoring 57+0+Heal*0.862155 health.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":1.2784654373923938,"basePoints":57,"dieSides":8,"pointsPerLevel":0.8663409948348999,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801670,"level":1,"description":"Loa's BrewRank 133% of base mana 2 sec castBrew a potion and then throw it to an ally target, restoring 57+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":1.2784654373923938,"basePoints":57,"dieSides":8,"pointsPerLevel":0.8663409948348999,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6}]},{"rank":2,"spellId":501198,"level":8,"description":"Loa's BrewRank 233% of base mana 2.5 sec castBrew a potion and then throw it to an ally target, restoring 95+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":1.724360466003418,"basePoints":95,"dieSides":35,"pointsPerLevel":0.87260901927948,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16}]},{"rank":3,"spellId":501199,"level":18,"description":"Loa's BrewRank 333% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 231+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":3.192809890014957,"basePoints":231,"dieSides":68,"pointsPerLevel":2.8660099506378174,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24}]},{"rank":4,"spellId":501200,"level":26,"description":"Loa's BrewRank 433% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 344+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":344,"dieSides":86,"pointsPerLevel":4.149789810180664,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32}]},{"rank":5,"spellId":501201,"level":34,"description":"Loa's BrewRank 533% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 457+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":457,"dieSides":106,"pointsPerLevel":5.845059871673584,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":6,"spellId":501202,"level":42,"description":"Loa's BrewRank 633% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 599+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":599,"dieSides":129,"pointsPerLevel":7.582509994506836,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48}]},{"rank":7,"spellId":501203,"level":50,"description":"Loa's BrewRank 733% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 699+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":699,"dieSides":193,"pointsPerLevel":8.98727035522461,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":8,"spellId":501204,"level":58,"description":"Loa's BrewRank 833% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 887+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":887,"dieSides":202,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58}]},{"rank":9,"spellId":501205,"level":60,"description":"Loa's BrewRank 933% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 890+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":890,"dieSides":228,"pointsPerLevel":4.167840003967285,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":74}]},{"rank":10,"spellId":501206,"level":76,"description":"Loa's BrewRank 1033% of base mana 3 sec castBrew a potion and then throw it to an ally target, restoring 1422+0+Heal*0.862155 health.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":1422,"dieSides":377,"pointsPerLevel":27.965999603271484,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80}]}]},{"id":"coa-13-loas-strength-49-705936","classId":"witch-doctor","dbcSpellId":705936,"name":"Loa's Strength","unlockLevel":1,"icon":"/assets/ui/spells/nhi_shadoweye_border.png","sigil":"LS","description":"Loa's StrengthRank 1Increases your Agility and your Nature and Shadow damage dealt by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705936:effect:0:aura:79","name":"Loa's Strength (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":40,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705936:effect:1:aura:137","name":"Loa's Strength (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705936,"level":1,"description":"Loa's StrengthRank 1Increases your Agility and your Nature and Shadow damage dealt by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705936:effect:0:aura:79","name":"Loa's Strength (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":40,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705936:effect:1:aura:137","name":"Loa's Strength (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":705937,"level":1,"description":"Loa's StrengthRank 2Increases your Agility and your Nature and Shadow damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705937:effect:0:aura:79","name":"Loa's Strength (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":40,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705937:effect:1:aura:137","name":"Loa's Strength (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705937:effect:2:aura:4","name":"Loa's Strength (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-13-medicine-man-51-705861","classId":"witch-doctor","dbcSpellId":705861,"name":"Medicine Man","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_wispsplodegreen.png","sigil":"MM","description":"Medicine ManRank 2Increases healing done by 10% . Allows 50% of your mana regeneration to continue while casting.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705861:effect:0:aura:136","name":"Medicine Man (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705861:effect:1:aura:134","name":"Medicine Man (Aura 134)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":134,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705861:effect:2:aura:4","name":"Medicine Man (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705861,"level":1,"description":"Medicine ManRank 2Increases healing done by 10% . Allows 50% of your mana regeneration to continue while casting.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705861:effect:0:aura:136","name":"Medicine Man (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705861:effect:1:aura:134","name":"Medicine Man (Aura 134)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":134,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705861:effect:2:aura:4","name":"Medicine Man (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-tree-29301","classId":"witch-doctor","dbcSpellId":707162,"name":"Mimic Ward","unlockLevel":1,"icon":"/assets/ui/spells/5_deadshadow_border.png","sigil":"MW","description":"Summon a mimic ward for 12 seconds. For the duration when you cast Malefic Wrath and Loa's Brew the ward will also cast it on your target.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707162:effect:0:aura:216","name":"Mimic Ward (Aura 216)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707162:effect:1:aura:192","name":"Mimic Ward (Aura 192)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"summon","creatureId":300659,"coefficient":0.08,"durationMs":12000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":707162,"level":1,"description":"Summon a mimic ward for 12 seconds. For the duration when you cast Malefic Wrath and Loa's Brew the ward will also cast it on your target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707162:effect:0:aura:216","name":"Mimic Ward (Aura 216)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707162:effect:1:aura:192","name":"Mimic Ward (Aura 192)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"summon","creatureId":300659,"coefficient":0.08,"durationMs":12000}]}],"talentEntryId":29301},{"id":"coa-tree-29747","classId":"witch-doctor","dbcSpellId":501136,"name":"Mirage","unlockLevel":1,"icon":"/assets/ui/spells/nhi_naturehide_border.png","sigil":"MI","description":"Become invisible for 20 seconds, gaining 5 Spirits, leaving a copy of yourself behind, and reducing threat each second. Direct damage or healing done will end this effect. While invisible, you can only see other invisible targets and those who can see invisible.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":29,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501136:effect:0:aura:18","name":"Mirage (Aura 18)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":18,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":561136},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:0:aura:24","name":"Spirit (Aura 24)","disposition":"buff","durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":6},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:1:aura:8","name":"Spirit (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":-2,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0.10000000149011612,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":60,"ticks":3,"intervalMs":4000},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:2:aura:23","name":"Spirit (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:561136:proc:2:561298","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":561298}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":561298},{"kind":"summon","creatureId":840000,"coefficient":0.08,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":501136,"level":1,"description":"Become invisible for 20 seconds, gaining 5 Spirits, leaving a copy of yourself behind, and reducing threat each second. Direct damage or healing done will end this effect. While invisible, you can only see other invisible targets and those who can see invisible.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":29,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501136:effect:0:aura:18","name":"Mirage (Aura 18)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":18,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":561136},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:0:aura:24","name":"Spirit (Aura 24)","disposition":"buff","durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":6},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:1:aura:8","name":"Spirit (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":-2,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0.10000000149011612,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":60,"ticks":3,"intervalMs":4000},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:2:aura:23","name":"Spirit (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:561136:proc:2:561298","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":561298}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":561298},{"kind":"summon","creatureId":840000,"coefficient":0.08,"durationMs":20000}]}],"talentEntryId":29747},{"id":"coa-tree-6050","classId":"witch-doctor","dbcSpellId":705909,"name":"One Armed Waltz","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_zuljin.png","sigil":"OA","description":"Big Bad Voodoo now only reduces damage dealt by 25% and reduces damage taken by an additional -5%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705909:effect:0:aura:107","name":"One Armed Waltz (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705909:effect:1:aura:107","name":"One Armed Waltz (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705909:effect:2:aura:107","name":"One Armed Waltz (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705909,"level":1,"description":"Big Bad Voodoo now only reduces damage dealt by 25% and reduces damage taken by an additional -5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705909:effect:0:aura:107","name":"One Armed Waltz (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705909:effect:1:aura:107","name":"One Armed Waltz (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705909:effect:2:aura:107","name":"One Armed Waltz (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":6050},{"id":"coa-tree-12264","classId":"witch-doctor","dbcSpellId":503748,"name":"Potent Mixes","unlockLevel":1,"icon":"/assets/ui/spells/inv_potion_110.png","sigil":"PM","description":"Increases your healing done by 4% and reduces the threat generated by your spells by -15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503748:effect:0:aura:136","name":"Potent Mixes (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503748:effect:1:aura:103","name":"Potent Mixes (Aura 103)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":103,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503748,"level":1,"description":"Increases your healing done by 4% and reduces the threat generated by your spells by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503748:effect:0:aura:136","name":"Potent Mixes (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503748:effect:1:aura:103","name":"Potent Mixes (Aura 103)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":103,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":12264},{"id":"coa-tree-4004","classId":"witch-doctor","dbcSpellId":92084,"name":"Puppeteer's Threads","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_troll_voodoodoll.png","sigil":"PS","description":"Level 10 Passive Damaging abilities now leave behind Puppeteer's Threads on enemies for 10 seconds. Puppeteer’s Threads (Debuff)Damage taken from the Witch Doctor stores 15% of its value. When the effect ends the damage stored is dealt instantly.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92084:effect:0:aura:4","name":"Puppeteer's Threads (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92084:effect:1:aura:107","name":"Puppeteer's Threads (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92084,"level":1,"description":"Level 10 Passive Damaging abilities now leave behind Puppeteer's Threads on enemies for 10 seconds. Puppeteer’s Threads (Debuff)Damage taken from the Witch Doctor stores 15% of its value. When the effect ends the damage stored is dealt instantly.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92084:effect:0:aura:4","name":"Puppeteer's Threads (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92084:effect:1:aura:107","name":"Puppeteer's Threads (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":4004},{"id":"coa-tree-4505","classId":"witch-doctor","dbcSpellId":806288,"name":"Reclamation","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureshot_border.png","sigil":"RE","description":"Shoot a quick voodoo arrow at an enemy dealing 100% Ranged Weapon Damage plus 15 as Nature damage and collecting a Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times. Usable while moving.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806288,"level":1,"description":"Shoot a quick voodoo arrow at an enemy dealing 100% Ranged Weapon Damage plus 15 as Nature damage and collecting a Spirit.SpiritRegenerates 7 health and mana, repeating every 4 sec for 12 seconds, stacking 5 times. Usable while moving.","castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]}],"talentEntryId":4505},{"id":"coa-13-ritual-hexing-48-705840","classId":"witch-doctor","dbcSpellId":705840,"name":"Ritual Hexing","unlockLevel":1,"icon":"/assets/ui/spells/_spellcasting_shadow.png","sigil":"RH","description":"Ritual HexingRank 1Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 10% against enemies affected by Hex of Malice.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705840:effect:0:aura:107","name":"Ritual Hexing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705840,"level":1,"description":"Ritual HexingRank 1Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 10% against enemies affected by Hex of Malice.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705840:effect:0:aura:107","name":"Ritual Hexing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":705841,"level":1,"description":"Ritual HexingRank 2Increases the damage of Bad Juju, Malefic Wrath and Hexfire by 20% against enemies affected by Hex of Malice.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705841:effect:0:aura:107","name":"Ritual Hexing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-tree-4006","classId":"witch-doctor","dbcSpellId":92086,"name":"Shadowhunter","unlockLevel":1,"icon":"/assets/ui/spells/shadowhunter.png","sigil":"SH","description":"Level 10 Passive Allows you to auto shoot with a ranged weapon. In addition, reduces the mana cost of all spells and abilities by -25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92086:effect:0:aura:108","name":"Shadowhunter (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92086:effect:1:aura:354","name":"Shadowhunter (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":802094},{"kind":"apply-aura","aura":{"id":"coa:92086:effect:2:aura:107","name":"Shadowhunter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92086,"level":1,"description":"Level 10 Passive Allows you to auto shoot with a ranged weapon. In addition, reduces the mana cost of all spells and abilities by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92086:effect:0:aura:108","name":"Shadowhunter (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92086:effect:1:aura:354","name":"Shadowhunter (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":802094},{"kind":"apply-aura","aura":{"id":"coa:92086:effect:2:aura:107","name":"Shadowhunter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}],"talentEntryId":4006},{"id":"coa-tree-29306","classId":"witch-doctor","dbcSpellId":500947,"name":"Slither","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_poisoncleansingtotem.png","sigil":"SL","description":"Transform into a serpent, removing all movement impairing effects and increasing movement speed by 80% for 5 seconds. You cannot attack or cast spells, but chance to be hit by ranged attacks and spells is reduced by -100% for the duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500947:effect:0:aura:31","name":"Slither (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500947:effect:1:aura:56","name":"Slither (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":2914,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500947:effect:2:aura:60","name":"Slither (Aura 60)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":60,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500947,"level":1,"description":"Transform into a serpent, removing all movement impairing effects and increasing movement speed by 80% for 5 seconds. You cannot attack or cast spells, but chance to be hit by ranged attacks and spells is reduced by -100% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500947:effect:0:aura:31","name":"Slither (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500947:effect:1:aura:56","name":"Slither (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":2914,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500947:effect:2:aura:60","name":"Slither (Aura 60)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":60,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29306},{"id":"coa-tree-6054","classId":"witch-doctor","dbcSpellId":705911,"name":"Spiritual Traditions","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_81_vantusrune_zuldazar.png","sigil":"ST","description":"Allows 40% of your mana regeneration to continue while casting and reduces your spell pushback suffered from damaging attacks by 70%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705911:effect:0:aura:149","name":"Spiritual Traditions (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705911:effect:1:aura:134","name":"Spiritual Traditions (Aura 134)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":134,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705911:effect:2:aura:4","name":"Spiritual Traditions (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705911,"level":1,"description":"Allows 40% of your mana regeneration to continue while casting and reduces your spell pushback suffered from damaging attacks by 70%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705911:effect:0:aura:149","name":"Spiritual Traditions (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705911:effect:1:aura:134","name":"Spiritual Traditions (Aura 134)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":134,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705911:effect:2:aura:4","name":"Spiritual Traditions (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}],"talentEntryId":6054},{"id":"coa-13-stranglethorn-style-51-705878","classId":"witch-doctor","dbcSpellId":705878,"name":"Stranglethorn Style","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_tanaanjungle.png","sigil":"SS","description":"Stranglethorn StyleRank 2Increases Nature Damage dealt by 4% and healing done by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705878:effect:0:aura:79","name":"Stranglethorn Style (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"nature","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705878:effect:1:aura:136","name":"Stranglethorn Style (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705878:effect:2:aura:4","name":"Stranglethorn Style (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705878,"level":1,"description":"Stranglethorn StyleRank 2Increases Nature Damage dealt by 4% and healing done by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705878:effect:0:aura:79","name":"Stranglethorn Style (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"nature","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705878:effect:1:aura:136","name":"Stranglethorn Style (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705878:effect:2:aura:4","name":"Stranglethorn Style (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-tree-6051","classId":"witch-doctor","dbcSpellId":804226,"name":"Swift Idol","unlockLevel":1,"icon":"/assets/ui/spells/wd_swift_idol.png","sigil":"SI","description":"Drop a Swift Idol near you for 10 seconds. Allies within 30 yds gain 25% increased movement speed and their chance to resist movement impairing effects is increased by 25%.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"summon","creatureId":50118,"coefficient":0.08,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804226,"level":1,"description":"Drop a Swift Idol near you for 10 seconds. Allies within 30 yds gain 25% increased movement speed and their chance to resist movement impairing effects is increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"summon","creatureId":50118,"coefficient":0.08,"durationMs":10000}]}],"talentEntryId":6051},{"id":"coa-tree-30891","classId":"witch-doctor","dbcSpellId":706538,"name":"Touch of Mueh'zala","unlockLevel":1,"icon":"/assets/ui/spells/inv_archaeology_80_zandalari_zandalariidol.png","sigil":"TO","description":"Increases the duration of Stasis Ward's stun effect by 1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706538:effect:0:aura:107","name":"Touch of Mueh'zala (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706538,"level":1,"description":"Increases the duration of Stasis Ward's stun effect by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706538:effect:0:aura:107","name":"Touch of Mueh'zala (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":30891},{"id":"coa-tree-30203","classId":"witch-doctor","dbcSpellId":802100,"name":"Veil of Darkness","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_gathershadows.png","sigil":"VO","description":"Envelop a target in a shadowy voodoo veil, increasing the damage you deal to them by 15% for 15 seconds. If you are within 40 yds of the target you deal 195 + 10% shadow SP + 4.5% AP Shadow damage to them every 2 second.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802100:effect:0:aura:271","name":"Veil of Darkness (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802100:effect:1:aura:23","name":"Veil of Darkness (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802100:proc:1:806473","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806473}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":806473}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802100,"level":1,"description":"Envelop a target in a shadowy voodoo veil, increasing the damage you deal to them by 15% for 15 seconds. If you are within 40 yds of the target you deal 195 + 10% shadow SP + 4.5% AP Shadow damage to them every 2 second.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802100:effect:0:aura:271","name":"Veil of Darkness (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802100:effect:1:aura:23","name":"Veil of Darkness (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802100:proc:1:806473","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806473}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":806473}]}],"talentEntryId":30203},{"id":"coa-tree-6042","classId":"witch-doctor","dbcSpellId":504465,"name":"Vol'jin's Vigil","unlockLevel":1,"icon":"/assets/ui/spells/inv_hand_1h_trollshaman_c_01.png","sigil":"VJ","description":"Embrace the way of Vol'jin, reducing your damage taken by -25% and healing you for 2% of your maximum health every 1 sec for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504465:effect:0:aura:87","name":"Vol'jin's Vigil (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504465:effect:1:aura:42","name":"Vol'jin's Vigil (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504465:proc:1:802097","triggers":["heal","damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":802097}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504465,"level":1,"description":"Embrace the way of Vol'jin, reducing your damage taken by -25% and healing you for 2% of your maximum health every 1 sec for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504465:effect:0:aura:87","name":"Vol'jin's Vigil (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504465:effect:1:aura:42","name":"Vol'jin's Vigil (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504465:proc:1:802097","triggers":["heal","damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":802097}]}],"talentEntryId":6042},{"id":"coa-tree-29749","classId":"witch-doctor","dbcSpellId":300663,"name":"Will of the Serpent","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_shortblade_54.png","sigil":"WO","description":"Your Lethargy Jinx now increases your critical strike chance against the target by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300663:effect:0:aura:107","name":"Will of the Serpent (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300663,"level":1,"description":"Your Lethargy Jinx now increases your critical strike chance against the target by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300663:effect:0:aura:107","name":"Will of the Serpent (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":29749},{"id":"coa-13-wizened-51-705903","classId":"witch-doctor","dbcSpellId":705903,"name":"Wizened","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_26.png","sigil":"WI","description":"WizenedRank 1Increases your maximum mana by 5% and reduces the mana cost of spells and abilities by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705903:effect:0:aura:132","name":"Wizened (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705903:effect:1:aura:72","name":"Wizened (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705903:effect:2:aura:4","name":"Wizened (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705903,"level":1,"description":"WizenedRank 1Increases your maximum mana by 5% and reduces the mana cost of spells and abilities by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705903:effect:0:aura:132","name":"Wizened (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705903:effect:1:aura:72","name":"Wizened (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705903:effect:2:aura:4","name":"Wizened (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]},{"rank":2,"spellId":705904,"level":1,"description":"WizenedRank 2Increases your maximum mana by 10% and reduces the mana cost of spells and abilities by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705904:effect:0:aura:132","name":"Wizened (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705904:effect:1:aura:72","name":"Wizened (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705904:effect:2:aura:4","name":"Wizened (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-13-shrinking-jinx-51-806285","classId":"witch-doctor","dbcSpellId":806285,"name":"Shrinking Jinx","unlockLevel":8,"icon":"/assets/ui/spells/spell_nature_nullward.png","sigil":"SJ","description":"Shrinking JinxRank 115% of base mana Instant castCurse an enemy for 20 sec, reducing their size and their attack power by 21 and spell power by 10. Can only have 1 Jinx active on a target at a time.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806285:effect:0:aura:344","name":"Shrinking Jinx (Aura 344)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806285:effect:1:aura:61","name":"Shrinking Jinx (Aura 61)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":61,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806285:effect:2:aura:345","name":"Shrinking Jinx (Aura 345)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":345,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806285,"level":8,"description":"Shrinking JinxRank 115% of base mana Instant castCurse an enemy for 20 sec, reducing their size and their attack power by 21 and spell power by 10. Can only have 1 Jinx active on a target at a time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806285:effect:0:aura:344","name":"Shrinking Jinx (Aura 344)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806285:effect:1:aura:61","name":"Shrinking Jinx (Aura 61)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":61,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806285:effect:2:aura:345","name":"Shrinking Jinx (Aura 345)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":345,"miscValue":0,"triggerSpellId":0}]}]},{"id":"witch-doctor-hexing-strike","classId":"witch-doctor","dbcSpellId":501220,"name":"Hexing Strike","unlockLevel":9,"icon":"/assets/ui/spells/inv_knife_1h_zandalarquest_b_02.png","sigil":"HS","description":"Hexing StrikeRank 27% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 18+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":0.43158333500226337,"basePoints":18,"dieSides":4,"pointsPerLevel":1.2860000133514404,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501220,"level":9,"description":"Hexing StrikeRank 27% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 18+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":0.43158333500226337,"basePoints":18,"dieSides":4,"pointsPerLevel":1.2860000133514404,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]},{"rank":3,"spellId":501221,"level":17,"description":"Hexing StrikeRank 37% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 31+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6531875096261501,"basePoints":31,"dieSides":6,"pointsPerLevel":1.718000054359436,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]},{"rank":4,"spellId":501222,"level":25,"description":"Hexing StrikeRank 47% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 51+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":0.906250019868215,"basePoints":51,"dieSides":9,"pointsPerLevel":2.1500000953674316,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]},{"rank":5,"spellId":501223,"level":33,"description":"Hexing StrikeRank 57% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 81+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1.1958750039339066,"basePoints":81,"dieSides":13,"pointsPerLevel":2.5820000171661377,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":40},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]},{"rank":6,"spellId":501224,"level":41,"description":"Hexing StrikeRank 67% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 124+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5242499851045155,"basePoints":124,"dieSides":18,"pointsPerLevel":3.0139999389648438,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":48},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]},{"rank":7,"spellId":501225,"level":49,"description":"Hexing StrikeRank 77% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 184+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8976771086454391,"basePoints":184,"dieSides":24,"pointsPerLevel":3.446000099182129,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":56},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]},{"rank":8,"spellId":501226,"level":57,"description":"Hexing StrikeRank 87% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 268+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3312314870180906,"basePoints":268,"dieSides":30,"pointsPerLevel":3.878000020980835,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":64},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]},{"rank":9,"spellId":501227,"level":65,"description":"Hexing StrikeRank 97% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 384+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":2.842291651169459,"basePoints":384,"dieSides":37,"pointsPerLevel":4.309999942779541,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":72},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]},{"rank":10,"spellId":501228,"level":73,"description":"Hexing StrikeRank 107% of base mana Instant10 sec cooldownRequires Melee Weapon Invokes Hir'eek Deals 543+AP*0.302885 Physical damage to an enemy and afflicts them with two random Witch Doctor Hexes.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":3.4513863921165466,"basePoints":543,"dieSides":45,"pointsPerLevel":4.742000102996826,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122507,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802903}]}]},{"id":"coa-13-soothing-juju-49-806130","classId":"witch-doctor","dbcSpellId":806130,"name":"Soothing Juju","unlockLevel":10,"icon":"/assets/ui/spells/nhi_natureslimeblast_border.png","sigil":"SJ","description":"Soothing JujuRank 1255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 26+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","target":"friendly","range":{"min":0,"max":40},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":26,"dieSides":9,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":10,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":570126},{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806130,"level":10,"description":"Soothing JujuRank 1255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 26+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":26,"dieSides":9,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":10,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":570126},{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":2,"spellId":806909,"level":18,"description":"Soothing JujuRank 2255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 46+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":46,"dieSides":9,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":18,"maxScalingLevel":24},{"kind":"trigger-spell","spellId":570126},{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":3,"spellId":806910,"level":26,"description":"Soothing JujuRank 3255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 76+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":76,"dieSides":9,"pointsPerLevel":1,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":26,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":570126},{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":4,"spellId":806911,"level":34,"description":"Soothing JujuRank 4255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 96+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":96,"dieSides":9,"pointsPerLevel":1.2666699886322021,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":34,"maxScalingLevel":40},{"kind":"trigger-spell","spellId":570126},{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":5,"spellId":806912,"level":42,"description":"Soothing JujuRank 5255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 121+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":121,"dieSides":9,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":42,"maxScalingLevel":48},{"kind":"trigger-spell","spellId":570126},{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":6,"spellId":806913,"level":50,"description":"Soothing JujuRank 6255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 156+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":156,"dieSides":9,"pointsPerLevel":2.0666699409484863,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":50,"maxScalingLevel":56},{"kind":"trigger-spell","spellId":570126},{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":7,"spellId":806914,"level":58,"description":"Soothing JujuRank 7255% of base mana Instant castSoothe an enemy, healing them and up to 5 allies within 30 yds for 265+0+SP*0.65, increasing the cost of your next Soothing Juju by 11%, stacking 5 times. Each additional ally beyond the first is healed for 15% less. Can only be used while channeling a Witch Doctor spell upon the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":265,"dieSides":9,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":58},{"kind":"trigger-spell","spellId":570126},{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-13-shadow-puppets-48-500015","classId":"witch-doctor","dbcSpellId":500015,"name":"Shadow Puppets","unlockLevel":11,"icon":"/assets/ui/spells/custom_45_voodoo_border.png","sigil":"SP","description":"Shadow PuppetsRank 115% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 25+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","target":"hostile","range":{"min":0,"max":30},"castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500015:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500015:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:500015:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500015:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500015,"level":11,"description":"Shadow PuppetsRank 115% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 25+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500015:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500015:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:500015:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500015:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":2,"spellId":501080,"level":18,"description":"Shadow PuppetsRank 215% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 35+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501080:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501080:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501080:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501080:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":3,"spellId":501081,"level":24,"description":"Shadow PuppetsRank 315% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 43+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501081:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501081:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501081:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501081:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":4,"spellId":501082,"level":30,"description":"Shadow PuppetsRank 415% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 53+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501082:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501082:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501082:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501082:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":5,"spellId":501083,"level":36,"description":"Shadow PuppetsRank 515% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 66+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501083:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501083:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501083:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501083:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":6,"spellId":501084,"level":42,"description":"Shadow PuppetsRank 615% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 86+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501084:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501084:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501084:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501084:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":7,"spellId":501085,"level":48,"description":"Shadow PuppetsRank 715% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 108+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501085:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501085:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501085:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501085:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":8,"spellId":501086,"level":54,"description":"Shadow PuppetsRank 815% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 133+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501086:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501086:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501086:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501086:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":9,"spellId":501087,"level":60,"description":"Shadow PuppetsRank 915% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 164+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501087:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501087:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501087:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501087:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]},{"rank":10,"spellId":501088,"level":68,"description":"Shadow PuppetsRank 1015% of base mana Instant cast18 sec cooldownSummon a Shadow Puppet that collects a Spirit and rushes towards your target, dealing 203+0+ShaP*.22 Shadow damage, repeating every 0.75 sec for 3 sec. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"channel","castTimeMs":3000,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501088:effect:0:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501088:proc:0:801797","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801797}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801797},{"kind":"apply-aura","aura":{"id":"coa:501088:effect:1:aura:227","name":"Shadow Puppets (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501088:proc:1:802745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802745}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":802745}]}]},{"id":"coa-13-rage-of-bethekk-51-801672","classId":"witch-doctor","dbcSpellId":801672,"name":"Rage of Bethekk","unlockLevel":12,"icon":"/assets/ui/spells/ability_upgrademoonglaive.png","sigil":"RO","description":"Rage of BethekkRank 12% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Slash an enemy for 50% Weapon damage plus 7 to 8 Physical damage, increased by 0% for each Shadow Mark consumed.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":7,"dieSides":2,"pointsPerLevel":0.9599999785423279,"bonusPowerCoefficient":1,"sourceLevel":12,"maxScalingLevel":15},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801672,"level":12,"description":"Rage of BethekkRank 12% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Slash an enemy for 50% Weapon damage plus 7 to 8 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":7,"dieSides":2,"pointsPerLevel":0.9599999785423279,"bonusPowerCoefficient":1,"sourceLevel":12,"maxScalingLevel":15},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":501229,"level":17,"description":"Rage of BethekkRank 22% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 9 to 11 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":0.298958337555329,"basePoints":9,"dieSides":3,"pointsPerLevel":1.100000023841858,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":19},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":501230,"level":21,"description":"Rage of BethekkRank 32% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 16 to 20 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4194444351726108,"basePoints":16,"dieSides":5,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":24},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":501231,"level":26,"description":"Rage of BethekkRank 42% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 29 to 36 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5813008130081301,"basePoints":29,"dieSides":8,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":29},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":501232,"level":31,"description":"Rage of BethekkRank 52% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 36 to 47 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6826087063637333,"basePoints":36,"dieSides":12,"pointsPerLevel":1.7000000476837158,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":34},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":501233,"level":36,"description":"Rage of BethekkRank 62% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 59 to 76 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8882352885077981,"basePoints":59,"dieSides":18,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":39},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":501234,"level":41,"description":"Rage of BethekkRank 72% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 66 to 87 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9922619163990021,"basePoints":66,"dieSides":22,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":44},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":8,"spellId":501235,"level":46,"description":"Rage of BethekkRank 82% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 86 to 113 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":1.146994559491267,"basePoints":86,"dieSides":28,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":49},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":9,"spellId":501236,"level":51,"description":"Rage of BethekkRank 92% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 119 to 156 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3641413895770758,"basePoints":119,"dieSides":38,"pointsPerLevel":2.5999999046325684,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":54},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":10,"spellId":501237,"level":56,"description":"Rage of BethekkRank 102% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 139 to 186 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":1.499061020327286,"basePoints":139,"dieSides":48,"pointsPerLevel":2.799999952316284,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":11,"spellId":501238,"level":63,"description":"Rage of BethekkRank 112% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 186 to 243 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7243589743589745,"basePoints":186,"dieSides":58,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":68},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":12,"spellId":501239,"level":69,"description":"Rage of BethekkRank 122% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 246 to 313 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9853174733737158,"basePoints":246,"dieSides":68,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]},{"rank":13,"spellId":501240,"level":75,"description":"Rage of BethekkRank 132% of base mana InstantRequires Ranged Weapon Consumes Shadow Marks Invokes Bethekk Throw a glaive at an enemy for 50% Ranged Weapon damage plus 346 to 423 Physical damage, increased by 0% for each Shadow Mark consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":2,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3685185450094717,"basePoints":346,"dieSides":78,"pointsPerLevel":3.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":75,"maxScalingLevel":80},{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1}]}]},{"id":"coa-13-bad-juju-48-802087","classId":"witch-doctor","dbcSpellId":802087,"name":"Bad Juju","unlockLevel":15,"icon":"/assets/ui/spells/skill_icon_skill5_border.png","sigil":"BJ","description":"Bad JujuRank 116% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 191+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":2.522222238116794,"basePoints":191,"dieSides":1,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802087,"level":15,"description":"Bad JujuRank 116% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 191+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":2.522222238116794,"basePoints":191,"dieSides":1,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":501174,"level":22,"description":"Bad JujuRank 216% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 288+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":288,"dieSides":1,"pointsPerLevel":3.713900089263916,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":22,"maxScalingLevel":26},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":501175,"level":28,"description":"Bad JujuRank 316% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 359+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":359,"dieSides":1,"pointsPerLevel":5.272749900817871,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":28,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":501176,"level":34,"description":"Bad JujuRank 416% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 467+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":467,"dieSides":1,"pointsPerLevel":6.694009780883789,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":34,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":501177,"level":40,"description":"Bad JujuRank 516% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 545+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":545,"dieSides":1,"pointsPerLevel":8.737239837646484,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":40,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":501178,"level":46,"description":"Bad JujuRank 616% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 632+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":632,"dieSides":1,"pointsPerLevel":10.795599937438965,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":46,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":501179,"level":52,"description":"Bad JujuRank 716% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 703+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":703,"dieSides":1,"pointsPerLevel":13.02560043334961,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":52,"maxScalingLevel":56},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":501180,"level":58,"description":"Bad JujuRank 816% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 789+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":789,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":58,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":9,"spellId":501181,"level":60,"description":"Bad JujuRank 916% of base mana 2.5 sec cast15 sec cooldownHurl a bolt of dark magic at an enemy, dealing 850+SP*1+Spi*.3 Shadow damage. If the target is affected by Hex of Malice it also reduces the target's healing received by 20% for 8 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":850,"dieSides":1,"pointsPerLevel":3.595180034637451,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":60,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":802926},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]}]},{"id":"witch-doctor-shadowflare","classId":"witch-doctor","dbcSpellId":801669,"name":"Shadowflare","unlockLevel":16,"icon":"/assets/ui/spells/nhi_shadowedbones_border.png","sigil":"SH","description":"ShadowflareRank 131% of base mana 2 sec castRain down shadow magic at a location, dealing 57+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","target":"hostile","range":{"min":0,"max":30},"radius":8,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":57},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801669,"level":16,"description":"ShadowflareRank 131% of base mana 2 sec castRain down shadow magic at a location, dealing 57+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":57},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":2,"spellId":501139,"level":22,"description":"ShadowflareRank 231% of base mana 2 sec castRain down shadow magic at a location, dealing 100+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":100},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":3,"spellId":501140,"level":28,"description":"ShadowflareRank 331% of base mana 2 sec castRain down shadow magic at a location, dealing 142+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":142},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":4,"spellId":501141,"level":34,"description":"ShadowflareRank 431% of base mana 2 sec castRain down shadow magic at a location, dealing 191+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":191},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":5,"spellId":501142,"level":40,"description":"ShadowflareRank 531% of base mana 2 sec castRain down shadow magic at a location, dealing 244+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":244},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":6,"spellId":501143,"level":46,"description":"ShadowflareRank 631% of base mana 2 sec castRain down shadow magic at a location, dealing 301+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":301},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":7,"spellId":501144,"level":52,"description":"ShadowflareRank 731% of base mana 2 sec castRain down shadow magic at a location, dealing 370+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":370},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":8,"spellId":501145,"level":58,"description":"ShadowflareRank 831% of base mana 2 sec castRain down shadow magic at a location, dealing 455+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":455},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":9,"spellId":501146,"level":60,"description":"ShadowflareRank 931% of base mana 2 sec castRain down shadow magic at a location, dealing 602+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":602},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":10,"spellId":501147,"level":76,"description":"ShadowflareRank 1031% of base mana 2 sec castRain down shadow magic at a location, dealing 840+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":840},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":11,"spellId":501148,"level":80,"description":"ShadowflareRank 1131% of base mana 2 sec castRain down shadow magic at a location, dealing 1031+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":1031},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":12,"spellId":501149,"level":84,"description":"ShadowflareRank 1231% of base mana 2 sec castRain down shadow magic at a location, dealing 1267+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":1267},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]},{"rank":13,"spellId":501150,"level":90,"description":"ShadowflareRank 1331% of base mana 2 sec castRain down shadow magic at a location, dealing 1556+0+ShaP*.35+RAP*.1 Shadow damage to all enemies. Killing an enemy with this spell grants you a Spirit. Spirit Regenerates 2+ health and mana, repeating every 4 sec for 12 sec, stacking 5 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802704,"withValue":1556},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}]}]},{"id":"coa-13-spirit-in-a-bottle-49-801696","classId":"witch-doctor","dbcSpellId":801696,"name":"Spirit in a Bottle","unlockLevel":16,"icon":"/assets/ui/spells/inv_trade_alchemy_dpotion_c1a.png","sigil":"SI","description":"Spirit in a BottleRank 115% of base mana 1.5 sec castSend a spirit to an ally, healing them for 109+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1.44260988953293,"basePoints":109,"dieSides":5,"pointsPerLevel":1.4476699829101562,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801696,"level":16,"description":"Spirit in a BottleRank 115% of base mana 1.5 sec castSend a spirit to an ally, healing them for 109+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1.44260988953293,"basePoints":109,"dieSides":5,"pointsPerLevel":1.4476699829101562,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22}]},{"rank":2,"spellId":501207,"level":24,"description":"Spirit in a BottleRank 215% of base mana 1.5 sec castSend a spirit to an ally, healing them for 166+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1.8957265055077708,"basePoints":166,"dieSides":7,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":3,"spellId":501208,"level":32,"description":"Spirit in a BottleRank 315% of base mana 1.5 sec castSend a spirit to an ally, healing them for 220+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":2.244255336463874,"basePoints":220,"dieSides":7,"pointsPerLevel":2.9200000762939453,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":4,"spellId":501209,"level":40,"description":"Spirit in a BottleRank 415% of base mana 1.5 sec castSend a spirit to an ally, healing them for 282+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":2.6537381836862277,"basePoints":282,"dieSides":13,"pointsPerLevel":3.7466700077056885,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46}]},{"rank":5,"spellId":501210,"level":48,"description":"Spirit in a BottleRank 515% of base mana 1.5 sec castSend a spirit to an ally, healing them for 358+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":3.1480423861710483,"basePoints":358,"dieSides":18,"pointsPerLevel":4.760000228881836,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":6,"spellId":501211,"level":56,"description":"Spirit in a BottleRank 615% of base mana 1.5 sec castSend a spirit to an ally, healing them for 380+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":4,"basePoints":380,"dieSides":24,"pointsPerLevel":15.213500022888184,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":7,"spellId":501212,"level":60,"description":"Spirit in a BottleRank 715% of base mana 1.5 sec castSend a spirit to an ally, healing them for 412+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":2.581495984395345,"basePoints":412,"dieSides":32,"pointsPerLevel":2.555609941482544,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66}]},{"rank":8,"spellId":501213,"level":68,"description":"Spirit in a BottleRank 815% of base mana 1.5 sec castSend a spirit to an ally, healing them for 514+0+SP*.45 and dealing damage to up to 5 enemies within 5 yds of them equal to 4% of the healing done.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":2.537240330952717,"basePoints":514,"dieSides":43,"pointsPerLevel":1.4231300354003906,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80}]}]},{"id":"witch-doctor-voodoo-bolt","classId":"witch-doctor","dbcSpellId":501188,"name":"Voodoo Bolt","unlockLevel":16,"icon":"/assets/ui/spells/spell_nature_elementalshields.png","sigil":"VB","description":"Voodoo BoltRank 211% of base mana 1.5 sec cast20 sec cooldownInvoke Hir'eek Deals 698 to 779 Nature Damage to an enemy, and extends the duration of Hexes by 4 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":698,"dieSides":82,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:501188:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501188,"level":60,"description":"Voodoo BoltRank 211% of base mana 1.5 sec cast20 sec cooldownInvoke Hir'eek Deals 698 to 779 Nature Damage to an enemy, and extends the duration of Hexes by 4 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":698,"dieSides":82,"pointsPerLevel":3.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":806512,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:501188:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501189,"level":16,"description":"Voodoo BoltRank 36% of base mana 1.5 sec castDeals 32 to 38 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5910537678708312,"basePoints":32,"dieSides":7,"pointsPerLevel":1.2480000257492065,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501189:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501190,"level":23,"description":"Voodoo BoltRank 46% of base mana 1.5 sec castDeals 47 to 55 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7563552595021432,"basePoints":47,"dieSides":9,"pointsPerLevel":1.531499981880188,"bonusPowerCoefficient":0,"sourceLevel":23,"maxScalingLevel":29},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501190:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501191,"level":30,"description":"Voodoo BoltRank 56% of base mana 1.5 sec castDeals 68 to 79 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9477777904934354,"basePoints":68,"dieSides":12,"pointsPerLevel":1.815000057220459,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501191:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501192,"level":37,"description":"Voodoo BoltRank 66% of base mana 1.5 sec castDeals 88 to 102 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.1066955159872005,"basePoints":88,"dieSides":15,"pointsPerLevel":2.0985000133514404,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501192:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501193,"level":45,"description":"Voodoo BoltRank 76% of base mana 1.5 sec castDeals 131 to 150 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3861805293295117,"basePoints":131,"dieSides":20,"pointsPerLevel":2.422499895095825,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":51},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501193:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501194,"level":52,"description":"Voodoo BoltRank 86% of base mana 1.5 sec castDeals 182 to 206 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.6652338540376121,"basePoints":182,"dieSides":25,"pointsPerLevel":2.7060000896453857,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501194:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501195,"level":59,"description":"Voodoo BoltRank 96% of base mana 1.5 sec castDeals 252 to 281 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9949572193729985,"basePoints":252,"dieSides":30,"pointsPerLevel":2.989500045776367,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":65},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501195:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":501196,"level":66,"description":"Voodoo BoltRank 106% of base mana 1.5 sec castDeals 343 to 378 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":2.372502058131214,"basePoints":343,"dieSides":36,"pointsPerLevel":3.2730000019073486,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":73},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501196:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":11,"spellId":501197,"level":74,"description":"Voodoo BoltRank 116% of base mana 1.5 sec castDeals 482 to 525 Nature Damage to an enemy, and increases the duration of Curses used against them by 10% for 15 sec, stacks up to 3 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":2.882689106330443,"basePoints":482,"dieSides":44,"pointsPerLevel":3.5969998836517334,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":806512},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501197:effect:2:aura:4","name":"Voodoo Bolt (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-4506","classId":"witch-doctor","dbcSpellId":705843,"name":"Loa Spirits","unlockLevel":20,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_ragedspirit_border.png","sigil":"LS","description":"Level 20 Passive For each active Spirit on you, you have an 5% chance for your Reclamation to cast an additional time.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705843:effect:0:aura:42","name":"Loa Spirits (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705843:proc:0:707422","triggers":["cast"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707422}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707422}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705843,"level":20,"description":"Level 20 Passive For each active Spirit on you, you have an 5% chance for your Reclamation to cast an additional time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705843:effect:0:aura:42","name":"Loa Spirits (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705843:proc:0:707422","triggers":["cast"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707422}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707422}]}],"talentEntryId":4506},{"id":"coa-tree-4533","classId":"witch-doctor","dbcSpellId":706482,"name":"Voodoo Power","unlockLevel":20,"icon":"/assets/ui/spells/spell_nature_faeriefire.png","sigil":"VP","description":"Level 20 Passive Increases your spell damage by 50% of your Spirit and your spell hit rating by 5% of your Spirit.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706482:effect:0:aura:220","name":"Voodoo Power (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:128","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":128,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706482:effect:1:aura:174","name":"Voodoo Power (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706482,"level":20,"description":"Level 20 Passive Increases your spell damage by 50% of your Spirit and your spell hit rating by 5% of your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706482:effect:0:aura:220","name":"Voodoo Power (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:128","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":128,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706482:effect:1:aura:174","name":"Voodoo Power (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":4533},{"id":"coa-13-fang-of-hireek-48-501162","classId":"witch-doctor","dbcSpellId":501162,"name":"Fang of Hir'eek","unlockLevel":28,"icon":"/assets/ui/spells/inv_artifact_powerofthedarkside.png","sigil":"FO","description":"Fang of Hir'eekRank 56% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 152 to 165 Spellshadow Damage|r to an enemy.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9814263425132101,"basePoints":152,"dieSides":14,"pointsPerLevel":3.4679999351501465,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":33},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501162:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":5,"spellId":501162,"level":28,"description":"Fang of Hir'eekRank 56% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 152 to 165 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9814263425132101,"basePoints":152,"dieSides":14,"pointsPerLevel":3.4679999351501465,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":33},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501162:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501163,"level":34,"description":"Fang of Hir'eekRank 66% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 192 to 208 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":2.275074829049662,"basePoints":192,"dieSides":17,"pointsPerLevel":3.9539999961853027,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501163:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501164,"level":41,"description":"Fang of Hir'eekRank 76% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 274 to 295 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":2.7967916443234397,"basePoints":274,"dieSides":22,"pointsPerLevel":4.520999908447266,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":47},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501164:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501165,"level":48,"description":"Fang of Hir'eekRank 86% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 384 to 410 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":3.3927195311854126,"basePoints":384,"dieSides":27,"pointsPerLevel":5.0879998207092285,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501165:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501166,"level":54,"description":"Fang of Hir'eekRank 96% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 511 to 542 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":3.997565186542013,"basePoints":511,"dieSides":32,"pointsPerLevel":5.573999881744385,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501166:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":501167,"level":61,"description":"Fang of Hir'eekRank 106% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 700 to 738 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":700,"dieSides":39,"pointsPerLevel":6.140999794006348,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":67},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501167:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":11,"spellId":501168,"level":68,"description":"Fang of Hir'eekRank 116% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 950 to 996 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":950,"dieSides":47,"pointsPerLevel":6.708000183105469,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":73},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501168:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":12,"spellId":501169,"level":74,"description":"Fang of Hir'eekRank 126% of base mana 2 sec castInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus Deals 1233 to 1286 Spellshadow Damage|r to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1233,"dieSides":54,"pointsPerLevel":7.193999767303467,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501169:effect:2:aura:271","name":"Fang of Hir'eek (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-13-mojo-beam-49-500950","classId":"witch-doctor","dbcSpellId":500950,"name":"Mojo Beam","unlockLevel":29,"icon":"/assets/ui/spells/nhi_unholybeam_border.png","sigil":"MB","description":"Mojo BeamRank 115% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 174+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","target":"friendly","range":{"min":0,"max":40},"castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500950:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.9199296362472302,"basePoints":174,"dieSides":1,"pointsPerLevel":2.738990068435669,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:500950:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500950:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":17,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500950,"level":29,"description":"Mojo BeamRank 115% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 174+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500950:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.9199296362472302,"basePoints":174,"dieSides":1,"pointsPerLevel":2.738990068435669,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:500950:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500950:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":17,"triggerSpellId":0}]},{"rank":2,"spellId":501114,"level":36,"description":"Mojo BeamRank 215% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 223+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501114:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":2.1477140040179483,"basePoints":223,"dieSides":1,"pointsPerLevel":2.933340072631836,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:501114:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501114:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501114:proc:2:578112","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":578112}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":578112}]},{"rank":3,"spellId":501115,"level":44,"description":"Mojo BeamRank 315% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 290+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501115:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":2.588999554262323,"basePoints":290,"dieSides":1,"pointsPerLevel":3.823930025100708,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:501115:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501115:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501115:proc:2:578112","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":578112}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":578112}]},{"rank":4,"spellId":501116,"level":52,"description":"Mojo BeamRank 415% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 341+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501116:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":2.861938267797973,"basePoints":341,"dieSides":1,"pointsPerLevel":4.504799842834473,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:501116:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501116:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501116:proc:2:578112","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":578112}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":578112}]},{"rank":5,"spellId":501117,"level":60,"description":"Mojo BeamRank 515% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 383+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501117:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":3.0540781995985244,"basePoints":383,"dieSides":1,"pointsPerLevel":5.069459915161133,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:501117:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501117:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501117:proc:2:578112","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":578112}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":578112}]},{"rank":6,"spellId":501118,"level":68,"description":"Mojo BeamRank 615% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 455+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501118:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":3.474015262711,"basePoints":455,"dieSides":1,"pointsPerLevel":6.029850006103516,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:501118:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501118:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501118:proc:2:578112","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":578112}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":578112}]},{"rank":7,"spellId":572577,"level":76,"description":"Mojo BeamRank 715% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 718+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572577:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":4,"basePoints":718,"dieSides":1,"pointsPerLevel":14.310199737548828,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:572577:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:572577:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:572577:proc:2:578112","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":578112}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":578112}]}]},{"id":"coa-tree-4715","classId":"witch-doctor","dbcSpellId":705848,"name":"Loa's Blessing","unlockLevel":30,"icon":"/assets/ui/spells/inv_misc_fish_turtle_03.png","sigil":"LS","description":"Level 30 Passive Healing done by Loa's Brew now applies a random empowerment to the target ally.","target":"friendly","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705848:effect:0:aura:4","name":"Loa's Blessing (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705848,"level":30,"description":"Level 30 Passive Healing done by Loa's Brew now applies a random empowerment to the target ally.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705848:effect:0:aura:4","name":"Loa's Blessing (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4715},{"id":"coa-tree-4532","classId":"witch-doctor","dbcSpellId":705844,"name":"Overflowing Juju","unlockLevel":30,"icon":"/assets/ui/spells/_bannishkt_purple.png","sigil":"OJ","description":"Level 30 Passive Damage dealt by your Shadow Puppets and Puppeteer's Threads now has a 15% chance to reset the cooldown of Bad Juju and cause your next cast to incur an -10 sec reduced cooldown.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705844:effect:0:aura:42","name":"Overflowing Juju (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705844:proc:0:705845","triggers":["cast"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705845}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":705845}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705844,"level":30,"description":"Level 30 Passive Damage dealt by your Shadow Puppets and Puppeteer's Threads now has a 15% chance to reset the cooldown of Bad Juju and cause your next cast to incur an -10 sec reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705844:effect:0:aura:42","name":"Overflowing Juju (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705844:proc:0:705845","triggers":["cast"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705845}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":705845}]}],"talentEntryId":4532},{"id":"coa-tree-11532","classId":"witch-doctor","dbcSpellId":807296,"name":"Juju Spirits","unlockLevel":40,"icon":"/assets/ui/spells/spell_nature_bloodlust.png","sigil":"JS","description":"Level 40 Passive Increases your spell critical damage by 100% and increases the critical strike chance of Bad Juju by 5% for each active Spirit on you.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807296:effect:0:aura:107","name":"Juju Spirits (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807296:effect:1:aura:163","name":"Juju Spirits (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807296,"level":40,"description":"Level 40 Passive Increases your spell critical damage by 100% and increases the critical strike chance of Bad Juju by 5% for each active Spirit on you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807296:effect:0:aura:107","name":"Juju Spirits (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807296:effect:1:aura:163","name":"Juju Spirits (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":11532},{"id":"coa-tree-4733","classId":"witch-doctor","dbcSpellId":707617,"name":"Mojo Wave","unlockLevel":40,"icon":"/assets/ui/spells/nhi_naturewave_border.png","sigil":"MW","description":"Level 40 Passive Healing with Mojo Beam now heals up to 3 of the lowest health nearby allies for 75% of the healing done and casting it grants allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707617:effect:0:aura:354","name":"Mojo Wave (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":712453}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707617,"level":40,"description":"Level 40 Passive Healing with Mojo Beam now heals up to 3 of the lowest health nearby allies for 75% of the healing done and casting it grants allies Replenishment.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707617:effect:0:aura:354","name":"Mojo Wave (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":712453}]}],"talentEntryId":4733},{"id":"coa-tree-11133","classId":"witch-doctor","dbcSpellId":704500,"name":"Hexfire Adept","unlockLevel":50,"icon":"/assets/ui/spells/nhi_corruptionfire_border.png","sigil":"HA","description":"Level 50 Passive Casting Hexfire transforms your next Malefic Wrath within 8 seconds into Hexfire Wrath.Hexfire WrathHurl hexfire energy at an enemy and up to 2 nearby enemies, dealing cond(gt(SPFI, SPN), 306+0+SPFI*0.75, 306+0+SPN*0.75) Fire damage and cursing them for 9 seconds. The curse deals cond(gt(SPFI, SPN), 239+0+SPFI*0.1, 239+0+SPN*0.1) Fire damage every 3 sec. Spawns a Serpent Ward for 10 seconds beneath your target. Scales with modifiers to Malefic Wrath.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704500:effect:0:aura:42","name":"Hexfire Adept (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:704500:proc:0:503626","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503626}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503626},{"kind":"apply-aura","aura":{"id":"coa:704500:effect:1:aura:286","name":"Hexfire Adept (Aura 286)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":286,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704500,"level":50,"description":"Level 50 Passive Casting Hexfire transforms your next Malefic Wrath within 8 seconds into Hexfire Wrath.Hexfire WrathHurl hexfire energy at an enemy and up to 2 nearby enemies, dealing cond(gt(SPFI, SPN), 306+0+SPFI*0.75, 306+0+SPN*0.75) Fire damage and cursing them for 9 seconds. The curse deals cond(gt(SPFI, SPN), 239+0+SPFI*0.1, 239+0+SPN*0.1) Fire damage every 3 sec. Spawns a Serpent Ward for 10 seconds beneath your target. Scales with modifiers to Malefic Wrath.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704500:effect:0:aura:42","name":"Hexfire Adept (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:704500:proc:0:503626","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503626}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503626},{"kind":"apply-aura","aura":{"id":"coa:704500:effect:1:aura:286","name":"Hexfire Adept (Aura 286)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":286,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":11133},{"id":"coa-tree-13133","classId":"witch-doctor","dbcSpellId":706369,"name":"It's Da Mojo","unlockLevel":50,"icon":"/assets/ui/spells/spell_nature_giftofthewaterspirit.png","sigil":"IS","description":"Drop a Spirit Link Idol for 14 seconds. The idol redistributes the health of all party and raid members every 2 sec, such that each player ends up with the same percentage of their maximum health.","target":"hostile","range":{"min":0,"max":25},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1000,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"summon","creatureId":522106,"coefficient":0.08,"durationMs":8500}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":706369,"level":50,"description":"Drop a Spirit Link Idol for 14 seconds. The idol redistributes the health of all party and raid members every 2 sec, such that each player ends up with the same percentage of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1000,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"summon","creatureId":522106,"coefficient":0.08,"durationMs":8500}]}],"talentEntryId":13133},{"id":"coa-13-mojo-beam-48-501118","classId":"witch-doctor","dbcSpellId":501118,"name":"Mojo Beam","unlockLevel":68,"icon":"/assets/ui/spells/nhi_unholybeam_border.png","sigil":"MB","description":"Mojo BeamRank 615% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 455+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","target":"friendly","range":{"min":0,"max":40},"castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501118:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":3.474015262711,"basePoints":455,"dieSides":1,"pointsPerLevel":6.029850006103516,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:501118:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501118:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501118:proc:2:578112","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":578112}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":578112}],"passive":false,"source":"coa-progression","ranks":[{"rank":6,"spellId":501118,"level":68,"description":"Mojo BeamRank 615% of base mana, plus 2 per sec Channeled10 sec cooldownBring mojo to an ally, healing for 455+0+SP*0.185 every 1 sec for 4 sec. While channeling, you can instantly cast Potion Toss, Splash Potion and Spirit in a Bottle at a 20% increased cost. This spell is unaffected by haste modifiers.","castMode":"channel","castTimeMs":4000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501118:effect:0:aura:8","name":"Mojo Beam (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":3.474015262711,"basePoints":455,"dieSides":1,"pointsPerLevel":6.029850006103516,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74,"ticks":4,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:501118:effect:1:aura:353","name":"Mojo Beam (Aura 353)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501118:effect:2:aura:23","name":"Mojo Beam (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501118:proc:2:578112","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":578112}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":578112}]}]},{"id":"coa-13-strike-of-the-gods-48-501160","classId":"witch-doctor","dbcSpellId":501160,"name":"Strike of the Gods","unlockLevel":70,"icon":"/assets/ui/spells/nhi_unholy_blast_border.png","sigil":"SO","description":"Strike of the GodsRank 36% of base mana InstantInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus 3 Charges 12 sec recharge Deals 484 to 515 Spellshadow Damage|r to an enemy. Changing Devotions refreshes a charge.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":3.4889411440082623,"basePoints":484,"dieSides":32,"pointsPerLevel":5.573999881744385,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":74},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501160:effect:2:aura:271","name":"Strike of the Gods (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":501160,"level":70,"description":"Strike of the GodsRank 36% of base mana InstantInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus 3 Charges 12 sec recharge Deals 484 to 515 Spellshadow Damage|r to an enemy. Changing Devotions refreshes a charge.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":3.4889411440082623,"basePoints":484,"dieSides":32,"pointsPerLevel":5.573999881744385,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":74},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501160:effect:2:aura:271","name":"Strike of the Gods (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501161,"level":74,"description":"Strike of the GodsRank 46% of base mana InstantInvokes Hir'eek, Bethekk, Bwonsamdi, and Sseratus 3 Charges 12 sec recharge Deals 734 to 780 Spellshadow Damage|r to an enemy. Changing Devotions refreshes a charge.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":734,"dieSides":47,"pointsPerLevel":6.140999794006348,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":804107},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501161:effect:2:aura:271","name":"Strike of the Gods (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]}],"felsworn":[{"id":"coa-tree-29686","classId":"felsworn","dbcSpellId":803904,"name":"Annihilation","unlockLevel":1,"icon":"/assets/ui/spells/ability_boss_lordanthricystgreen.png","sigil":"AN","description":"Gorge on fel energy, guaranteeing your next direct instance of damage to critically strike, but causing it to consume 5% of your maximum health. Lasts for 5 attacks or 12 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803904:effect:0:aura:290","name":"Annihilation (Aura 290)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803904:effect:1:aura:42","name":"Annihilation (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803904:proc:1:807961","triggers":["crit","hit"],"chance":1,"charges":5,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807961}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807961}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803904,"level":1,"description":"Gorge on fel energy, guaranteeing your next direct instance of damage to critically strike, but causing it to consume 5% of your maximum health. Lasts for 5 attacks or 12 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803904:effect:0:aura:290","name":"Annihilation (Aura 290)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803904:effect:1:aura:42","name":"Annihilation (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803904:proc:1:807961","triggers":["crit","hit"],"chance":1,"charges":5,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807961}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807961}]}],"talentEntryId":29686},{"id":"coa-tree-30301","classId":"felsworn","dbcSpellId":560822,"name":"Anti-Magic","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_antimagicshell.png","sigil":"AM","description":"When Hateforged Barrier is removed from you, you now reduce -10% of all Magic damage taken for 8 seconds. In addition, Hateforged Barrier now heals for an additional 2% of your maximum health each tick.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560822:effect:0:aura:4","name":"Anti-Magic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560822:effect:1:aura:107","name":"Anti-Magic (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560822,"level":1,"description":"When Hateforged Barrier is removed from you, you now reduce -10% of all Magic damage taken for 8 seconds. In addition, Hateforged Barrier now heals for an additional 2% of your maximum health each tick.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560822:effect:0:aura:4","name":"Anti-Magic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560822:effect:1:aura:107","name":"Anti-Magic (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":30301},{"id":"coa-tree-33671","classId":"felsworn","dbcSpellId":706266,"name":"Armaments of the Legion","unlockLevel":1,"icon":"/assets/ui/spells/inv_plate_helmet_eredarargus_d_01.png","sigil":"AO","description":"Reduces your chance to be hit by spells by -2% and increases the absorption value of Hateforged Barrier by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706266:effect:0:aura:186","name":"Armaments of the Legion (Aura 186)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":-0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":186,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706266:effect:1:aura:317","name":"Armaments of the Legion (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706266:effect:2:aura:108","name":"Armaments of the Legion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706266,"level":1,"description":"Reduces your chance to be hit by spells by -2% and increases the absorption value of Hateforged Barrier by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706266:effect:0:aura:186","name":"Armaments of the Legion (Aura 186)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":-0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":186,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706266:effect:1:aura:317","name":"Armaments of the Legion (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706266:effect:2:aura:108","name":"Armaments of the Legion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]},{"rank":2,"spellId":707844,"level":1,"description":"Reduces your chance to be hit by spells by -4% and increases the absorption value of Hateforged Barrier by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707844:effect:0:aura:186","name":"Armaments of the Legion (Aura 186)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":-0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":186,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707844:effect:1:aura:317","name":"Armaments of the Legion (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707844:effect:2:aura:108","name":"Armaments of the Legion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":33671},{"id":"coa-tree-4009","classId":"felsworn","dbcSpellId":92089,"name":"Burning Commander","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_demonictrample.png","sigil":"BC","description":"Level 10 Passive Allows you to wield a Two-Handed Axe, Mace, Polearm or Sword in each hand and grants you additional Armor and magic resistance based on your attack power.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92089:effect:0:aura:42","name":"Burning Commander (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92089:proc:0:520261","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520261}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520261},{"kind":"apply-aura","aura":{"id":"coa:92089:effect:1:aura:23","name":"Burning Commander (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92089:proc:1:500531","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500531}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500531},{"kind":"utility","action":"class-script","effectType":155,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92089,"level":1,"description":"Level 10 Passive Allows you to wield a Two-Handed Axe, Mace, Polearm or Sword in each hand and grants you additional Armor and magic resistance based on your attack power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92089:effect:0:aura:42","name":"Burning Commander (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92089:proc:0:520261","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520261}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520261},{"kind":"apply-aura","aura":{"id":"coa:92089:effect:1:aura:23","name":"Burning Commander (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92089:proc:1:500531","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500531}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500531},{"kind":"utility","action":"class-script","effectType":155,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":4009},{"id":"coa-tree-5685","classId":"felsworn","dbcSpellId":681376,"name":"Chaotic","unlockLevel":1,"icon":"/assets/ui/spells/nhi_chaosfire_border.png","sigil":"CH","description":"Dealing damage now has an 8% chance to increase your damage by 3% for 8 seconds, stacking 3 times.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:681376:effect:0:aura:42","name":"Chaotic (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:681376:proc:0:572782","triggers":["hit"],"chance":0.08,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572782}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":572782}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681376,"level":1,"description":"Dealing damage now has an 8% chance to increase your damage by 3% for 8 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:681376:effect:0:aura:42","name":"Chaotic (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:681376:proc:0:572782","triggers":["hit"],"chance":0.08,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572782}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":572782}]}],"talentEntryId":5685},{"id":"coa-tree-31294","classId":"felsworn","dbcSpellId":300465,"name":"Cunning","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_hellfire_felreaver.png","sigil":"CU","description":"Reduces the duration of movement impairing effects on you by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300465:effect:0:aura:232","name":"Cunning (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300465:effect:1:aura:232","name":"Cunning (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300465,"level":1,"description":"Reduces the duration of movement impairing effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300465:effect:0:aura:232","name":"Cunning (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300465:effect:1:aura:232","name":"Cunning (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":31294},{"id":"coa-tree-4007","classId":"felsworn","dbcSpellId":92087,"name":"Dancing Blades","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_03dual.png","sigil":"DB","description":"Level 10 Passive Critical strikes with melee abilities now trigger Dancing Blades, dealing off-hand Weapon Damage to up to 5 nearby enemies.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92087:effect:0:aura:4","name":"Dancing Blades (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92087:effect:1:aura:112","name":"Dancing Blades (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20000,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92087,"level":1,"description":"Level 10 Passive Critical strikes with melee abilities now trigger Dancing Blades, dealing off-hand Weapon Damage to up to 5 nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92087:effect:0:aura:4","name":"Dancing Blades (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92087:effect:1:aura:112","name":"Dancing Blades (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20000,"triggerSpellId":0}]}],"talentEntryId":4007},{"id":"coa-tree-6423","classId":"felsworn","dbcSpellId":520251,"name":"Dark Teachings","unlockLevel":1,"icon":"/assets/ui/spells/_book2motif_illidan.png","sigil":"DT","description":"Increases the effectiveness of your Intuitions by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520251:effect:0:aura:29","name":"Dark Teachings (Aura 29)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":29,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520251:effect:1:aura:108","name":"Dark Teachings (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520251,"level":1,"description":"Increases the effectiveness of your Intuitions by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520251:effect:0:aura:29","name":"Dark Teachings (Aura 29)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":29,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520251:effect:1:aura:108","name":"Dark Teachings (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":6423},{"id":"coa-tree-34207","classId":"felsworn","dbcSpellId":705102,"name":"Demonborn","unlockLevel":1,"icon":"/assets/ui/spells/nhi_unholyswing_border.png","sigil":"DE","description":"Increases your Energy regeneration by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705102:effect:0:aura:110","name":"Demonborn (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705102,"level":1,"description":"Increases your Energy regeneration by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705102:effect:0:aura:110","name":"Demonborn (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":707842,"level":1,"description":"Increases your Energy regeneration by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707842:effect:0:aura:110","name":"Demonborn (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34207},{"id":"coa-tree-34213","classId":"felsworn","dbcSpellId":520257,"name":"Demonic Embrace","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_worldinflamesgreen.png","sigil":"DE","description":"Casting Inner Demon with at least 6 Felfury now restores 50 Energy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520257:effect:0:aura:42","name":"Demonic Embrace (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:520257:proc:0:520258","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520258}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520258}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520257,"level":1,"description":"Casting Inner Demon with at least 6 Felfury now restores 50 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520257:effect:0:aura:42","name":"Demonic Embrace (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:520257:proc:0:520258","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520258}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520258}]}],"talentEntryId":34213},{"id":"coa-tree-34203","classId":"felsworn","dbcSpellId":705108,"name":"Demonic Evasion","unlockLevel":1,"icon":"/assets/ui/spells/_monkspecialattack_dodgenightelf.png","sigil":"DE","description":"Increases your chance to dodge by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705108:effect:0:aura:49","name":"Demonic Evasion (Aura 49)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705108,"level":1,"description":"Increases your chance to dodge by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705108:effect:0:aura:49","name":"Demonic Evasion (Aura 49)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34203},{"id":"coa-tree-29400","classId":"felsworn","dbcSpellId":804613,"name":"Doomstride","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_doublejump.png","sigil":"DO","description":"Using Chaos Rush twice in a row now refreshes a charge of Chaos Rush.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804613:effect:0:aura:42","name":"Doomstride (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804613:proc:0:807962","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807962}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807962}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804613,"level":1,"description":"Using Chaos Rush twice in a row now refreshes a charge of Chaos Rush.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804613:effect:0:aura:42","name":"Doomstride (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804613:proc:0:807962","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807962}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807962}]}],"talentEntryId":29400},{"id":"coa-tree-33674","classId":"felsworn","dbcSpellId":704607,"name":"Elemental Bane","unlockLevel":1,"icon":"/assets/ui/spells/spell_fel_elementaldevastation.png","sigil":"EB","description":"Increases your critical damage by 10% and additionally increases your critical strike chance by 15% while fighting Elementals.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704607:effect:0:aura:112","name":"Elemental Bane (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20008,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704607:effect:1:aura:163","name":"Elemental Bane (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704607,"level":1,"description":"Increases your critical damage by 10% and additionally increases your critical strike chance by 15% while fighting Elementals.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704607:effect:0:aura:112","name":"Elemental Bane (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20008,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704607:effect:1:aura:163","name":"Elemental Bane (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":33674},{"id":"coa-14-empowered-felstrikes-52-705120","classId":"felsworn","dbcSpellId":705120,"name":"Empowered Felstrikes","unlockLevel":1,"icon":"/assets/ui/spells/_manaburn_fel.png","sigil":"EF","description":"Empowered FelstrikesRank 1Increases the damage of your Felstrikes by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705120:effect:0:aura:108","name":"Empowered Felstrikes (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705120,"level":1,"description":"Empowered FelstrikesRank 1Increases the damage of your Felstrikes by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705120:effect:0:aura:108","name":"Empowered Felstrikes (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-14-evil-eye-53-705151","classId":"felsworn","dbcSpellId":705151,"name":"Evil Eye","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_shadowegg.png","sigil":"EE","description":"Evil EyeRank 2Allows Felglare to stack 2 additional times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705151:effect:0:aura:107","name":"Evil Eye (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":704373},{"kind":"apply-aura","aura":{"id":"coa:705151:effect:1:aura:107","name":"Evil Eye (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705151,"level":1,"description":"Evil EyeRank 2Allows Felglare to stack 2 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705151:effect:0:aura:107","name":"Evil Eye (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":704373},{"kind":"apply-aura","aura":{"id":"coa:705151:effect:1:aura:107","name":"Evil Eye (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}]},{"id":"coa-tree-4008","classId":"felsworn","dbcSpellId":92088,"name":"Fel Apprentice","unlockLevel":1,"icon":"/assets/ui/spells/_auracloak_felfire.png","sigil":"FA","description":"Level 10 Passive While Inner Demon is active, your Fel Fireball will now unleash a Felstrike on your target.FelstrikeBurn an enemy for 54 + 30% SP Shadowflame Damage over 6 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92088:effect:0:aura:42","name":"Fel Apprentice (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92088:proc:0:801891","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801891}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801891},{"kind":"apply-aura","aura":{"id":"coa:92088:effect:1:aura:42","name":"Fel Apprentice (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92088:proc:1:803479","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803479}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803479},{"kind":"apply-aura","aura":{"id":"coa:92088:effect:2:aura:353","name":"Fel Apprentice (Aura 353)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92088,"level":1,"description":"Level 10 Passive While Inner Demon is active, your Fel Fireball will now unleash a Felstrike on your target.FelstrikeBurn an enemy for 54 + 30% SP Shadowflame Damage over 6 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92088:effect:0:aura:42","name":"Fel Apprentice (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92088:proc:0:801891","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801891}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801891},{"kind":"apply-aura","aura":{"id":"coa:92088:effect:1:aura:42","name":"Fel Apprentice (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92088:proc:1:803479","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803479}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803479},{"kind":"apply-aura","aura":{"id":"coa:92088:effect:2:aura:353","name":"Fel Apprentice (Aura 353)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4008},{"id":"coa-tree-6875","classId":"felsworn","dbcSpellId":705105,"name":"Fel Communion","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_moltencoregreen.png","sigil":"FC","description":"Increases your maximum Energy by 30.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705105:effect:0:aura:132","name":"Fel Communion (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705105,"level":1,"description":"Increases your maximum Energy by 30.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705105:effect:0:aura:132","name":"Fel Communion (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6875},{"id":"coa-tree-30552","classId":"felsworn","dbcSpellId":525001,"name":"Felbane","unlockLevel":1,"icon":"/assets/ui/spells/5_warlock42_border.png","sigil":"FE","description":"Curse an enemy, causing the next spell they cast within 4 seconds to be reflected onto them.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525001:effect:0:aura:28","name":"Felbane (Aura 28)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":525001,"level":1,"description":"Curse an enemy, causing the next spell they cast within 4 seconds to be reflected onto them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525001:effect:0:aura:28","name":"Felbane (Aura 28)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30552},{"id":"coa-tree-33668","classId":"felsworn","dbcSpellId":560573,"name":"Felgorged","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_feldevastation.png","sigil":"FE","description":"Reduces the Energy cost of Cripple and Consume Magic by -10.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560573:effect:0:aura:107","name":"Felgorged (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560573,"level":1,"description":"Reduces the Energy cost of Cripple and Consume Magic by -10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560573:effect:0:aura:107","name":"Felgorged (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":33668},{"id":"coa-tree-5210","classId":"felsworn","dbcSpellId":704360,"name":"Felguard","unlockLevel":1,"icon":"/assets/ui/spells/achievement_explore_argus.png","sigil":"FE","description":"Your Chaos Rush now reduces all damage taken by -3% for 5 seconds, stacking 2 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704360:effect:0:aura:42","name":"Felguard (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704360:proc:0:524633","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524633}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524633}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704360,"level":1,"description":"Your Chaos Rush now reduces all damage taken by -3% for 5 seconds, stacking 2 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704360:effect:0:aura:42","name":"Felguard (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704360:proc:0:524633","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524633}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524633}]}],"talentEntryId":5210},{"id":"coa-tree-34212","classId":"felsworn","dbcSpellId":301287,"name":"Felheart","unlockLevel":1,"icon":"/assets/ui/spells/inv_dhmount_felsaber.png","sigil":"FE","description":"Each Felfury active now increases your haste by 1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301287:effect:0:aura:107","name":"Felheart (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301287,"level":1,"description":"Each Felfury active now increases your haste by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301287:effect:0:aura:107","name":"Felheart (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":34212},{"id":"coa-tree-11210","classId":"felsworn","dbcSpellId":707513,"name":"Felstrider","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","sigil":"FE","description":"Your Chaos Rush now increases your Energy regeneration by 10% for 5 seconds, stacking 2 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707513:effect:0:aura:42","name":"Felstrider (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707513:proc:0:525042","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525042}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":525042}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707513,"level":1,"description":"Your Chaos Rush now increases your Energy regeneration by 10% for 5 seconds, stacking 2 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707513:effect:0:aura:42","name":"Felstrider (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707513:proc:0:525042","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525042}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":525042}]}],"talentEntryId":11210},{"id":"coa-tree-34205","classId":"felsworn","dbcSpellId":704374,"name":"Felwracked","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_demoniccircleteleport.png","sigil":"FE","description":"Every 3rd Twin Slice or Fel Fireball within 15 seconds now generates 1 additional Felfury.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704374:effect:0:aura:42","name":"Felwracked (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704374:proc:0:707518","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707518}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707518}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704374,"level":1,"description":"Every 3rd Twin Slice or Fel Fireball within 15 seconds now generates 1 additional Felfury.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704374:effect:0:aura:42","name":"Felwracked (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704374:proc:0:707518","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707518}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707518}]}],"talentEntryId":34205},{"id":"coa-tree-34227","classId":"felsworn","dbcSpellId":804609,"name":"Gul'dan's Gift","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_2h_guldan_d_01.png","sigil":"GD","description":"Increases the effectiveness of your Skull of Gul'dan by 50%, but its cooldown is increased by 30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804609:effect:0:aura:108","name":"Gul'dan's Gift (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804609:effect:1:aura:107","name":"Gul'dan's Gift (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804609:effect:2:aura:108","name":"Gul'dan's Gift (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804609,"level":1,"description":"Increases the effectiveness of your Skull of Gul'dan by 50%, but its cooldown is increased by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804609:effect:0:aura:108","name":"Gul'dan's Gift (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804609:effect:1:aura:107","name":"Gul'dan's Gift (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804609:effect:2:aura:108","name":"Gul'dan's Gift (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34227},{"id":"coa-tree-30554","classId":"felsworn","dbcSpellId":705129,"name":"Hateforged Barrier","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_felfireward.png","sigil":"HB","description":"Manifest a barrier of pure hatred, absorbing 177 + 200% Stamina damage, scaling with your Stamina, for 30 seconds. While the barrier holds, you regenerate 2% of your maximum health every 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:705129:effect:0:aura:69","name":"Hateforged Barrier (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:705129:absorb:0","amount":177,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705129:effect:1:aura:23","name":"Hateforged Barrier (Aura 23)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:705129:proc:1:705130","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705130}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":705130}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":705129,"level":1,"description":"Manifest a barrier of pure hatred, absorbing 177 + 200% Stamina damage, scaling with your Stamina, for 30 seconds. While the barrier holds, you regenerate 2% of your maximum health every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:705129:effect:0:aura:69","name":"Hateforged Barrier (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:705129:absorb:0","amount":177,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705129:effect:1:aura:23","name":"Hateforged Barrier (Aura 23)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:705129:proc:1:705130","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705130}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":705130}]}],"talentEntryId":30554},{"id":"coa-tree-29924","classId":"felsworn","dbcSpellId":806109,"name":"Illidan's Guile","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_qirajicrystal_03.png","sigil":"IS","description":"Gorge on fel energy, becoming immune to all physical attacks and spells for 8 seconds, but during that time you cannot attack, move or cast spells. At the end of the duration, your next Chaos Rush within 5 seconds now dashes an additional 20 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806109:effect:0:aura:106","name":"Illidan's Guile (Aura 106)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":106,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806109:effect:1:aura:39","name":"Illidan's Guile (Aura 39)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"holy","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":39,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807235,"withValue":300},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:0:aura:33","name":"Illidan's Guile (Aura 33)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:1:aura:60","name":"Illidan's Guile (Aura 60)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":60,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:2:aura:12","name":"Illidan's Guile (Aura 12)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806109,"level":1,"description":"Gorge on fel energy, becoming immune to all physical attacks and spells for 8 seconds, but during that time you cannot attack, move or cast spells. At the end of the duration, your next Chaos Rush within 5 seconds now dashes an additional 20 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806109:effect:0:aura:106","name":"Illidan's Guile (Aura 106)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":106,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806109:effect:1:aura:39","name":"Illidan's Guile (Aura 39)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"holy","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":39,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807235,"withValue":300},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:0:aura:33","name":"Illidan's Guile (Aura 33)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:1:aura:60","name":"Illidan's Guile (Aura 60)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":60,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:2:aura:12","name":"Illidan's Guile (Aura 12)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29924},{"id":"coa-tree-29409","classId":"felsworn","dbcSpellId":300468,"name":"Illidari Barrier","unlockLevel":1,"icon":"/assets/ui/spells/ability_vehicle_shellshieldgenerator_green.png","sigil":"IB","description":"Casting Hateforged Barrier now also creates a damage absorption shield on all nearby allies within 15 yds, absorbing 328 + 100% Stamina + 20% SP + 8% AP damage for 5 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300468:effect:0:aura:42","name":"Illidari Barrier (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300468:proc:0:300469","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":300469}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":300469},{"kind":"apply-aura","aura":{"id":"coa:300468:effect:1:aura:42","name":"Illidari Barrier (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300468:proc:1:524635","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524635}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524635}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300468,"level":1,"description":"Casting Hateforged Barrier now also creates a damage absorption shield on all nearby allies within 15 yds, absorbing 328 + 100% Stamina + 20% SP + 8% AP damage for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300468:effect:0:aura:42","name":"Illidari Barrier (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300468:proc:0:300469","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":300469}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":300469},{"kind":"apply-aura","aura":{"id":"coa:300468:effect:1:aura:42","name":"Illidari Barrier (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300468:proc:1:524635","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524635}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524635}]}],"talentEntryId":29409},{"id":"coa-14-impenetrable-wards-52-705128","classId":"felsworn","dbcSpellId":705128,"name":"Impenetrable Wards","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_elementalshields.png","sigil":"IW","description":"Impenetrable WardsRank 2Increases the effectiveness of all damage absorption effects used on you by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705128:effect:0:aura:317","name":"Impenetrable Wards (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705128,"level":1,"description":"Impenetrable WardsRank 2Increases the effectiveness of all damage absorption effects used on you by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705128:effect:0:aura:317","name":"Impenetrable Wards (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-tree-29399","classId":"felsworn","dbcSpellId":805244,"name":"Legion March","unlockLevel":1,"icon":"/assets/ui/spells/_warlock_rueeardenteverte.png","sigil":"LM","description":"Increases the range of Chaos Rush by 3 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805244:effect:0:aura:107","name":"Legion March (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805244:effect:1:aura:107","name":"Legion March (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805244:effect:2:aura:107","name":"Legion March (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805244,"level":1,"description":"Increases the range of Chaos Rush by 3 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805244:effect:0:aura:107","name":"Legion March (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805244:effect:1:aura:107","name":"Legion March (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805244:effect:2:aura:107","name":"Legion March (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":29399},{"id":"coa-tree-30553","classId":"felsworn","dbcSpellId":704613,"name":"Magic Fiend","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_darksummoning.png","sigil":"MF","description":"Increases the amount of beneficial magic effects stolen by your Consume Magic by 1.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704613:effect:0:aura:107","name":"Magic Fiend (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704613,"level":1,"description":"Increases the amount of beneficial magic effects stolen by your Consume Magic by 1.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704613:effect:0:aura:107","name":"Magic Fiend (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":30553},{"id":"coa-tree-29367","classId":"felsworn","dbcSpellId":805248,"name":"Manaburn","unlockLevel":1,"icon":"/assets/ui/spells/_manaburn_fel.png","sigil":"MA","description":"Burn an enemy's mana equal to 200% of your Stamina. Deals damage equal to the mana drained.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"resource-drain","amount":1,"burn":true}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805248,"level":1,"description":"Burn an enemy's mana equal to 200% of your Stamina. Deals damage equal to the mana drained.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"resource-drain","amount":1,"burn":true}]}],"talentEntryId":29367},{"id":"coa-tree-7868","classId":"felsworn","dbcSpellId":524947,"name":"Mark of Chaos","unlockLevel":1,"icon":"/assets/ui/spells/70_inscription_glyph_demonhunter_minor.png","sigil":"MO","description":"Using Chaos Rush increases the next instance of direct spell or ability damage within 5 seconds by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524947:effect:0:aura:42","name":"Mark of Chaos (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:524947:proc:0:525027","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525027}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":525027}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524947,"level":1,"description":"Using Chaos Rush increases the next instance of direct spell or ability damage within 5 seconds by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524947:effect:0:aura:42","name":"Mark of Chaos (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:524947:proc:0:525027","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525027}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":525027}]}],"talentEntryId":7868},{"id":"coa-tree-30565","classId":"felsworn","dbcSpellId":704612,"name":"Pact Hunter","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_metamorphasistank.png","sigil":"PH","description":"Increases the effectiveness of your Pacts by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704612:effect:0:aura:108","name":"Pact Hunter (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704612,"level":1,"description":"Increases the effectiveness of your Pacts by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704612:effect:0:aura:108","name":"Pact Hunter (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":30565},{"id":"coa-tree-7865","classId":"felsworn","dbcSpellId":802058,"name":"Reckoning","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_felrainoffire.png","sigil":"RE","description":"For 10 seconds, your Fel Fireball is free of cost, instant cast, and strikes up to 4 targets. For the duration, your falling speed is slowed and damage dealt by your Fel Fireball increases your damage dealt by 4% for 15 seconds, stacking 4 times.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802058:effect:0:aura:108","name":"Reckoning (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802058:effect:1:aura:107","name":"Reckoning (Aura 107)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":521241},{"kind":"apply-aura","aura":{"id":"coa:802058:effect:2:aura:42","name":"Reckoning (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802058:proc:2:524632","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524632}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524632}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802058,"level":1,"description":"For 10 seconds, your Fel Fireball is free of cost, instant cast, and strikes up to 4 targets. For the duration, your falling speed is slowed and damage dealt by your Fel Fireball increases your damage dealt by 4% for 15 seconds, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802058:effect:0:aura:108","name":"Reckoning (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802058:effect:1:aura:107","name":"Reckoning (Aura 107)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":521241},{"kind":"apply-aura","aura":{"id":"coa:802058:effect:2:aura:42","name":"Reckoning (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802058:proc:2:524632","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524632}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524632}]}],"talentEntryId":7865},{"id":"felsworn-sargeron-smite","classId":"felsworn","dbcSpellId":802060,"name":"Sargeron Smite","unlockLevel":1,"icon":"/assets/ui/spells/uico_unholy_spell_03_border.png","sigil":"SS","description":"Sargeron SmiteRank 1Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 21+0+FireP*.6+AP*.19, 21+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":0.2199999988079071,"basePoints":21,"dieSides":3,"pointsPerLevel":0.5,"bonusPowerCoefficient":0.2199999988079071,"sourceLevel":1,"maxScalingLevel":8}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":802060,"level":1,"description":"Sargeron SmiteRank 1Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 21+0+FireP*.6+AP*.19, 21+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":0.2199999988079071,"basePoints":21,"dieSides":3,"pointsPerLevel":0.5,"bonusPowerCoefficient":0.2199999988079071,"sourceLevel":1,"maxScalingLevel":8}]},{"rank":2,"spellId":501314,"level":10,"description":"Sargeron SmiteRank 2Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 31+0+FireP*.6+AP*.19, 31+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":0.5066666698455811,"basePoints":31,"dieSides":3,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":3,"spellId":501315,"level":16,"description":"Sargeron SmiteRank 3Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 43+0+FireP*.6+AP*.19, 43+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":0.6834408544724987,"basePoints":43,"dieSides":5,"pointsPerLevel":1.159999966621399,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":4,"spellId":501316,"level":26,"description":"Sargeron SmiteRank 4Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 71+0+FireP*.6+AP*.19, 71+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":1.011178861788618,"basePoints":71,"dieSides":7,"pointsPerLevel":1.9375,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":5,"spellId":501317,"level":34,"description":"Sargeron SmiteRank 5Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 102+0+FireP*.6+AP*.19, 102+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":1.6458042203163614,"basePoints":102,"dieSides":10,"pointsPerLevel":3.983330011367798,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":6,"spellId":501318,"level":42,"description":"Sargeron SmiteRank 6Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 150+0+FireP*.6+AP*.19, 150+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":2.192397613971554,"basePoints":150,"dieSides":14,"pointsPerLevel":5.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":7,"spellId":501319,"level":50,"description":"Sargeron SmiteRank 7Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 223+0+FireP*.6+AP*.19, 223+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":3.215384639837803,"basePoints":223,"dieSides":19,"pointsPerLevel":7.900000095367432,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":8,"spellId":501320,"level":56,"description":"Sargeron SmiteRank 8Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 344+0+FireP*.6+AP*.19, 344+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":3.871361602639928,"basePoints":344,"dieSides":27,"pointsPerLevel":8.350000381469727,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":706658,"durationMs":0}]},{"rank":9,"spellId":501321,"level":60,"description":"Sargeron SmiteRank 9Instant castConsumes 2 Felfury Blast an enemy for a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 419+0+FireP*.6+AP*.19, 419+0+ShaP*.6+AP*.19) Shadowflame Damage and generate 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":419,"dieSides":37,"pointsPerLevel":11.25,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":80}]}]},{"id":"coa-tree-30559","classId":"felsworn","dbcSpellId":800225,"name":"Skull of Gul'dan","unlockLevel":1,"icon":"/assets/ui/spells/inv_offhand_1h_artifactskulloferedar_d_03.png","sigil":"SO","description":"Consume the essence of the skull of Gul'dan, increasing your maximum health and Energy by 25% for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800225:effect:0:aura:133","name":"Skull of Gul'dan (Aura 133)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800225:effect:1:aura:132","name":"Skull of Gul'dan (Aura 132)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800225,"level":1,"description":"Consume the essence of the skull of Gul'dan, increasing your maximum health and Energy by 25% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800225:effect:0:aura:133","name":"Skull of Gul'dan (Aura 133)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800225:effect:1:aura:132","name":"Skull of Gul'dan (Aura 132)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":30559},{"id":"coa-tree-11227","classId":"felsworn","dbcSpellId":807430,"name":"Suffering","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_negate.png","sigil":"SU","description":"Increases the duration of Skull of Gul'dan by 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807430:effect:0:aura:107","name":"Suffering (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807430:effect:1:aura:108","name":"Suffering (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807430,"level":1,"description":"Increases the duration of Skull of Gul'dan by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807430:effect:0:aura:107","name":"Suffering (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807430:effect:1:aura:108","name":"Suffering (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":11227},{"id":"coa-14-untold-power-52-705113","classId":"felsworn","dbcSpellId":705113,"name":"Untold Power","unlockLevel":1,"icon":"/assets/ui/spells/ability_bossfelmagnaron_handempowered.png","sigil":"UP","description":"Untold PowerRank 2Increases your Energy regeneration by 40%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705113:effect:0:aura:138","name":"Untold Power (Aura 138)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705113:effect:1:aura:110","name":"Untold Power (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705113,"level":1,"description":"Untold PowerRank 2Increases your Energy regeneration by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705113:effect:0:aura:138","name":"Untold Power (Aura 138)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705113:effect:1:aura:110","name":"Untold Power (Aura 110)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-tree-34204","classId":"felsworn","dbcSpellId":705125,"name":"Warden's End","unlockLevel":1,"icon":"/assets/ui/spells/inv_fabric_felcloth_ebon.png","sigil":"WS","description":"Reduces the cooldown of Mana Burn and Illidan's Guile by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705125:effect:0:aura:108","name":"Warden's End (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705125,"level":1,"description":"Reduces the cooldown of Mana Burn and Illidan's Guile by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705125:effect:0:aura:108","name":"Warden's End (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":34204},{"id":"coa-tree-6868","classId":"felsworn","dbcSpellId":805235,"name":"Whispers of the Pit","unlockLevel":1,"icon":"/assets/ui/spells/ability_bossmannoroth_mannorothsgaze.png","sigil":"WO","description":"Unleash fel energy upon enemies at target location, fearing them and slowing their movement speed by -80% for 8 seconds. Damage caused may interrupt the effect.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805235:effect:0:aura:7","name":"Whispers of the Pit (Aura 7)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807590,"durationMs":8000},{"kind":"apply-aura","aura":{"id":"coa:805235:effect:2:aura:33","name":"Whispers of the Pit (Aura 33)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.8}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805235,"level":1,"description":"Unleash fel energy upon enemies at target location, fearing them and slowing their movement speed by -80% for 8 seconds. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805235:effect:0:aura:7","name":"Whispers of the Pit (Aura 7)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807590,"durationMs":8000},{"kind":"apply-aura","aura":{"id":"coa:805235:effect:2:aura:33","name":"Whispers of the Pit (Aura 33)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.8}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6868},{"id":"felsworn-wrathbringer","classId":"felsworn","dbcSpellId":705133,"name":"Wrathbringer","unlockLevel":1,"icon":"/assets/ui/spells/achievement_raid_tombofsargeras.png","sigil":"WR","description":"WrathbringerRank 2InstantIncreases the damage of Oblivion by 0%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705133:effect:0:aura:4","name":"Wrathbringer (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":true,"ranks":[{"rank":2,"spellId":705133,"level":1,"description":"WrathbringerRank 2InstantIncreases the damage of Oblivion by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705133:effect:0:aura:4","name":"Wrathbringer (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"felsworn-betray","classId":"felsworn","dbcSpellId":804220,"name":"Betray","unlockLevel":2,"icon":"/assets/ui/spells/ability_demonhunter_spectank.png","sigil":"BE","description":"Taunts an enemy target to attack you for $d. Inner Demon: Blast the enemy for ${$AP*.5} Shadowflame Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":15,"percentage":true},"effects":[{"kind":"taunt","durationMs":3000},{"kind":"apply-aura","aura":{"id":"coa:804220:effect:1:aura:11","name":"Betray (Aura 11)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":11,"miscValue":0,"triggerSpellId":0},{"kind":"taunt","durationMs":3000},{"kind":"trigger-spell","spellId":804349},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":804220,"level":2,"description":"Taunts an enemy target to attack you for $d. Inner Demon: Blast the enemy for ${$AP*.5} Shadowflame Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":15,"percentage":true},"effects":[{"kind":"taunt","durationMs":3000},{"kind":"apply-aura","aura":{"id":"coa:804220:effect:1:aura:11","name":"Betray (Aura 11)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":11,"miscValue":0,"triggerSpellId":0},{"kind":"taunt","durationMs":3000},{"kind":"trigger-spell","spellId":804349},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}]}]},{"id":"felsworn-ruin","classId":"felsworn","dbcSpellId":801895,"name":"Ruin","unlockLevel":11,"icon":"/assets/ui/spells/inv_infernalmountgreen.png","sigil":"RU","description":"RuinRank 130 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 116+0+FireP*1, 116+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":116,"dieSides":21,"pointsPerLevel":3.3399999141693115,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":11,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:801895:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801895,"level":11,"description":"RuinRank 130 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 116+0+FireP*1, 116+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.7139999866485596,"basePoints":116,"dieSides":21,"pointsPerLevel":3.3399999141693115,"bonusPowerCoefficient":0.7139999866485596,"sourceLevel":11,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:801895:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":501292,"level":18,"description":"RuinRank 230 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 200+0+FireP*1, 200+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":2.9583333333333335,"basePoints":200,"dieSides":36,"pointsPerLevel":4.1875,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"apply-aura","aura":{"id":"coa:501292:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":501293,"level":26,"description":"RuinRank 330 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 286+0+FireP*1, 286+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":3.540650406504065,"basePoints":286,"dieSides":53,"pointsPerLevel":4.75,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:501293:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":501294,"level":34,"description":"RuinRank 430 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 393+0+FireP*1, 393+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":393,"dieSides":71,"pointsPerLevel":5.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:501294:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":501295,"level":42,"description":"RuinRank 530 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 500+0+FireP*1, 500+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":500,"dieSides":90,"pointsPerLevel":7.25,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"apply-aura","aura":{"id":"coa:501295:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":501296,"level":50,"description":"RuinRank 630 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 599+0+FireP*1, 599+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":599,"dieSides":111,"pointsPerLevel":13.324999809265137,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"apply-aura","aura":{"id":"coa:501296:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":501297,"level":56,"description":"RuinRank 730 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 690+0+FireP*1, 690+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":690,"dieSides":132,"pointsPerLevel":31.850000381469727,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"apply-aura","aura":{"id":"coa:501297:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":501298,"level":60,"description":"RuinRank 830 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 2163+0+FireP*1, 2163+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":2163,"dieSides":155,"pointsPerLevel":12.449999809265137,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"apply-aura","aura":{"id":"coa:501298:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":9,"spellId":501299,"level":68,"description":"RuinRank 930 Energy 2.5 sec castConsumes 2 Felfury Bring doom upon an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FireP, ShaP), 2989+0+FireP*1, 2989+0+ShaP*1.32) Shadowflame Damage to an enemy, piercing all absorption effects. Inner Demon: Deals an additional 30% of the damage dealt over 3 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":2989,"dieSides":173,"pointsPerLevel":7.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:501299:effect:1:aura:301","name":"Ruin (Aura 301)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-14-annihilan-strike-52-801903","classId":"felsworn","dbcSpellId":801903,"name":"Annihilan Strike","unlockLevel":16,"icon":"/assets/ui/spells/inv_glaive_1h_npc_d_02.png","sigil":"AS","description":"Annihilan StrikeRank 140 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 145% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"trigger-spell","spellId":801913,"withValue":145},{"kind":"damage","coefficient":0.1},{"kind":"trigger-spell","spellId":801914,"withValue":145},{"kind":"damage","coefficient":0.1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801903,"level":16,"description":"Annihilan StrikeRank 140 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 145% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"trigger-spell","spellId":801913,"withValue":145},{"kind":"damage","coefficient":0.1},{"kind":"trigger-spell","spellId":801914,"withValue":145},{"kind":"damage","coefficient":0.1}]},{"rank":2,"spellId":560759,"level":22,"description":"Annihilan StrikeRank 240 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 150% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"trigger-spell","spellId":801913,"withValue":150},{"kind":"damage","coefficient":0.1},{"kind":"trigger-spell","spellId":801914,"withValue":150},{"kind":"damage","coefficient":0.1}]},{"rank":3,"spellId":560760,"level":28,"description":"Annihilan StrikeRank 340 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 155% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"trigger-spell","spellId":801913,"withValue":155},{"kind":"damage","coefficient":0.1},{"kind":"trigger-spell","spellId":801914,"withValue":155},{"kind":"damage","coefficient":0.1}]},{"rank":4,"spellId":560761,"level":34,"description":"Annihilan StrikeRank 440 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 160% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"trigger-spell","spellId":801913,"withValue":160},{"kind":"damage","coefficient":0.1},{"kind":"trigger-spell","spellId":801914,"withValue":160},{"kind":"damage","coefficient":0.1}]},{"rank":5,"spellId":560762,"level":40,"description":"Annihilan StrikeRank 540 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 165% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"trigger-spell","spellId":801913,"withValue":165},{"kind":"damage","coefficient":0.1},{"kind":"trigger-spell","spellId":801914,"withValue":165},{"kind":"damage","coefficient":0.1}]},{"rank":6,"spellId":572803,"level":46,"description":"Annihilan StrikeRank 640 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 170% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"trigger-spell","spellId":801913,"withValue":170},{"kind":"damage","coefficient":0.1},{"kind":"trigger-spell","spellId":801914,"withValue":170},{"kind":"damage","coefficient":0.1}]},{"rank":7,"spellId":572804,"level":52,"description":"Annihilan StrikeRank 740 Energy Instant10 sec cooldownRequires One-Handed Melee Weapon Generates 2 Felfury Unleash a devastating attack, dealing 180% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"trigger-spell","spellId":801913,"withValue":180},{"kind":"damage","coefficient":0.1},{"kind":"trigger-spell","spellId":801914,"withValue":180},{"kind":"damage","coefficient":0.1}]}]},{"id":"coa-14-immolation-aura-57-501270","classId":"felsworn","dbcSpellId":501270,"name":"Immolation Aura","unlockLevel":22,"icon":"/assets/ui/spells/spell_fire_felimmolation.png","sigil":"IA","description":"Immolation AuraRank 215 , plus 15 per sec InstantWreathe yourself in fire for up to 1 min, dealing 35+0+FireP*.3+AP*.23 Fire Damage to nearby enemies every 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501270:effect:0:aura:227","name":"Immolation Aura (Aura 227)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501270:proc:0:800208","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800208}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800208},{"kind":"apply-aura","aura":{"id":"coa:501270:effect:1:aura:226","name":"Immolation Aura (Aura 226)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501270,"level":22,"description":"Immolation AuraRank 215 , plus 15 per sec InstantWreathe yourself in fire for up to 1 min, dealing 35+0+FireP*.3+AP*.23 Fire Damage to nearby enemies every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501270:effect:0:aura:227","name":"Immolation Aura (Aura 227)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501270:proc:0:800208","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800208}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800208},{"kind":"apply-aura","aura":{"id":"coa:501270:effect:1:aura:226","name":"Immolation Aura (Aura 226)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501271,"level":30,"description":"Immolation AuraRank 320 , plus 20 per sec InstantWreathe yourself in fire for up to 1 min, dealing 47+0+FireP*.3+AP*.23 Fire Damage to nearby enemies every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501271:effect:0:aura:227","name":"Immolation Aura (Aura 227)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501271:proc:0:800208","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800208}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800208},{"kind":"apply-aura","aura":{"id":"coa:501271:effect:1:aura:226","name":"Immolation Aura (Aura 226)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501272,"level":38,"description":"Immolation AuraRank 425 , plus 25 per sec InstantWreathe yourself in fire for up to 1 min, dealing 67+0+FireP*.3+AP*.23 Fire Damage to nearby enemies every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501272:effect:0:aura:227","name":"Immolation Aura (Aura 227)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501272:proc:0:800208","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800208}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800208},{"kind":"apply-aura","aura":{"id":"coa:501272:effect:1:aura:226","name":"Immolation Aura (Aura 226)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-14-annihilation-53-802059","classId":"felsworn","dbcSpellId":802059,"name":"Annihilation","unlockLevel":68,"icon":"/assets/ui/spells/spell_fire_felpyroblast.png","sigil":"AN","description":"AnnihilationRank 12 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802059:effect:0:aura:227","name":"Annihilation (Aura 227)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802059:proc:0:803841","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803841}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803841},{"kind":"apply-aura","aura":{"id":"coa:802059:effect:1:aura:110","name":"Annihilation (Aura 110)","disposition":"buff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802059,"level":68,"description":"AnnihilationRank 12 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802059:effect:0:aura:227","name":"Annihilation (Aura 227)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802059:proc:0:803841","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803841}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803841},{"kind":"apply-aura","aura":{"id":"coa:802059:effect:1:aura:110","name":"Annihilation (Aura 110)","disposition":"buff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":803847,"level":76,"description":"AnnihilationRank 22 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803847:effect:0:aura:227","name":"Annihilation (Aura 227)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803847:proc:0:803841","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803841}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803841},{"kind":"apply-aura","aura":{"id":"coa:803847:effect:1:aura:110","name":"Annihilation (Aura 110)","disposition":"buff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}]},{"rank":3,"spellId":803848,"level":84,"description":"AnnihilationRank 32 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803848:effect:0:aura:227","name":"Annihilation (Aura 227)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803848:proc:0:803841","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803841}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803841},{"kind":"apply-aura","aura":{"id":"coa:803848:effect:1:aura:110","name":"Annihilation (Aura 110)","disposition":"buff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}]},{"rank":4,"spellId":803849,"level":90,"description":"AnnihilationRank 42 sec cast25 sec cooldownLaunch chaotic magic at an enemy over 2.5 sec, dealing 1+1.0 Points Per Level+SP*.35 Chaos Damage every 0.5 sec. Your Energy regeneration is increased by 100% for the duration. Usable while moving. Inner Demon: Grants you Sculptor of Doom. Sculptor of Doom Your next Ruin within 8 sec is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803849:effect:0:aura:227","name":"Annihilation (Aura 227)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803849:proc:0:803841","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803841}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803841},{"kind":"apply-aura","aura":{"id":"coa:803849:effect:1:aura:110","name":"Annihilation (Aura 110)","disposition":"buff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-14-oblivion-52-800215","classId":"felsworn","dbcSpellId":800215,"name":"Oblivion","unlockLevel":68,"icon":"/assets/ui/spells/inv_staff_2h_felfireraid_d_03.png","sigil":"OB","description":"OblivionRank 12500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 115+0+AP*0.35 Shadowflame Damage, absorbing 100+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":2500},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800215:effect:1:aura:301","name":"Oblivion (Aura 301)","disposition":"debuff","durationMs":8000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":572132},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8645833333333334,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":17},{"kind":"apply-aura","aura":{"id":"coa:572132:effect:1:aura:4","name":"Oblivion (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800215,"level":68,"description":"OblivionRank 12500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 115+0+AP*0.35 Shadowflame Damage, absorbing 100+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":2500},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800215:effect:1:aura:301","name":"Oblivion (Aura 301)","disposition":"debuff","durationMs":8000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":572132},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8645833333333334,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":17},{"kind":"apply-aura","aura":{"id":"coa:572132:effect:1:aura:4","name":"Oblivion (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":802400,"level":72,"description":"OblivionRank 22500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 206+0+AP*0.35 Shadowflame Damage, absorbing 140+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":2500},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802400:effect:1:aura:301","name":"Oblivion (Aura 301)","disposition":"debuff","durationMs":8000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":572132},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8645833333333334,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":17},{"kind":"apply-aura","aura":{"id":"coa:572132:effect:1:aura:4","name":"Oblivion (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":802401,"level":76,"description":"OblivionRank 32500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 286+0+AP*0.35 Shadowflame Damage, absorbing 170+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":2500},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802401:effect:1:aura:301","name":"Oblivion (Aura 301)","disposition":"debuff","durationMs":8000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":572132},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8645833333333334,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":17},{"kind":"apply-aura","aura":{"id":"coa:572132:effect:1:aura:4","name":"Oblivion (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":802402,"level":80,"description":"OblivionRank 42500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 356+0+AP*0.35 Shadowflame Damage, absorbing 200+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":2500},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802402:effect:1:aura:301","name":"Oblivion (Aura 301)","disposition":"debuff","durationMs":8000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":572132},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8645833333333334,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":17},{"kind":"apply-aura","aura":{"id":"coa:572132:effect:1:aura:4","name":"Oblivion (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":802403,"level":84,"description":"OblivionRank 52500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 446+0+AP*0.35 Shadowflame Damage, absorbing 250+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":2500},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802403:effect:1:aura:301","name":"Oblivion (Aura 301)","disposition":"debuff","durationMs":8000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":572132},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8645833333333334,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":17},{"kind":"apply-aura","aura":{"id":"coa:572132:effect:1:aura:4","name":"Oblivion (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":802404,"level":90,"description":"OblivionRank 62500 Energy Instant8 sec cooldownObliterate an enemy with both weapons, dealing Weapon Damage plus 586+0+AP*0.35 Shadowflame Damage, absorbing 300+0+Agi*0.45 healing received by the target stacking 2 times. Only usable on enemies below 35% health. (Combo) After using Doomscar: Your next Oblivion is usable regardless of target's health. (Combo) After using Annihilan Strike: Your next Oblivion triggers no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"energy","amount":2500},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802404:effect:1:aura:301","name":"Oblivion (Aura 301)","disposition":"debuff","durationMs":8000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":572132},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8645833333333334,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":17},{"kind":"apply-aura","aura":{"id":"coa:572132:effect:1:aura:4","name":"Oblivion (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}]}],"witch-hunter":[{"id":"coa-15-agile-steps-58-705521","classId":"witch-hunter","dbcSpellId":705521,"name":"Agile Steps","unlockLevel":1,"icon":"/assets/ui/spells/inv_boot_cloth_nzothraidmythic_d_01.png","sigil":"AS","description":"Agile StepsRank 1Reduces the cooldown of Vault by 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705521:effect:0:aura:4","name":"Agile Steps (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705521:effect:1:aura:107","name":"Agile Steps (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705521:effect:2:aura:4","name":"Agile Steps (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705521,"level":1,"description":"Agile StepsRank 1Reduces the cooldown of Vault by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705521:effect:0:aura:4","name":"Agile Steps (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705521:effect:1:aura:107","name":"Agile Steps (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705521:effect:2:aura:4","name":"Agile Steps (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":705522,"level":1,"description":"Agile StepsRank 2Reduces the cooldown of Vault by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705522:effect:0:aura:4","name":"Agile Steps (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705522:effect:1:aura:107","name":"Agile Steps (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705522:effect:2:aura:4","name":"Agile Steps (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]},{"rank":3,"spellId":705523,"level":1,"description":"Agile StepsRank 3InstantReduces the cooldown of Vault by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705523:effect:0:aura:4","name":"Agile Steps (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705523:effect:1:aura:107","name":"Agile Steps (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705523:effect:2:aura:4","name":"Agile Steps (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-34556","classId":"witch-hunter","dbcSpellId":705498,"name":"Alchemical Research","unlockLevel":1,"icon":"/assets/ui/spells/inv_enchant_alchemistcauldron.png","sigil":"AR","description":"Increases the effectiveness of your Tonics by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705498:effect:0:aura:108","name":"Alchemical Research (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705498:effect:1:aura:4","name":"Alchemical Research (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705498,"level":1,"description":"Increases the effectiveness of your Tonics by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705498:effect:0:aura:108","name":"Alchemical Research (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705498:effect:1:aura:4","name":"Alchemical Research (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]},{"rank":2,"spellId":707862,"level":1,"description":"Increases the effectiveness of your Tonics by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707862:effect:0:aura:108","name":"Alchemical Research (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707862:effect:1:aura:4","name":"Alchemical Research (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":34556},{"id":"coa-tree-4010","classId":"witch-hunter","dbcSpellId":92091,"name":"Boltslinger","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_crossbow_21.png","sigil":"BO","description":"Level 10 Passive You may now cast Darkslayer while moving. Ranged attacks and abilities now have a 25% chance to shoot an additional shot, dealing 20% ranged AP Physical damage and generating 5 Rage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92091:effect:0:aura:42","name":"Boltslinger (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92091:proc:0:500159","triggers":["cast","hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500159}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500159},{"kind":"apply-aura","aura":{"id":"coa:92091:effect:1:aura:42","name":"Boltslinger (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92091:proc:1:504247","triggers":["cast","hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504247}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504247}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92091,"level":1,"description":"Level 10 Passive You may now cast Darkslayer while moving. Ranged attacks and abilities now have a 25% chance to shoot an additional shot, dealing 20% ranged AP Physical damage and generating 5 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92091:effect:0:aura:42","name":"Boltslinger (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92091:proc:0:500159","triggers":["cast","hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500159}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500159},{"kind":"apply-aura","aura":{"id":"coa:92091:effect:1:aura:42","name":"Boltslinger (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92091:proc:1:504247","triggers":["cast","hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504247}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504247}]}],"talentEntryId":4010},{"id":"coa-tree-34588","classId":"witch-hunter","dbcSpellId":501380,"name":"Brand of the Unworthy","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_overwhelmed.png","sigil":"BO","description":"Expose an enemy's darkest faults, incapacitating them for 40 seconds (8 sec vs players). Damage caused will end this effect. Only usable on Humanoids, Demons, and Undead.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"status","status":"sleep","durationMs":40000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":40000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":501380,"level":1,"description":"Expose an enemy's darkest faults, incapacitating them for 40 seconds (8 sec vs players). Damage caused will end this effect. Only usable on Humanoids, Demons, and Undead.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"status","status":"sleep","durationMs":40000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":40000}]}],"talentEntryId":34588},{"id":"coa-tree-6622","classId":"witch-hunter","dbcSpellId":802269,"name":"Burrow Bolt","unlockLevel":1,"icon":"/assets/ui/spells/burrow bolt.png","sigil":"BB","description":"Shoot a bolt with a rope attached to it at an enemy dealing 6 + 25% AP Physical damage and pulling them to you.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"damage","coefficient":0.3466666666666667,"basePoints":6,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:802269:effect:1:aura:23","name":"Burrow Bolt (Aura 23)","disposition":"debuff","durationMs":200,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:802269:proc:1:802270","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802270}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":802270}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802269,"level":1,"description":"Shoot a bolt with a rope attached to it at an enemy dealing 6 + 25% AP Physical damage and pulling them to you.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"damage","coefficient":0.3466666666666667,"basePoints":6,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:802269:effect:1:aura:23","name":"Burrow Bolt (Aura 23)","disposition":"debuff","durationMs":200,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:802269:proc:1:802270","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802270}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":802270}]}],"talentEntryId":6622},{"id":"coa-tree-6415","classId":"witch-hunter","dbcSpellId":680529,"name":"Combat Training","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_2h_blood_c_01.png","sigil":"CT","description":"Increases your Physical damage dealt and parry chance by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680529:effect:0:aura:79","name":"Combat Training (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680529:effect:1:aura:47","name":"Combat Training (Aura 47)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680529,"level":1,"description":"Increases your Physical damage dealt and parry chance by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680529:effect:0:aura:79","name":"Combat Training (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680529:effect:1:aura:47","name":"Combat Training (Aura 47)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":681484,"level":1,"description":"Increases your Physical damage dealt and parry chance by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681484:effect:0:aura:79","name":"Combat Training (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681484:effect:1:aura:47","name":"Combat Training (Aura 47)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6415},{"id":"coa-tree-34555","classId":"witch-hunter","dbcSpellId":806195,"name":"Dark Intuition","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_darkness.png","sigil":"DI","description":"Whenever you parry or dodge an attack, your attack speed is increased by 5%, and your parry chance by 2% for 15 seconds, stacking 2 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806195:effect:0:aura:4","name":"Dark Intuition (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806195:effect:1:aura:42","name":"Dark Intuition (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:806195:proc:1:806194","triggers":["dodge","parry","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806194}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806194}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806195,"level":1,"description":"Whenever you parry or dodge an attack, your attack speed is increased by 5%, and your parry chance by 2% for 15 seconds, stacking 2 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806195:effect:0:aura:4","name":"Dark Intuition (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806195:effect:1:aura:42","name":"Dark Intuition (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:806195:proc:1:806194","triggers":["dodge","parry","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806194}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806194}]}],"talentEntryId":34555},{"id":"coa-tree-11218","classId":"witch-hunter","dbcSpellId":802011,"name":"Dark Souls","unlockLevel":1,"icon":"/assets/ui/spells/nhi_shadowbreath_border.png","sigil":"DS","description":"Increases the duration of Tonics by 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802011:effect:0:aura:107","name":"Dark Souls (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802011:effect:1:aura:107","name":"Dark Souls (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":802011,"level":1,"description":"Increases the duration of Tonics by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802011:effect:0:aura:107","name":"Dark Souls (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802011:effect:1:aura:107","name":"Dark Souls (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":11218},{"id":"coa-15-darkfeast-59-500092","classId":"witch-hunter","dbcSpellId":500092,"name":"Darkfeast","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate_nightborne.png","sigil":"DA","description":"DarkfeastRank 130 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 24+(PL*3.84-1*3.84).","target":"self","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":24,"dieSides":10,"pointsPerLevel":3.8399999141693115,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":1,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500092,"level":1,"description":"DarkfeastRank 130 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 24+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":24,"dieSides":10,"pointsPerLevel":3.8399999141693115,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":1,"maxScalingLevel":16}]},{"rank":2,"spellId":501370,"level":17,"description":"DarkfeastRank 230 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 80+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":2.39356662829717,"basePoints":80,"dieSides":29,"pointsPerLevel":7.987199783325195,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32}]},{"rank":3,"spellId":501371,"level":33,"description":"DarkfeastRank 330 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 222+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":222,"dieSides":69,"pointsPerLevel":12.134400367736816,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48}]},{"rank":4,"spellId":501372,"level":49,"description":"DarkfeastRank 430 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 509+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":509,"dieSides":130,"pointsPerLevel":16.281600952148438,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64}]},{"rank":5,"spellId":501373,"level":65,"description":"DarkfeastRank 530 Rage Instant cast15 sec cooldownFeast on the darkness that surrounds you, healing yourself for 1041+(PL*3.84-1*3.84).","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":1041,"dieSides":212,"pointsPerLevel":20.428800582885742,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80}]}]},{"id":"coa-15-dawn-blade-60-802024","classId":"witch-hunter","dbcSpellId":802024,"name":"Dawn Blade","unlockLevel":1,"icon":"/assets/ui/spells/novart_passivemastery_(5)_border.png","sigil":"DB","description":"Dawn BladeRank 130 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 14+0+FireP*0.35+AP*0.25 as Holyfire Damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.2916666666666667,"basePoints":14,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802024,"level":1,"description":"Dawn BladeRank 130 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 14+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.2916666666666667,"basePoints":14,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":802248,"level":8,"description":"Dawn BladeRank 230 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 20+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.2898550724637681,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":802249,"level":18,"description":"Dawn BladeRank 330 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 32+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.3282828282828283,"basePoints":32,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":26},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":802250,"level":28,"description":"Dawn BladeRank 430 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 44+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.3449612403100775,"basePoints":44,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":802251,"level":38,"description":"Dawn BladeRank 530 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 58+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.3836477987421384,"basePoints":58,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":802252,"level":48,"description":"Dawn BladeRank 630 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 76+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.4312169312169312,"basePoints":76,"dieSides":12,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":56},{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":574342,"level":58,"description":"Dawn BladeRank 730 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 98+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.4840182648401826,"basePoints":98,"dieSides":17,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"damage","coefficient":1}]},{"rank":8,"spellId":574343,"level":60,"description":"Dawn BladeRank 830 Rage InstantRequires Melee Weapon Slash an enemy, dealing Weapon Damage plus 128+0+FireP*0.35+AP*0.25 as Holyfire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.62,"basePoints":128,"dieSides":24,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":80},{"kind":"damage","coefficient":1}]}]},{"id":"coa-tree-6529","classId":"witch-hunter","dbcSpellId":681450,"name":"Death Trap","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_traplauncher.png","sigil":"DT","description":"Place a death trap on the ground lasting 1 minute that will curse the first enemy to approach it, marking them for death, causing them to take 3100 + 100% AP Shadow damage after 1 minute.","target":"hostile","range":{"min":0,"max":0},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":506252,"coefficient":0.08,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":681450,"level":1,"description":"Place a death trap on the ground lasting 1 minute that will curse the first enemy to approach it, marking them for death, causing them to take 3100 + 100% AP Shadow damage after 1 minute.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":506252,"coefficient":0.08,"durationMs":60000}]}],"talentEntryId":6529},{"id":"coa-15-enchanted-armor-60-705488","classId":"witch-hunter","dbcSpellId":705488,"name":"Enchanted Armor","unlockLevel":1,"icon":"/assets/ui/spells/spell_magic_magearmor.png","sigil":"EA","description":"Enchanted ArmorRank 2Witchmail increases Armor contribution from items by 60%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705488:effect:0:aura:107","name":"Enchanted Armor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705488:effect:1:aura:107","name":"Enchanted Armor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705488,"level":1,"description":"Enchanted ArmorRank 2Witchmail increases Armor contribution from items by 60%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705488:effect:0:aura:107","name":"Enchanted Armor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705488:effect:1:aura:107","name":"Enchanted Armor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}]},{"id":"coa-tree-4012","classId":"witch-hunter","dbcSpellId":92094,"name":"Flames of Sin","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_shadowandflame.png","sigil":"FO","description":"Level 10 Passive Using Dawn Blade now grants you Flames of Sin for 3 sec, causing your auto attacks to deal an additional 30% of the damage dealt as Fire damage. Granting yourself Flames of Sin in this way while it's already active will increase the current duration by 3 sec.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92094:effect:0:aura:42","name":"Flames of Sin (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92094:proc:0:803710","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803710}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803710}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92094,"level":1,"description":"Level 10 Passive Using Dawn Blade now grants you Flames of Sin for 3 sec, causing your auto attacks to deal an additional 30% of the damage dealt as Fire damage. Granting yourself Flames of Sin in this way while it's already active will increase the current duration by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92094:effect:0:aura:42","name":"Flames of Sin (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92094:proc:0:803710","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803710}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803710}]}],"talentEntryId":4012},{"id":"coa-15-headshots-59-705466","classId":"witch-hunter","dbcSpellId":705466,"name":"Headshots","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_magtheridonshead.png","sigil":"HE","description":"HeadshotsRank 2Increases critical strike damage by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705466:effect:0:aura:163","name":"Headshots (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705466,"level":1,"description":"HeadshotsRank 2Increases critical strike damage by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705466:effect:0:aura:163","name":"Headshots (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-tree-4011","classId":"witch-hunter","dbcSpellId":92093,"name":"Houndmaster","unlockLevel":1,"icon":"/assets/ui/spells/custom_14_summon_dogs_border.png","sigil":"HO","description":"Level 10 Passive Your ranged auto attacks now generate Rage. In addition, teaches you Houndmaster's Whistle.Houndmaster's WhistleSummons a permanent Shadowhound companion to aid you in combat. Your Shadowhound receives 25% of healing done to you.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92093:effect:0:aura:4","name":"Houndmaster (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92093:effect:1:aura:42","name":"Houndmaster (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92093:proc:1:680244","triggers":["heal","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680244}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":680244}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92093,"level":1,"description":"Level 10 Passive Your ranged auto attacks now generate Rage. In addition, teaches you Houndmaster's Whistle.Houndmaster's WhistleSummons a permanent Shadowhound companion to aid you in combat. Your Shadowhound receives 25% of healing done to you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92093:effect:0:aura:4","name":"Houndmaster (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92093:effect:1:aura:42","name":"Houndmaster (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92093:proc:1:680244","triggers":["heal","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680244}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":680244}]}],"talentEntryId":4011},{"id":"coa-15-hunter-in-the-night-58-705493","classId":"witch-hunter","dbcSpellId":705493,"name":"Hunter in the Night","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_crossbow_05.png","sigil":"HI","description":"Hunter in the NightRank 1Reduces the cost of Slash by 5%, and Flintlock Shot by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705493:effect:0:aura:108","name":"Hunter in the Night (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705493:effect:1:aura:108","name":"Hunter in the Night (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705493,"level":1,"description":"Hunter in the NightRank 1Reduces the cost of Slash by 5%, and Flintlock Shot by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705493:effect:0:aura:108","name":"Hunter in the Night (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705493:effect:1:aura:108","name":"Hunter in the Night (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-15-nefarious-accuracy-59-705454","classId":"witch-hunter","dbcSpellId":705454,"name":"Nefarious Accuracy","unlockLevel":1,"icon":"/assets/ui/spells/ability_ironmaidens_convulsiveshadows.png","sigil":"NA","description":"Nefarious AccuracyRank 2Increases critical strike chance by 0% and boosts the effect of Blasting Powder by 0%","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705454,"level":1,"description":"Nefarious AccuracyRank 2Increases critical strike chance by 0% and boosts the effect of Blasting Powder by 0%","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34592","classId":"witch-hunter","dbcSpellId":789256,"name":"Night Walker","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcanespeed_border.png","sigil":"NW","description":"Increases the base range of Vault by 3 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:789256:effect:0:aura:107","name":"Night Walker (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:789256:effect:2:aura:4","name":"Night Walker (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":789256,"level":1,"description":"Increases the base range of Vault by 3 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:789256:effect:0:aura:107","name":"Night Walker (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:789256:effect:2:aura:4","name":"Night Walker (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34592},{"id":"coa-tree-34593","classId":"witch-hunter","dbcSpellId":707230,"name":"Purified Bola","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_90_bola.png","sigil":"PB","description":"Your Bola Throw now has 2 charges, deals additional damage, and lasts 2 additional sec, but now costs 10 Rage instead of mana.Purified Bola Throw2 Charges, 15 sec recharge Throw a bola at an enemy, dealing 348 + 40% AP Holy damage and slowing movement speed by -60% for 8 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707230:effect:0:aura:4","name":"Purified Bola (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707230,"level":1,"description":"Your Bola Throw now has 2 charges, deals additional damage, and lasts 2 additional sec, but now costs 10 Rage instead of mana.Purified Bola Throw2 Charges, 15 sec recharge Throw a bola at an enemy, dealing 348 + 40% AP Holy damage and slowing movement speed by -60% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707230:effect:0:aura:4","name":"Purified Bola (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34593},{"id":"coa-15-pursuer-of-evil-60-706242","classId":"witch-hunter","dbcSpellId":706242,"name":"Pursuer of Evil","unlockLevel":1,"icon":"/assets/ui/spells/ability_cheapshot.png","sigil":"PO","description":"Pursuer of EvilRank 1Increases melee and ranged haste by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706242:effect:0:aura:192","name":"Pursuer of Evil (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706242,"level":1,"description":"Pursuer of EvilRank 1Increases melee and ranged haste by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706242:effect:0:aura:192","name":"Pursuer of Evil (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":7,"triggerSpellId":0}]},{"rank":2,"spellId":706243,"level":1,"description":"Pursuer of EvilRank 2Increases melee and ranged haste by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706243:effect:0:aura:192","name":"Pursuer of Evil (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":7,"triggerSpellId":0}]}]},{"id":"coa-tree-34558","classId":"witch-hunter","dbcSpellId":705528,"name":"Regenerative Elixirs","unlockLevel":1,"icon":"/assets/ui/spells/inv_potion_55.png","sigil":"RE","description":"Drinking Tonics now also restores 30 Rage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705528:effect:0:aura:42","name":"Regenerative Elixirs (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705528:proc:0:521232","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":521232}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":521232}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705528,"level":1,"description":"Drinking Tonics now also restores 30 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705528:effect:0:aura:42","name":"Regenerative Elixirs (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705528:proc:0:521232","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":521232}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":521232}]}],"talentEntryId":34558},{"id":"coa-tree-9415","classId":"witch-hunter","dbcSpellId":681092,"name":"Resilient to Darkness","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_engravedscimitarpommel.png","sigil":"RT","description":"Direct Magic damage taken now heals you and restores mana to you equal to 3% of the damage done.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:681092:effect:0:aura:354","name":"Resilient to Darkness (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":681270}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681092,"level":1,"description":"Direct Magic damage taken now heals you and restores mana to you equal to 3% of the damage done.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:681092:effect:0:aura:354","name":"Resilient to Darkness (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":681270}]}],"talentEntryId":9415},{"id":"coa-tree-34557","classId":"witch-hunter","dbcSpellId":804024,"name":"Slayer of Darkness","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_retribution.png","sigil":"SO","description":"Increases damage dealt by 5% when fighting Demons or Undead. Additionally, direct damage dealt with spells or abilities now has a 10% chance to deal 151 Holy damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804024:effect:0:aura:168","name":"Slayer of Darkness (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":36,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804024:effect:1:aura:42","name":"Slayer of Darkness (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804024:proc:1:804025","triggers":["hit"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804025}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804025}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804024,"level":1,"description":"Increases damage dealt by 5% when fighting Demons or Undead. Additionally, direct damage dealt with spells or abilities now has a 10% chance to deal 151 Holy damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804024:effect:0:aura:168","name":"Slayer of Darkness (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":36,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804024:effect:1:aura:42","name":"Slayer of Darkness (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804024:proc:1:804025","triggers":["hit"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804025}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804025}]}],"talentEntryId":34557},{"id":"coa-tree-31006","classId":"witch-hunter","dbcSpellId":804068,"name":"Slayer's Mark","unlockLevel":1,"icon":"/assets/ui/spells/ability_blackhand_marked4death.png","sigil":"SS","description":"Mark an enemy, increasing the attack power of all attackers against that target by 150 and your critical strike chance against them by 3%, increasing by 3% every 1 sec for 8 seconds. For the duration, the enemy is unable to stealth.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804068:effect:0:aura:308","name":"Slayer's Mark (Aura 308)","disposition":"debuff","durationMs":8000,"maxStacks":8,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804068:effect:1:aura:41","name":"Slayer's Mark (Aura 41)","disposition":"debuff","durationMs":8000,"maxStacks":8,"stackBehavior":"add","utilityTags":["reveal-stealth"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":5,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804073},{"kind":"apply-aura","aura":{"id":"coa:804073:effect:0:aura:23","name":"Slayer's Mark Periodic (Aura 23)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804073:proc:0:804069","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804069}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804069}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804068,"level":1,"description":"Mark an enemy, increasing the attack power of all attackers against that target by 150 and your critical strike chance against them by 3%, increasing by 3% every 1 sec for 8 seconds. For the duration, the enemy is unable to stealth.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804068:effect:0:aura:308","name":"Slayer's Mark (Aura 308)","disposition":"debuff","durationMs":8000,"maxStacks":8,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804068:effect:1:aura:41","name":"Slayer's Mark (Aura 41)","disposition":"debuff","durationMs":8000,"maxStacks":8,"stackBehavior":"add","utilityTags":["reveal-stealth"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":5,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804073},{"kind":"apply-aura","aura":{"id":"coa:804073:effect:0:aura:23","name":"Slayer's Mark Periodic (Aura 23)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804073:proc:0:804069","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804069}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804069}]}],"talentEntryId":31006},{"id":"coa-tree-30738","classId":"witch-hunter","dbcSpellId":805756,"name":"Smoke Grenade","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_pyriumgrenade.png","sigil":"SG","description":"Throw down a smoke grenade, enemies are unable to target into or out of the Smoke for 8 seconds. All allies in the Smoke area gain 40% increased movement speed and all enemies have their movement speed slowed by -60%.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805756:effect:0:aura:33","name":"Smoke Grenade (Aura 33)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.6}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805756:effect:1:aura:336","name":"Smoke Grenade (Aura 336)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":336,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805756:effect:2:aura:336","name":"Smoke Grenade (Aura 336)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":336,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805756,"level":1,"description":"Throw down a smoke grenade, enemies are unable to target into or out of the Smoke for 8 seconds. All allies in the Smoke area gain 40% increased movement speed and all enemies have their movement speed slowed by -60%.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805756:effect:0:aura:33","name":"Smoke Grenade (Aura 33)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.6}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805756:effect:1:aura:336","name":"Smoke Grenade (Aura 336)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":336,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805756:effect:2:aura:336","name":"Smoke Grenade (Aura 336)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":336,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30738},{"id":"coa-tree-29952","classId":"witch-hunter","dbcSpellId":680253,"name":"Trap Card","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_tarot_6omagecard.png","sigil":"TC","description":"Increases the duration of your Traps by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680253:effect:0:aura:108","name":"Trap Card (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680253,"level":1,"description":"Increases the duration of your Traps by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680253:effect:0:aura:108","name":"Trap Card (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29952},{"id":"coa-tree-34587","classId":"witch-hunter","dbcSpellId":705526,"name":"Trickster","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_smoke.png","sigil":"TR","description":"Reduces the cooldown of Smoke Grenade by -30 sec and increases its duration by 1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705526:effect:0:aura:107","name":"Trickster (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705526:effect:1:aura:107","name":"Trickster (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705526:effect:2:aura:4","name":"Trickster (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705526,"level":1,"description":"Reduces the cooldown of Smoke Grenade by -30 sec and increases its duration by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705526:effect:0:aura:107","name":"Trickster (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705526:effect:1:aura:107","name":"Trickster (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705526:effect:2:aura:4","name":"Trickster (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":34587},{"id":"coa-tree-30736","classId":"witch-hunter","dbcSpellId":803638,"name":"Vampire Hunter","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(60)_border.png","sigil":"VH","description":"When an enemy applies a curse to you, your Magic damage taken is reduced by -10% for 8 seconds. The damage reduction is increased by 5% and duration is increased by 2 seconds for every curse active.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803638:effect:0:aura:4","name":"Vampire Hunter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":803638,"level":1,"description":"When an enemy applies a curse to you, your Magic damage taken is reduced by -10% for 8 seconds. The damage reduction is increased by 5% and duration is increased by 2 seconds for every curse active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803638:effect:0:aura:4","name":"Vampire Hunter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":30736},{"id":"coa-tree-29986","classId":"witch-hunter","dbcSpellId":802276,"name":"Vampiric Tonic","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_potione5.png","sigil":"VT","description":"Drink a vampiric tonic, allowing Physical damage dealt to heal you equal to 20% of the damage dealt for 10 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802276:effect:0:aura:354","name":"Vampiric Tonic (Aura 354)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":802271},{"kind":"apply-aura","aura":{"id":"coa:802276:effect:1:aura:4","name":"Vampiric Tonic (Aura 4)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802276:effect:2:aura:49","name":"Vampiric Tonic (Aura 49)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802276,"level":1,"description":"Drink a vampiric tonic, allowing Physical damage dealt to heal you equal to 20% of the damage dealt for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802276:effect:0:aura:354","name":"Vampiric Tonic (Aura 354)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":802271},{"kind":"apply-aura","aura":{"id":"coa:802276:effect:1:aura:4","name":"Vampiric Tonic (Aura 4)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802276:effect:2:aura:49","name":"Vampiric Tonic (Aura 49)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29986},{"id":"coa-tree-29150","classId":"witch-hunter","dbcSpellId":500085,"name":"Vault","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_vengefulretreat2.png","sigil":"VA","description":"Dash in the direction you are moving. Distance scales with movement speed. Not usable while rooted.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500085:effect:0:aura:107","name":"Vault (Aura 107)","disposition":"buff","durationMs":600,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500085:effect:1:aura:4","name":"Vault (Aura 4)","disposition":"buff","durationMs":600,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500085,"level":1,"description":"Dash in the direction you are moving. Distance scales with movement speed. Not usable while rooted.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500085:effect:0:aura:107","name":"Vault (Aura 107)","disposition":"buff","durationMs":600,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500085:effect:1:aura:4","name":"Vault (Aura 4)","disposition":"buff","durationMs":600,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29150},{"id":"coa-tree-34595","classId":"witch-hunter","dbcSpellId":705534,"name":"Vengeful Intent","unlockLevel":1,"icon":"/assets/ui/spells/_diablo3_cleave_deathknight.png","sigil":"VI","description":"Whenever you take direct damage you have a 10% chance to strike back for 75% Weapon Damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705534:effect:0:aura:42","name":"Vengeful Intent (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705534:proc:0:520265","triggers":["hit"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520265}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520265}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705534,"level":1,"description":"Whenever you take direct damage you have a 10% chance to strike back for 75% Weapon Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705534:effect:0:aura:42","name":"Vengeful Intent (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705534:proc:0:520265","triggers":["hit"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520265}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520265}]}],"talentEntryId":34595},{"id":"coa-tree-6413","classId":"witch-hunter","dbcSpellId":802278,"name":"Witchblood Tonic","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_potione2.png","sigil":"WT","description":"Drink a shadowy tonic, removing all curse effects from you and reducing all Magic damage taken by -40% for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802278:effect:0:aura:87","name":"Witchblood Tonic (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["curse"],"maxCount":15},{"kind":"apply-aura","aura":{"id":"coa:802278:effect:2:aura:49","name":"Witchblood Tonic (Aura 49)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802278,"level":1,"description":"Drink a shadowy tonic, removing all curse effects from you and reducing all Magic damage taken by -40% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802278:effect:0:aura:87","name":"Witchblood Tonic (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["curse"],"maxCount":15},{"kind":"apply-aura","aura":{"id":"coa:802278:effect:2:aura:49","name":"Witchblood Tonic (Aura 49)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6413},{"id":"witch-hunter-caltrops","classId":"witch-hunter","dbcSpellId":503679,"name":"Caltrops","unlockLevel":2,"icon":"/assets/ui/spells/caltrops2.png","sigil":"CA","description":"Throw caltrops over a $a1 yd area, lasting for $d. Enemies that walk over the caltrops suffer ${$504447m1+$504447ppl1+$RAP*.25} Physical Damage and $504823s1% slowed movement speed for $504823d.","target":"hostile","range":{"min":0,"max":20},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503679:effect:0:aura:4","name":"Caltrops (Aura 4)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"summon","creatureId":506010,"coefficient":0.13793103448275862,"durationMs":12000}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":503679,"level":2,"description":"Throw caltrops over a $a1 yd area, lasting for $d. Enemies that walk over the caltrops suffer ${$504447m1+$504447ppl1+$RAP*.25} Physical Damage and $504823s1% slowed movement speed for $504823d.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503679:effect:0:aura:4","name":"Caltrops (Aura 4)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"summon","creatureId":506010,"coefficient":0.13793103448275862,"durationMs":12000}]}]},{"id":"coa-15-surging-tonic-60-802279","classId":"witch-hunter","dbcSpellId":802279,"name":"Surging Tonic","unlockLevel":6,"icon":"/assets/ui/spells/trade_alchemy_potione3.png","sigil":"ST","description":"Surging TonicRank 1Instant cast2 min cooldownDrink a bitter tonic, reducing the cost of all abilities by 20% for 15 sec. Only 1 Tonic can be active at a time.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802279:effect:0:aura:72","name":"Surging Tonic (Aura 72)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802279,"level":6,"description":"Surging TonicRank 1Instant cast2 min cooldownDrink a bitter tonic, reducing the cost of all abilities by 20% for 15 sec. Only 1 Tonic can be active at a time.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":3000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802279:effect:0:aura:72","name":"Surging Tonic (Aura 72)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-15-vicious-mockery-501-802013","classId":"witch-hunter","dbcSpellId":802013,"name":"Vicious Mockery","unlockLevel":10,"icon":"/assets/ui/spells/spell_misc_emotionangry.png","sigil":"VM","description":"Vicious MockeryRank 13% of base mana Instant8 sec cooldownTaunt an enemy to attack you for 3 sec. If the target is a Demon or Undead, they take 1+AP*0.35 additional Shadow damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"taunt","durationMs":3000},{"kind":"apply-aura","aura":{"id":"coa:802013:effect:1:aura:11","name":"Vicious Mockery (Aura 11)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":11,"miscValue":0,"triggerSpellId":0},{"kind":"taunt","durationMs":3000},{"kind":"trigger-spell","spellId":501383},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802013,"level":10,"description":"Vicious MockeryRank 13% of base mana Instant8 sec cooldownTaunt an enemy to attack you for 3 sec. If the target is a Demon or Undead, they take 1+AP*0.35 additional Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"taunt","durationMs":3000},{"kind":"apply-aura","aura":{"id":"coa:802013:effect:1:aura:11","name":"Vicious Mockery (Aura 11)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":11,"miscValue":0,"triggerSpellId":0},{"kind":"taunt","durationMs":3000},{"kind":"trigger-spell","spellId":501383},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14}]}]},{"id":"witch-hunter-witchbane","classId":"witch-hunter","dbcSpellId":800165,"name":"Witchbane","unlockLevel":11,"icon":"/assets/ui/spells/_d3rapidfire.png","sigil":"WI","description":"WitchbaneRank 140 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(20+0+RAP*0.15) Physical damage over 3 sec.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800165:effect:0:aura:227","name":"Witchbane (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800165:proc:0:704342","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704342}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":704342}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800165,"level":11,"description":"WitchbaneRank 140 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(20+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800165:effect:0:aura:227","name":"Witchbane (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800165:proc:0:704342","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704342}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":704342}]},{"rank":2,"spellId":520211,"level":20,"description":"WitchbaneRank 240 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(29+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520211:effect:0:aura:227","name":"Witchbane (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520211:proc:0:704342","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704342}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":704342}]},{"rank":3,"spellId":520212,"level":28,"description":"WitchbaneRank 340 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(39+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520212:effect:0:aura:227","name":"Witchbane (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520212:proc:0:704342","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704342}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":704342}]},{"rank":4,"spellId":520213,"level":36,"description":"WitchbaneRank 440 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(53+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520213:effect:0:aura:227","name":"Witchbane (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520213:proc:0:704342","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704342}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":704342}]},{"rank":5,"spellId":578297,"level":44,"description":"WitchbaneRank 540 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(71+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:578297:effect:0:aura:227","name":"Witchbane (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:578297:proc:0:704342","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704342}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":704342}]},{"rank":6,"spellId":574319,"level":52,"description":"WitchbaneRank 640 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(95+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:574319:effect:0:aura:227","name":"Witchbane (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:574319:proc:0:704342","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704342}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":704342}]},{"rank":7,"spellId":574320,"level":60,"description":"WitchbaneRank 740 Rage ChanneledRequires Ranged Weapon Unleash a series of devastating shots dealing (3*1000/0.75)*(130+0+RAP*0.15) Physical damage over 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:574320:effect:0:aura:227","name":"Witchbane (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:574320:proc:0:704342","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704342}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":704342}]}]},{"id":"coa-15-heartstop-bolt-58-800163","classId":"witch-hunter","dbcSpellId":800163,"name":"Heartstop Bolt","unlockLevel":15,"icon":"/assets/ui/spells/inv_ammo_arrow_04.png","sigil":"HB","description":"Heartstop BoltRank 14% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+41+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8694444444444445,"basePoints":41,"dieSides":8,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":24},{"kind":"apply-aura","aura":{"id":"coa:800163:effect:1:aura:118","name":"Heartstop Bolt (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800163,"level":15,"description":"Heartstop BoltRank 14% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+41+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8694444444444445,"basePoints":41,"dieSides":8,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":24},{"kind":"apply-aura","aura":{"id":"coa:800163:effect:1:aura:118","name":"Heartstop Bolt (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":520206,"level":26,"description":"Heartstop BoltRank 24% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+80+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1.1260162601626016,"basePoints":80,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34},{"kind":"apply-aura","aura":{"id":"coa:520206:effect:1:aura:118","name":"Heartstop Bolt (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":520207,"level":36,"description":"Heartstop BoltRank 34% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+120+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1.3137254901960784,"basePoints":120,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"apply-aura","aura":{"id":"coa:520207:effect:1:aura:118","name":"Heartstop Bolt (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":520208,"level":44,"description":"Heartstop BoltRank 44% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+160+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1.463276836158192,"basePoints":160,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48},{"kind":"apply-aura","aura":{"id":"coa:520208:effect:1:aura:118","name":"Heartstop Bolt (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":520209,"level":50,"description":"Heartstop BoltRank 54% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+210+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1.6538461538461537,"basePoints":210,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:520209:effect:1:aura:118","name":"Heartstop Bolt (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":520210,"level":58,"description":"Heartstop BoltRank 64% of base mana Instant6 sec cooldownRequires Crossbows Shoot a vicious bolt dealing RAP*0.225+SP*.4+333+0 Physical damage, and reducing healing received on the target by 30% for 8 sec. Generates 15 Rage. Refreshes the duration of Tormentor Bolt. Can only be used directly after Coiling Shot.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":2.1164383561643834,"basePoints":333,"dieSides":1,"pointsPerLevel":2.25,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66},{"kind":"apply-aura","aura":{"id":"coa:520210:effect:1:aura:118","name":"Heartstop Bolt (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":1}]}]},{"id":"coa-15-damnation-58-520062","classId":"witch-hunter","dbcSpellId":520062,"name":"Damnation","unlockLevel":17,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DA","description":"DamnationRank 125 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 6+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.3},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":520062,"level":17,"description":"DamnationRank 125 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 6+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.3},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":520214,"level":24,"description":"DamnationRank 225 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 35+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.3},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":520215,"level":34,"description":"DamnationRank 325 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 73+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.3},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":520216,"level":44,"description":"DamnationRank 425 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 121+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.3},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":520217,"level":54,"description":"DamnationRank 525 Rage InstantRequires Ranged Weapon Deplete your rage to shoot a powerful bolt dealing 130% Weapon Damage plus 181+ Twilight Damage and converting each point of Rage into additional damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.3},{"kind":"damage","coefficient":1}]}]},{"id":"witch-hunter-shadow-shot","classId":"witch-hunter","dbcSpellId":560048,"name":"Shadow Shot","unlockLevel":17,"icon":"/assets/ui/spells/_smallgun_purple.png","sigil":"SS","description":"Shadow ShotRank 1999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 8+0+RAP*0.15 as Shadow Damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":560048,"level":17,"description":"Shadow ShotRank 1999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 8+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75}]},{"rank":2,"spellId":561146,"level":26,"description":"Shadow ShotRank 2999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 12+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75}]},{"rank":3,"spellId":561147,"level":34,"description":"Shadow ShotRank 3999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 16+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75}]},{"rank":4,"spellId":561148,"level":42,"description":"Shadow ShotRank 4999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 23+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75}]},{"rank":5,"spellId":561149,"level":50,"description":"Shadow ShotRank 5999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 33+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75}]},{"rank":6,"spellId":561153,"level":58,"description":"Shadow ShotRank 6999.9 Rage Instant6 sec cooldownRequires Ranged Weapon Fire several bullets, striking up to 4 enemies for 75% Weapon Damage plus 47+0+RAP*0.15 as Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":999.9},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75}]}]},{"id":"coa-15-tormentor-58-800162","classId":"witch-hunter","dbcSpellId":800162,"name":"Tormentor","unlockLevel":17,"icon":"/assets/ui/spells/inv_ammo_arrow_05.png","sigil":"TO","description":"TormentorRank 120 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 5+0+ShaP*.175, 5+0+HolP*.175) Twilight Damage plus (14*1000/2)*(9+0+RAP*0.125) over 14 sec.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800162:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1781302091355125,"basePoints":9,"dieSides":1,"pointsPerLevel":0.476500004529953,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":7,"intervalMs":2000,"tag":"spell-800162"},{"kind":"apply-aura","aura":{"id":"coa:800162:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800162,"level":17,"description":"TormentorRank 120 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 5+0+ShaP*.175, 5+0+HolP*.175) Twilight Damage plus (14*1000/2)*(9+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800162:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1781302091355125,"basePoints":9,"dieSides":1,"pointsPerLevel":0.476500004529953,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":7,"intervalMs":2000,"tag":"spell-800162"},{"kind":"apply-aura","aura":{"id":"coa:800162:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22}]},{"rank":2,"spellId":501344,"level":24,"description":"TormentorRank 220 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 10+0+ShaP*.175, 10+0+HolP*.175) Twilight Damage plus (14*1000/2)*(16+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501344:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.260841976883065,"basePoints":16,"dieSides":1,"pointsPerLevel":0.6049379706382751,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30,"ticks":7,"intervalMs":2000,"tag":"spell-501344"},{"kind":"apply-aura","aura":{"id":"coa:501344:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08547008547008547,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":3,"spellId":501345,"level":32,"description":"TormentorRank 320 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 16+0+ShaP*.175, 16+0+HolP*.175) Twilight Damage plus (14*1000/2)*(23+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501345:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3256878277934189,"basePoints":23,"dieSides":1,"pointsPerLevel":0.7163119912147522,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"ticks":7,"intervalMs":2000,"tag":"spell-501345"},{"kind":"apply-aura","aura":{"id":"coa:501345:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.12056737588652482,"basePoints":16,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":4,"spellId":501346,"level":40,"description":"TormentorRank 420 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 19+0+ShaP*.175, 19+0+HolP*.175) Twilight Damage plus (14*1000/2)*(30+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501346:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.40671224305123993,"basePoints":30,"dieSides":1,"pointsPerLevel":0.9276880025863647,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46,"ticks":7,"intervalMs":2000,"tag":"spell-501346"},{"kind":"apply-aura","aura":{"id":"coa:501346:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.12424242424242424,"basePoints":19,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46}]},{"rank":5,"spellId":501347,"level":48,"description":"TormentorRank 520 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 24+0+ShaP*.175, 24+0+HolP*.175) Twilight Damage plus (14*1000/2)*(37+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501347:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4897659140289145,"basePoints":37,"dieSides":1,"pointsPerLevel":1.1576199531555176,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54,"ticks":7,"intervalMs":2000,"tag":"spell-501347"},{"kind":"apply-aura","aura":{"id":"coa:501347:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.13756613756613756,"basePoints":24,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":6,"spellId":501348,"level":56,"description":"TormentorRank 620 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 29+0+ShaP*.175, 29+0+HolP*.175) Twilight Damage plus (14*1000/2)*(44+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501348:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5712037422287632,"basePoints":44,"dieSides":1,"pointsPerLevel":1.3868999481201172,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58,"ticks":7,"intervalMs":2000,"tag":"spell-501348"},{"kind":"apply-aura","aura":{"id":"coa:501348:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.14788732394366197,"basePoints":29,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":7,"spellId":501349,"level":60,"description":"TormentorRank 720 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 36+0+ShaP*.175, 36+0+HolP*.175) Twilight Damage plus (14*1000/2)*(52+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501349:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6572551070319281,"basePoints":52,"dieSides":1,"pointsPerLevel":1.598039984703064,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":60,"ticks":7,"intervalMs":2000,"tag":"spell-501349"},{"kind":"apply-aura","aura":{"id":"coa:501349:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17333333333333334,"basePoints":36,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":60}]},{"rank":8,"spellId":501350,"level":62,"description":"TormentorRank 820 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 44+0+ShaP*.175, 44+0+HolP*.175) Twilight Damage plus (14*1000/2)*(60+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501350:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7406428448565594,"basePoints":60,"dieSides":1,"pointsPerLevel":1.7917499542236328,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":64,"ticks":7,"intervalMs":2000,"tag":"spell-501350"},{"kind":"apply-aura","aura":{"id":"coa:501350:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.21212121212121213,"basePoints":44,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":64}]},{"rank":9,"spellId":501351,"level":66,"description":"TormentorRank 920 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 52+0+ShaP*.175, 52+0+HolP*.175) Twilight Damage plus (14*1000/2)*(68+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501351:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7967321921768502,"basePoints":68,"dieSides":1,"pointsPerLevel":1.9031200408935547,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":68,"ticks":7,"intervalMs":2000,"tag":"spell-501351"},{"kind":"apply-aura","aura":{"id":"coa:501351:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.23868312757201646,"basePoints":52,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":68}]},{"rank":10,"spellId":501352,"level":70,"description":"TormentorRank 1020 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 59+0+ShaP*.175, 59+0+HolP*.175) Twilight Damage plus (14*1000/2)*(110+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501352:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.016476453519335,"basePoints":110,"dieSides":1,"pointsPerLevel":2.1314499378204346,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":72,"ticks":7,"intervalMs":2000,"tag":"spell-501352"},{"kind":"apply-aura","aura":{"id":"coa:501352:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.25882352941176473,"basePoints":59,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":72}]},{"rank":11,"spellId":501353,"level":74,"description":"TormentorRank 1120 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 70+0+ShaP*.175, 70+0+HolP*.175) Twilight Damage plus (14*1000/2)*(145+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501353:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1928410440794983,"basePoints":145,"dieSides":1,"pointsPerLevel":2.34443998336792,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":76,"ticks":7,"intervalMs":2000,"tag":"spell-501353"},{"kind":"apply-aura","aura":{"id":"coa:501353:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.29213483146067415,"basePoints":70,"dieSides":17,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":76}]},{"rank":12,"spellId":501354,"level":78,"description":"TormentorRank 1220 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 88+0+ShaP*.175, 88+0+HolP*.175) Twilight Damage plus (14*1000/2)*(206+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501354:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.4249218116951672,"basePoints":206,"dieSides":1,"pointsPerLevel":2.455810070037842,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":78,"ticks":7,"intervalMs":2000,"tag":"spell-501354"},{"kind":"apply-aura","aura":{"id":"coa:501354:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.35304659498207885,"basePoints":88,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":78}]},{"rank":13,"spellId":501355,"level":80,"description":"TormentorRank 1320 Rage InstantRequires Ranged Weapon Fire a deadly bolt dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(ShaP, HolP), 97+0+ShaP*.175, 97+0+HolP*.175) Twilight Damage plus (14*1000/2)*(291+0+RAP*0.125) over 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501355:effect:0:aura:3","name":"Tormentor (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.7697375648900082,"basePoints":291,"dieSides":1,"pointsPerLevel":2.6671900749206543,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":7,"intervalMs":2000,"tag":"spell-501355"},{"kind":"apply-aura","aura":{"id":"coa:501355:effect:1:aura:271","name":"Tormentor (Aura 271)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.38070175438596493,"basePoints":97,"dieSides":24,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80}]}]},{"id":"witch-hunter-bola-throw","classId":"witch-hunter","dbcSpellId":501337,"name":"Bola Throw","unlockLevel":20,"icon":"/assets/ui/spells/_d3bolashot.png","sigil":"BT","description":"Bola ThrowRank 23% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 44+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501337:effect:0:aura:33","name":"Bola Throw (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5},{"kind":"damage","coefficient":0.6009523800441197,"basePoints":44,"dieSides":4,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:501337:effect:2:aura:271","name":"Bola Throw (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501337,"level":20,"description":"Bola ThrowRank 23% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 44+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501337:effect:0:aura:33","name":"Bola Throw (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5},{"kind":"damage","coefficient":0.6009523800441197,"basePoints":44,"dieSides":4,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:501337:effect:2:aura:271","name":"Bola Throw (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501338,"level":28,"description":"Bola ThrowRank 33% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 66+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501338:effect:0:aura:33","name":"Bola Throw (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5},{"kind":"damage","coefficient":0.7914728785670081,"basePoints":66,"dieSides":6,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"apply-aura","aura":{"id":"coa:501338:effect:2:aura:271","name":"Bola Throw (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501339,"level":36,"description":"Bola ThrowRank 43% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 97+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501339:effect:0:aura:33","name":"Bola Throw (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5},{"kind":"damage","coefficient":1.0130718954248366,"basePoints":97,"dieSides":9,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"apply-aura","aura":{"id":"coa:501339:effect:2:aura:271","name":"Bola Throw (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501340,"level":44,"description":"Bola ThrowRank 53% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 128+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501340:effect:0:aura:33","name":"Bola Throw (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5},{"kind":"damage","coefficient":1.2088135676195393,"basePoints":128,"dieSides":11,"pointsPerLevel":1.840000033378601,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:501340:effect:2:aura:271","name":"Bola Throw (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501341,"level":52,"description":"Bola ThrowRank 63% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 191+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501341:effect:0:aura:33","name":"Bola Throw (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5},{"kind":"damage","coefficient":1.5616915546246428,"basePoints":191,"dieSides":18,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"apply-aura","aura":{"id":"coa:501341:effect:2:aura:271","name":"Bola Throw (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501342,"level":60,"description":"Bola ThrowRank 73% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 247+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501342:effect:0:aura:33","name":"Bola Throw (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5},{"kind":"damage","coefficient":1.8262222120496963,"basePoints":247,"dieSides":24,"pointsPerLevel":2.5399999618530273,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"apply-aura","aura":{"id":"coa:501342:effect:2:aura:271","name":"Bola Throw (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501343,"level":68,"description":"Bola ThrowRank 83% of base mana Instant15 sec cooldownThrow a bola at an enemy, dealing 369+0+AP*.3 Physical damage and slowing their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501343:effect:0:aura:33","name":"Bola Throw (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5},{"kind":"damage","coefficient":2.3387148906906923,"basePoints":369,"dieSides":36,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:501343:effect:2:aura:271","name":"Bola Throw (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]}],"stormbringer":[{"id":"coa-tree-34916","classId":"stormbringer","dbcSpellId":807462,"name":"Aether Mastery","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_netherstorm_01.png","sigil":"AM","description":"Allows 30% of your mana regeneration to continue while casting and increases your critical strike chance by 2%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807462:effect:0:aura:134","name":"Aether Mastery (Aura 134)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":134,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807462:effect:1:aura:290","name":"Aether Mastery (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807462,"level":1,"description":"Allows 30% of your mana regeneration to continue while casting and increases your critical strike chance by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807462:effect:0:aura:134","name":"Aether Mastery (Aura 134)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":134,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807462:effect:1:aura:290","name":"Aether Mastery (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":807887,"level":1,"description":"Allows 60% of your mana regeneration to continue while casting and increases your critical strike chance by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807887:effect:0:aura:134","name":"Aether Mastery (Aura 134)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":134,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807887:effect:1:aura:290","name":"Aether Mastery (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34916},{"id":"coa-16-aethermancy-62-705690","classId":"stormbringer","dbcSpellId":705690,"name":"Aethermancy","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_improvedreincarnation.png","sigil":"AE","description":"AethermancyRank 1Increases the critical strike chance of your Invigorating Surge by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705690:effect:0:aura:107","name":"Aethermancy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705690:effect:1:aura:107","name":"Aethermancy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705690,"level":1,"description":"AethermancyRank 1Increases the critical strike chance of your Invigorating Surge by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705690:effect:0:aura:107","name":"Aethermancy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705690:effect:1:aura:107","name":"Aethermancy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":2,"spellId":705691,"level":1,"description":"AethermancyRank 2Increases the critical strike chance of your Invigorating Surge by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705691:effect:0:aura:108","name":"Aethermancy (Aura 108)","disposition":"buff","durationMs":80000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705691:effect:1:aura:108","name":"Aethermancy (Aura 108)","disposition":"buff","durationMs":80000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}]},{"id":"coa-tree-34931","classId":"stormbringer","dbcSpellId":705690,"name":"Aethermancy","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_improvedreincarnation.png","sigil":"AE","description":"AethermancyRank 1Increases the critical strike chance of your Invigorating Surge by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705690:effect:0:aura:107","name":"Aethermancy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705690:effect:1:aura:107","name":"Aethermancy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705690,"level":1,"description":"AethermancyRank 1Increases the critical strike chance of your Invigorating Surge by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705690:effect:0:aura:107","name":"Aethermancy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705690:effect:1:aura:107","name":"Aethermancy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":2,"spellId":705691,"level":1,"description":"AethermancyRank 2Increases the critical strike chance of your Invigorating Surge by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705691:effect:0:aura:108","name":"Aethermancy (Aura 108)","disposition":"buff","durationMs":80000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705691:effect:1:aura:108","name":"Aethermancy (Aura 108)","disposition":"buff","durationMs":80000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}],"talentEntryId":34931},{"id":"coa-tree-4014","classId":"stormbringer","dbcSpellId":92097,"name":"Air Elemental","unlockLevel":1,"icon":"/assets/ui/spells/inv_progenitorelemental_black.png","sigil":"AE","description":"Level 10 Passive Teaches you Summon: Air Elemental.Summon: Air ElementalCall an Air Elemental to aid you in combat that gains a stack of Invigoration whenever it deals damage. InvigorationIncreases the damage of your Air Elemental by 3% for 15 seconds, stacking 10 times. Additional applications do not refresh duration.","target":"hostile","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92097:effect:0:aura:4","name":"Air Elemental (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92097,"level":1,"description":"Level 10 Passive Teaches you Summon: Air Elemental.Summon: Air ElementalCall an Air Elemental to aid you in combat that gains a stack of Invigoration whenever it deals damage. InvigorationIncreases the damage of your Air Elemental by 3% for 15 seconds, stacking 10 times. Additional applications do not refresh duration.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92097:effect:0:aura:4","name":"Air Elemental (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4014},{"id":"coa-tree-34694","classId":"stormbringer","dbcSpellId":705675,"name":"Airing Out","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_wrathofair_totem.png","sigil":"AO","description":"Reduces the duration of incapacitate and disorient effects by -20%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"status","status":"sleep","durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:705675:effect:0:aura:232","name":"Airing Out (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":30,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705675:effect:1:aura:232","name":"Airing Out (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705675:effect:2:aura:232","name":"Airing Out (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705675,"level":1,"description":"Reduces the duration of incapacitate and disorient effects by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"status","status":"sleep","durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:705675:effect:0:aura:232","name":"Airing Out (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":30,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705675:effect:1:aura:232","name":"Airing Out (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705675:effect:2:aura:232","name":"Airing Out (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":34694},{"id":"coa-tree-34919","classId":"stormbringer","dbcSpellId":707053,"name":"Altered Course","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(55)_border.png","sigil":"AC","description":"Casting Discharge now increases your movement speed by 20% for 6 seconds, stacking 2 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707053:effect:0:aura:42","name":"Altered Course (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707053:proc:0:707219","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707219}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707219}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707053,"level":1,"description":"Casting Discharge now increases your movement speed by 20% for 6 seconds, stacking 2 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707053:effect:0:aura:42","name":"Altered Course (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707053:proc:0:707219","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707219}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707219}]}],"talentEntryId":34919},{"id":"coa-tree-34935","classId":"stormbringer","dbcSpellId":705720,"name":"Aviana's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/inv_eagle2windmount_white.png","sigil":"AS","description":"Reduces your total threat generated by -30% and increases the range of Gust of Wind by 3 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705720:effect:0:aura:107","name":"Aviana's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705720:effect:1:aura:103","name":"Aviana's Blessing (Aura 103)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":103,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705720,"level":1,"description":"Reduces your total threat generated by -30% and increases the range of Gust of Wind by 3 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705720:effect:0:aura:107","name":"Aviana's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705720:effect:1:aura:103","name":"Aviana's Blessing (Aura 103)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":103,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34935},{"id":"coa-tree-29138","classId":"stormbringer","dbcSpellId":500041,"name":"Body of Lightning","unlockLevel":1,"icon":"/assets/ui/spells/_d3stormarmor.png","sigil":"BO","description":"Depletes 25 Static Infuse an ally with lightning for 12 seconds, regenerating 15% of their maximum mana plus 1% every 1 sec. While active, damage dealt deals an additional 75 + 15% nature SP Nature damage to nearby enemies","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500041:effect:0:aura:42","name":"Body of Lightning (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500041:proc:0:800406","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800406}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800406},{"kind":"apply-aura","aura":{"id":"coa:500041:effect:1:aura:21","name":"Body of Lightning (Aura 21)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":21,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":15,"percentage":true}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500041,"level":1,"description":"Depletes 25 Static Infuse an ally with lightning for 12 seconds, regenerating 15% of their maximum mana plus 1% every 1 sec. While active, damage dealt deals an additional 75 + 15% nature SP Nature damage to nearby enemies","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500041:effect:0:aura:42","name":"Body of Lightning (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500041:proc:0:800406","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800406}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800406},{"kind":"apply-aura","aura":{"id":"coa:500041:effect:1:aura:21","name":"Body of Lightning (Aura 21)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":21,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":15,"percentage":true}]}],"talentEntryId":29138},{"id":"coa-16-breezeway-62-705701","classId":"stormbringer","dbcSpellId":705701,"name":"Breezeway","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_lens_flare.png","sigil":"BR","description":"BreezewayRank 2Increases the damage done by Wind Blast and Air Elemental's Windpelt by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705701:effect:0:aura:108","name":"Breezeway (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705701:effect:1:aura:108","name":"Breezeway (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705701,"level":1,"description":"BreezewayRank 2Increases the damage done by Wind Blast and Air Elemental's Windpelt by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705701:effect:0:aura:108","name":"Breezeway (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705701:effect:1:aura:108","name":"Breezeway (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29814","classId":"stormbringer","dbcSpellId":804826,"name":"Charge","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_staticshock.png","sigil":"CH","description":"Charge yourself with electricity, generating 100 Static and increasing your spell haste by 30% for your next cast. Lasts 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":803101,"withValue":10},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804826:effect:2:aura:216","name":"Charge (Aura 216)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804826,"level":1,"description":"Charge yourself with electricity, generating 100 Static and increasing your spell haste by 30% for your next cast. Lasts 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":803101,"withValue":10},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804826:effect:2:aura:216","name":"Charge (Aura 216)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29814},{"id":"coa-tree-31263","classId":"stormbringer","dbcSpellId":801838,"name":"Cloudburst","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_volatileair.png","sigil":"CL","description":"Create a mighty gust of wind that knocks away all nearby enemies.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":32991}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801838,"level":1,"description":"Create a mighty gust of wind that knocks away all nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":32991}]}],"talentEntryId":31263},{"id":"coa-tree-12919","classId":"stormbringer","dbcSpellId":570722,"name":"Concentrated Static","unlockLevel":1,"icon":"/assets/ui/spells/nhi_spirituallightning_border.png","sigil":"CS","description":"Casting Discharge now restores 5% more mana.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570722:effect:0:aura:107","name":"Concentrated Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":570722,"level":1,"description":"Casting Discharge now restores 5% more mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570722:effect:0:aura:107","name":"Concentrated Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":12919},{"id":"coa-tree-4015","classId":"stormbringer","dbcSpellId":92098,"name":"Conductive","unlockLevel":1,"icon":"/assets/ui/spells/ability_shawaterelemental_reform.png","sigil":"CO","description":"Level 10 Passive Shock now grants Conductive for 1 minute, stacking 6 times. Torrential Wrath consumes all stacks of Conductive to trigger Conduction. Conduction (Damage)Deals cond(gt(SPFR, SPN), 202*1+SPFR*0.585, 202*1+SPN*0.35) Frost Damage, increased by 25% for each stack of Conductive consumed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92098:effect:0:aura:42","name":"Conductive (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92098:proc:0:567560","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":567560}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":567560}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92098,"level":1,"description":"Level 10 Passive Shock now grants Conductive for 1 minute, stacking 6 times. Torrential Wrath consumes all stacks of Conductive to trigger Conduction. Conduction (Damage)Deals cond(gt(SPFR, SPN), 202*1+SPFR*0.585, 202*1+SPN*0.35) Frost Damage, increased by 25% for each stack of Conductive consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92098:effect:0:aura:42","name":"Conductive (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92098:proc:0:567560","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":567560}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":567560}]}],"talentEntryId":4015},{"id":"coa-16-conductivity-61-705647","classId":"stormbringer","dbcSpellId":705647,"name":"Conductivity","unlockLevel":1,"icon":"/assets/ui/spells/inv_leather_raidmonkmythic_r_01_bracer.png","sigil":"CO","description":"ConductivityRank 2InstantIncreases the chance that Nature Damage effects trigger Lightning Rod by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705647:effect:0:aura:107","name":"Conductivity (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705647,"level":1,"description":"ConductivityRank 2InstantIncreases the chance that Nature Damage effects trigger Lightning Rod by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705647:effect:0:aura:107","name":"Conductivity (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}]},{"id":"coa-tree-30878","classId":"stormbringer","dbcSpellId":300595,"name":"Conjuration Mastery","unlockLevel":1,"icon":"/assets/ui/spells/custom_shamanskill_30_border.png","sigil":"CM","description":"Your Conjure Storm now refunds 10 Static.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300595:effect:0:aura:42","name":"Conjuration Mastery (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300595:proc:0:804084","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804084}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804084}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300595,"level":1,"description":"Your Conjure Storm now refunds 10 Static.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300595:effect:0:aura:42","name":"Conjuration Mastery (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300595:proc:0:804084","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804084}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804084}]}],"talentEntryId":30878},{"id":"coa-tree-4013","classId":"stormbringer","dbcSpellId":92096,"name":"Electrocutioner","unlockLevel":1,"icon":"/assets/ui/spells/nhi_frozenlightning_border.png","sigil":"EL","description":"Level 10 Passive Dealing spell damage now has a 5% chance to grant you Electrocutioner.Electrocutioner (Proc)Resets the cooldown of Electrocute and makes your next usable regardless of the target's health percentage. Chance increases based on Static level.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92096:effect:0:aura:42","name":"Electrocutioner (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92096:proc:0:804592","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804592}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804592}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92096,"level":1,"description":"Level 10 Passive Dealing spell damage now has a 5% chance to grant you Electrocutioner.Electrocutioner (Proc)Resets the cooldown of Electrocute and makes your next usable regardless of the target's health percentage. Chance increases based on Static level.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92096:effect:0:aura:42","name":"Electrocutioner (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92096:proc:0:804592","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804592}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804592}]}],"talentEntryId":4013},{"id":"coa-tree-34922","classId":"stormbringer","dbcSpellId":705672,"name":"Exhale","unlockLevel":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0000s_0000_elemental_border.png","sigil":"EX","description":"Depletes 20 Static Release the pressure from nearby allies, dispelling 1 movement slowing effect, repeating every 3 sec for 9 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705672:effect:0:aura:23","name":"Exhale (Aura 23)","disposition":"buff","durationMs":9000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:705672:proc:0:520496","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520496}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":520496},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":705672,"level":1,"description":"Depletes 20 Static Release the pressure from nearby allies, dispelling 1 movement slowing effect, repeating every 3 sec for 9 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705672:effect:0:aura:23","name":"Exhale (Aura 23)","disposition":"buff","durationMs":9000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:705672:proc:0:520496","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520496}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":520496},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34922},{"id":"coa-tree-29139","classId":"stormbringer","dbcSpellId":806307,"name":"Eye of the Storm","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_unrelentingstorm.png","sigil":"EO","description":"Mark an enemy for 4 seconds. Every 1 sec, enemies near them take cond(gt(SPFR, SPN), 11+0+SPFR*0.42, 11+0+SPN*0.42) Nature damage. At the end of the duration, enemies near them also take cond(gt(SPFR, SPN), 42+0+SPFR*0.64, 42+0+SPN*0.64) Nature damage and are rooted for 4 seconds.","target":"hostile","range":{"min":0,"max":35},"castMode":"channel","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806307:effect:0:aura:227","name":"Eye of the Storm (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806307:proc:0:806455","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806455}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":806455},{"kind":"apply-aura","aura":{"id":"coa:806307:effect:1:aura:227","name":"Eye of the Storm (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806307:proc:1:806308","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806308}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":806308}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806307,"level":1,"description":"Mark an enemy for 4 seconds. Every 1 sec, enemies near them take cond(gt(SPFR, SPN), 11+0+SPFR*0.42, 11+0+SPN*0.42) Nature damage. At the end of the duration, enemies near them also take cond(gt(SPFR, SPN), 42+0+SPFR*0.64, 42+0+SPN*0.64) Nature damage and are rooted for 4 seconds.","castMode":"channel","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806307:effect:0:aura:227","name":"Eye of the Storm (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806307:proc:0:806455","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806455}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":806455},{"kind":"apply-aura","aura":{"id":"coa:806307:effect:1:aura:227","name":"Eye of the Storm (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806307:proc:1:806308","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806308}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":806308}]}],"talentEntryId":29139},{"id":"coa-tree-34915","classId":"stormbringer","dbcSpellId":806100,"name":"Fog","unlockLevel":1,"icon":"/assets/ui/spells/5_shamanskill41nobg_border.png","sigil":"FO","description":"Concentrate elemental magic to create an 8 yd wide cloudy barrier at your feet for 8 seconds. Enemies are unable to target into or out of the Fog.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806100:effect:0:aura:336","name":"Fog (Aura 336)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"scope":"party","sourceEffectType":65,"sourceAuraType":336,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":300831},{"kind":"apply-aura","aura":{"id":"coa:300831:effect:0:aura:4","name":"Gale Disturbance (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806100:effect:2:aura:336","name":"Fog (Aura 336)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":336,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806100,"level":1,"description":"Concentrate elemental magic to create an 8 yd wide cloudy barrier at your feet for 8 seconds. Enemies are unable to target into or out of the Fog.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806100:effect:0:aura:336","name":"Fog (Aura 336)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"scope":"party","sourceEffectType":65,"sourceAuraType":336,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":300831},{"kind":"apply-aura","aura":{"id":"coa:300831:effect:0:aura:4","name":"Gale Disturbance (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806100:effect:2:aura:336","name":"Fog (Aura 336)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":336,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34915},{"id":"coa-16-fusion-61-705640","classId":"stormbringer","dbcSpellId":705640,"name":"Fusion","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_abolishmagic.png","sigil":"FU","description":"FusionRank 2Increases the damage of Arm of Thorim by 4% for each stack of Flux on the target.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705640:effect:0:aura:107","name":"Fusion (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705640:effect:1:aura:4","name":"Fusion (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705640,"level":1,"description":"FusionRank 2Increases the damage of Arm of Thorim by 4% for each stack of Flux on the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705640:effect:0:aura:107","name":"Fusion (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705640:effect:1:aura:4","name":"Fusion (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-34638","classId":"stormbringer","dbcSpellId":567542,"name":"Heavy Winds","unlockLevel":1,"icon":"/assets/ui/spells/inv_elemental_mote_air01.png","sigil":"HW","description":"Increases the pushback reduction provided by Stabilizing Pressure by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:567542:effect:0:aura:107","name":"Heavy Winds (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:567542:effect:1:aura:107","name":"Heavy Winds (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":567542,"level":1,"description":"Increases the pushback reduction provided by Stabilizing Pressure by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:567542:effect:0:aura:107","name":"Heavy Winds (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:567542:effect:1:aura:107","name":"Heavy Winds (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":34638},{"id":"coa-tree-34938","classId":"stormbringer","dbcSpellId":705693,"name":"Improved Body of Lightning","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_ancestralawakening.png","sigil":"IB","description":"Reduces the cooldown of your Body of Lightning by -30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705693:effect:0:aura:107","name":"Improved Body of Lightning (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705693:effect:1:aura:4","name":"Improved Body of Lightning (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":21,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705693,"level":1,"description":"Reduces the cooldown of your Body of Lightning by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705693:effect:0:aura:107","name":"Improved Body of Lightning (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705693:effect:1:aura:4","name":"Improved Body of Lightning (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":21,"triggerSpellId":0}]}],"talentEntryId":34938},{"id":"coa-16-improved-flux-61-705641","classId":"stormbringer","dbcSpellId":705641,"name":"Improved Flux","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_arcane04.png","sigil":"IF","description":"Improved FluxRank 1Increases the effectiveness of Flux by 15% and allows it to stack 1 additional times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705641:effect:0:aura:108","name":"Improved Flux (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705641:effect:1:aura:107","name":"Improved Flux (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705641,"level":1,"description":"Improved FluxRank 1Increases the effectiveness of Flux by 15% and allows it to stack 1 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705641:effect:0:aura:108","name":"Improved Flux (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705641:effect:1:aura:107","name":"Improved Flux (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}]},{"rank":2,"spellId":705642,"level":1,"description":"Improved FluxRank 2Increases the effectiveness of Flux by 30% and allows it to stack 2 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705642:effect:0:aura:108","name":"Improved Flux (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705642:effect:1:aura:107","name":"Improved Flux (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}]}]},{"id":"coa-16-improved-lightning-rod-61-705656","classId":"stormbringer","dbcSpellId":705656,"name":"Improved Lightning Rod","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_ghostironrod.png","sigil":"IL","description":"Improved Lightning RodRank 2Allows Lightning Rod to stack 2 additional times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705656:effect:0:aura:107","name":"Improved Lightning Rod (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705656:effect:1:aura:4","name":"Improved Lightning Rod (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705656,"level":1,"description":"Improved Lightning RodRank 2Allows Lightning Rod to stack 2 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705656:effect:0:aura:107","name":"Improved Lightning Rod (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705656:effect:1:aura:4","name":"Improved Lightning Rod (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-16-improved-vortex-63-705648","classId":"stormbringer","dbcSpellId":705648,"name":"Improved Vortex","unlockLevel":1,"icon":"/assets/ui/spells/_monkability_tornado_xuenwhite.png","sigil":"IV","description":"Improved VortexRank 1Reduces the cooldown of Vortex by 15 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705648:effect:0:aura:107","name":"Improved Vortex (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-150}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705648:effect:1:aura:4","name":"Improved Vortex (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705648,"level":1,"description":"Improved VortexRank 1Reduces the cooldown of Vortex by 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705648:effect:0:aura:107","name":"Improved Vortex (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-150}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705648:effect:1:aura:4","name":"Improved Vortex (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":705649,"level":1,"description":"Improved VortexRank 2Reduces the cooldown of Vortex by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705649:effect:0:aura:4","name":"Improved Vortex (Aura 4)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705649:effect:1:aura:4","name":"Improved Vortex (Aura 4)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-29830","classId":"stormbringer","dbcSpellId":705661,"name":"Invigorating Winds","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicstrike_border.png","sigil":"IW","description":"Envelop an ally in invigorating winds, granting them immunity to silence and interrupt effects and causes them to take no pushback from damaging attacks for 20 seconds.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705661:effect:0:aura:87","name":"Invigorating Winds (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705661:effect:1:aura:149","name":"Invigorating Winds (Aura 149)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":705661,"level":1,"description":"Envelop an ally in invigorating winds, granting them immunity to silence and interrupt effects and causes them to take no pushback from damaging attacks for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705661:effect:0:aura:87","name":"Invigorating Winds (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705661:effect:1:aura:149","name":"Invigorating Winds (Aura 149)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29830},{"id":"coa-tree-11926","classId":"stormbringer","dbcSpellId":707652,"name":"Ionic Aura","unlockLevel":1,"icon":"/assets/ui/spells/nhi_lightning_universe_border.png","sigil":"IA","description":"Increases the maximum mana, Rage, Energy, Focus, and Runic Power of allies within 40 yds by 3%.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707652:effect:0:aura:132","name":"Ionic Aura (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.03}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707652:effect:1:aura:132","name":"Ionic Aura (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.03}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":132,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707652:effect:2:aura:4","name":"Ionic Aura (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707652,"level":1,"description":"Increases the maximum mana, Rage, Energy, Focus, and Runic Power of allies within 40 yds by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707652:effect:0:aura:132","name":"Ionic Aura (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.03}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707652:effect:1:aura:132","name":"Ionic Aura (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.03}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":132,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707652:effect:2:aura:4","name":"Ionic Aura (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":11926},{"id":"coa-16-lingering-lightning-63-705651","classId":"stormbringer","dbcSpellId":705651,"name":"Lingering Lightning","unlockLevel":1,"icon":"/assets/ui/spells/shaman_pvp_staticcling.png","sigil":"LL","description":"Lingering LightningRank 1Increases the durations of Thunder Orbs, Conjure Storm and Body of Lightning by 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705651:effect:0:aura:107","name":"Lingering Lightning (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705651:effect:1:aura:107","name":"Lingering Lightning (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705651,"level":1,"description":"Lingering LightningRank 1Increases the durations of Thunder Orbs, Conjure Storm and Body of Lightning by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705651:effect:0:aura:107","name":"Lingering Lightning (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705651:effect:1:aura:107","name":"Lingering Lightning (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}]},{"id":"stormbringer-megawatt-missile","classId":"stormbringer","dbcSpellId":500045,"name":"Megawatt Missile","unlockLevel":1,"icon":"/assets/ui/spells/nhi_lightning_bolt_border.png","sigil":"MM","description":"Megawatt MissileRank 119% of base mana 3 sec cast10 sec cooldownInflicts 38 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":38,"dieSides":9,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":1,"sourceLevel":1,"maxScalingLevel":8}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500045,"level":1,"description":"Megawatt MissileRank 119% of base mana 3 sec cast10 sec cooldownInflicts 38 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":38,"dieSides":9,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":1,"sourceLevel":1,"maxScalingLevel":8}]},{"rank":2,"spellId":501476,"level":9,"description":"Megawatt MissileRank 219% of base mana 3 sec cast10 sec cooldownInflicts 66 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3748368057939742,"basePoints":66,"dieSides":12,"pointsPerLevel":3.0542500019073486,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16}]},{"rank":3,"spellId":501477,"level":17,"description":"Megawatt MissileRank 319% of base mana 3 sec cast10 sec cooldownInflicts 124 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":2.097544233004252,"basePoints":124,"dieSides":17,"pointsPerLevel":4.080249786376953,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24}]},{"rank":4,"spellId":501478,"level":25,"description":"Megawatt MissileRank 419% of base mana 3 sec cast10 sec cooldownInflicts 193 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":2.7638020435969035,"basePoints":193,"dieSides":23,"pointsPerLevel":5.106249809265137,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32}]},{"rank":5,"spellId":501479,"level":33,"description":"Megawatt MissileRank 519% of base mana 3 sec cast10 sec cooldownInflicts 268 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":3.3705850309795804,"basePoints":268,"dieSides":31,"pointsPerLevel":6.13224983215332,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":40}]},{"rank":6,"spellId":501480,"level":41,"description":"Megawatt MissileRank 619% of base mana 3 sec cast10 sec cooldownInflicts 369 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":369,"dieSides":41,"pointsPerLevel":7.158249855041504,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":48}]},{"rank":7,"spellId":501481,"level":49,"description":"Megawatt MissileRank 719% of base mana 3 sec cast10 sec cooldownInflicts 503 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":503,"dieSides":53,"pointsPerLevel":8.184249877929688,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":56}]},{"rank":8,"spellId":501482,"level":57,"description":"Megawatt MissileRank 819% of base mana 3 sec cast10 sec cooldownInflicts 742 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":742,"dieSides":66,"pointsPerLevel":9.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":64}]},{"rank":9,"spellId":501483,"level":65,"description":"Megawatt MissileRank 919% of base mana 3 sec cast10 sec cooldownInflicts 1035 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1035,"dieSides":81,"pointsPerLevel":13.67140007019043,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":72}]},{"rank":10,"spellId":501484,"level":73,"description":"Megawatt MissileRank 1019% of base mana 3 sec cast10 sec cooldownInflicts 1373 Nature Damage to an enemy target, consuming Orb Shock stacks to deal 10% increased damage for each and generates 20 Static. Supercharged: Cast time removed.","castMode":"cast","castTimeMs":3000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1373,"dieSides":98,"pointsPerLevel":18.142900466918945,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80}]}]},{"id":"coa-16-power-of-air-62-705696","classId":"stormbringer","dbcSpellId":705696,"name":"Power of Air","unlockLevel":1,"icon":"/assets/ui/spells/sha_inv_elemental_primal_shadow.png","sigil":"PO","description":"Power of AirRank 1Increases the damage your Air Elemental deals by 20%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"apply-aura","aura":{"id":"coa:705696:effect:1:aura:79","name":"Power of Air (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705696:effect:2:aura:4","name":"Power of Air (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705696,"level":1,"description":"Power of AirRank 1Increases the damage your Air Elemental deals by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"apply-aura","aura":{"id":"coa:705696:effect:1:aura:79","name":"Power of Air (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705696:effect:2:aura:4","name":"Power of Air (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705697,"level":1,"description":"Power of AirRank 2Instant castIncreases the damage your Air Elemental deals by 12%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"apply-aura","aura":{"id":"coa:705697:effect:1:aura:79","name":"Power of Air (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.12}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705697:effect:2:aura:4","name":"Power of Air (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":705698,"level":1,"description":"Power of AirRank 3Instant castIncreases the damage your Air Elemental deals by 18%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"apply-aura","aura":{"id":"coa:705698:effect:1:aura:79","name":"Power of Air (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.18}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705698:effect:2:aura:4","name":"Power of Air (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30406","classId":"stormbringer","dbcSpellId":800699,"name":"Power Surge","unlockLevel":1,"icon":"/assets/ui/spells/nhi_manaballs_border.png","sigil":"PS","description":"Your Storm Ascendance now increases Nature damage dealt by an additional 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800699:effect:0:aura:107","name":"Power Surge (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800699,"level":1,"description":"Your Storm Ascendance now increases Nature damage dealt by an additional 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800699:effect:0:aura:107","name":"Power Surge (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":30406},{"id":"coa-tree-30868","classId":"stormbringer","dbcSpellId":807233,"name":"Predictable Weather","unlockLevel":1,"icon":"/assets/ui/spells/nhi_magicvortex_border.png","sigil":"PW","description":"Every 30 sec, your next Storm Alert or Torrential Wrath is instant cast.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807233:effect:0:aura:23","name":"Predictable Weather (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807233:proc:0:807481","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807481}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807481}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807233,"level":1,"description":"Every 30 sec, your next Storm Alert or Torrential Wrath is instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807233:effect:0:aura:23","name":"Predictable Weather (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807233:proc:0:807481","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807481}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807481}]}],"talentEntryId":30868},{"id":"coa-16-spellstorm-mastery-61-705659","classId":"stormbringer","dbcSpellId":705659,"name":"Spellstorm Mastery","unlockLevel":1,"icon":"/assets/ui/spells/inv_hand_1h_artifactstormfist_d_01dual.png","sigil":"SM","description":"Spellstorm MasteryRank 1Increases the effectiveness of your Aegis spells by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705659:effect:0:aura:108","name":"Spellstorm Mastery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705659:effect:1:aura:4","name":"Spellstorm Mastery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705659:effect:2:aura:163","name":"Spellstorm Mastery (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705659,"level":1,"description":"Spellstorm MasteryRank 1Increases the effectiveness of your Aegis spells by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705659:effect:0:aura:108","name":"Spellstorm Mastery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705659:effect:1:aura:4","name":"Spellstorm Mastery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705659:effect:2:aura:163","name":"Spellstorm Mastery (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0}]},{"rank":2,"spellId":705660,"level":1,"description":"Spellstorm MasteryRank 2Increases the effectiveness of your Aegis spells by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705660:effect:0:aura:108","name":"Spellstorm Mastery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705660:effect:1:aura:4","name":"Spellstorm Mastery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705660:effect:2:aura:163","name":"Spellstorm Mastery (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0}]}]},{"id":"coa-tree-34956","classId":"stormbringer","dbcSpellId":705659,"name":"Spellstorm Mastery","unlockLevel":1,"icon":"/assets/ui/spells/inv_hand_1h_artifactstormfist_d_01dual.png","sigil":"SM","description":"Spellstorm MasteryRank 1Increases the effectiveness of your Aegis spells by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705659:effect:0:aura:108","name":"Spellstorm Mastery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705659:effect:1:aura:4","name":"Spellstorm Mastery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705659:effect:2:aura:163","name":"Spellstorm Mastery (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705659,"level":1,"description":"Spellstorm MasteryRank 1Increases the effectiveness of your Aegis spells by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705659:effect:0:aura:108","name":"Spellstorm Mastery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705659:effect:1:aura:4","name":"Spellstorm Mastery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705659:effect:2:aura:163","name":"Spellstorm Mastery (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0}]},{"rank":2,"spellId":705660,"level":1,"description":"Spellstorm MasteryRank 2Increases the effectiveness of your Aegis spells by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705660:effect:0:aura:108","name":"Spellstorm Mastery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705660:effect:1:aura:4","name":"Spellstorm Mastery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705660:effect:2:aura:163","name":"Spellstorm Mastery (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":34956},{"id":"coa-tree-12317","classId":"stormbringer","dbcSpellId":804040,"name":"Storm Channeling","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_elementaloath.png","sigil":"SC","description":"While Stormcloak is active your Armor is now increased by 500% of your Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804040:effect:0:aura:107","name":"Storm Channeling (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804040,"level":1,"description":"While Stormcloak is active your Armor is now increased by 500% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804040:effect:0:aura:107","name":"Storm Channeling (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":12317},{"id":"coa-tree-29410","classId":"stormbringer","dbcSpellId":705677,"name":"Storm Rider","unlockLevel":1,"icon":"/assets/ui/spells/rogue_burstofspeed.png","sigil":"SR","description":"Reduces the cooldown of Gale Guard and Cloudburst by -5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705677:effect:0:aura:107","name":"Storm Rider (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705677,"level":1,"description":"Reduces the cooldown of Gale Guard and Cloudburst by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705677:effect:0:aura:107","name":"Storm Rider (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":29410},{"id":"coa-tree-34926","classId":"stormbringer","dbcSpellId":705689,"name":"Storm Sorcery","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcaneburst_border.png","sigil":"SS","description":"Increases the effectiveness of Call of the Winds and Call of the Storm by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705689:effect:0:aura:108","name":"Storm Sorcery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705689,"level":1,"description":"Increases the effectiveness of Call of the Winds and Call of the Storm by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705689:effect:0:aura:108","name":"Storm Sorcery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":34926},{"id":"coa-tree-34650","classId":"stormbringer","dbcSpellId":567533,"name":"Storm Warning","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_02.png","sigil":"SW","description":"Reduces the cast time of Storm Alert by -0.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:567533:effect:0:aura:107","name":"Storm Warning (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":567533,"level":1,"description":"Reduces the cast time of Storm Alert by -0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:567533:effect:0:aura:107","name":"Storm Warning (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":34650},{"id":"coa-tree-29341","classId":"stormbringer","dbcSpellId":804833,"name":"Stormcloak","unlockLevel":1,"icon":"/assets/ui/spells/_castercloak_arcanes.png","sigil":"ST","description":"Cover yourself in a barrier of volatile energy for 15 seconds, causing all attacks against you to have a 50% chance to deal half damage and generate 10 Static. Stormcloak has a 60% chance to resist dispel effects.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804833:effect:0:aura:69","name":"Stormcloak (Aura 69)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:804833:absorb:0","amount":2,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804833:effect:1:aura:42","name":"Stormcloak (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804833:proc:1:804084","triggers":["hit"],"chance":0.5,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804084}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804084},{"kind":"apply-aura","aura":{"id":"coa:804833:effect:2:aura:4","name":"Stormcloak (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804833,"level":1,"description":"Cover yourself in a barrier of volatile energy for 15 seconds, causing all attacks against you to have a 50% chance to deal half damage and generate 10 Static. Stormcloak has a 60% chance to resist dispel effects.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804833:effect:0:aura:69","name":"Stormcloak (Aura 69)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:804833:absorb:0","amount":2,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804833:effect:1:aura:42","name":"Stormcloak (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804833:proc:1:804084","triggers":["hit"],"chance":0.5,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804084}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804084},{"kind":"apply-aura","aura":{"id":"coa:804833:effect:2:aura:4","name":"Stormcloak (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29341},{"id":"coa-16-studious-63-705658","classId":"stormbringer","dbcSpellId":705658,"name":"Studious","unlockLevel":1,"icon":"/assets/ui/spells/_ldaknowledge.png","sigil":"ST","description":"StudiousRank 2Increases maximum mana by 6% and Intellect by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705658:effect:0:aura:132","name":"Studious (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705658:effect:1:aura:137","name":"Studious (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705658,"level":1,"description":"StudiousRank 2Increases maximum mana by 6% and Intellect by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705658:effect:0:aura:132","name":"Studious (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705658:effect:1:aura:137","name":"Studious (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-tree-6556","classId":"stormbringer","dbcSpellId":705657,"name":"Studious","unlockLevel":1,"icon":"/assets/ui/spells/_ldaknowledge.png","sigil":"ST","description":"Reduces the cast time of Shock by -15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705657:effect:0:aura:108","name":"Studious (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705657,"level":1,"description":"Reduces the cast time of Shock by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705657:effect:0:aura:108","name":"Studious (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":6556},{"id":"coa-tree-34920","classId":"stormbringer","dbcSpellId":300596,"name":"Surge Overload","unlockLevel":1,"icon":"/assets/ui/spells/nhi_lightning_punch_border.png","sigil":"SO","description":"Your Body of Lightning now regenerates 1% additional maximum mana per tick.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300596:effect:0:aura:107","name":"Surge Overload (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300596,"level":1,"description":"Your Body of Lightning now regenerates 1% additional maximum mana per tick.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300596:effect:0:aura:107","name":"Surge Overload (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":34920},{"id":"coa-tree-34917","classId":"stormbringer","dbcSpellId":301219,"name":"Thunder Grip","unlockLevel":1,"icon":"/assets/ui/spells/ability_thunderking_balllightning.png","sigil":"TG","description":"Direct damage dealt now has a 30% chance to apply Thunder Grip to enemies.Thunder GripPrevents enemies from mounting, fleeing, and increasing their movement speed above normal movement speed for 8 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301219:effect:0:aura:42","name":"Thunder Grip (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:301219:proc:0:301220","triggers":["hit"],"chance":0.3,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301220}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":301220}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301219,"level":1,"description":"Direct damage dealt now has a 30% chance to apply Thunder Grip to enemies.Thunder GripPrevents enemies from mounting, fleeing, and increasing their movement speed above normal movement speed for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301219:effect:0:aura:42","name":"Thunder Grip (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:301219:proc:0:301220","triggers":["hit"],"chance":0.3,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301220}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":301220}]}],"talentEntryId":34917},{"id":"coa-tree-30906","classId":"stormbringer","dbcSpellId":804591,"name":"Thunder King","unlockLevel":1,"icon":"/assets/ui/spells/nhi_hammerofthunder_border.png","sigil":"TK","description":"For 20 seconds, your Call Lightning strikes 3 additional nearby enemies, your movement speed is increased by 25%, and you generate 5 Static every 1 sec. While active, damaging critical strikes deal bonus Spellstorm Damage scaling with your spell power, and grant Raging Storm.Raging StormIncreases spell haste by 3%, stacking 10 times.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804591:effect:0:aura:42","name":"Thunder King (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804591:proc:0:800020","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800020}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800020},{"kind":"apply-aura","aura":{"id":"coa:804591:effect:1:aura:23","name":"Thunder King (Aura 23)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804591:proc:1:804044","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804044}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804044},{"kind":"apply-aura","aura":{"id":"coa:804591:effect:2:aura:107","name":"Thunder King (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804591,"level":1,"description":"For 20 seconds, your Call Lightning strikes 3 additional nearby enemies, your movement speed is increased by 25%, and you generate 5 Static every 1 sec. While active, damaging critical strikes deal bonus Spellstorm Damage scaling with your spell power, and grant Raging Storm.Raging StormIncreases spell haste by 3%, stacking 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804591:effect:0:aura:42","name":"Thunder King (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804591:proc:0:800020","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800020}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800020},{"kind":"apply-aura","aura":{"id":"coa:804591:effect:1:aura:23","name":"Thunder King (Aura 23)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804591:proc:1:804044","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804044}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804044},{"kind":"apply-aura","aura":{"id":"coa:804591:effect:2:aura:107","name":"Thunder King (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}]}],"talentEntryId":30906},{"id":"coa-16-unbound-elementalist-62-705703","classId":"stormbringer","dbcSpellId":705703,"name":"Unbound Elementalist","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_murmur.png","sigil":"UE","description":"Unbound ElementalistRank 2Instant castIncreases the effectiveness of your Unshackle by 50%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705703:effect:0:aura:108","name":"Unbound Elementalist (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705703:effect:1:aura:108","name":"Unbound Elementalist (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705703:effect:2:aura:4","name":"Unbound Elementalist (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705703,"level":1,"description":"Unbound ElementalistRank 2Instant castIncreases the effectiveness of your Unshackle by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705703:effect:0:aura:108","name":"Unbound Elementalist (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705703:effect:1:aura:108","name":"Unbound Elementalist (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705703:effect:2:aura:4","name":"Unbound Elementalist (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-34690","classId":"stormbringer","dbcSpellId":806412,"name":"Waterfall","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_2h_artifactaegwynsstaff_d_03.png","sigil":"WA","description":"Dealing critical damage now reduces all of your cooldowns by -0.5 sec.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806412:effect:0:aura:42","name":"Waterfall (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:806412:proc:0:807661","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807661}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807661}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806412,"level":1,"description":"Dealing critical damage now reduces all of your cooldowns by -0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806412:effect:0:aura:42","name":"Waterfall (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:806412:proc:0:807661","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807661}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807661}]}],"talentEntryId":34690},{"id":"coa-tree-34924","classId":"stormbringer","dbcSpellId":503596,"name":"Wind Shift","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_windfury.png","sigil":"WS","description":"Increases your spell haste by 2% and reduces spell pushback suffered from damaging attacks by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503596:effect:0:aura:149","name":"Wind Shift (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503596:effect:1:aura:216","name":"Wind Shift (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503596,"level":1,"description":"Increases your spell haste by 2% and reduces spell pushback suffered from damaging attacks by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503596:effect:0:aura:149","name":"Wind Shift (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503596:effect:1:aura:216","name":"Wind Shift (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":504879,"level":1,"description":"Increases your spell haste by 4% and reduces spell pushback suffered from damaging attacks by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504879:effect:0:aura:149","name":"Wind Shift (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504879:effect:1:aura:216","name":"Wind Shift (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34924},{"id":"stormbringer-electrocute","classId":"stormbringer","dbcSpellId":801844,"name":"Electrocute","unlockLevel":4,"icon":"/assets/ui/spells/inv_misc_stormlordsfavor.png","sigil":"EL","description":"ElectrocuteRank 125% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 25+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":0.687079295777438,"basePoints":25,"dieSides":4,"pointsPerLevel":3.165879964828491,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":8},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801844,"level":4,"description":"ElectrocuteRank 125% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 25+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":0.687079295777438,"basePoints":25,"dieSides":4,"pointsPerLevel":3.165879964828491,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":8},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501421,"level":10,"description":"ElectrocuteRank 225% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 67+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0433783976236979,"basePoints":67,"dieSides":9,"pointsPerLevel":0.7253379821777344,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501422,"level":18,"description":"ElectrocuteRank 325% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 113+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4620420186206549,"basePoints":113,"dieSides":13,"pointsPerLevel":1.4301199913024902,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501423,"level":26,"description":"ElectrocuteRank 425% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 189+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":2.1078144941872696,"basePoints":189,"dieSides":18,"pointsPerLevel":2.375430107116699,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501424,"level":34,"description":"ElectrocuteRank 525% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 272+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":2.7415332210307217,"basePoints":272,"dieSides":23,"pointsPerLevel":3.5295701026916504,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501425,"level":42,"description":"ElectrocuteRank 625% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 360+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":3.4205137386656643,"basePoints":360,"dieSides":28,"pointsPerLevel":5.033520221710205,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501426,"level":50,"description":"ElectrocuteRank 725% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 451+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":451,"dieSides":34,"pointsPerLevel":10.035499572753906,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501427,"level":56,"description":"ElectrocuteRank 825% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 545+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":545,"dieSides":39,"pointsPerLevel":24.45199966430664,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501428,"level":60,"description":"ElectrocuteRank 925% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 612+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":3.823020443386502,"basePoints":612,"dieSides":45,"pointsPerLevel":3.769659996032715,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":501429,"level":68,"description":"ElectrocuteRank 1025% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 754+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":754,"dieSides":50,"pointsPerLevel":7.7233099937438965,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":72},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":11,"spellId":501430,"level":74,"description":"ElectrocuteRank 1125% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 873+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":873,"dieSides":62,"pointsPerLevel":19.6117000579834,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":76},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":12,"spellId":501431,"level":78,"description":"ElectrocuteRank 1225% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 1001+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":3.7025089605734767,"basePoints":1001,"dieSides":65,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":78},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":13,"spellId":501432,"level":80,"description":"ElectrocuteRank 1325% of base mana Instant cast6 sec cooldownGenerates 20 Static Electrocute an enemy for 1049+0+NatP*0.45 Nature damage. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":3.9333268801371255,"basePoints":1049,"dieSides":68,"pointsPerLevel":0.48122701048851013,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":804084},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"stormbringer-stormforged-strike","classId":"stormbringer","dbcSpellId":500193,"name":"Stormforged Strike","unlockLevel":4,"icon":"/assets/ui/spells/trade_archaeology_staffofsorcerer_than_thaurissan.png","sigil":"SS","description":"Causes Weapon Damage plus $s1 Nature Damage to an enemy, consuming Orb Shock stacks to deal $801868s3% increased damage for each. If Thunder Step is active, this also stuns the target for $806599d. Generates 20 Static.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4062222222487132,"basePoints":15,"dieSides":7,"pointsPerLevel":0.2800000011920929,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":500193,"level":4,"description":"Causes Weapon Damage plus $s1 Nature Damage to an enemy, consuming Orb Shock stacks to deal $801868s3% increased damage for each. If Thunder Step is active, this also stuns the target for $806599d. Generates 20 Static.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4062222222487132,"basePoints":15,"dieSides":7,"pointsPerLevel":0.2800000011920929,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121404,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1}]}]},{"id":"coa-16-conjure-storm-61-800227","classId":"stormbringer","dbcSpellId":800227,"name":"Conjure Storm","unlockLevel":8,"icon":"/assets/ui/spells/warrior_talent_icon_thunderstruck.png","sigil":"CS","description":"Conjure StormRank 1Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 15+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(10+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.34299999475479126,"basePoints":15,"dieSides":8,"pointsPerLevel":0.2005710005760193,"bonusPowerCoefficient":0.34299999475479126,"sourceLevel":8,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:800227:effect:1:aura:3","name":"Conjure Storm (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":804655},{"kind":"dot","coefficient":0.12200000137090683,"basePoints":10,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0.12200000137090683,"sourceLevel":8,"maxScalingLevel":16,"ticks":6,"intervalMs":2000,"tag":"spell-800227"},{"kind":"apply-aura","aura":{"id":"coa:800227:effect:2:aura:271","name":"Conjure Storm (Aura 271)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800227,"level":8,"description":"Conjure StormRank 1Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 15+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(10+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.34299999475479126,"basePoints":15,"dieSides":8,"pointsPerLevel":0.2005710005760193,"bonusPowerCoefficient":0.34299999475479126,"sourceLevel":8,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:800227:effect:1:aura:3","name":"Conjure Storm (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":804655},{"kind":"dot","coefficient":0.12200000137090683,"basePoints":10,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0.12200000137090683,"sourceLevel":8,"maxScalingLevel":16,"ticks":6,"intervalMs":2000,"tag":"spell-800227"},{"kind":"apply-aura","aura":{"id":"coa:800227:effect:2:aura:271","name":"Conjure Storm (Aura 271)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}]},{"rank":2,"spellId":501415,"level":18,"description":"Conjure StormRank 2Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 55+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(17+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7547642462181322,"basePoints":55,"dieSides":11,"pointsPerLevel":0.817870020866394,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"apply-aura","aura":{"id":"coa:501415:effect:1:aura:3","name":"Conjure Storm (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":804655},{"kind":"dot","coefficient":0.18181818181818182,"basePoints":17,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24,"ticks":6,"intervalMs":2000,"tag":"spell-501415"},{"kind":"apply-aura","aura":{"id":"coa:501415:effect:2:aura:271","name":"Conjure Storm (Aura 271)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}]},{"rank":3,"spellId":501416,"level":26,"description":"Conjure StormRank 3Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 95+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(31+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.118901795488063,"basePoints":95,"dieSides":14,"pointsPerLevel":1.3894200325012207,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:501416:effect:1:aura:3","name":"Conjure Storm (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":804655},{"kind":"dot","coefficient":0.26422764227642276,"basePoints":31,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32,"ticks":6,"intervalMs":2000,"tag":"spell-501416"},{"kind":"apply-aura","aura":{"id":"coa:501416:effect:2:aura:271","name":"Conjure Storm (Aura 271)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}]},{"rank":4,"spellId":501417,"level":34,"description":"Conjure StormRank 4Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 152+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(46+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.6014323915754045,"basePoints":152,"dieSides":20,"pointsPerLevel":2.173840045928955,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:501417:effect:1:aura:3","name":"Conjure Storm (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":804655},{"kind":"dot","coefficient":0.32653061224489793,"basePoints":46,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":6,"intervalMs":2000,"tag":"spell-501417"},{"kind":"apply-aura","aura":{"id":"coa:501417:effect:2:aura:271","name":"Conjure Storm (Aura 271)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}]},{"rank":5,"spellId":501418,"level":42,"description":"Conjure StormRank 5Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 219+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(63+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.1229659632632605,"basePoints":219,"dieSides":28,"pointsPerLevel":3.107789993286133,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"apply-aura","aura":{"id":"coa:501418:effect:1:aura:3","name":"Conjure Storm (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":804655},{"kind":"dot","coefficient":0.3830409356725146,"basePoints":63,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48,"ticks":6,"intervalMs":2000,"tag":"spell-501418"},{"kind":"apply-aura","aura":{"id":"coa:501418:effect:2:aura:271","name":"Conjure Storm (Aura 271)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}]},{"rank":6,"spellId":501419,"level":50,"description":"Conjure StormRank 6Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 294+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(83+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.6778538386027018,"basePoints":294,"dieSides":37,"pointsPerLevel":4.203629970550537,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:501419:effect:1:aura:3","name":"Conjure Storm (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.441025641025641,"basePoints":83,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56,"ticks":6,"intervalMs":2000,"tag":"spell-501419"},{"kind":"apply-aura","aura":{"id":"coa:501419:effect:2:aura:271","name":"Conjure Storm (Aura 271)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}]},{"rank":7,"spellId":501420,"level":58,"description":"Conjure StormRank 7Instant castDepletes 50 Static Conjure a storm over a target area, instantly dealing 387+0+NatP*.2 initial Nature damage to enemies. Deals an additional (12*1000/2)*(104+0+NatP*.15) Nature damage to the enemies in the area over 12 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.7004129418499394,"basePoints":387,"dieSides":49,"pointsPerLevel":3.110179901123047,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66},{"kind":"apply-aura","aura":{"id":"coa:501420:effect:1:aura:3","name":"Conjure Storm (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":804655},{"kind":"dot","coefficient":0.4885844748858447,"basePoints":104,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66,"ticks":6,"intervalMs":2000,"tag":"spell-501420"},{"kind":"apply-aura","aura":{"id":"coa:501420:effect:2:aura:271","name":"Conjure Storm (Aura 271)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}]}]},{"id":"coa-16-storm-alert-62-707044","classId":"stormbringer","dbcSpellId":707044,"name":"Storm Alert","unlockLevel":8,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SA","description":"Storm AlertRank 123% of base mana 2 sec castDisturb an enemy with a vision of the coming storm, fearing them for 10 sec. Can only affect 1 enemy at a time. Damage caused may interrupt the effect.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707044:effect:0:aura:7","name":"Storm Alert (Aura 7)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":707044,"level":8,"description":"Storm AlertRank 123% of base mana 2 sec castDisturb an enemy with a vision of the coming storm, fearing them for 10 sec. Can only affect 1 enemy at a time. Damage caused may interrupt the effect.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707044:effect:0:aura:7","name":"Storm Alert (Aura 7)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-16-torrential-wrath-63-804017","classId":"stormbringer","dbcSpellId":804017,"name":"Torrential Wrath","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TW","description":"Torrential WrathRank 12.5 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 111+0+FroP*1, 111+0+NatP*1.5) Frost damage, scaling with your haste rating.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.811999994913737,"basePoints":111,"dieSides":10,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":15},{"kind":"apply-aura","aura":{"id":"coa:804017:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804017,"level":10,"description":"Torrential WrathRank 12.5 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 111+0+FroP*1, 111+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.811999994913737,"basePoints":111,"dieSides":10,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":15},{"kind":"apply-aura","aura":{"id":"coa:804017:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":2,"spellId":503352,"level":16,"description":"Torrential WrathRank 22.5 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 192+0+FroP*1, 192+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.7376343921948503,"basePoints":192,"dieSides":15,"pointsPerLevel":3.4749999046325684,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:503352:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":3,"spellId":503353,"level":22,"description":"Torrential WrathRank 33 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 301+0+FroP*1, 301+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.735001263317761,"basePoints":301,"dieSides":30,"pointsPerLevel":4.503870010375977,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:503353:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":4,"spellId":503354,"level":28,"description":"Torrential WrathRank 43 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 419+0+FroP*1, 419+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":419,"dieSides":43,"pointsPerLevel":7.574999809265137,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:503354:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":5,"spellId":503355,"level":34,"description":"Torrential WrathRank 53 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 531+0+FroP*1, 531+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":531,"dieSides":57,"pointsPerLevel":9.139049530029297,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"apply-aura","aura":{"id":"coa:503355:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":6,"spellId":503356,"level":40,"description":"Torrential WrathRank 63 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 646+0+FroP*1, 646+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":646,"dieSides":72,"pointsPerLevel":11.810700416564941,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"apply-aura","aura":{"id":"coa:503356:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":7,"spellId":503357,"level":46,"description":"Torrential WrathRank 73 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 767+0+FroP*1, 767+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":767,"dieSides":88,"pointsPerLevel":14.957099914550781,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:503357:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":8,"spellId":503358,"level":52,"description":"Torrential WrathRank 83 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 900+0+FroP*1, 900+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":900,"dieSides":104,"pointsPerLevel":18.065799713134766,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:503358:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":9,"spellId":503359,"level":58,"description":"Torrential WrathRank 93 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 990+0+FroP*1, 990+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":990,"dieSides":120,"pointsPerLevel":21.892099380493164,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62},{"kind":"apply-aura","aura":{"id":"coa:503359:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]},{"rank":10,"spellId":503360,"level":64,"description":"Torrential WrathRank 103 sec castDepletes 50 Static Blast an enemy, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, NatP), 1119+0+FroP*1, 1119+0+NatP*1.5) Frost damage, scaling with your haste rating.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1119,"dieSides":131,"pointsPerLevel":13.37969970703125,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"apply-aura","aura":{"id":"coa:503360:effect:1:aura:33","name":"Torrential Wrath (Aura 33)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":3,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":1000,"magnitude":0.5}]}]},{"id":"coa-16-arm-of-thorim-61-801847","classId":"stormbringer","dbcSpellId":801847,"name":"Arm of Thorim","unlockLevel":11,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0002s_0000_lightning_border.png","sigil":"AO","description":"Arm of ThorimRank 11 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 135+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5709999799728394,"basePoints":135,"dieSides":13,"pointsPerLevel":1.9333300590515137,"bonusPowerCoefficient":0.5709999799728394,"sourceLevel":11,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801847,"level":11,"description":"Arm of ThorimRank 11 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 135+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5709999799728394,"basePoints":135,"dieSides":13,"pointsPerLevel":1.9333300590515137,"bonusPowerCoefficient":0.5709999799728394,"sourceLevel":11,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501433,"level":16,"description":"Arm of ThorimRank 21 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 161+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.1483870885705434,"basePoints":161,"dieSides":17,"pointsPerLevel":1.9249999523162842,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501434,"level":22,"description":"Arm of ThorimRank 31 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 255+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.995731903626038,"basePoints":255,"dieSides":23,"pointsPerLevel":3.0239200592041016,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501435,"level":28,"description":"Arm of ThorimRank 41 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 359+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.7472347510877504,"basePoints":359,"dieSides":30,"pointsPerLevel":3.924760103225708,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501436,"level":34,"description":"Arm of ThorimRank 51 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 463+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":463,"dieSides":42,"pointsPerLevel":4.483429908752441,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501437,"level":40,"description":"Arm of ThorimRank 61 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 579+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":579,"dieSides":57,"pointsPerLevel":6.245880126953125,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":567518,"level":46,"description":"Arm of ThorimRank 71 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 725+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":725,"dieSides":59,"pointsPerLevel":8.323200225830078,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":567519,"level":52,"description":"Arm of ThorimRank 81 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 876+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":876,"dieSides":70,"pointsPerLevel":10.43690013885498,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":567520,"level":58,"description":"Arm of ThorimRank 91 sec cast20 sec cooldownDepletes All Static Call down a terrible beam of lightning upon an enemy, dealing 1033+0+NatP*1.2 Nature damage and stunning them for 1 sec. Damage and cast time increased based on Static level.","castMode":"cast","castTimeMs":1000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1033,"dieSides":99,"pointsPerLevel":9.23820972442627,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"trigger-spell","spellId":570339},{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-16-updraft-62-802354","classId":"stormbringer","dbcSpellId":802354,"name":"Updraft","unlockLevel":11,"icon":"/assets/ui/spells/spell_frost_windwalkon.png","sigil":"UP","description":"UpdraftRank 1Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/2)*(16+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802354:effect:0:aura:3","name":"Updraft (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":16,"dieSides":1,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":11,"maxScalingLevel":16,"ticks":10,"intervalMs":2000,"tag":"spell-802354"},{"kind":"trigger-spell","spellId":704202},{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802354,"level":11,"description":"UpdraftRank 1Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/2)*(16+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802354:effect:0:aura:3","name":"Updraft (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":16,"dieSides":1,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":11,"maxScalingLevel":16,"ticks":10,"intervalMs":2000,"tag":"spell-802354"},{"kind":"trigger-spell","spellId":704202},{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":570161,"level":18,"description":"UpdraftRank 2Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(24+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570161:effect:0:aura:3","name":"Updraft (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":24,"dieSides":1,"pointsPerLevel":0.11302299797534943,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":18,"maxScalingLevel":24,"ticks":7,"intervalMs":3000,"tag":"spell-570161"},{"kind":"trigger-spell","spellId":704202},{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":704218},{"kind":"apply-aura","aura":{"id":"coa:704218:effect:0:aura:4","name":"Updraft (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":570162,"level":26,"description":"UpdraftRank 3Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(36+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570162:effect:0:aura:3","name":"Updraft (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":36,"dieSides":1,"pointsPerLevel":0.12219999730587006,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":26,"maxScalingLevel":32,"ticks":7,"intervalMs":3000,"tag":"spell-570162"},{"kind":"trigger-spell","spellId":704202},{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":704218},{"kind":"apply-aura","aura":{"id":"coa:704218:effect:0:aura:4","name":"Updraft (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":570163,"level":34,"description":"UpdraftRank 4Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(55+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570163:effect:0:aura:3","name":"Updraft (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":55,"dieSides":1,"pointsPerLevel":0.18199999630451202,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":34,"maxScalingLevel":40,"ticks":7,"intervalMs":3000,"tag":"spell-570163"},{"kind":"trigger-spell","spellId":704202},{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":704218},{"kind":"apply-aura","aura":{"id":"coa:704218:effect:0:aura:4","name":"Updraft (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":570164,"level":42,"description":"UpdraftRank 5Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(75+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570164:effect:0:aura:3","name":"Updraft (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":75,"dieSides":1,"pointsPerLevel":0.27923598885536194,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":42,"maxScalingLevel":48,"ticks":7,"intervalMs":3000,"tag":"spell-570164"},{"kind":"trigger-spell","spellId":704202},{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":704218},{"kind":"apply-aura","aura":{"id":"coa:704218:effect:0:aura:4","name":"Updraft (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":570165,"level":50,"description":"UpdraftRank 6Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(95+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570165:effect:0:aura:3","name":"Updraft (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":95,"dieSides":1,"pointsPerLevel":0.3481059968471527,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":50,"maxScalingLevel":56,"ticks":7,"intervalMs":3000,"tag":"spell-570165"},{"kind":"trigger-spell","spellId":704202},{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":704218},{"kind":"apply-aura","aura":{"id":"coa:704218:effect:0:aura:4","name":"Updraft (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":570166,"level":58,"description":"UpdraftRank 7Instant castDepletes 20 Static 2 Charges, 10 sec recharge Create an 8 yd Updraft at the target location for 20 sec. Deals (20*1000/3)*(115+0+NatP*0.0683) Nature damage over the duration to enemies within the radius. Increases movement speed by 25% for allies within the radius.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570166:effect:0:aura:3","name":"Updraft (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":115,"dieSides":1,"pointsPerLevel":0.348922997713089,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":58,"maxScalingLevel":80,"ticks":7,"intervalMs":3000,"tag":"spell-570166"},{"kind":"trigger-spell","spellId":704202},{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":704218},{"kind":"apply-aura","aura":{"id":"coa:704218:effect:0:aura:4","name":"Updraft (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"stormbringer-aeroblast","classId":"stormbringer","dbcSpellId":801839,"name":"Aeroblast","unlockLevel":13,"icon":"/assets/ui/spells/ability_skyreach_flash_bang.png","sigil":"AE","description":"AeroblastRank 12 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 109+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":109,"dieSides":9,"pointsPerLevel":2.0347800254821777,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":13,"maxScalingLevel":18}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801839,"level":13,"description":"AeroblastRank 12 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 109+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":109,"dieSides":9,"pointsPerLevel":2.0347800254821777,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":13,"maxScalingLevel":18}]},{"rank":2,"spellId":501450,"level":20,"description":"AeroblastRank 22.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 163+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.957142857142857,"basePoints":163,"dieSides":11,"pointsPerLevel":1.875,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"apply-aura","aura":{"id":"coa:501450:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501450:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501451,"level":30,"description":"AeroblastRank 32.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 363+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.970564439561632,"basePoints":363,"dieSides":16,"pointsPerLevel":5.517539978027344,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"apply-aura","aura":{"id":"coa:501451:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501451:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501452,"level":38,"description":"AeroblastRank 42.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 512+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":512,"dieSides":20,"pointsPerLevel":7.79617977142334,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"apply-aura","aura":{"id":"coa:501452:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501452:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501453,"level":46,"description":"AeroblastRank 52.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 683+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":683,"dieSides":26,"pointsPerLevel":10.398099899291992,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"apply-aura","aura":{"id":"coa:501453:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501453:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501454,"level":54,"description":"AeroblastRank 62.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 878+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":878,"dieSides":31,"pointsPerLevel":40.206298828125,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:501454:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501454:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501455,"level":58,"description":"AeroblastRank 72.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 978+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":978,"dieSides":38,"pointsPerLevel":6.214360237121582,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"apply-aura","aura":{"id":"coa:501455:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501455:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501456,"level":66,"description":"AeroblastRank 82.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 1227+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1227,"dieSides":40,"pointsPerLevel":8.528429985046387,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72},{"kind":"apply-aura","aura":{"id":"coa:501456:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501456:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501457,"level":74,"description":"AeroblastRank 92.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 1459+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1459,"dieSides":44,"pointsPerLevel":16.64109992980957,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":78},{"kind":"apply-aura","aura":{"id":"coa:501457:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501457:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":501458,"level":80,"description":"AeroblastRank 102.5 sec castDepletes 50 Static Crush an enemy with the weight of the winds, dealing 1627+0+NatP*0.635 Nature damage to them and then an additional time for 40% of the damage dealt after 1 sec.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1627,"dieSides":48,"pointsPerLevel":0.6889579892158508,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:501458:effect:1:aura:23","name":"Aeroblast (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":23,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501458:effect:2:aura:283","name":"Aeroblast (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-16-forked-lightning-61-801851","classId":"stormbringer","dbcSpellId":801851,"name":"Forked Lightning","unlockLevel":15,"icon":"/assets/ui/spells/spell_nature_lightningoverload.png","sigil":"FL","description":"Forked LightningRank 137% of base mana 2 sec castShoot lightning at an enemy, dealing 69+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0320211079385546,"basePoints":69,"dieSides":6,"pointsPerLevel":1.4254599809646606,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801851,"level":15,"description":"Forked LightningRank 137% of base mana 2 sec castShoot lightning at an enemy, dealing 69+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0320211079385546,"basePoints":69,"dieSides":6,"pointsPerLevel":1.4254599809646606,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20}]},{"rank":2,"spellId":501438,"level":22,"description":"Forked LightningRank 237% of base mana 2 sec castShoot lightning at an enemy, dealing 128+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5825084759308412,"basePoints":128,"dieSides":11,"pointsPerLevel":1.939020037651062,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28}]},{"rank":3,"spellId":501439,"level":30,"description":"Forked LightningRank 337% of base mana 2 sec castShoot lightning at an enemy, dealing 193+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"damage","coefficient":2.1377555423312717,"basePoints":193,"dieSides":17,"pointsPerLevel":2.9198999404907227,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36}]},{"rank":4,"spellId":501440,"level":38,"description":"Forked LightningRank 437% of base mana 2 sec castShoot lightning at an enemy, dealing 280+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"damage","coefficient":2.84325860581308,"basePoints":280,"dieSides":24,"pointsPerLevel":4.2257399559021,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44}]},{"rank":5,"spellId":501441,"level":46,"description":"Forked LightningRank 537% of base mana 2 sec castShoot lightning at an enemy, dealing 385+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"damage","coefficient":3.6449023804377987,"basePoints":385,"dieSides":30,"pointsPerLevel":5.815589904785156,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52}]},{"rank":6,"spellId":582303,"level":54,"description":"Forked LightningRank 637% of base mana 2 sec castShoot lightning at an enemy, dealing 507+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":507,"dieSides":38,"pointsPerLevel":22.909099578857422,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56}]},{"rank":7,"spellId":582304,"level":58,"description":"Forked LightningRank 737% of base mana 2 sec castShoot lightning at an enemy, dealing 572+SP*0.49 Nature damage, bouncing to up to 4 enemies. Generates 5 Static for each enemy struck.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":37,"percentage":true},"effects":[{"kind":"damage","coefficient":2.9852709552468775,"basePoints":572,"dieSides":48,"pointsPerLevel":1.004729986190796,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":80}]}]},{"id":"coa-16-volt-61-500928","classId":"stormbringer","dbcSpellId":500928,"name":"Volt","unlockLevel":15,"icon":"/assets/ui/spells/shaman_pvp_staticcling.png","sigil":"VO","description":"VoltRank 115% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(25+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500928:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.33291666905085243,"basePoints":25,"dieSides":2,"pointsPerLevel":0.29750001430511475,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":6,"intervalMs":3000,"tag":"spell-500928"},{"kind":"apply-aura","aura":{"id":"coa:500928:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500928:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500928,"level":15,"description":"VoltRank 115% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(25+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500928:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.33291666905085243,"basePoints":25,"dieSides":2,"pointsPerLevel":0.29750001430511475,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":6,"intervalMs":3000,"tag":"spell-500928"},{"kind":"apply-aura","aura":{"id":"coa:500928:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500928:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":8,"triggerSpellId":0}]},{"rank":2,"spellId":501403,"level":22,"description":"VoltRank 215% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(39+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501403:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":0.4851801749822256,"basePoints":39,"dieSides":2,"pointsPerLevel":0.6524999737739563,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":6,"intervalMs":3000,"tag":"spell-501403"},{"kind":"apply-aura","aura":{"id":"coa:501403:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501403:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501404,"level":28,"description":"VoltRank 315% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(53+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501404:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":0.603526422219683,"basePoints":53,"dieSides":3,"pointsPerLevel":0.8519610166549683,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":6,"intervalMs":3000,"tag":"spell-501404"},{"kind":"apply-aura","aura":{"id":"coa:501404:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501404:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501405,"level":34,"description":"VoltRank 415% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(68+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501405:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":0.7363945578231292,"basePoints":68,"dieSides":5,"pointsPerLevel":1.125,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":6,"intervalMs":3000,"tag":"spell-501405"},{"kind":"apply-aura","aura":{"id":"coa:501405:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501405:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501406,"level":40,"description":"VoltRank 515% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(85+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501406:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":0.8806060733217181,"basePoints":85,"dieSides":6,"pointsPerLevel":1.4450000524520874,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":6,"intervalMs":3000,"tag":"spell-501406"},{"kind":"apply-aura","aura":{"id":"coa:501406:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501406:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501407,"level":46,"description":"VoltRank 615% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(100+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501407:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":1.0190985763007825,"basePoints":100,"dieSides":8,"pointsPerLevel":1.8042399883270264,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":6,"intervalMs":3000,"tag":"spell-501407"},{"kind":"apply-aura","aura":{"id":"coa:501407:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501407:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501408,"level":52,"description":"VoltRank 715% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(122+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501408:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":1.1946204882949145,"basePoints":122,"dieSides":11,"pointsPerLevel":2.1753599643707275,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":6,"intervalMs":3000,"tag":"spell-501408"},{"kind":"apply-aura","aura":{"id":"coa:501408:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501408:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501409,"level":58,"description":"VoltRank 815% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(145+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501409:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":1.4154777940549808,"basePoints":145,"dieSides":14,"pointsPerLevel":2.7325799465179443,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62,"ticks":6,"intervalMs":3000,"tag":"spell-501409"},{"kind":"apply-aura","aura":{"id":"coa:501409:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501409:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501410,"level":64,"description":"VoltRank 915% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(162+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501410:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":1.5766116757936115,"basePoints":162,"dieSides":17,"pointsPerLevel":3.1821401119232178,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":68,"ticks":6,"intervalMs":3000,"tag":"spell-501410"},{"kind":"apply-aura","aura":{"id":"coa:501410:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501410:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":501411,"level":70,"description":"VoltRank 1015% of base mana Instant castFuse lightning into an enemy, dealing (18*1000/3)*(190+0+NatP*.19) Nature damage over 18 sec and slowing them by 40%. Generates 2 Static per tick. Periodic damage dealt by this effect scales with your spell haste.","castMode":"channel","castTimeMs":18000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501411:effect:0:aura:3","name":"Volt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801035},{"kind":"dot","coefficient":1.0161290547427009,"basePoints":190,"dieSides":20,"pointsPerLevel":0.8516129851341248,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80,"ticks":6,"intervalMs":3000,"tag":"spell-501411"},{"kind":"apply-aura","aura":{"id":"coa:501411:effect:1:aura:308","name":"Volt (Aura 308)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":500936},{"kind":"apply-aura","aura":{"id":"coa:501411:effect:2:aura:271","name":"Volt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-16-gale-62-804036","classId":"stormbringer","dbcSpellId":804036,"name":"Gale","unlockLevel":17,"icon":"/assets/ui/spells/inv_tradeskillitem_sorcererswind_tong.png","sigil":"GA","description":"GaleRank 129% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 53+0+NatP*0.42 Nature damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7022619694471359,"basePoints":53,"dieSides":7,"pointsPerLevel":0.6715970039367676,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804036,"level":17,"description":"GaleRank 129% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 53+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7022619694471359,"basePoints":53,"dieSides":7,"pointsPerLevel":0.6715970039367676,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24}]},{"rank":2,"spellId":570138,"level":26,"description":"GaleRank 229% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 99+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0841200060960723,"basePoints":99,"dieSides":13,"pointsPerLevel":1.0902600288391113,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34}]},{"rank":3,"spellId":570139,"level":36,"description":"GaleRank 329% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 173+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29,"percentage":true},"effects":[{"kind":"damage","coefficient":1.6357236687653984,"basePoints":173,"dieSides":19,"pointsPerLevel":1.8962700366973877,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":44}]},{"rank":4,"spellId":570140,"level":46,"description":"GaleRank 429% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 259+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29,"percentage":true},"effects":[{"kind":"damage","coefficient":2.2020765314988098,"basePoints":259,"dieSides":24,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":54}]},{"rank":5,"spellId":570141,"level":56,"description":"GaleRank 529% of base mana Instant cast3 Charges, 10 sec recharge Generates 20 Static Blast an enemy and up to 2 nearby enemies with a powerful gust of wind for 362+0+NatP*0.42 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":29,"percentage":true},"effects":[{"kind":"damage","coefficient":2.1812296630071364,"basePoints":362,"dieSides":31,"pointsPerLevel":1.5643199682235718,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":80}]}]},{"id":"coa-16-kiss-of-the-clouds-62-500039","classId":"stormbringer","dbcSpellId":500039,"name":"Kiss of the Clouds","unlockLevel":17,"icon":"/assets/ui/spells/epic_rpg_icon_pack_wind_icon_0003s_0000_wind_border.png","sigil":"KO","description":"Kiss of the CloudsRank 1Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+101+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":101},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500039,"level":17,"description":"Kiss of the CloudsRank 1Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+101+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":101},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":501442,"level":26,"description":"Kiss of the CloudsRank 2Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+185+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":185},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501443,"level":34,"description":"Kiss of the CloudsRank 3Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+260+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":260},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501444,"level":42,"description":"Kiss of the CloudsRank 4Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+347+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":347},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501445,"level":50,"description":"Kiss of the CloudsRank 5Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+458+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":458},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501446,"level":58,"description":"Kiss of the CloudsRank 6Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+610+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":610},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":501447,"level":66,"description":"Kiss of the CloudsRank 7Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+764+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":764},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":501448,"level":74,"description":"Kiss of the CloudsRank 8Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+925+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":925},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501449,"level":80,"description":"Kiss of the CloudsRank 9Instant30 sec cooldownDepletes 40 Static Grant all party and raid members a shield that absorbs 0+1153+Int*1 damage, scaling with Intellect, for 10 sec. While active, the target suffers no spell pushback from taking damage.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500292,"withValue":1153},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]}],"knight-of-xoroth":[{"id":"coa-tree-30701","classId":"knight-of-xoroth","dbcSpellId":805679,"name":"Black Shield","unlockLevel":1,"icon":"/assets/ui/spells/spell_warlock_soulburn_haunt.png","sigil":"BS","description":"Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 860 damage, increased by 20% per Demon's Blood stack, for 30 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805679,"level":1,"description":"Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 860 damage, increased by 20% per Demon's Blood stack, for 30 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":30701},{"id":"coa-tree-34064","classId":"knight-of-xoroth","dbcSpellId":300395,"name":"Boiling Blood","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodboil_border.png","sigil":"BB","description":"Casting Suffuse now increases your healing received by 25% for the first 6 seconds of it's duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300395:effect:0:aura:42","name":"Boiling Blood (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300395:proc:0:300394","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":300394}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":300394}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300395,"level":1,"description":"Casting Suffuse now increases your healing received by 25% for the first 6 seconds of it's duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300395:effect:0:aura:42","name":"Boiling Blood (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300395:proc:0:300394","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":300394}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":300394}]}],"talentEntryId":34064},{"id":"coa-tree-4018","classId":"knight-of-xoroth","dbcSpellId":92104,"name":"Brimstone Buckler","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_improveddemonictactics.png","sigil":"BB","description":"Level 10 Passive Successful blocks now have a 30% chance to summon 1 Hellfire Imp to aid you in battle for 12 seconds. Can only occur once every 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92104:effect:0:aura:23","name":"Brimstone Buckler (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92104:proc:0:562029","triggers":["periodic"],"chance":0.3,"internalCooldownMs":3000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":562029}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":562029},{"kind":"apply-aura","aura":{"id":"coa:92104:effect:1:aura:42","name":"Brimstone Buckler (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92104:proc:1:805966","triggers":["block"],"chance":0.3,"internalCooldownMs":3000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805966}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805966}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92104,"level":1,"description":"Level 10 Passive Successful blocks now have a 30% chance to summon 1 Hellfire Imp to aid you in battle for 12 seconds. Can only occur once every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92104:effect:0:aura:23","name":"Brimstone Buckler (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92104:proc:0:562029","triggers":["periodic"],"chance":0.3,"internalCooldownMs":3000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":562029}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":562029},{"kind":"apply-aura","aura":{"id":"coa:92104:effect:1:aura:42","name":"Brimstone Buckler (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92104:proc:1:805966","triggers":["block"],"chance":0.3,"internalCooldownMs":3000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805966}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805966}]}],"talentEntryId":4018},{"id":"coa-tree-30178","classId":"knight-of-xoroth","dbcSpellId":300387,"name":"Brimstone's Blood","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fireghost_border.png","sigil":"BS","description":"Increases the chance of gaining a stack of Demon's Blood by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300387:effect:0:aura:107","name":"Brimstone's Blood (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300387,"level":1,"description":"Increases the chance of gaining a stack of Demon's Blood by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300387:effect:0:aura:107","name":"Brimstone's Blood (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}],"talentEntryId":30178},{"id":"coa-tree-29623","classId":"knight-of-xoroth","dbcSpellId":680723,"name":"Brute Strength","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_strength.png","sigil":"BS","description":"Increases your critical damage dealt with Physical attacks by 10% and increases the range of Flesh Hook, Chains of Malice, and Chainwhip by 5 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680723:effect:0:aura:163","name":"Brute Strength (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680723:effect:1:aura:107","name":"Brute Strength (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680723,"level":1,"description":"Increases your critical damage dealt with Physical attacks by 10% and increases the range of Flesh Hook, Chains of Malice, and Chainwhip by 5 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680723:effect:0:aura:163","name":"Brute Strength (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680723:effect:1:aura:107","name":"Brute Strength (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":29623},{"id":"coa-tree-6394","classId":"knight-of-xoroth","dbcSpellId":704185,"name":"Chain Warden","unlockLevel":1,"icon":"/assets/ui/spells/warlock_sacrificial_pact.png","sigil":"CW","description":"Reduces the cooldown of Chains of Malice by -30 sec, and allows Flesh Hook and Chainwhip to strike up to 2 additional enemies near your primary target.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"pull","toward":"caster"},{"kind":"apply-aura","aura":{"id":"coa:704185:effect:0:aura:107","name":"Chain Warden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704185:effect:1:aura:107","name":"Chain Warden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704185:effect:2:aura:107","name":"Chain Warden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704185,"level":1,"description":"Reduces the cooldown of Chains of Malice by -30 sec, and allows Flesh Hook and Chainwhip to strike up to 2 additional enemies near your primary target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"pull","toward":"caster"},{"kind":"apply-aura","aura":{"id":"coa:704185:effect:0:aura:107","name":"Chain Warden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704185:effect:1:aura:107","name":"Chain Warden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704185:effect:2:aura:107","name":"Chain Warden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":6394},{"id":"coa-tree-30668","classId":"knight-of-xoroth","dbcSpellId":803185,"name":"Chains of Malice","unlockLevel":1,"icon":"/assets/ui/spells/nhi_nightmarechain_border.png","sigil":"CO","description":"Lock an enemy down with magical chains, stunning them and dragging them with you for 5 seconds. Every 1 sec, the enemy will suffer 16 Physical damage. Enemies that cannot be stunned or rooted cannot be dragged.","target":"hostile","range":{"min":0,"max":15},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803185:effect:0:aura:3","name":"Chains of Malice (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.0949999988079071,"basePoints":16,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0.0949999988079071,"sourceLevel":28,"ticks":5,"intervalMs":1000,"tag":"spell-803185"},{"kind":"apply-aura","aura":{"id":"coa:803185:effect:1:aura:23","name":"Chains of Malice (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803185:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:803185:effect:2:aura:12","name":"Chains of Malice (Aura 12)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803185,"level":1,"description":"Lock an enemy down with magical chains, stunning them and dragging them with you for 5 seconds. Every 1 sec, the enemy will suffer 16 Physical damage. Enemies that cannot be stunned or rooted cannot be dragged.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803185:effect:0:aura:3","name":"Chains of Malice (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.0949999988079071,"basePoints":16,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0.0949999988079071,"sourceLevel":28,"ticks":5,"intervalMs":1000,"tag":"spell-803185"},{"kind":"apply-aura","aura":{"id":"coa:803185:effect:1:aura:23","name":"Chains of Malice (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803185:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:803185:effect:2:aura:12","name":"Chains of Malice (Aura 12)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30668},{"id":"coa-tree-4016","classId":"knight-of-xoroth","dbcSpellId":92100,"name":"Crusher","unlockLevel":1,"icon":"/assets/ui/spells/warrior_skullbanner.png","sigil":"CR","description":"Level 10 Passive Doubles the base Weapon Damage dealt by Infernal Strike and increases all critical damage dealt by 25%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92100:effect:0:aura:4","name":"Crusher (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92100:effect:1:aura:163","name":"Crusher (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92100,"level":1,"description":"Level 10 Passive Doubles the base Weapon Damage dealt by Infernal Strike and increases all critical damage dealt by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92100:effect:0:aura:4","name":"Crusher (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92100:effect:1:aura:163","name":"Crusher (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":4016},{"id":"coa-tree-31701","classId":"knight-of-xoroth","dbcSpellId":805669,"name":"Demon Heart","unlockLevel":1,"icon":"/assets/ui/spells/inv_ragnaros_heart.png","sigil":"DH","description":"Embrace your inner demon, instantly generating 6 stacks of Demonfire and 50 Rage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":500}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805669,"level":1,"description":"Embrace your inner demon, instantly generating 6 stacks of Demonfire and 50 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":500}]}],"talentEntryId":31701},{"id":"coa-tree-34060","classId":"knight-of-xoroth","dbcSpellId":302581,"name":"Demonskin","unlockLevel":1,"icon":"/assets/ui/spells/inv_wand_1h_firelandsraid_d_01.png","sigil":"DE","description":"Each stack of Demon's Blood also increases your Armor by 1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:302581:effect:0:aura:107","name":"Demonskin (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":302581,"level":1,"description":"Each stack of Demon's Blood also increases your Armor by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:302581:effect:0:aura:107","name":"Demonskin (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":34060},{"id":"coa-tree-30013","classId":"knight-of-xoroth","dbcSpellId":706502,"name":"Dread","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_incinerate.png","sigil":"DR","description":"Damage dealt now has a 15% chance to grant a stack of Dread. At 10 stacks, your next Meatsaw transforms into Annihilation for 8 seconds.AnnihilationAnnihilate up to 10 enemies in a frontal cone, dealing 150% Weapon Damage plus 353 as Shadowflame Damage and generating 4 Demonfire. Deals 20% increased damage if you are above 75% health or below 35% health. Scales with modifiers to Infernal Strike.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706502:effect:0:aura:42","name":"Dread (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706502:proc:0:707131","triggers":["hit"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707131}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707131}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706502,"level":1,"description":"Damage dealt now has a 15% chance to grant a stack of Dread. At 10 stacks, your next Meatsaw transforms into Annihilation for 8 seconds.AnnihilationAnnihilate up to 10 enemies in a frontal cone, dealing 150% Weapon Damage plus 353 as Shadowflame Damage and generating 4 Demonfire. Deals 20% increased damage if you are above 75% health or below 35% health. Scales with modifiers to Infernal Strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706502:effect:0:aura:42","name":"Dread (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706502:proc:0:707131","triggers":["hit"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707131}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707131}]}],"talentEntryId":30013},{"id":"knight-of-xoroth-flameblade","classId":"knight-of-xoroth","dbcSpellId":704968,"name":"Flameblade","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_1h_draenorraid_d_01.png","sigil":"FL","description":"FlamebladeRank 2InstantIncreases the damage of Infernal Strike and Flames of Xoroth by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704968:effect:0:aura:108","name":"Flameblade (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":true,"ranks":[{"rank":2,"spellId":704968,"level":1,"description":"FlamebladeRank 2InstantIncreases the damage of Infernal Strike and Flames of Xoroth by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704968:effect:0:aura:108","name":"Flameblade (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-4017","classId":"knight-of-xoroth","dbcSpellId":92101,"name":"Greater Imp","unlockLevel":1,"icon":"/assets/ui/spells/5_sumimparmy_border.png","sigil":"GI","description":"Level 10 Passive Teaches you Summon: Greater Imp and increases your expertise by 10. Summon: Greater ImpSummon a Greater Imp to aid you in combat. Greater Imp has various combat abilities that provide excellent single target damage and control.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92101:effect:0:aura:4","name":"Greater Imp (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92101:effect:1:aura:85","name":"Greater Imp (Aura 85)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92101:effect:2:aura:240","name":"Greater Imp (Aura 240)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"expertise","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":240,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92101,"level":1,"description":"Level 10 Passive Teaches you Summon: Greater Imp and increases your expertise by 10. Summon: Greater ImpSummon a Greater Imp to aid you in combat. Greater Imp has various combat abilities that provide excellent single target damage and control.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92101:effect:0:aura:4","name":"Greater Imp (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92101:effect:1:aura:85","name":"Greater Imp (Aura 85)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92101:effect:2:aura:240","name":"Greater Imp (Aura 240)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"expertise","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":240,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4017},{"id":"coa-tree-34090","classId":"knight-of-xoroth","dbcSpellId":704956,"name":"Heart of Xoroth","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_sanguinaryvein.png","sigil":"HO","description":"Allows Demon's Blood to stack 5 additional times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704956:effect:0:aura:107","name":"Heart of Xoroth (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704956,"level":1,"description":"Allows Demon's Blood to stack 5 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704956:effect:0:aura:107","name":"Heart of Xoroth (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}]}],"talentEntryId":34090},{"id":"coa-tree-5453","classId":"knight-of-xoroth","dbcSpellId":807247,"name":"Hellbound Charge","unlockLevel":1,"icon":"/assets/ui/spells/_crimsondeathcharger_64x.png","sigil":"HC","description":"2 Charges, 60 sec recharge Briefly jump atop your Xorothian Warsteed, increasing your movement speed by 70% for 3 seconds. Usable while indoors, but you cannot use your Mounted Combat abilities while riding your Warsteed in this way.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807247:effect:0:aura:4","name":"Hellbound Charge (Aura 4)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":807247,"level":1,"description":"2 Charges, 60 sec recharge Briefly jump atop your Xorothian Warsteed, increasing your movement speed by 70% for 3 seconds. Usable while indoors, but you cannot use your Mounted Combat abilities while riding your Warsteed in this way.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807247:effect:0:aura:4","name":"Hellbound Charge (Aura 4)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":5453},{"id":"coa-tree-34096","classId":"knight-of-xoroth","dbcSpellId":680216,"name":"Hellbreaker","unlockLevel":1,"icon":"/assets/ui/spells/ability_blackhand_marked4death.png","sigil":"HE","description":"Casting Unleash Pestilence now removes all active movement impairing effects from you.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680216:effect:0:aura:42","name":"Hellbreaker (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680216:proc:0:680217","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680217}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":680217}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680216,"level":1,"description":"Casting Unleash Pestilence now removes all active movement impairing effects from you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680216:effect:0:aura:42","name":"Hellbreaker (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680216:proc:0:680217","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680217}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":680217}]}],"talentEntryId":34096},{"id":"knight-of-xoroth-hellhaul","classId":"knight-of-xoroth","dbcSpellId":503142,"name":"Hellhaul","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathknight_deathchain.png","sigil":"HE","description":"HellhaulRank 2Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 3 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","target":"hostile","range":{"min":0,"max":10},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503142:effect:0:aura:3","name":"Hellhaul (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.08,"basePoints":3,"dieSides":1,"pointsPerLevel":0.27880001068115234,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":20,"ticks":20,"intervalMs":250,"tag":"spell-503142"},{"kind":"apply-aura","aura":{"id":"coa:503142:effect:1:aura:23","name":"Hellhaul (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503142:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:503142:effect:2:aura:26","name":"Hellhaul (Aura 26)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":503142,"level":1,"description":"HellhaulRank 2Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 3 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503142:effect:0:aura:3","name":"Hellhaul (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.08,"basePoints":3,"dieSides":1,"pointsPerLevel":0.27880001068115234,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":20,"ticks":20,"intervalMs":250,"tag":"spell-503142"},{"kind":"apply-aura","aura":{"id":"coa:503142:effect:1:aura:23","name":"Hellhaul (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503142:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:503142:effect:2:aura:26","name":"Hellhaul (Aura 26)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503143,"level":21,"description":"HellhaulRank 3Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 5 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503143:effect:0:aura:3","name":"Hellhaul (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.12150740568284635,"basePoints":5,"dieSides":1,"pointsPerLevel":0.38679999113082886,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":30,"ticks":20,"intervalMs":250,"tag":"spell-503143"},{"kind":"apply-aura","aura":{"id":"coa:503143:effect:1:aura:23","name":"Hellhaul (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503143:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:503143:effect:2:aura:26","name":"Hellhaul (Aura 26)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503144,"level":31,"description":"HellhaulRank 4Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 8 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503144:effect:0:aura:3","name":"Hellhaul (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.16912173944107,"basePoints":8,"dieSides":1,"pointsPerLevel":0.49480000138282776,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":40,"ticks":20,"intervalMs":250,"tag":"spell-503144"},{"kind":"apply-aura","aura":{"id":"coa:503144:effect:1:aura:23","name":"Hellhaul (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503144:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:503144:effect:2:aura:26","name":"Hellhaul (Aura 26)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503145,"level":41,"description":"HellhaulRank 5Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 13 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503145:effect:0:aura:3","name":"Hellhaul (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2244928599823089,"basePoints":13,"dieSides":1,"pointsPerLevel":0.6028000116348267,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":50,"ticks":20,"intervalMs":250,"tag":"spell-503145"},{"kind":"apply-aura","aura":{"id":"coa:503145:effect:1:aura:23","name":"Hellhaul (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503145:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:503145:effect:2:aura:26","name":"Hellhaul (Aura 26)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503146,"level":51,"description":"HellhaulRank 6Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 22 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503146:effect:0:aura:3","name":"Hellhaul (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2941959575571195,"basePoints":22,"dieSides":1,"pointsPerLevel":0.7107999920845032,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60,"ticks":20,"intervalMs":250,"tag":"spell-503146"},{"kind":"apply-aura","aura":{"id":"coa:503146:effect:1:aura:23","name":"Hellhaul (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503146:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:503146:effect:2:aura:26","name":"Hellhaul (Aura 26)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503147,"level":61,"description":"HellhaulRank 7Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 36 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503147:effect:0:aura:3","name":"Hellhaul (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3769596417744954,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8187999725341797,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70,"ticks":20,"intervalMs":250,"tag":"spell-503147"},{"kind":"apply-aura","aura":{"id":"coa:503147:effect:1:aura:23","name":"Hellhaul (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503147:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:503147:effect:2:aura:26","name":"Hellhaul (Aura 26)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503148,"level":71,"description":"HellhaulRank 8Instant3 min cooldownYou bind an enemy target with magical Hellfire Chains, rooting them and dragging them with you for 5 sec. Every 0.25 sec for the duration the target will suffer 59 Physical Damage. Enemies that cannot be stunned or rooted cannot be dragged either.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503148:effect:0:aura:3","name":"Hellhaul (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.48373178641001385,"basePoints":59,"dieSides":1,"pointsPerLevel":0.926800012588501,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80,"ticks":20,"intervalMs":250,"tag":"spell-503148"},{"kind":"apply-aura","aura":{"id":"coa:503148:effect:1:aura:23","name":"Hellhaul (Aura 23)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503148:proc:1:803186","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803186}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":1,"triggerSpellId":803186},{"kind":"apply-aura","aura":{"id":"coa:503148:effect:2:aura:26","name":"Hellhaul (Aura 26)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-17-hellish-rebuke-66-804010","classId":"knight-of-xoroth","dbcSpellId":804010,"name":"Hellish Rebuke","unlockLevel":1,"icon":"/assets/ui/spells/inv_bow_1h_firelandsraid_d_01.png","sigil":"HR","description":"Hellish RebukeRank 120 Rage Instant cast20 sec cooldownNext time you take damage, unleash a blast of hellfire upon enemies within 0 yds of the attacker, dealing 6+3.0 Points Per Level Fire damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804010:effect:0:aura:42","name":"Hellish Rebuke (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804010:proc:0:804011","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804011}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804011},{"kind":"trigger-spell","spellId":804346},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:0:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:1:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804010,"level":1,"description":"Hellish RebukeRank 120 Rage Instant cast20 sec cooldownNext time you take damage, unleash a blast of hellfire upon enemies within 0 yds of the attacker, dealing 6+3.0 Points Per Level Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804010:effect:0:aura:42","name":"Hellish Rebuke (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804010:proc:0:804011","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804011}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804011},{"kind":"trigger-spell","spellId":804346},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:0:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:1:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0}]},{"rank":2,"spellId":503309,"level":17,"description":"Hellish RebukeRank 220 Rage Instant cast20 sec cooldownThe next time you take damage, unleash a blast of Hellfire upon enemies within 0 yards of the attacker, dealing 1 to 3 Fire damage. Oath of Defiance: Gains 2 additional charges, and reduces all damage you take by 5% for 5 sec. This ability scales with your Strength and Spell Power.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503309:effect:0:aura:42","name":"Hellish Rebuke (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503309:proc:0:804011","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804011}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804011},{"kind":"trigger-spell","spellId":804346},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:0:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:1:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0}]},{"rank":3,"spellId":503310,"level":33,"description":"Hellish RebukeRank 320 Rage Instant cast20 sec cooldownThe next time you take damage, unleash a blast of Hellfire upon enemies within 0 yards of the attacker, dealing 1 to 3 Fire damage. Oath of Defiance: Gains 2 additional charges, and reduces all damage you take by 5% for 5 sec. This ability scales with your Strength and Spell Power.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503310:effect:0:aura:42","name":"Hellish Rebuke (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503310:proc:0:804011","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804011}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804011},{"kind":"trigger-spell","spellId":804346},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:0:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:1:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0}]},{"rank":4,"spellId":503311,"level":49,"description":"Hellish RebukeRank 420 Rage Instant cast20 sec cooldownThe next time you take damage, unleash a blast of Hellfire upon enemies within 0 yards of the attacker, dealing 1 to 3 Fire damage. Oath of Defiance: Gains 2 additional charges, and reduces all damage you take by 5% for 5 sec. This ability scales with your Strength and Spell Power.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503311:effect:0:aura:42","name":"Hellish Rebuke (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503311:proc:0:804011","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804011}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804011},{"kind":"trigger-spell","spellId":804346},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:0:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:1:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0}]},{"rank":5,"spellId":503312,"level":65,"description":"Hellish RebukeRank 520 Rage Instant cast20 sec cooldownThe next time you take damage, unleash a blast of Hellfire upon enemies within 0 yards of the attacker, dealing 1 to 3 Fire damage. Oath of Defiance: Gains 2 additional charges, and reduces all damage you take by 5% for 5 sec. This ability scales with your Strength and Spell Power.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503312:effect:0:aura:42","name":"Hellish Rebuke (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503312:proc:0:804011","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804011}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804011},{"kind":"trigger-spell","spellId":804346},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:0:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:1:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0}]}]},{"id":"coa-17-hellsmelted-armor-66-706569","classId":"knight-of-xoroth","dbcSpellId":706569,"name":"Hellsmelted Armor","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_windsofwoe.png","sigil":"HA","description":"Hellsmelted ArmorRank 1Each Hellfire Imp active now increases your chance to block by 1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706569:effect:0:aura:51","name":"Hellsmelted Armor (Aura 51)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706569,"level":1,"description":"Hellsmelted ArmorRank 1Each Hellfire Imp active now increases your chance to block by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706569:effect:0:aura:51","name":"Hellsmelted Armor (Aura 51)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":706570,"level":1,"description":"Hellsmelted ArmorRank 2Reduces damage taken by 4% and increases Stamina by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706570:effect:0:aura:87","name":"Hellsmelted Armor (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706570:effect:1:aura:137","name":"Hellsmelted Armor (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0}]}]},{"id":"coa-tree-6393","classId":"knight-of-xoroth","dbcSpellId":704991,"name":"Hellstriker","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_80.png","sigil":"HE","description":"Direct critical strikes now increase the duration of Hellrider on you by 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704991:effect:0:aura:42","name":"Hellstriker (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704991:proc:0:680727","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680727}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":680727}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704991,"level":1,"description":"Direct critical strikes now increase the duration of Hellrider on you by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704991:effect:0:aura:42","name":"Hellstriker (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704991:proc:0:680727","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680727}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":680727}]}],"talentEntryId":6393},{"id":"coa-17-improved-gore-64-705011","classId":"knight-of-xoroth","dbcSpellId":705011,"name":"Improved Gore","unlockLevel":1,"icon":"/assets/ui/spells/inv_knife_1h_pvppandarias1_c_02.png","sigil":"IG","description":"Improved GoreRank 2Increases the damage of Gore by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705011:effect:0:aura:107","name":"Improved Gore (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705011,"level":1,"description":"Improved GoreRank 2Increases the damage of Gore by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705011:effect:0:aura:107","name":"Improved Gore (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-6929","classId":"knight-of-xoroth","dbcSpellId":805693,"name":"Infernal Steel","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_1h_artifactfelomelorn_d_02.png","sigil":"IS","description":"Casting Skulltaker with 6 Demonfire stacks now causes your next Hellmaw within 15 seconds to tick -25% faster and cost -50% less Rage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805693:effect:0:aura:42","name":"Infernal Steel (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805693:proc:0:520021","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520021}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520021}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805693,"level":1,"description":"Casting Skulltaker with 6 Demonfire stacks now causes your next Hellmaw within 15 seconds to tick -25% faster and cost -50% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805693:effect:0:aura:42","name":"Infernal Steel (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805693:proc:0:520021","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520021}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520021}]}],"talentEntryId":6929},{"id":"coa-tree-30016","classId":"knight-of-xoroth","dbcSpellId":520294,"name":"Juggernaut","unlockLevel":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0004s_0000_armor_border.png","sigil":"JU","description":"Consume all of your Demon's Blood to become a juggernaut, reducing all damage taken by -30% for 10 seconds. For the duration, you heal every 3 sec for 6 + 10% AP, increased per Demon's Blood stack consumed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520294:effect:0:aura:87","name":"Juggernaut (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520294:effect:1:aura:8","name":"Juggernaut (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":60,"ticks":4,"intervalMs":2500},{"kind":"apply-aura","aura":{"id":"coa:520294:effect:2:aura:283","name":"Juggernaut (Aura 283)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520294,"level":1,"description":"Consume all of your Demon's Blood to become a juggernaut, reducing all damage taken by -30% for 10 seconds. For the duration, you heal every 3 sec for 6 + 10% AP, increased per Demon's Blood stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520294:effect:0:aura:87","name":"Juggernaut (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520294:effect:1:aura:8","name":"Juggernaut (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":60,"ticks":4,"intervalMs":2500},{"kind":"apply-aura","aura":{"id":"coa:520294:effect:2:aura:283","name":"Juggernaut (Aura 283)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30016},{"id":"coa-17-legionwake-66-706568","classId":"knight-of-xoroth","dbcSpellId":706568,"name":"Legionwake","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_draenorraid_d_03.png","sigil":"LE","description":"LegionwakeRank 2This node has no effect. It will be removed with the next patch. Do not take rank 2. Remain calm.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706568,"level":1,"description":"LegionwakeRank 2This node has no effect. It will be removed with the next patch. Do not take rank 2. Remain calm.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34114","classId":"knight-of-xoroth","dbcSpellId":706590,"name":"Omen of Rage","unlockLevel":1,"icon":"/assets/ui/spells/custom_06_summon_demon_border.png","sigil":"OO","description":"Periodic damage and healing done has a 10% chance to grant a stack of Demonfire.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706590:effect:0:aura:42","name":"Omen of Rage (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706590:proc:0:524912","triggers":["heal"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524912}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524912}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706590,"level":1,"description":"Periodic damage and healing done has a 10% chance to grant a stack of Demonfire.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706590:effect:0:aura:42","name":"Omen of Rage (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706590:proc:0:524912","triggers":["heal"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524912}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524912}]}],"talentEntryId":34114},{"id":"coa-tree-34069","classId":"knight-of-xoroth","dbcSpellId":300376,"name":"Rage of Xoroth","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_focusedrage.png","sigil":"RO","description":"Your critical strikes now enrage you, increasing your melee attack speed by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300376:effect:0:aura:42","name":"Rage of Xoroth (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","procs":[{"id":"coa:300376:proc:0:805799","triggers":["crit","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805799}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805799}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300376,"level":1,"description":"Your critical strikes now enrage you, increasing your melee attack speed by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300376:effect:0:aura:42","name":"Rage of Xoroth (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","procs":[{"id":"coa:300376:proc:0:805799","triggers":["crit","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805799}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805799}]}],"talentEntryId":34069},{"id":"coa-tree-34074","classId":"knight-of-xoroth","dbcSpellId":300384,"name":"Ragefist","unlockLevel":1,"icon":"/assets/ui/spells/inv_relics_totemofrage.png","sigil":"RA","description":"Increases your maximum Rage by 10 and reduces the duration of disarm effects against you by -15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300384:effect:0:aura:35","name":"Ragefist (Aura 35)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"flat","value":100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":35,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300384:effect:1:aura:232","name":"Ragefist (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300384,"level":1,"description":"Increases your maximum Rage by 10 and reduces the duration of disarm effects against you by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300384:effect:0:aura:35","name":"Ragefist (Aura 35)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"flat","value":100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":35,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300384:effect:1:aura:232","name":"Ragefist (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":301356,"level":1,"description":"Increases your maximum Rage by 20 and reduces the duration of disarm effects against you by -30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301356:effect:0:aura:35","name":"Ragefist (Aura 35)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"flat","value":200}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":35,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301356:effect:1:aura:232","name":"Ragefist (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34074},{"id":"coa-tree-34094","classId":"knight-of-xoroth","dbcSpellId":704987,"name":"Spiked Chains","unlockLevel":1,"icon":"/assets/ui/spells/creatureportrait_blackrock_chainsofwoe.png","sigil":"SC","description":"Your Chainwhip now deals 321 + 30% AP additional Physical damage, increased by 100% on Humanoids.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704987:effect:0:aura:42","name":"Spiked Chains (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704987:proc:0:806219","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806219}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806219},{"kind":"apply-aura","aura":{"id":"coa:704987:effect:1:aura:112","name":"Spiked Chains (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20014,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704987,"level":1,"description":"Your Chainwhip now deals 321 + 30% AP additional Physical damage, increased by 100% on Humanoids.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704987:effect:0:aura:42","name":"Spiked Chains (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704987:proc:0:806219","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806219}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806219},{"kind":"apply-aura","aura":{"id":"coa:704987:effect:1:aura:112","name":"Spiked Chains (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20014,"triggerSpellId":0}]}],"talentEntryId":34094},{"id":"coa-tree-7099","classId":"knight-of-xoroth","dbcSpellId":801063,"name":"Suffuse","unlockLevel":1,"icon":"/assets/ui/spells/diabloanniversary_achievement.png","sigil":"SU","description":"Embrace your mortal body, restoring 200 + 10% Stamina + 5% AP health every 3 sec, scaling with Stamina and defense rating. Lasts 3 sec for each Demonfire consumed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":801064},{"kind":"apply-aura","aura":{"id":"coa:801064:effect:0:aura:8","name":"Suffuse (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5,"basePoints":10,"dieSides":2,"pointsPerLevel":1.850000023841858,"bonusPowerCoefficient":0.5,"sourceLevel":10,"ticks":1,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:801064:effect:1:aura:87","name":"Suffuse (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801064:effect:2:aura:31","name":"Suffuse (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801063,"level":1,"description":"Embrace your mortal body, restoring 200 + 10% Stamina + 5% AP health every 3 sec, scaling with Stamina and defense rating. Lasts 3 sec for each Demonfire consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":801064},{"kind":"apply-aura","aura":{"id":"coa:801064:effect:0:aura:8","name":"Suffuse (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5,"basePoints":10,"dieSides":2,"pointsPerLevel":1.850000023841858,"bonusPowerCoefficient":0.5,"sourceLevel":10,"ticks":1,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:801064:effect:1:aura:87","name":"Suffuse (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801064:effect:2:aura:31","name":"Suffuse (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":7099},{"id":"coa-tree-34075","classId":"knight-of-xoroth","dbcSpellId":706566,"name":"Suffusion of Essence","unlockLevel":1,"icon":"/assets/ui/spells/inv_trinket_firelands_03.png","sigil":"SO","description":"Increases the duration of Suffuse by 2 sec for each Demonfire consumed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706566:effect:0:aura:107","name":"Suffusion of Essence (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706566,"level":1,"description":"Increases the duration of Suffuse by 2 sec for each Demonfire consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706566:effect:0:aura:107","name":"Suffusion of Essence (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":34075},{"id":"coa-17-superheated-blade-64-706329","classId":"knight-of-xoroth","dbcSpellId":706329,"name":"Superheated Blade","unlockLevel":1,"icon":"/assets/ui/spells/polearm_2h_deathwingraiddw_d_01.png","sigil":"SB","description":"Superheated BladeRank 1Increases Armor penetration rating by 8% of Strength and Strength by 2%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706329:effect:0:aura:220","name":"Superheated Blade (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:16777216","operation":"flat","value":8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":16777216,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706329:effect:1:aura:137","name":"Superheated Blade (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706329,"level":1,"description":"Superheated BladeRank 1Increases Armor penetration rating by 8% of Strength and Strength by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706329:effect:0:aura:220","name":"Superheated Blade (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:16777216","operation":"flat","value":8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":16777216,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706329:effect:1:aura:137","name":"Superheated Blade (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29610","classId":"knight-of-xoroth","dbcSpellId":705020,"name":"War Pig","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathwing_assualtaspects.png","sigil":"WP","description":"Increases your Physical damage dealt by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705020:effect:0:aura:79","name":"War Pig (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705020,"level":1,"description":"Increases your Physical damage dealt by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705020:effect:0:aura:79","name":"War Pig (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29610},{"id":"coa-17-xorothian-empowerment-65-704995","classId":"knight-of-xoroth","dbcSpellId":704995,"name":"Xorothian Empowerment","unlockLevel":1,"icon":"/assets/ui/spells/achievement_firelands_raid_ragnaros.png","sigil":"XE","description":"Xorothian EmpowermentRank 2This node has no effect. It will be removed with the next patch. Do not take rank 2. Remain calm.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704995,"level":1,"description":"Xorothian EmpowermentRank 2This node has no effect. It will be removed with the next patch. Do not take rank 2. Remain calm.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30695","classId":"knight-of-xoroth","dbcSpellId":801061,"name":"Xorothian Sigil","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_ahnqirajtrinket_04.png","sigil":"XS","description":"Create a demonic sigil that protects party members within 20 yds of you, causing them to deflect the next harmful spell cast against them within 3 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:801061:effect:1:aura:4","name":"Xorothian Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801061,"level":1,"description":"Create a demonic sigil that protects party members within 20 yds of you, causing them to deflect the next harmful spell cast against them within 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:801061:effect:1:aura:4","name":"Xorothian Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":30695},{"id":"coa-tree-29437","classId":"knight-of-xoroth","dbcSpellId":300382,"name":"Xorothian Strength","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_demonicpact.png","sigil":"XS","description":"Increases your Strength by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300382:effect:0:aura:137","name":"Xorothian Strength (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300382,"level":1,"description":"Increases your Strength by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300382:effect:0:aura:137","name":"Xorothian Strength (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":570100,"level":1,"description":"Increases your Strength by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570100:effect:0:aura:137","name":"Xorothian Strength (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29437},{"id":"knight-of-xoroth-unleash-hellfire","classId":"knight-of-xoroth","dbcSpellId":705001,"name":"Unleash Hellfire","unlockLevel":2,"icon":"/assets/ui/spells/inv_elemental_primal_fire.png","sigil":"UH","description":"Unleash a blast of hellfire upon nearby enemies whenever you expend your Demonfire stacks, dealing ${$705002m1+$705002ppl1+$spfi*0.2} Fire Damage.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705001:effect:0:aura:4","name":"Unleash Hellfire (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"source":"coa-starter","passive":true,"ranks":[{"rank":1,"spellId":705001,"level":2,"description":"Unleash a blast of hellfire upon nearby enemies whenever you expend your Demonfire stacks, dealing ${$705002m1+$705002ppl1+$spfi*0.2} Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705001:effect:0:aura:4","name":"Unleash Hellfire (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"knight-of-xoroth-chain-grab","classId":"knight-of-xoroth","dbcSpellId":800606,"name":"Chain Grab","unlockLevel":4,"icon":"/assets/ui/spells/spell_shadow_unholystrength.png","sigil":"CG","description":"Hooks the nearest Demonfire Orb, bringing it to your position.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"pull","toward":"caster"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":800606,"level":4,"description":"Hooks the nearest Demonfire Orb, bringing it to your position.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"pull","toward":"caster"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-17-hellfire-form-65-503300","classId":"knight-of-xoroth","dbcSpellId":503300,"name":"Hellfire Form","unlockLevel":9,"icon":"/assets/ui/spells/ability_racial_foregedinflames.png","sigil":"HF","description":"Hellfire FormRank 2Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 10 to 15 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503300:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503300:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503300:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503300:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503300,"level":9,"description":"Hellfire FormRank 2Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 10 to 15 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503300:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503300:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503300:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503300:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]},{"rank":3,"spellId":503301,"level":17,"description":"Hellfire FormRank 3Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 19 to 28 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503301:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503301:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503301:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503301:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]},{"rank":4,"spellId":503302,"level":25,"description":"Hellfire FormRank 4Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 34 to 49 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503302:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503302:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503302:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503302:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]},{"rank":5,"spellId":503303,"level":33,"description":"Hellfire FormRank 5Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 56 to 79 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503303:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503303:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503303:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503303:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]},{"rank":6,"spellId":503304,"level":41,"description":"Hellfire FormRank 6Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 88 to 121 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503304:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503304:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503304:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503304:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]},{"rank":7,"spellId":503305,"level":49,"description":"Hellfire FormRank 7Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 133 to 177 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503305:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503305:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503305:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503305:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]},{"rank":8,"spellId":503306,"level":57,"description":"Hellfire FormRank 8Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 96 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503306:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503306:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503306:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503306:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]},{"rank":9,"spellId":503307,"level":65,"description":"Hellfire FormRank 9Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 284 to 356 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503307:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503307:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503307:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503307:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]},{"rank":10,"spellId":503308,"level":73,"description":"Hellfire FormRank 10Instant cast3 min cooldownConsumes Demonfire stacks You transform into a Xorothian Demon for 20 sec, increasing magic damage dealt by 20% and causing you to emanate hellish flames every 1 sec, dealing 404 to 493 Fire Damage to nearby enemies. Lasts an additional 3 sec for each Demonfire stack consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503308:effect:0:aura:56","name":"Hellfire Form (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50299,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503308:effect:1:aura:227","name":"Hellfire Form (Aura 227)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503308:proc:1:804007","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804007}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804007},{"kind":"apply-aura","aura":{"id":"coa:503308:effect:2:aura:79","name":"Hellfire Form (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}]}]},{"id":"coa-17-demonfeast-64-501491","classId":"knight-of-xoroth","dbcSpellId":501491,"name":"Demonfeast","unlockLevel":10,"icon":"/assets/ui/spells/inv_axe_1h_nzothraid_d_02.png","sigil":"DE","description":"DemonfeastRank 220 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 22 to 30 Life, healing you for 150% of the damage dealt by this effect.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":0.6816666730244955,"basePoints":22,"dieSides":9,"pointsPerLevel":2.512500047683716,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"heal","coefficient":0.6816666730244955,"basePoints":22,"dieSides":9,"pointsPerLevel":2.512500047683716,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501491,"level":10,"description":"DemonfeastRank 220 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 22 to 30 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":0.6816666730244955,"basePoints":22,"dieSides":9,"pointsPerLevel":2.512500047683716,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"heal","coefficient":0.6816666730244955,"basePoints":22,"dieSides":9,"pointsPerLevel":2.512500047683716,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":501492,"level":19,"description":"DemonfeastRank 320 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 45 to 60 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1.1524632210825003,"basePoints":45,"dieSides":16,"pointsPerLevel":3.4237499237060547,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27},{"kind":"heal","coefficient":1.1524632210825003,"basePoints":45,"dieSides":16,"pointsPerLevel":3.4237499237060547,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":501493,"level":28,"description":"DemonfeastRank 420 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 82 to 107 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":1.6734883803729863,"basePoints":82,"dieSides":26,"pointsPerLevel":4.335000038146973,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36},{"kind":"heal","coefficient":1.6734883803729863,"basePoints":82,"dieSides":26,"pointsPerLevel":4.335000038146973,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":501494,"level":37,"description":"DemonfeastRank 520 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 139 to 177 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":2.257123433626615,"basePoints":139,"dieSides":39,"pointsPerLevel":5.246250152587891,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44},{"kind":"heal","coefficient":2.257123433626615,"basePoints":139,"dieSides":39,"pointsPerLevel":5.246250152587891,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":501495,"level":45,"description":"DemonfeastRank 620 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 215 to 267 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":2.852951412730747,"basePoints":215,"dieSides":53,"pointsPerLevel":6.056250095367432,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53},{"kind":"heal","coefficient":2.852951412730747,"basePoints":215,"dieSides":53,"pointsPerLevel":6.056250095367432,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53},{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":501496,"level":54,"description":"DemonfeastRank 720 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 335 to 405 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":3.605048363911357,"basePoints":335,"dieSides":71,"pointsPerLevel":6.96750020980835,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62},{"kind":"heal","coefficient":3.605048363911357,"basePoints":335,"dieSides":71,"pointsPerLevel":6.96750020980835,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62},{"kind":"damage","coefficient":1}]},{"rank":8,"spellId":501497,"level":63,"description":"DemonfeastRank 820 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 507 to 598 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":4,"basePoints":507,"dieSides":92,"pointsPerLevel":7.878749847412109,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71},{"kind":"heal","coefficient":4,"basePoints":507,"dieSides":92,"pointsPerLevel":7.878749847412109,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71},{"kind":"damage","coefficient":1}]},{"rank":9,"spellId":501498,"level":72,"description":"DemonfeastRank 920 Rage InstantDeals 50% Weapon Damage to an enemy, and steals an additional 752 to 866 Life, healing you for 150% of the damage dealt by this effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5},{"kind":"damage","coefficient":4,"basePoints":752,"dieSides":115,"pointsPerLevel":8.789999961853027,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"heal","coefficient":4,"basePoints":752,"dieSides":115,"pointsPerLevel":8.789999961853027,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"damage","coefficient":1}]}]},{"id":"coa-17-meatsaw-64-800340","classId":"knight-of-xoroth","dbcSpellId":800340,"name":"Meatsaw","unlockLevel":12,"icon":"/assets/ui/spells/ability_butcher_whirl.png","sigil":"ME","description":"MeatsawRank 145 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 50% Weapon Damage plus 8.","target":"hostile","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.5}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800340,"level":12,"description":"MeatsawRank 145 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 50% Weapon Damage plus 8.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.5}]},{"rank":2,"spellId":501508,"level":24,"description":"MeatsawRank 245 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 59% Weapon Damage plus 8 to 15.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.59}]},{"rank":3,"spellId":501509,"level":36,"description":"MeatsawRank 345 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 60% Weapon Damage plus 25.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.6}]},{"rank":4,"spellId":501510,"level":48,"description":"MeatsawRank 445 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 53% Weapon Damage plus 32 to 67.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.53}]},{"rank":5,"spellId":578119,"level":58,"description":"MeatsawRank 545 Rage InstantRequires Melee Weapon Generates 2 Demonfire Quickly swing a massive blade at up to 5 nearby enemies, dealing 55% Weapon Damage plus 51 to 86.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":45},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.55}]}]},{"id":"coa-17-shieldgore-66-804353","classId":"knight-of-xoroth","dbcSpellId":804353,"name":"Shieldgore","unlockLevel":12,"icon":"/assets/ui/spells/inv_shield_draenorraid_d_02.png","sigil":"SH","description":"ShieldgoreRank 135 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 21+0+AP*.35 High Threat Fire Damage, scaling with your block value.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.29012345679012347,"basePoints":21,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804353,"level":12,"description":"ShieldgoreRank 135 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 21+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.29012345679012347,"basePoints":21,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}]},{"rank":2,"spellId":806869,"level":18,"description":"ShieldgoreRank 235 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 26+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.2878787878787879,"basePoints":26,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24}]},{"rank":3,"spellId":806870,"level":26,"description":"ShieldgoreRank 335 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 30+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.2845528455284553,"basePoints":30,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32}]},{"rank":4,"spellId":806871,"level":34,"description":"ShieldgoreRank 435 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 38+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.30612244897959184,"basePoints":38,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":5,"spellId":806872,"level":42,"description":"ShieldgoreRank 535 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 69+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.4590643274853801,"basePoints":69,"dieSides":20,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48}]},{"rank":6,"spellId":806873,"level":50,"description":"ShieldgoreRank 635 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 95+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.558974358974359,"basePoints":95,"dieSides":29,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":7,"spellId":806874,"level":58,"description":"ShieldgoreRank 735 Rage InstantRequires Shields Generates 2 Demonfire Gore the target with your spiked shield, causing 122+0+AP*.35 High Threat Fire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.6461187214611872,"basePoints":122,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66}]}]},{"id":"coa-17-seeking-flame-65-805671","classId":"knight-of-xoroth","dbcSpellId":805671,"name":"Seeking Flame","unlockLevel":15,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SF","description":"Seeking FlameRank 120 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 63+0+FireP*0.336188+AP*0.33 Fire damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.3236988915337458,"basePoints":63,"dieSides":5,"pointsPerLevel":3.6088600158691406,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805671,"level":15,"description":"Seeking FlameRank 120 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 63+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.3236988915337458,"basePoints":63,"dieSides":5,"pointsPerLevel":3.6088600158691406,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":560664,"level":24,"description":"Seeking FlameRank 220 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 113+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.63563964713333,"basePoints":113,"dieSides":10,"pointsPerLevel":3.0779099464416504,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]},{"rank":3,"spellId":560665,"level":34,"description":"Seeking FlameRank 320 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 174+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":2.161333603112876,"basePoints":174,"dieSides":15,"pointsPerLevel":4.021059989929199,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42},{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]},{"rank":4,"spellId":560666,"level":44,"description":"Seeking FlameRank 420 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 264+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":2.3624293548239153,"basePoints":264,"dieSides":20,"pointsPerLevel":3.2874999046325684,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]},{"rank":5,"spellId":560667,"level":54,"description":"Seeking FlameRank 520 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 368+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":368,"dieSides":24,"pointsPerLevel":9.175000190734863,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]},{"rank":6,"spellId":560668,"level":60,"description":"Seeking FlameRank 620 Rage Instant cast6 sec cooldownGenerates 1 Demonfire Sear an enemy, dealing 702+0+FireP*0.336188+AP*0.33 Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":702,"dieSides":35,"pointsPerLevel":5.462500095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-17-curse-of-xoroth-66-503472","classId":"knight-of-xoroth","dbcSpellId":503472,"name":"Curse of Xoroth","unlockLevel":17,"icon":"/assets/ui/spells/inv_shield_1h_nzothraid_d_01.png","sigil":"CO","description":"Curse of XorothRank 2Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 7 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503472:effect:0:aura:3","name":"Curse of Xoroth (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.14658333485325178,"basePoints":7,"dieSides":1,"pointsPerLevel":0.41600000858306885,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32,"ticks":5,"intervalMs":2000,"tag":"spell-503472"},{"kind":"apply-aura","aura":{"id":"coa:503472:effect:1:aura:23","name":"Curse of Xoroth (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:503472:proc:1:804170","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804170}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804170}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503472,"level":17,"description":"Curse of XorothRank 2Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 7 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503472:effect:0:aura:3","name":"Curse of Xoroth (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.14658333485325178,"basePoints":7,"dieSides":1,"pointsPerLevel":0.41600000858306885,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32,"ticks":5,"intervalMs":2000,"tag":"spell-503472"},{"kind":"apply-aura","aura":{"id":"coa:503472:effect:1:aura:23","name":"Curse of Xoroth (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:503472:proc:1:804170","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804170}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804170}]},{"rank":3,"spellId":503473,"level":33,"description":"Curse of XorothRank 3Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 14 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503473:effect:0:aura:3","name":"Curse of Xoroth (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24205556222134167,"basePoints":14,"dieSides":1,"pointsPerLevel":0.6320000290870667,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48,"ticks":5,"intervalMs":2000,"tag":"spell-503473"},{"kind":"apply-aura","aura":{"id":"coa:503473:effect:1:aura:23","name":"Curse of Xoroth (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:503473:proc:1:804170","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804170}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804170}]},{"rank":4,"spellId":503474,"level":49,"description":"Curse of XorothRank 4Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 30 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503474:effect:0:aura:3","name":"Curse of Xoroth (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.37266666411111754,"basePoints":30,"dieSides":1,"pointsPerLevel":0.8479999899864197,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64,"ticks":5,"intervalMs":2000,"tag":"spell-503474"},{"kind":"apply-aura","aura":{"id":"coa:503474:effect:1:aura:23","name":"Curse of Xoroth (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:503474:proc:1:804170","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804170}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804170}]},{"rank":5,"spellId":503475,"level":65,"description":"Curse of XorothRank 5Instant cast45 sec cooldownCurse an enemy for 10 sec, causing 62 Shadow Damage every 2 for 10 sec. If you use Demonflare within 6 sec, you curse your target with Ritual Fire for 6 sec. Casting Curse of Hel'nurath on a target afflicted with Ritual Fire will apply Black Shield to you. Black Shield Consume all of your Demon's Blood stacks to create a demonic shield that absorbs 500+9.0 Points Per Level damage, increased by 20% per Demon's Blood stack, for 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503475:effect:0:aura:3","name":"Curse of Xoroth (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5465000028411547,"basePoints":62,"dieSides":1,"pointsPerLevel":1.0640000104904175,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80,"ticks":5,"intervalMs":2000,"tag":"spell-503475"},{"kind":"apply-aura","aura":{"id":"coa:503475:effect:1:aura:23","name":"Curse of Xoroth (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:503475:proc:1:804170","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804170}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804170}]}]},{"id":"coa-17-chainwhip-66-503361","classId":"knight-of-xoroth","dbcSpellId":503361,"name":"Chainwhip","unlockLevel":20,"icon":"/assets/ui/spells/_enslavespell_fire.png","sigil":"CH","description":"ChainwhipRank 210 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 15+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","target":"hostile","range":{"min":0,"max":15},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.31833332833789646,"basePoints":15,"dieSides":3,"pointsPerLevel":0.8712499737739563,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"threat","mode":"flat","amount":200},{"kind":"apply-aura","aura":{"id":"coa:503361:effect:2:aura:27","name":"Chainwhip (Aura 27)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503361,"level":20,"description":"ChainwhipRank 210 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 15+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.31833332833789646,"basePoints":15,"dieSides":3,"pointsPerLevel":0.8712499737739563,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"threat","mode":"flat","amount":200},{"kind":"apply-aura","aura":{"id":"coa:503361:effect:2:aura:27","name":"Chainwhip (Aura 27)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503362,"level":30,"description":"ChainwhipRank 310 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 25+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.46861111323038734,"basePoints":25,"dieSides":5,"pointsPerLevel":1.2087500095367432,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":38},{"kind":"threat","mode":"flat","amount":200},{"kind":"apply-aura","aura":{"id":"coa:503362:effect:2:aura:27","name":"Chainwhip (Aura 27)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503363,"level":40,"description":"ChainwhipRank 410 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 44+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.6627272692593661,"basePoints":44,"dieSides":8,"pointsPerLevel":1.5462499856948853,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"threat","mode":"flat","amount":200},{"kind":"apply-aura","aura":{"id":"coa:503363:effect:2:aura:27","name":"Chainwhip (Aura 27)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503364,"level":50,"description":"ChainwhipRank 510 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 73+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":0.8830128107315455,"basePoints":73,"dieSides":11,"pointsPerLevel":1.8837499618530273,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":58},{"kind":"threat","mode":"flat","amount":200},{"kind":"apply-aura","aura":{"id":"coa:503364:effect:2:aura:27","name":"Chainwhip (Aura 27)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503365,"level":60,"description":"ChainwhipRank 610 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 118+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.1412222374810113,"basePoints":118,"dieSides":12,"pointsPerLevel":2.221250057220459,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"threat","mode":"flat","amount":200},{"kind":"apply-aura","aura":{"id":"coa:503365:effect:2:aura:27","name":"Chainwhip (Aura 27)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503366,"level":70,"description":"ChainwhipRank 710 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 185+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.4612254666347129,"basePoints":185,"dieSides":18,"pointsPerLevel":2.5587499141693115,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":78},{"kind":"threat","mode":"flat","amount":200},{"kind":"apply-aura","aura":{"id":"coa:503366:effect:2:aura:27","name":"Chainwhip (Aura 27)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503367,"level":80,"description":"ChainwhipRank 810 Rage Instant20 sec cooldownSwing a chain at an enemy dealing 283+0+AP*0.45+SP*0.25 Physical damage and silencing them for 2 sec, generating a large amount of threat. If you successfully interrupt an enemy, this will refund 20% of the cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"rage","amount":10},"effects":[{"kind":"damage","coefficient":1.853333336010314,"basePoints":283,"dieSides":28,"pointsPerLevel":2.896250009536743,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"threat","mode":"flat","amount":200},{"kind":"apply-aura","aura":{"id":"coa:503367:effect:2:aura:27","name":"Chainwhip (Aura 27)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}]}]}],"guardian":[{"id":"coa-18-banner-boy-68-705358","classId":"guardian","dbcSpellId":705358,"name":"Banner Boy","unlockLevel":1,"icon":"/assets/ui/spells/achievement_bg_captureflag_wsg.png","sigil":"BB","description":"Banner BoyRank 1Reduces the Energy cost of Banners by 10.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705358:effect:0:aura:107","name":"Banner Boy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705358:effect:1:aura:4","name":"Banner Boy (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705358:effect:2:aura:4","name":"Banner Boy (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705358,"level":1,"description":"Banner BoyRank 1Reduces the Energy cost of Banners by 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705358:effect:0:aura:107","name":"Banner Boy (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705358:effect:1:aura:4","name":"Banner Boy (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705358:effect:2:aura:4","name":"Banner Boy (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-tree-11797","classId":"guardian","dbcSpellId":803683,"name":"Battle Drums","unlockLevel":1,"icon":"/assets/ui/spells/inv_archaeology_70_tauren_drum.png","sigil":"BD","description":"Place down 3 Battle Drums around you for 1 minute. Allies may click on the drums to increase their critical strike chance, haste, damage, and healing done by 10% and causes their damage dealt to trigger a Sound of War for their next 5 instances of damage or 30 seconds.","target":"hostile","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"utility","action":"portal","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","action":"portal","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","action":"portal","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803683,"level":1,"description":"Place down 3 Battle Drums around you for 1 minute. Allies may click on the drums to increase their critical strike chance, haste, damage, and healing done by 10% and causes their damage dealt to trigger a Sound of War for their next 5 instances of damage or 30 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"utility","action":"portal","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","action":"portal","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000},{"kind":"utility","action":"portal","effectType":50,"auraType":0,"miscValue":9000117,"triggerSpellId":0,"durationMs":60000}]}],"talentEntryId":11797},{"id":"guardian-battle-rush","classId":"guardian","dbcSpellId":802197,"name":"Battle Rush","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_skirmisher.png","sigil":"BR","description":"Battle RushRank 1Instant cast30 sec cooldownCharge an enemy, dealing 16+0+AP*0.09996 Physical damage and stunning them for 1 sec.","target":"hostile","range":{"min":8,"max":25},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"damage","coefficient":0.3348214291036129,"basePoints":16,"dieSides":1,"pointsPerLevel":0.07142859697341919,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":22},{"kind":"apply-aura","aura":{"id":"coa:802197:effect:2:aura:12","name":"Battle Rush (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":804653}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":802197,"level":1,"description":"Battle RushRank 1Instant cast30 sec cooldownCharge an enemy, dealing 16+0+AP*0.09996 Physical damage and stunning them for 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"damage","coefficient":0.3348214291036129,"basePoints":16,"dieSides":1,"pointsPerLevel":0.07142859697341919,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":22},{"kind":"apply-aura","aura":{"id":"coa:802197:effect:2:aura:12","name":"Battle Rush (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":804653}]},{"rank":2,"spellId":501546,"level":24,"description":"Battle RushRank 2Instant cast30 sec cooldownCharge an enemy, dealing 31+0+AP*0.09996 Physical damage and stunning them for 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"damage","coefficient":0.30891336742629355,"basePoints":31,"dieSides":1,"pointsPerLevel":0.21428599953651428,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":38},{"kind":"apply-aura","aura":{"id":"coa:501546:effect:2:aura:12","name":"Battle Rush (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":804653}]},{"rank":3,"spellId":501547,"level":40,"description":"Battle RushRank 3Instant cast30 sec cooldownCharge an enemy, dealing 60+0+AP*0.09996 Physical damage and stunning them for 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"damage","coefficient":0.4658009716958711,"basePoints":60,"dieSides":1,"pointsPerLevel":0.42142900824546814,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":54},{"kind":"apply-aura","aura":{"id":"coa:501547:effect:2:aura:12","name":"Battle Rush (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":804653}]},{"rank":4,"spellId":501548,"level":56,"description":"Battle RushRank 4Instant cast30 sec cooldownCharge an enemy, dealing 119+0+AP*0.09996 Physical damage and stunning them for 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"damage","coefficient":0.8172143076507139,"basePoints":119,"dieSides":1,"pointsPerLevel":0.9833329916000366,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":68},{"kind":"apply-aura","aura":{"id":"coa:501548:effect:2:aura:12","name":"Battle Rush (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":804653}]}]},{"id":"coa-tree-30057","classId":"guardian","dbcSpellId":800313,"name":"Brace","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_safeguard.png","sigil":"BR","description":"Brace Instant3 min cooldownFortify your defenses, reducing all damage taken by 50% and gaining immunity to stun effects for 10 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800313:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800313:effect:1:aura:77","name":"Brace (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["stun"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":12,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800313,"level":1,"description":"Brace Instant3 min cooldownFortify your defenses, reducing all damage taken by 50% and gaining immunity to stun effects for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800313:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800313:effect:1:aura:77","name":"Brace (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["stun"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":30057},{"id":"coa-tree-29431","classId":"guardian","dbcSpellId":802188,"name":"Counter Stance","unlockLevel":1,"icon":"/assets/ui/spells/counterstanceguardian.png","sigil":"CS","description":"You automatically parry the next attack against you. Lasts for 5 attacks or 15 seconds. When you expend a charge you deal 275 damage to attackers and heal for 366 + 100% AP health.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802188:effect:0:aura:47","name":"Counter Stance (Aura 47)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802188:effect:1:aura:43","name":"Counter Stance (Aura 43)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802188:effect:2:aura:42","name":"Counter Stance (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802188:proc:2:501535","triggers":["parry","heal","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":501535}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":501535}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802188,"level":1,"description":"You automatically parry the next attack against you. Lasts for 5 attacks or 15 seconds. When you expend a charge you deal 275 damage to attackers and heal for 366 + 100% AP health.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802188:effect:0:aura:47","name":"Counter Stance (Aura 47)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802188:effect:1:aura:43","name":"Counter Stance (Aura 43)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802188:effect:2:aura:42","name":"Counter Stance (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802188:proc:2:501535","triggers":["parry","heal","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":501535}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":501535}]}],"talentEntryId":29431},{"id":"coa-18-crashing-force-69-705328","classId":"guardian","dbcSpellId":705328,"name":"Crashing Force","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_124.png","sigil":"CF","description":"Crashing ForceRank 1Increases the damage of Linebreaker by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705328:effect:0:aura:108","name":"Crashing Force (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705328:effect:1:aura:4","name":"Crashing Force (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705328:effect:2:aura:4","name":"Crashing Force (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705328,"level":1,"description":"Crashing ForceRank 1Increases the damage of Linebreaker by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705328:effect:0:aura:108","name":"Crashing Force (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705328:effect:1:aura:4","name":"Crashing Force (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705328:effect:2:aura:4","name":"Crashing Force (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-18-deflector-67-706337","classId":"guardian","dbcSpellId":706337,"name":"Deflector","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_30.png","sigil":"DE","description":"DeflectorRank 2Reduces the cooldown of your Raise Shield by 2 sec and reduces its Energy cost by 10.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706337:effect:0:aura:107","name":"Deflector (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706337:effect:1:aura:107","name":"Deflector (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706337:effect:2:aura:4","name":"Deflector (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706337,"level":1,"description":"DeflectorRank 2Reduces the cooldown of your Raise Shield by 2 sec and reduces its Energy cost by 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706337:effect:0:aura:107","name":"Deflector (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706337:effect:1:aura:107","name":"Deflector (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706337:effect:2:aura:4","name":"Deflector (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-34422","classId":"guardian","dbcSpellId":706336,"name":"Deflector","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_shieldreflection.png","sigil":"DE","description":"Reduces the cooldown of your Raise Shield by -5 sec and reduces its Energy cost by -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706336:effect:0:aura:107","name":"Deflector (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706336:effect:1:aura:108","name":"Deflector (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706336,"level":1,"description":"Reduces the cooldown of your Raise Shield by -5 sec and reduces its Energy cost by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706336:effect:0:aura:107","name":"Deflector (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706336:effect:1:aura:108","name":"Deflector (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":34422},{"id":"coa-18-dirty-tactics-69-705325","classId":"guardian","dbcSpellId":705325,"name":"Dirty Tactics","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(17)_border.png","sigil":"DT","description":"Dirty TacticsRank 1Increases damage dealt by 1% and Armor penetration by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705325:effect:0:aura:79","name":"Dirty Tactics (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705325:effect:1:aura:280","name":"Dirty Tactics (Aura 280)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"armor-penetration","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":280,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705325:effect:2:aura:4","name":"Dirty Tactics (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705325,"level":1,"description":"Dirty TacticsRank 1Increases damage dealt by 1% and Armor penetration by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705325:effect:0:aura:79","name":"Dirty Tactics (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705325:effect:1:aura:280","name":"Dirty Tactics (Aura 280)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"armor-penetration","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":280,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705325:effect:2:aura:4","name":"Dirty Tactics (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705326,"level":1,"description":"Dirty TacticsRank 2Increases damage dealt by 2% and Armor penetration by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705326:effect:0:aura:79","name":"Dirty Tactics (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705326:effect:1:aura:280","name":"Dirty Tactics (Aura 280)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"armor-penetration","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":280,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705326:effect:2:aura:4","name":"Dirty Tactics (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-18-endurance-68-705339","classId":"guardian","dbcSpellId":705339,"name":"Endurance","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_soulburn_border.png","sigil":"EN","description":"EnduranceRank 1Increases your maximum Energy by 10.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705339:effect:0:aura:35","name":"Endurance (Aura 35)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":35,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705339:effect:1:aura:4","name":"Endurance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705339:effect:2:aura:4","name":"Endurance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705339,"level":1,"description":"EnduranceRank 1Increases your maximum Energy by 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705339:effect:0:aura:35","name":"Endurance (Aura 35)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":35,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705339:effect:1:aura:4","name":"Endurance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705339:effect:2:aura:4","name":"Endurance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705340,"level":1,"description":"EnduranceRank 2Increases your maximum Energy by 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705340:effect:0:aura:35","name":"Endurance (Aura 35)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"flat","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":35,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705340:effect:1:aura:4","name":"Endurance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705340:effect:2:aura:4","name":"Endurance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-34421","classId":"guardian","dbcSpellId":705316,"name":"Energetic","unlockLevel":1,"icon":"/assets/ui/spells/novart_passivemastery_(8)_border.png","sigil":"EN","description":"Restores 5 of your Energy every 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705316:effect:0:aura:24","name":"Energetic (Aura 24)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":3,"triggerSpellId":0},{"kind":"resource","amount":5},{"kind":"apply-aura","aura":{"id":"coa:705316:effect:1:aura:4","name":"Energetic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705316:effect:2:aura:4","name":"Energetic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705316,"level":1,"description":"Restores 5 of your Energy every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705316:effect:0:aura:24","name":"Energetic (Aura 24)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":3,"triggerSpellId":0},{"kind":"resource","amount":5},{"kind":"apply-aura","aura":{"id":"coa:705316:effect:1:aura:4","name":"Energetic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705316:effect:2:aura:4","name":"Energetic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34421},{"id":"coa-18-feats-of-glory-68-803960","classId":"guardian","dbcSpellId":803960,"name":"Feats of Glory","unlockLevel":1,"icon":"/assets/ui/spells/achievement_pvp_legion01.png","sigil":"FO","description":"Feats of GloryRank 117% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803960:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803960:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803960,"level":1,"description":"Feats of GloryRank 117% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803960:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803960:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":2,"spellId":503207,"level":11,"description":"Feats of GloryRank 217% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503207:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503207:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":3,"spellId":503208,"level":21,"description":"Feats of GloryRank 317% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503208:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503208:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":4,"spellId":503209,"level":31,"description":"Feats of GloryRank 417% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503209:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503209:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":5,"spellId":503210,"level":41,"description":"Feats of GloryRank 517% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503210:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503210:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":6,"spellId":503211,"level":51,"description":"Feats of GloryRank 617% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503211:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503211:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":7,"spellId":503212,"level":61,"description":"Feats of GloryRank 717% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503212:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503212:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":8,"spellId":503213,"level":71,"description":"Feats of GloryRank 817% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take heal an ally. Only 1 ally can be affected by Feats of Glory at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503213:effect:0:aura:42","name":"Feats of Glory (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503213:proc:0:803958","triggers":["heal","hit"],"chance":0.18,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]}]},{"id":"coa-18-feats-of-honor-68-803959","classId":"guardian","dbcSpellId":803959,"name":"Feats of Honor","unlockLevel":1,"icon":"/assets/ui/spells/achievement_pvp_legion03.png","sigil":"FO","description":"Feats of HonorRank 117% of base energy Instant cast10 sec cooldownIncrease an ally's Armor by 28 to 39 for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803959:effect:0:aura:42","name":"Feats of Honor (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803959:proc:0:803958","triggers":["damage-taken","hit"],"chance":0.08,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803959,"level":1,"description":"Feats of HonorRank 117% of base energy Instant cast10 sec cooldownIncrease an ally's Armor by 28 to 39 for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803959:effect:0:aura:42","name":"Feats of Honor (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803959:proc:0:803958","triggers":["damage-taken","hit"],"chance":0.08,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":2,"spellId":503204,"level":21,"description":"Feats of HonorRank 217% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503204:effect:0:aura:42","name":"Feats of Honor (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503204:proc:0:803958","triggers":["damage-taken","hit"],"chance":0.08,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":3,"spellId":503205,"level":41,"description":"Feats of HonorRank 317% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503205:effect:0:aura:42","name":"Feats of Honor (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503205:proc:0:803958","triggers":["damage-taken","hit"],"chance":0.08,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]},{"rank":4,"spellId":503206,"level":61,"description":"Feats of HonorRank 417% of base mana Instant cast10 sec cooldownMark an ally for 10 min, giving them a chance to grant Motivation to nearby allies when they take damage. Only 1 ally can be affected by Feats of Honor at a time. Inspiration Increases attack power and spell power by 25, scaling with Spirit for 10 sec. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503206:effect:0:aura:42","name":"Feats of Honor (Aura 42)","disposition":"buff","durationMs":600000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503206:proc:0:803958","triggers":["damage-taken","hit"],"chance":0.08,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803958}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803958}]}]},{"id":"coa-18-feats-of-strength-68-503200","classId":"guardian","dbcSpellId":503200,"name":"Feats of Strength","unlockLevel":1,"icon":"/assets/ui/spells/achievement_pvp_legion04.png","sigil":"FO","description":"Feats of StrengthRank 220 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503200:tooltip-primary-stat","name":"Feats of Strength","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"all-primary","operation":"flat","value":1}]},"sourceEffectType":0,"sourceAuraType":0,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503200,"level":1,"description":"Feats of StrengthRank 220 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503200:tooltip-primary-stat","name":"Feats of Strength","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"all-primary","operation":"flat","value":1}]},"sourceEffectType":0,"sourceAuraType":0,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503201,"level":17,"description":"Feats of StrengthRank 320 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503201:tooltip-primary-stat","name":"Feats of Strength","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"all-primary","operation":"flat","value":1}]},"sourceEffectType":0,"sourceAuraType":0,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503202,"level":34,"description":"Feats of StrengthRank 420 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503202:tooltip-primary-stat","name":"Feats of Strength","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"all-primary","operation":"flat","value":1}]},"sourceEffectType":0,"sourceAuraType":0,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503203,"level":1,"description":"Feats of StrengthRank 520 Energy Instant cast12 sec cooldownEmpower an ally for 15 sec, increasing their primary stat by 0+Spi*0.25, scaling with Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503203:tooltip-primary-stat","name":"Feats of Strength","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"all-primary","operation":"flat","value":1}]},"sourceEffectType":0,"sourceAuraType":0,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-18-flexible-banners-68-705319","classId":"guardian","dbcSpellId":705319,"name":"Flexible Banners","unlockLevel":1,"icon":"/assets/ui/spells/inv_banner_tolbarad_alliance.png","sigil":"FB","description":"Flexible BannersRank 2Reduces the cooldown of Banner abilities by 8 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705319:effect:0:aura:107","name":"Flexible Banners (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-80}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705319:effect:1:aura:4","name":"Flexible Banners (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705319:effect:2:aura:4","name":"Flexible Banners (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705319,"level":1,"description":"Flexible BannersRank 2Reduces the cooldown of Banner abilities by 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705319:effect:0:aura:107","name":"Flexible Banners (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-80}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705319:effect:1:aura:4","name":"Flexible Banners (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705319:effect:2:aura:4","name":"Flexible Banners (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-18-gallant-67-705367","classId":"guardian","dbcSpellId":705367,"name":"Gallant","unlockLevel":1,"icon":"/assets/ui/spells/inv_chest_plate04.png","sigil":"GA","description":"GallantRank 1Increases Stamina by 5% and healing received by 3% and your Raise Shield's cooldown is reduced by 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705367:effect:0:aura:137","name":"Gallant (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705367:effect:1:aura:118","name":"Gallant (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705367:effect:2:aura:107","name":"Gallant (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705367,"level":1,"description":"GallantRank 1Increases Stamina by 5% and healing received by 3% and your Raise Shield's cooldown is reduced by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705367:effect:0:aura:137","name":"Gallant (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705367:effect:1:aura:118","name":"Gallant (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705367:effect:2:aura:107","name":"Gallant (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-34426","classId":"guardian","dbcSpellId":802870,"name":"Grand Entrance","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_stalwartprotector.png","sigil":"GE","description":"Leap into the air, becoming immune to crowd control effects, and then crash back down with incredible speed at your enemy. Upon landing, deal 400% Weapon Damage to enemies in the impact area, plus an additional 611 + 77.25% AP over 6 seconds, ignoring Armor and knocking them into the air.","target":"hostile","range":{"min":0,"max":10},"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":802871,"withValue":1601},{"kind":"movement","movement":"leap","toward":"destination"},{"kind":"trigger-spell","spellId":803293},{"kind":"damage","coefficient":1},{"kind":"movement","movement":"leap","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:803293:effect:1:aura:105","name":"Grand Entrance (Aura 105)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["slow-fall"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":105,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803293:effect:2:aura:147","name":"Grand Entrance (Aura 147)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":147,"miscValue":1735,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802870,"level":1,"description":"Leap into the air, becoming immune to crowd control effects, and then crash back down with incredible speed at your enemy. Upon landing, deal 400% Weapon Damage to enemies in the impact area, plus an additional 611 + 77.25% AP over 6 seconds, ignoring Armor and knocking them into the air.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":802871,"withValue":1601},{"kind":"movement","movement":"leap","toward":"destination"},{"kind":"trigger-spell","spellId":803293},{"kind":"damage","coefficient":1},{"kind":"movement","movement":"leap","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:803293:effect:1:aura:105","name":"Grand Entrance (Aura 105)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["slow-fall"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":105,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803293:effect:2:aura:147","name":"Grand Entrance (Aura 147)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":147,"miscValue":1735,"triggerSpellId":0}]}],"talentEntryId":34426},{"id":"coa-18-hammer-of-honor-67-705374","classId":"guardian","dbcSpellId":705374,"name":"Hammer of Honor","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_1h_kultirasquest_b_01.png","sigil":"HO","description":"Hammer of HonorRank 1Forgehammer applies your Honorguard damage to the target every 1 sec for 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705374:effect:0:aura:107","name":"Hammer of Honor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705374:effect:1:aura:4","name":"Hammer of Honor (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705374:effect:2:aura:4","name":"Hammer of Honor (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705374,"level":1,"description":"Hammer of HonorRank 1Forgehammer applies your Honorguard damage to the target every 1 sec for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705374:effect:0:aura:107","name":"Hammer of Honor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705374:effect:1:aura:4","name":"Hammer of Honor (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705374:effect:2:aura:4","name":"Hammer of Honor (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":705375,"level":1,"description":"Hammer of HonorRank 2Causes Forgehammer to apply your Honorguard damage to the target every 1 sec for 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705375:effect:0:aura:107","name":"Hammer of Honor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705375:effect:1:aura:4","name":"Hammer of Honor (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705375:effect:2:aura:4","name":"Hammer of Honor (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-18-heros-decree-68-803964","classId":"guardian","dbcSpellId":803964,"name":"Hero's Decree","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_scrollunrolled02b.png","sigil":"HS","description":"Hero's DecreeRank 125 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby party members. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803964:effect:0:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803964:effect:1:aura:42","name":"Hero's Decree (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803964:proc:1:803965","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803965}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803965},{"kind":"apply-aura","aura":{"id":"coa:803964:effect:2:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803964,"level":1,"description":"Hero's DecreeRank 125 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby party members. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803964:effect:0:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803964:effect:1:aura:42","name":"Hero's Decree (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803964:proc:1:803965","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803965}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803965},{"kind":"apply-aura","aura":{"id":"coa:803964:effect:2:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}]},{"rank":2,"spellId":503224,"level":21,"description":"Hero's DecreeRank 225 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby allies. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503224:effect:0:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503224:effect:1:aura:42","name":"Hero's Decree (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503224:proc:1:560514","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560514}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560514},{"kind":"apply-aura","aura":{"id":"coa:503224:effect:2:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}]},{"rank":3,"spellId":503225,"level":41,"description":"Hero's DecreeRank 325 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby allies. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503225:effect:0:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503225:effect:1:aura:42","name":"Hero's Decree (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503225:proc:1:560514","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560514}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560514},{"kind":"apply-aura","aura":{"id":"coa:503225:effect:2:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}]},{"rank":4,"spellId":503226,"level":61,"description":"Hero's DecreeRank 425 Energy Instant30 sec cooldownMarks an ally for 15 sec, causing them to become immune to snares, and granting Inspiration to all nearby allies. While marked, any time the ally is hit by a melee attack, the attacker's melee attack power will be reduced by 1+0.0 Points Per Level for 5 sec, scaling with your Spirit. Applies Confidence to the target for 1 min. Confidence Damage taken reduced by 2%. Cannot benefit from Decree spells.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503226:effect:0:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503226:effect:1:aura:42","name":"Hero's Decree (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503226:proc:1:560514","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560514}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560514},{"kind":"apply-aura","aura":{"id":"coa:503226:effect:2:aura:77","name":"Hero's Decree (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}]}]},{"id":"coa-tree-29797","classId":"guardian","dbcSpellId":801774,"name":"Hero's March","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_drum_03.png","sigil":"HS","description":"Beat the drums of war, causing your auto attacks to trigger a Sound of War and increasing your haste by 15% for 15 seconds. In addition, allies within 10 yds of you have a 5% chance to trigger a Sound of War on any damage dealt.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801774:effect:0:aura:42","name":"Hero's March (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801774:proc:0:572612","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572612}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":572612},{"kind":"apply-aura","aura":{"id":"coa:801774:effect:1:aura:138","name":"Hero's March (Aura 138)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801774,"level":1,"description":"Beat the drums of war, causing your auto attacks to trigger a Sound of War and increasing your haste by 15% for 15 seconds. In addition, allies within 10 yds of you have a 5% chance to trigger a Sound of War on any damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801774:effect:0:aura:42","name":"Hero's March (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801774:proc:0:572612","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572612}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":572612},{"kind":"apply-aura","aura":{"id":"coa:801774:effect:1:aura:138","name":"Hero's March (Aura 138)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29797},{"id":"coa-tree-30316","classId":"guardian","dbcSpellId":804661,"name":"Heroic Deeds","unlockLevel":1,"icon":"/assets/ui/spells/ability_paladin_touchedbylight.png","sigil":"HD","description":"Increases the reputation gains of your allies within 30 yds by 5% and reduces damage you take by -3%.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804661:effect:0:aura:156","name":"Heroic Deeds (Aura 156)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":156,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804661:effect:1:aura:87","name":"Heroic Deeds (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804661,"level":1,"description":"Increases the reputation gains of your allies within 30 yds by 5% and reduces damage you take by -3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804661:effect:0:aura:156","name":"Heroic Deeds (Aura 156)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":156,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804661:effect:1:aura:87","name":"Heroic Deeds (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":30316},{"id":"coa-tree-34429","classId":"guardian","dbcSpellId":705377,"name":"Honorable Demeanor","unlockLevel":1,"icon":"/assets/ui/spells/ability_toughness.png","sigil":"HD","description":"Whenever you block an attack your Strength and Stamina are increased by 2% for 10 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705377:effect:0:aura:42","name":"Honorable Demeanor (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705377:proc:0:524931","triggers":["block","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524931}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524931}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705377,"level":1,"description":"Whenever you block an attack your Strength and Stamina are increased by 2% for 10 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705377:effect:0:aura:42","name":"Honorable Demeanor (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705377:proc:0:524931","triggers":["block","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524931}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524931}]}],"talentEntryId":34429},{"id":"coa-18-improved-feats-of-strength-68-705360","classId":"guardian","dbcSpellId":705360,"name":"Improved Feats of Strength","unlockLevel":1,"icon":"/assets/ui/spells/achievement_pvp_legion08.png","sigil":"IF","description":"Improved Feats of StrengthRank 1Increases the effectiveness of Feats of Strength by 5% and the chance to proc its effect by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705360:effect:0:aura:108","name":"Improved Feats of Strength (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705360:effect:1:aura:107","name":"Improved Feats of Strength (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705360:effect:2:aura:4","name":"Improved Feats of Strength (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705360,"level":1,"description":"Improved Feats of StrengthRank 1Increases the effectiveness of Feats of Strength by 5% and the chance to proc its effect by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705360:effect:0:aura:108","name":"Improved Feats of Strength (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705360:effect:1:aura:107","name":"Improved Feats of Strength (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705360:effect:2:aura:4","name":"Improved Feats of Strength (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-18-inspiring-speech-hidden-68-503216","classId":"guardian","dbcSpellId":503216,"name":"Inspiring Speech Hidden","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(77)_border.png","sigil":"IS","description":"Inspiring Speech HiddenRank 4InstantUtter your most Inspiring Speech, reducing an allies damage taken by 0% for until cancelled. Can be used while moving. Also reduces the damage taken of party and raid members within 0|r yds that are affected by Motivation, and cleanses 1 harmful Magic Effect from them.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503216:effect:0:aura:42","name":"Inspiring Speech Hidden (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503216:proc:0:503215","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503215}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503215}],"passive":true,"source":"coa-progression","ranks":[{"rank":4,"spellId":503216,"level":1,"description":"Inspiring Speech HiddenRank 4InstantUtter your most Inspiring Speech, reducing an allies damage taken by 0% for until cancelled. Can be used while moving. Also reduces the damage taken of party and raid members within 0|r yds that are affected by Motivation, and cleanses 1 harmful Magic Effect from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503216:effect:0:aura:42","name":"Inspiring Speech Hidden (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503216:proc:0:503215","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503215}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503215}]}]},{"id":"coa-tree-34419","classId":"guardian","dbcSpellId":705378,"name":"Knight's Advantage","unlockLevel":1,"icon":"/assets/ui/spells/achievement_legionpvp2tier1.png","sigil":"KS","description":"Increases your damage dealt against Humanoids by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705378:effect:0:aura:168","name":"Knight's Advantage (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"arcane","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":64,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705378,"level":1,"description":"Increases your damage dealt against Humanoids by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705378:effect:0:aura:168","name":"Knight's Advantage (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"arcane","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":64,"triggerSpellId":0}]}],"talentEntryId":34419},{"id":"coa-tree-12431","classId":"guardian","dbcSpellId":504151,"name":"Knight's Calling","unlockLevel":1,"icon":"/assets/ui/spells/custom_paladinskill_32_border.png","sigil":"KS","description":"Embrace your calling, restoring 15% of your maximum health and Energy, repeating every 5 sec for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504151:effect:0:aura:20","name":"Knight's Calling (Aura 20)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"health-regeneration","operation":"flat","value":15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":20,"miscValue":0,"triggerSpellId":504693},{"kind":"hot","coefficient":0.10638297872340426,"basePoints":15,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"ticks":2,"intervalMs":5000},{"kind":"apply-aura","aura":{"id":"coa:504151:effect:1:aura:24","name":"Knight's Calling (Aura 24)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":3,"triggerSpellId":0},{"kind":"resource","amount":30}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504151,"level":1,"description":"Embrace your calling, restoring 15% of your maximum health and Energy, repeating every 5 sec for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504151:effect:0:aura:20","name":"Knight's Calling (Aura 20)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"health-regeneration","operation":"flat","value":15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":20,"miscValue":0,"triggerSpellId":504693},{"kind":"hot","coefficient":0.10638297872340426,"basePoints":15,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"ticks":2,"intervalMs":5000},{"kind":"apply-aura","aura":{"id":"coa:504151:effect:1:aura:24","name":"Knight's Calling (Aura 24)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":3,"triggerSpellId":0},{"kind":"resource","amount":30}]}],"talentEntryId":12431},{"id":"coa-tree-30433","classId":"guardian","dbcSpellId":704150,"name":"Light Nets","unlockLevel":1,"icon":"/assets/ui/spells/hunter_pvp_trackersnet.png","sigil":"LN","description":"Increases the range of your Net Throw by 15 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704150:effect:0:aura:107","name":"Light Nets (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704150,"level":1,"description":"Increases the range of your Net Throw by 15 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704150:effect:0:aura:107","name":"Light Nets (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":30433},{"id":"coa-tree-29970","classId":"guardian","dbcSpellId":300543,"name":"Make Room! I'm Here.","unlockLevel":1,"icon":"/assets/ui/spells/achievement_featsofstrength_gladiator_08.png","sigil":"MR","description":"Increases the duration of Standard of Valiance and Broad Sweep by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300543:effect:0:aura:108","name":"Make Room! I'm Here. (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300543,"level":1,"description":"Increases the duration of Standard of Valiance and Broad Sweep by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300543:effect:0:aura:108","name":"Make Room! I'm Here. (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29970},{"id":"coa-tree-34404","classId":"guardian","dbcSpellId":705315,"name":"Master of Arms","unlockLevel":1,"icon":"/assets/ui/spells/novart_passivemastery_(35)_border.png","sigil":"MO","description":"Your Turn the Blade now guarantees you to parry 1 additional attack and the duration of its parry window is increased by 1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705315:effect:0:aura:107","name":"Master of Arms (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705315:effect:1:aura:107","name":"Master of Arms (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705315,"level":1,"description":"Your Turn the Blade now guarantees you to parry 1 additional attack and the duration of its parry window is increased by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705315:effect:0:aura:107","name":"Master of Arms (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705315:effect:1:aura:107","name":"Master of Arms (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":34404},{"id":"coa-tree-34415","classId":"guardian","dbcSpellId":503532,"name":"Myrmidon","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_challange.png","sigil":"MY","description":"Removes the Energy cost of Glorious Arena and increases its damage dealt by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503532:effect:0:aura:108","name":"Myrmidon (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503532:effect:1:aura:108","name":"Myrmidon (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503532,"level":1,"description":"Removes the Energy cost of Glorious Arena and increases its damage dealt by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503532:effect:0:aura:108","name":"Myrmidon (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503532:effect:1:aura:108","name":"Myrmidon (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34415},{"id":"coa-tree-29430","classId":"guardian","dbcSpellId":802304,"name":"Net Throw","unlockLevel":1,"icon":"/assets/ui/spells/ability_ensnare.png","sigil":"NT","description":"Toss a weighted net at an enemy that roots them for 4 seconds. While active, the target cannot dodge attacks.","target":"hostile","range":{"min":0,"max":15},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802304:effect:0:aura:26","name":"Net Throw (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802304:effect:1:aura:308","name":"Net Throw (Aura 308)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802304:effect:2:aura:49","name":"Net Throw (Aura 49)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":-9.98}]},"sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802304,"level":1,"description":"Toss a weighted net at an enemy that roots them for 4 seconds. While active, the target cannot dodge attacks.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802304:effect:0:aura:26","name":"Net Throw (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802304:effect:1:aura:308","name":"Net Throw (Aura 308)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802304:effect:2:aura:49","name":"Net Throw (Aura 49)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":-9.98}]},"sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29430},{"id":"coa-tree-7311","classId":"guardian","dbcSpellId":802296,"name":"Pit Fighter","unlockLevel":1,"icon":"/assets/ui/spells/spell_warrior_gladiatorstance.png","sigil":"PF","description":"Increases the movement speed slow of your Standard of Valiance by -15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802296:effect:0:aura:4","name":"Pit Fighter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802296:effect:1:aura:107","name":"Pit Fighter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":802296,"level":1,"description":"Increases the movement speed slow of your Standard of Valiance by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802296:effect:0:aura:4","name":"Pit Fighter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802296:effect:1:aura:107","name":"Pit Fighter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":7311},{"id":"coa-tree-34403","classId":"guardian","dbcSpellId":801219,"name":"Press the Attack","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(50)_border.png","sigil":"PT","description":"Raise your shield and press the attack, dealing 75% Weapon Damage plus 83 to enemies in front of you and draining 10 Energy every 1 sec. Lasts 5 seconds. While active you gain 100% increased block chance and you may block, dodge, and parry while channeling.","target":"hostile","range":{"min":0,"max":5},"castMode":"channel","castTimeMs":5000,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801219:effect:0:aura:51","name":"Press the Attack (Aura 51)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801219:effect:1:aura:263","name":"Press the Attack (Aura 263)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":263,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801219:effect:2:aura:23","name":"Press the Attack (Aura 23)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801219:proc:2:801218","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801218}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801218}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801219,"level":1,"description":"Raise your shield and press the attack, dealing 75% Weapon Damage plus 83 to enemies in front of you and draining 10 Energy every 1 sec. Lasts 5 seconds. While active you gain 100% increased block chance and you may block, dodge, and parry while channeling.","castMode":"channel","castTimeMs":5000,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801219:effect:0:aura:51","name":"Press the Attack (Aura 51)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801219:effect:1:aura:263","name":"Press the Attack (Aura 263)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":263,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801219:effect:2:aura:23","name":"Press the Attack (Aura 23)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801219:proc:2:801218","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801218}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801218}]}],"talentEntryId":34403},{"id":"coa-tree-6817","classId":"guardian","dbcSpellId":300542,"name":"Press the Line!","unlockLevel":1,"icon":"/assets/ui/spells/5_archerskill20_border.png","sigil":"PT","description":"While Line Formation is active, your movement speed cannot be reduced below 115%, but its cost is increased by 30 Energy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300542:effect:0:aura:107","name":"Press the Line! (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300542:effect:1:aura:107","name":"Press the Line! (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300542,"level":1,"description":"While Line Formation is active, your movement speed cannot be reduced below 115%, but its cost is increased by 30 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300542:effect:0:aura:107","name":"Press the Line! (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300542:effect:1:aura:107","name":"Press the Line! (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":6817},{"id":"coa-18-pulverize-69-800311","classId":"guardian","dbcSpellId":800311,"name":"Pulverize","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_shieldbash.png","sigil":"PU","description":"PulverizeRank 145 Energy InstantRequires Shields Slam an enemy with your shield, dealing 3+0+AP*0.355 Physical damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.08333333333333333,"basePoints":3,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800311,"level":1,"description":"PulverizeRank 145 Energy InstantRequires Shields Slam an enemy with your shield, dealing 3+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.08333333333333333,"basePoints":3,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6}]},{"rank":2,"spellId":802439,"level":8,"description":"PulverizeRank 245 Energy InstantRequires Shields Slam an enemy with your shield, dealing 8+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.13043478260869565,"basePoints":8,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":14}]},{"rank":3,"spellId":802440,"level":16,"description":"PulverizeRank 345 Energy InstantRequires Shields Slam an enemy with your shield, dealing 28+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.3225806451612903,"basePoints":28,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22}]},{"rank":4,"spellId":802441,"level":24,"description":"PulverizeRank 445 Energy InstantRequires Shields Slam an enemy with your shield, dealing 47+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.4188034188034188,"basePoints":47,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":5,"spellId":802442,"level":32,"description":"PulverizeRank 545 Energy InstantRequires Shields Slam an enemy with your shield, dealing 77+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.549645390070922,"basePoints":77,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":6,"spellId":802443,"level":40,"description":"PulverizeRank 645 Energy InstantRequires Shields Slam an enemy with your shield, dealing 122+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":0.7424242424242424,"basePoints":122,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48}]},{"rank":7,"spellId":573286,"level":50,"description":"PulverizeRank 745 Energy InstantRequires Shields Slam an enemy with your shield, dealing 196+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1.0076923076923077,"basePoints":196,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":58}]},{"rank":8,"spellId":573292,"level":60,"description":"PulverizeRank 845 Energy InstantRequires Shields Slam an enemy with your shield, dealing 314+0+AP*0.355 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":45},"effects":[{"kind":"damage","coefficient":1.3955555555555557,"basePoints":314,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68}]}]},{"id":"guardian-raise-shield","classId":"guardian","dbcSpellId":500168,"name":"Raise Shield","unlockLevel":1,"icon":"/assets/ui/spells/custom_17_shield_border.png","sigil":"RS","description":"Raise your shield, increasing your block chance$?s92105[ $s1%][] and block value by $?s92105[$500613s1%][$s1%] for $d. While active, blocking an attack restores $500493s1 Energy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500168:effect:0:aura:51","name":"Raise Shield (Aura 51)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500168:effect:1:aura:42","name":"Raise Shield (Aura 42)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500168:proc:1:500493","triggers":["block","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500493}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500493},{"kind":"apply-aura","aura":{"id":"coa:500168:effect:2:aura:150","name":"Raise Shield (Aura 150)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":150,"miscValue":0,"triggerSpellId":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":500168,"level":1,"description":"Raise your shield, increasing your block chance$?s92105[ $s1%][] and block value by $?s92105[$500613s1%][$s1%] for $d. While active, blocking an attack restores $500493s1 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500168:effect:0:aura:51","name":"Raise Shield (Aura 51)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500168:effect:1:aura:42","name":"Raise Shield (Aura 42)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500168:proc:1:500493","triggers":["block","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500493}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500493},{"kind":"apply-aura","aura":{"id":"coa:500168:effect:2:aura:150","name":"Raise Shield (Aura 150)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":150,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29996","classId":"guardian","dbcSpellId":801121,"name":"Recuperation","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_shielded.png","sigil":"RE","description":"Taking Physical damage or blocking a physical attack now restores 2 Energy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801121:effect:0:aura:42","name":"Recuperation (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:801121:proc:0:803135","triggers":["block","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803135}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803135}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801121,"level":1,"description":"Taking Physical damage or blocking a physical attack now restores 2 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801121:effect:0:aura:42","name":"Recuperation (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:801121:proc:0:803135","triggers":["block","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803135}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803135}]}],"talentEntryId":29996},{"id":"coa-tree-6363","classId":"guardian","dbcSpellId":300927,"name":"Reflective Shield","unlockLevel":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0003s_0000_fire_border.png","sigil":"RS","description":"Raise your shield and reflect the next harmful spell cast on you within 3 seconds. While active, being hit by a spell restores 20 Energy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300927:effect:0:aura:28","name":"Reflective Shield (Aura 28)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300927:effect:1:aura:42","name":"Reflective Shield (Aura 42)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:300927:proc:1:500256","triggers":["cast","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500256}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500256}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":300927,"level":1,"description":"Raise your shield and reflect the next harmful spell cast on you within 3 seconds. While active, being hit by a spell restores 20 Energy.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300927:effect:0:aura:28","name":"Reflective Shield (Aura 28)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300927:effect:1:aura:42","name":"Reflective Shield (Aura 42)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:300927:proc:1:500256","triggers":["cast","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500256}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500256}]}],"talentEntryId":6363},{"id":"coa-tree-29427","classId":"guardian","dbcSpellId":804892,"name":"Refuse To Die","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_rogue_sturdyrecuperate.png","sigil":"RT","description":"Casting Advance now resets the cooldown of Raise Shield.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804892:effect:0:aura:42","name":"Refuse To Die (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804892:proc:0:807191","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807191}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807191}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804892,"level":1,"description":"Casting Advance now resets the cooldown of Raise Shield.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804892:effect:0:aura:42","name":"Refuse To Die (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804892:proc:0:807191","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807191}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807191}]}],"talentEntryId":29427},{"id":"coa-tree-34425","classId":"guardian","dbcSpellId":705343,"name":"Relentless","unlockLevel":1,"icon":"/assets/ui/spells/garrison_building_salvageyard.png","sigil":"RE","description":"Your Pulverizes or Rams now ignores -15% of the target's Armor.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705343:effect:0:aura:108","name":"Relentless (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":13,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705343:effect:1:aura:4","name":"Relentless (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705343,"level":1,"description":"Your Pulverizes or Rams now ignores -15% of the target's Armor.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705343:effect:0:aura:108","name":"Relentless (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":13,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705343:effect:1:aura:4","name":"Relentless (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34425},{"id":"coa-tree-6818","classId":"guardian","dbcSpellId":706806,"name":"Resolve","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_gladiatorsresolve.png","sigil":"RE","description":"Increases the duration of your Raise Shield by 1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706806:effect:0:aura:107","name":"Resolve (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706806:effect:1:aura:107","name":"Resolve (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706806,"level":1,"description":"Increases the duration of your Raise Shield by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706806:effect:0:aura:107","name":"Resolve (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706806:effect:1:aura:107","name":"Resolve (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":6818},{"id":"coa-tree-29639","classId":"guardian","dbcSpellId":705370,"name":"Shield Wall","unlockLevel":1,"icon":"/assets/ui/spells/ability_defend.png","sigil":"SW","description":"Increases your Armor contribution from your shield by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705370:effect:0:aura:142","name":"Shield Wall (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705370:effect:1:aura:4","name":"Shield Wall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705370:effect:2:aura:4","name":"Shield Wall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705370,"level":1,"description":"Increases your Armor contribution from your shield by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705370:effect:0:aura:142","name":"Shield Wall (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705370:effect:1:aura:4","name":"Shield Wall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705370:effect:2:aura:4","name":"Shield Wall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":707814,"level":1,"description":"Increases your Armor contribution from your shield by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707814:effect:0:aura:142","name":"Shield Wall (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707814:effect:1:aura:4","name":"Shield Wall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707814:effect:2:aura:4","name":"Shield Wall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29639},{"id":"coa-tree-29972","classId":"guardian","dbcSpellId":802198,"name":"Shrug It Off","unlockLevel":1,"icon":"/assets/ui/spells/5_warriorskill18_border.png","sigil":"SI","description":"Instantly escape the effects of any root or slow and become immune to movement slowing effects for 3 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dispel-mechanic","mechanic":7,"maxCount":10},{"kind":"dispel-mechanic","mechanic":11,"maxCount":10},{"kind":"apply-aura","aura":{"id":"coa:802198:effect:2:aura:77","name":"Shrug It Off (Aura 77)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802198,"level":1,"description":"Instantly escape the effects of any root or slow and become immune to movement slowing effects for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"dispel-mechanic","mechanic":7,"maxCount":10},{"kind":"dispel-mechanic","mechanic":11,"maxCount":10},{"kind":"apply-aura","aura":{"id":"coa:802198:effect:2:aura:77","name":"Shrug It Off (Aura 77)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":29972},{"id":"coa-tree-29429","classId":"guardian","dbcSpellId":806134,"name":"Standard Bearer","unlockLevel":1,"icon":"/assets/ui/spells/inv_banner_02.png","sigil":"SB","description":"Increases the range of Standards by 10 yds and increases the effectiveness of your Honor by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806134:effect:0:aura:107","name":"Standard Bearer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806134:effect:1:aura:108","name":"Standard Bearer (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806134,"level":1,"description":"Increases the range of Standards by 10 yds and increases the effectiveness of your Honor by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806134:effect:0:aura:107","name":"Standard Bearer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806134:effect:1:aura:108","name":"Standard Bearer (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":29429},{"id":"coa-tree-29796","classId":"guardian","dbcSpellId":500263,"name":"Standard of Rallying","unlockLevel":1,"icon":"/assets/ui/spells/standard_valiance.png","sigil":"SO","description":"Throw down a Standard of Rallying for 5 minutes, reducing damage taken by -3% and the duration of stun effects on them by -30% on all allies within 30 yds.","target":"hostile","range":{"min":0,"max":25},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"summon","creatureId":50055,"coefficient":0.08,"durationMs":300000},{"kind":"trigger-spell","spellId":801504},{"kind":"trigger-spell","spellId":801503}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500263,"level":1,"description":"Throw down a Standard of Rallying for 5 minutes, reducing damage taken by -3% and the duration of stun effects on them by -30% on all allies within 30 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"summon","creatureId":50055,"coefficient":0.08,"durationMs":300000},{"kind":"trigger-spell","spellId":801504},{"kind":"trigger-spell","spellId":801503}]}],"talentEntryId":29796},{"id":"coa-tree-34427","classId":"guardian","dbcSpellId":706639,"name":"Sturdy","unlockLevel":1,"icon":"/assets/ui/spells/novart_shield_(3)_border.png","sigil":"ST","description":"Increases your maximum health by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706639:effect:0:aura:133","name":"Sturdy (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706639,"level":1,"description":"Increases your maximum health by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706639:effect:0:aura:133","name":"Sturdy (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34427},{"id":"coa-18-sturdy-constitution-68-706335","classId":"guardian","dbcSpellId":706335,"name":"Sturdy Constitution","unlockLevel":1,"icon":"/assets/ui/spells/achievement_legionpvp6tier2.png","sigil":"SC","description":"Sturdy ConstitutionRank 2Increases Strength and Stamina by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706335:effect:0:aura:137","name":"Sturdy Constitution (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706335:effect:1:aura:137","name":"Sturdy Constitution (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706335:effect:2:aura:4","name":"Sturdy Constitution (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706335,"level":1,"description":"Sturdy ConstitutionRank 2Increases Strength and Stamina by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706335:effect:0:aura:137","name":"Sturdy Constitution (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706335:effect:1:aura:137","name":"Sturdy Constitution (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706335:effect:2:aura:4","name":"Sturdy Constitution (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-4021","classId":"guardian","dbcSpellId":92107,"name":"Tempo","unlockLevel":1,"icon":"/assets/ui/spells/achievement_guildperk_everyones_a_hero.png","sigil":"TE","description":"Level 10 Passive Casting Ballads now grants Tempo, stacking 3 times. Upon reaching 3 stacks of Tempo, you consume them to perform a Sound of War, striking all enemies within 8 yds for 71 + 12.74% AP Magic damage.Tempo (Proc)Critical strike chance increased by 2%, stacking 3 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92107:effect:0:aura:4","name":"Tempo (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92107:effect:1:aura:42","name":"Tempo (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92107:proc:1:572611","triggers":["crit","cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572611}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":0,"triggerSpellId":572611}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92107,"level":1,"description":"Level 10 Passive Casting Ballads now grants Tempo, stacking 3 times. Upon reaching 3 stacks of Tempo, you consume them to perform a Sound of War, striking all enemies within 8 yds for 71 + 12.74% AP Magic damage.Tempo (Proc)Critical strike chance increased by 2%, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92107:effect:0:aura:4","name":"Tempo (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92107:effect:1:aura:42","name":"Tempo (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92107:proc:1:572611","triggers":["crit","cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572611}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":0,"triggerSpellId":572611}]}],"talentEntryId":4021},{"id":"coa-tree-34405","classId":"guardian","dbcSpellId":807346,"name":"Thick Shields","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_1h_newplayer_a_01.png","sigil":"TS","description":"Increases your block value by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807346:effect:0:aura:150","name":"Thick Shields (Aura 150)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":150,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807346,"level":1,"description":"Increases your block value by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807346:effect:0:aura:150","name":"Thick Shields (Aura 150)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":150,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34405},{"id":"coa-tree-29971","classId":"guardian","dbcSpellId":704513,"name":"Unstoppable","unlockLevel":1,"icon":"/assets/ui/spells/_d3furiouscharge.png","sigil":"UN","description":"Reduces the cooldown of Battle Rush by -5 sec and Advance by -30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704513:effect:0:aura:107","name":"Unstoppable (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704513:effect:1:aura:107","name":"Unstoppable (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704513,"level":1,"description":"Reduces the cooldown of Battle Rush by -5 sec and Advance by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704513:effect:0:aura:107","name":"Unstoppable (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704513:effect:1:aura:107","name":"Unstoppable (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":29971},{"id":"coa-tree-30100","classId":"guardian","dbcSpellId":524694,"name":"Valiant Warrior","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_shielded.png","sigil":"VW","description":"Critical strikes with Ram now have a 50% chance to strike again for 100% of the damage dealt.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524694:effect:0:aura:354","name":"Valiant Warrior (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":524091}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524694,"level":1,"description":"Critical strikes with Ram now have a 50% chance to strike again for 100% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524694:effect:0:aura:354","name":"Valiant Warrior (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":524091}]}],"talentEntryId":30100},{"id":"coa-tree-30059","classId":"guardian","dbcSpellId":705330,"name":"Warstopper","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_thunderstruck.png","sigil":"WA","description":"Reduces the Energy cost of Standard of Valiance by -20.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705330:effect:0:aura:107","name":"Warstopper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705330,"level":1,"description":"Reduces the Energy cost of Standard of Valiance by -20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705330:effect:0:aura:107","name":"Warstopper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":30059},{"id":"guardian-ram","classId":"guardian","dbcSpellId":802284,"name":"Ram","unlockLevel":2,"icon":"/assets/ui/spells/novart_passivemastery_(11)_border.png","sigil":"RA","description":"RamRank 130 Energy Instant10 sec cooldownRequires Shields Ram an enemy with your shield, dealing 9+0+AP*0.385 Physical damage, scaling with your block value, and reduces the target's Armor by 4% for 20 sec, stacking up to 5 times.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.18627450980392157,"basePoints":9,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":8},{"kind":"trigger-spell","spellId":807179},{"kind":"apply-aura","aura":{"id":"coa:807179:effect:0:aura:22","name":"Puncture (Aura 22)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":-4}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":802284,"level":2,"description":"RamRank 130 Energy Instant10 sec cooldownRequires Shields Ram an enemy with your shield, dealing 9+0+AP*0.385 Physical damage, scaling with your block value, and reduces the target's Armor by 4% for 20 sec, stacking up to 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.18627450980392157,"basePoints":9,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":8},{"kind":"trigger-spell","spellId":807179},{"kind":"apply-aura","aura":{"id":"coa:807179:effect:0:aura:22","name":"Puncture (Aura 22)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":-4}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-18-reprisal-69-800316","classId":"guardian","dbcSpellId":800316,"name":"Reprisal","unlockLevel":6,"icon":"/assets/ui/spells/inv_sword_29.png","sigil":"RE","description":"ReprisalRank 1InstantRequires Melee Weapon 2 Charges, 6 sec recharge Counterattack an enemy, dealing 105% Weapon Damage plus 12 and restoring 20 Energy. Only usable after blocking an attack.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.05}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800316,"level":6,"description":"ReprisalRank 1InstantRequires Melee Weapon 2 Charges, 6 sec recharge Counterattack an enemy, dealing 105% Weapon Damage plus 12 and restoring 20 Energy. Only usable after blocking an attack.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.05}]}]},{"id":"coa-18-broad-sweep-69-805150","classId":"guardian","dbcSpellId":805150,"name":"Broad Sweep","unlockLevel":8,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BS","description":"Broad SweepRank 150 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 70% Weapon Damage plus 6 and reduces their attack power by 25 for 10 sec.","target":"hostile","range":{"min":0,"max":0},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.7},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805150:effect:2:aura:344","name":"Broad Sweep (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805150,"level":8,"description":"Broad SweepRank 150 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 70% Weapon Damage plus 6 and reduces their attack power by 25 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.7},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805150:effect:2:aura:344","name":"Broad Sweep (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":504177,"level":16,"description":"Broad SweepRank 250 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 70% Weapon Damage plus 9 and reduces their attack power by 50 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.7},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504177:effect:2:aura:344","name":"Broad Sweep (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":504178,"level":24,"description":"Broad SweepRank 350 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 75% Weapon Damage plus 14 and reduces their attack power by 95 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.75},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504178:effect:2:aura:344","name":"Broad Sweep (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":504179,"level":32,"description":"Broad SweepRank 450 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 75% Weapon Damage plus 23 and reduces their attack power by 140 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.75},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504179:effect:2:aura:344","name":"Broad Sweep (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":504180,"level":40,"description":"Broad SweepRank 550 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 80% Weapon Damage plus 32 and reduces their attack power by 175 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.8},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504180:effect:2:aura:344","name":"Broad Sweep (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":504181,"level":48,"description":"Broad SweepRank 650 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 80% Weapon Damage plus 43 and reduces their attack power by 200 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.8},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504181:effect:2:aura:344","name":"Broad Sweep (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":504182,"level":56,"description":"Broad SweepRank 750 Energy InstantRequires Melee Weapon Swing at up to 4 enemies in front of you, dealing 85% Weapon Damage plus 56 and reduces their attack power by 225 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.85},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504182:effect:2:aura:344","name":"Broad Sweep (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-18-ballad-of-the-conqueror-68-801776","classId":"guardian","dbcSpellId":801776,"name":"Ballad of the Conqueror","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_drum_06.png","sigil":"BO","description":"Ballad of the ConquerorRank 140 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 12+0+AP*.3 Magic damage to an enemy, ignoring resistances.","target":"hostile","range":{"min":0,"max":5},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.17333333333333334,"basePoints":12,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801776,"level":10,"description":"Ballad of the ConquerorRank 140 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 12+0+AP*.3 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.17333333333333334,"basePoints":12,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501068,"level":16,"description":"Ballad of the ConquerorRank 240 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 22+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.24193548387096775,"basePoints":22,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501069,"level":22,"description":"Ballad of the ConquerorRank 340 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 32+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.2972972972972973,"basePoints":32,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501070,"level":28,"description":"Ballad of the ConquerorRank 440 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 48+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.4069767441860465,"basePoints":48,"dieSides":10,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501071,"level":34,"description":"Ballad of the ConquerorRank 540 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 70+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.5204081632653061,"basePoints":70,"dieSides":14,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501072,"level":40,"description":"Ballad of the ConquerorRank 640 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 98+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.6515151515151515,"basePoints":98,"dieSides":20,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501073,"level":46,"description":"Ballad of the ConquerorRank 740 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 137+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.8224043715846995,"basePoints":137,"dieSides":28,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501074,"level":52,"description":"Ballad of the ConquerorRank 840 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 191+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.044776119402985,"basePoints":191,"dieSides":39,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":574340,"level":58,"description":"Ballad of the ConquerorRank 940 Energy InstantPlay the Ballad of the Conqueror, instantly dealing 266+0+AP*0.29988 Magic damage to an enemy, ignoring resistances.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.3356164383561644,"basePoints":266,"dieSides":54,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"trigger-spell","spellId":524797},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-18-ballad-of-the-dragonslayer-68-801772","classId":"guardian","dbcSpellId":801772,"name":"Ballad of the Dragonslayer","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_drum_07.png","sigil":"BO","description":"Ballad of the DragonslayerRank 150 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 7+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 25 for 10 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.1,"basePoints":7,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"apply-aura","aura":{"id":"coa:801772:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801772,"level":10,"description":"Ballad of the DragonslayerRank 150 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 7+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 25 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.1,"basePoints":7,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"apply-aura","aura":{"id":"coa:801772:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501066,"level":16,"description":"Ballad of the DragonslayerRank 250 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 13+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 40 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.13978494623655913,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501066:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501067,"level":22,"description":"Ballad of the DragonslayerRank 350 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 19+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 70 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.17567567567567569,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:501067:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":17,"triggerSpellId":0}]},{"rank":4,"spellId":572717,"level":28,"description":"Ballad of the DragonslayerRank 450 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 29+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 100 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.2441860465116279,"basePoints":29,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:572717:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":17,"triggerSpellId":0}]},{"rank":5,"spellId":572718,"level":34,"description":"Ballad of the DragonslayerRank 550 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 43+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 125 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.3163265306122449,"basePoints":43,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"apply-aura","aura":{"id":"coa:572718:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":17,"triggerSpellId":0}]},{"rank":6,"spellId":572719,"level":40,"description":"Ballad of the DragonslayerRank 650 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 59+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 160 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.39090909090909093,"basePoints":59,"dieSides":12,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"apply-aura","aura":{"id":"coa:572719:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":17,"triggerSpellId":0}]},{"rank":7,"spellId":574341,"level":46,"description":"Ballad of the DragonslayerRank 750 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 83+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 180 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.4972677595628415,"basePoints":83,"dieSides":17,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:574341:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":17,"triggerSpellId":0}]},{"rank":8,"spellId":574363,"level":52,"description":"Ballad of the DragonslayerRank 850 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 114+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 200 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.6218905472636815,"basePoints":114,"dieSides":23,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:574363:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":17,"triggerSpellId":0}]},{"rank":9,"spellId":574364,"level":58,"description":"Ballad of the DragonslayerRank 950 Energy InstantPlay the Ballad of the Dragonslayer, instantly dealing 158+0+AP*0.179928 Magic damage to all nearby enemies, ignoring resistances, and reducing their attack power by 225 for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"damage","coefficient":0.7922374429223744,"basePoints":158,"dieSides":32,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"apply-aura","aura":{"id":"coa:574364:effect:1:aura:344","name":"Ballad of the Dragonslayer (Aura 344)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":17,"triggerSpellId":0}]}]},{"id":"coa-tree-4019","classId":"guardian","dbcSpellId":92105,"name":"Footman's Calling","unlockLevel":10,"icon":"/assets/ui/spells/_human_06.png","sigil":"FS","description":"Level 10 Passive Your damage taken is reduced by -10% while Tower Formation or Line Formation is active. In addition, your threat generated from Physical Damage dealt is increased significantly while Tower Formation or Line Formation is active.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92105:effect:0:aura:107","name":"Footman's Calling (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92105,"level":10,"description":"Level 10 Passive Your damage taken is reduced by -10% while Tower Formation or Line Formation is active. In addition, your threat generated from Physical Damage dealt is increased significantly while Tower Formation or Line Formation is active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92105:effect:0:aura:107","name":"Footman's Calling (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":4019},{"id":"coa-tree-4020","classId":"guardian","dbcSpellId":92106,"name":"Glory","unlockLevel":10,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0001s_0000_warrior_border.png","sigil":"GL","description":"Level 10 Passive Your Ram now grants you a stack of Glory for 30 seconds. At 3 stacks, your next Ram within 30 seconds deals 150% increased damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92106:effect:0:aura:42","name":"Glory (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92106:proc:0:802302","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802302}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":802302},{"kind":"apply-aura","aura":{"id":"coa:92106:effect:1:aura:23","name":"Glory (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92106:proc:1:542238","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":542238}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":542238},{"kind":"apply-aura","aura":{"id":"coa:92106:effect:2:aura:23","name":"Glory (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92106:proc:2:542265","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":542265}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":542265}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92106,"level":10,"description":"Level 10 Passive Your Ram now grants you a stack of Glory for 30 seconds. At 3 stacks, your next Ram within 30 seconds deals 150% increased damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92106:effect:0:aura:42","name":"Glory (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92106:proc:0:802302","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802302}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":802302},{"kind":"apply-aura","aura":{"id":"coa:92106:effect:1:aura:23","name":"Glory (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92106:proc:1:542238","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":542238}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":542238},{"kind":"apply-aura","aura":{"id":"coa:92106:effect:2:aura:23","name":"Glory (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92106:proc:2:542265","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":542265}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":542265}]}],"talentEntryId":4020},{"id":"guardian-heavy-blow","classId":"guardian","dbcSpellId":803129,"name":"Heavy Blow","unlockLevel":11,"icon":"/assets/ui/spells/spell_paladin_hammerofwrath.png","sigil":"HB","description":"Heavy BlowRank 1Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 23+0+AP*0.45 High Threat Physical damage, scaling with defense rating.","target":"hostile","range":{"min":0,"max":5},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":23,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0.75,"sourceLevel":11,"maxScalingLevel":16},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:803129:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:803129:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":803129,"level":11,"description":"Heavy BlowRank 1Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 23+0+AP*0.45 High Threat Physical damage, scaling with defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":23,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0.75,"sourceLevel":11,"maxScalingLevel":16},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:803129:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:803129:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]},{"rank":2,"spellId":503119,"level":18,"description":"Heavy BlowRank 2Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 44+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.45454545454545453,"basePoints":44,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:503119:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503119:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]},{"rank":3,"spellId":503120,"level":26,"description":"Heavy BlowRank 3Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 68+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.573170731707317,"basePoints":68,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:503120:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503120:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]},{"rank":4,"spellId":503121,"level":34,"description":"Heavy BlowRank 4Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 106+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.7517006802721088,"basePoints":106,"dieSides":10,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:503121:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503121:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]},{"rank":5,"spellId":503122,"level":42,"description":"Heavy BlowRank 5Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 141+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.8742690058479532,"basePoints":141,"dieSides":18,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:503122:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503122:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]},{"rank":6,"spellId":503123,"level":50,"description":"Heavy BlowRank 6Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 226+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1.2282051282051283,"basePoints":226,"dieSides":28,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:503123:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503123:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]},{"rank":7,"spellId":503124,"level":58,"description":"Heavy BlowRank 7Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 282+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1.3675799086757991,"basePoints":282,"dieSides":36,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:503124:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503124:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]},{"rank":8,"spellId":503125,"level":60,"description":"Heavy BlowRank 8Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 357+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1.6866666666666668,"basePoints":357,"dieSides":46,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:503125:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503125:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]},{"rank":9,"spellId":503126,"level":68,"description":"Heavy BlowRank 9Instant10 sec cooldownRequires Melee Weapon Smash an enemy and enemies behind them in a line, dealing 564+0+AP*0.37 High Threat Physical damage, scaling with your defense rating.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":2.4076305220883536,"basePoints":564,"dieSides":72,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76},{"kind":"threat","mode":"flat","amount":100},{"kind":"apply-aura","aura":{"id":"coa:503126:effect:2:aura:23","name":"Heavy Blow (Aura 23)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503126:proc:2:803131","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803131}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803131}]}]},{"id":"coa-18-brace-67-501528","classId":"guardian","dbcSpellId":501528,"name":"Brace","unlockLevel":14,"icon":"/assets/ui/spells/ability_warrior_safeguard.png","sigil":"BR","description":"BraceRank 2999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501528:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802892},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501528:effect:2:aura:37","name":"Brace (Aura 37)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501528,"level":14,"description":"BraceRank 2999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501528:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802892},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501528:effect:2:aura:37","name":"Brace (Aura 37)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}]},{"rank":3,"spellId":501529,"level":21,"description":"BraceRank 3999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501529:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802892},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501529:effect:2:aura:37","name":"Brace (Aura 37)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}]},{"rank":4,"spellId":501530,"level":31,"description":"BraceRank 4999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501530:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802892},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501530:effect:2:aura:37","name":"Brace (Aura 37)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}]},{"rank":5,"spellId":501531,"level":41,"description":"BraceRank 5999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501531:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802892},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501531:effect:2:aura:37","name":"Brace (Aura 37)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}]},{"rank":6,"spellId":501532,"level":51,"description":"BraceRank 6999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501532:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802892},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501532:effect:2:aura:37","name":"Brace (Aura 37)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}]},{"rank":7,"spellId":501533,"level":61,"description":"BraceRank 7999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501533:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802892},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501533:effect:2:aura:37","name":"Brace (Aura 37)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}]},{"rank":8,"spellId":501534,"level":71,"description":"BraceRank 8999 Energy Instant1 min cooldownFortify your defenses, reducing all damage taken by 30% and gaining immunity to knockback effects for 10 sec. Motivation: Gain Knight's Valor for 5 sec. Motivation: Knight's Valor Gain a shield that absorbs up to 50+0+Sta*0.25+Str*0.25 damage.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":999},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501534:effect:0:aura:87","name":"Brace (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802892},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501534:effect:2:aura:37","name":"Brace (Aura 37)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}]}]},{"id":"coa-18-hammer-of-kings-67-803132","classId":"guardian","dbcSpellId":803132,"name":"Hammer of Kings","unlockLevel":15,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyhammer_border.png","sigil":"HO","description":"Hammer of KingsRank 140 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 76+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.800000011920929,"basePoints":76,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":15,"maxScalingLevel":20}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803132,"level":15,"description":"Hammer of KingsRank 140 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 76+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.800000011920929,"basePoints":76,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":15,"maxScalingLevel":20}]},{"rank":2,"spellId":503127,"level":22,"description":"Hammer of KingsRank 240 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 97+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.9144144144144144,"basePoints":97,"dieSides":10,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":27}]},{"rank":3,"spellId":503128,"level":29,"description":"Hammer of KingsRank 340 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 126+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.053030303030303,"basePoints":126,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34}]},{"rank":4,"spellId":503129,"level":36,"description":"Hammer of KingsRank 440 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 164+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.1993464052287581,"basePoints":164,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":41}]},{"rank":5,"spellId":503130,"level":43,"description":"Hammer of KingsRank 540 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 212+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.3764367816091954,"basePoints":212,"dieSides":56,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":48}]},{"rank":6,"spellId":503131,"level":50,"description":"Hammer of KingsRank 640 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 275+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.594871794871795,"basePoints":275,"dieSides":73,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":55}]},{"rank":7,"spellId":503132,"level":57,"description":"Hammer of KingsRank 740 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 358+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.8773148148148149,"basePoints":358,"dieSides":96,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":62}]},{"rank":8,"spellId":503133,"level":64,"description":"Hammer of KingsRank 840 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 464+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":2.2130801687763713,"basePoints":464,"dieSides":122,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":69}]},{"rank":9,"spellId":503134,"level":71,"description":"Hammer of KingsRank 940 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 603+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":2.62984496124031,"basePoints":603,"dieSides":152,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":78}]}]},{"id":"coa-18-advance-487-500170","classId":"guardian","dbcSpellId":500170,"name":"Advance","unlockLevel":20,"icon":"/assets/ui/spells/_d3sprint.png","sigil":"AD","description":"AdvanceRank 1Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement-impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 66+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":66},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500170:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500170:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500170,"level":20,"description":"AdvanceRank 1Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement-impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 66+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":66},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500170:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500170:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":503344,"level":26,"description":"AdvanceRank 2Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 118+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":118},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503344:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503344:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503345,"level":32,"description":"AdvanceRank 3Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 199+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":199},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503345:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503345:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503346,"level":38,"description":"AdvanceRank 4Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 266+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":266},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503346:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503346:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503347,"level":44,"description":"AdvanceRank 5Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 355+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":355},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503347:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503347:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503348,"level":50,"description":"AdvanceRank 6Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 456+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":456},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503348:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503348:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503349,"level":56,"description":"AdvanceRank 7Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 572+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":572},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503349:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503349:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503350,"level":60,"description":"AdvanceRank 8Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 645+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":645},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503350:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503350:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":503351,"level":62,"description":"AdvanceRank 9Instant1 min cooldownIncreases movement speed by 100%, grants immunity to movement impairing effects, and prevents you from stopping for 5 sec. After a short delay, you can recast the ability to stomp the ground, dealing 801+0+AP*0.1 Physical damage to nearby enemies. If not recast, you will stomp at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801160,"withValue":801},{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503351:effect:1:aura:241","name":"Advance (Aura 241)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503351:effect:2:aura:31","name":"Advance (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-4718","classId":"guardian","dbcSpellId":804046,"name":"Bulwark","unlockLevel":20,"icon":"/assets/ui/spells/inv_shield_06.png","sigil":"BU","description":"Level 20 Passive Increases your block value by 25% and your hit rating by 5% of your Stamina.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804046:effect:0:aura:150","name":"Bulwark (Aura 150)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":150,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804046:effect:1:aura:4","name":"Bulwark (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804046:effect:2:aura:220","name":"Bulwark (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:224","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":224,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804046,"level":20,"description":"Level 20 Passive Increases your block value by 25% and your hit rating by 5% of your Stamina.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804046:effect:0:aura:150","name":"Bulwark (Aura 150)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":150,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804046:effect:1:aura:4","name":"Bulwark (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804046:effect:2:aura:220","name":"Bulwark (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:224","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":224,"triggerSpellId":0}]}],"talentEntryId":4718},{"id":"coa-18-shield-of-denial-487-704159","classId":"guardian","dbcSpellId":704159,"name":"Shield of Denial","unlockLevel":20,"icon":"/assets/ui/spells/inv_shield_64.png","sigil":"SO","description":"Shield of DenialRank 115 Energy Instant30 sec cooldownToss a shield at an enemy that bounces to up 2 nearby enemies, dealing 55+0+AP*.33 Physical damage and interrupting their spellcast, preventing any spell from that school of magic from being cast for 3 sec.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"interrupt","lockoutMs":3000},{"kind":"damage","coefficient":0.7619047619047619,"basePoints":55,"dieSides":1,"pointsPerLevel":1.25,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":704159,"level":20,"description":"Shield of DenialRank 115 Energy Instant30 sec cooldownToss a shield at an enemy that bounces to up 2 nearby enemies, dealing 55+0+AP*.33 Physical damage and interrupting their spellcast, preventing any spell from that school of magic from being cast for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"interrupt","lockoutMs":3000},{"kind":"damage","coefficient":0.7619047619047619,"basePoints":55,"dieSides":1,"pointsPerLevel":1.25,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24}]}]},{"id":"coa-tree-4220","classId":"guardian","dbcSpellId":524885,"name":"Shield Training","unlockLevel":20,"icon":"/assets/ui/spells/inv_shield_20.png","sigil":"ST","description":"Level 20 Passive Increases your block rating by 10% of your Strength.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524885:effect:0:aura:220","name":"Shield Training (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:16","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":16,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524885,"level":20,"description":"Level 20 Passive Increases your block rating by 10% of your Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524885:effect:0:aura:220","name":"Shield Training (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:16","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":16,"triggerSpellId":0}]}],"talentEntryId":4220},{"id":"coa-18-freedom-68-503222","classId":"guardian","dbcSpellId":503222,"name":"Freedom","unlockLevel":28,"icon":"/assets/ui/spells/ability_pvp_gladiatormedallion.png","sigil":"FR","description":"FreedomRank 230 Energy Instant40 sec cooldownInstantly breaks an ally free of any stun or snare effects and grants immunity to such effects for 5 sec. Dispels 2 harmful magic effects from the ally.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503222:effect:0:aura:77","name":"Freedom (Aura 77)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["stun"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503222:effect:1:aura:77","name":"Freedom (Aura 77)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":2}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503222,"level":28,"description":"FreedomRank 230 Energy Instant40 sec cooldownInstantly breaks an ally free of any stun or snare effects and grants immunity to such effects for 5 sec. Dispels 2 harmful magic effects from the ally.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503222:effect:0:aura:77","name":"Freedom (Aura 77)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["stun"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503222:effect:1:aura:77","name":"Freedom (Aura 77)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":2}]},{"rank":3,"spellId":503223,"level":54,"description":"FreedomRank 330 Energy Instant40 sec cooldownInstantly breaks an ally free of any stun or snare effects and grants immunity to such effects for 5 sec. Dispels 2 harmful magic effects from the ally.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503223:effect:0:aura:77","name":"Freedom (Aura 77)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["stun"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503223:effect:1:aura:77","name":"Freedom (Aura 77)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":2}]}]},{"id":"coa-tree-12224","classId":"guardian","dbcSpellId":707633,"name":"Experienced Combatant","unlockLevel":30,"icon":"/assets/ui/spells/5_assassinskill06_border.png","sigil":"EC","description":"Level 30 Passive Increases your attack power by 20% of your Strength.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707633:effect:0:aura:268","name":"Experienced Combatant (Aura 268)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":268,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707633,"level":30,"description":"Level 30 Passive Increases your attack power by 20% of your Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707633:effect:0:aura:268","name":"Experienced Combatant (Aura 268)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":268,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":12224},{"id":"coa-tree-4716","classId":"guardian","dbcSpellId":705331,"name":"Iron Barrier","unlockLevel":30,"icon":"/assets/ui/spells/inv_shoulder_plate_pvpwarrior_c_01.png","sigil":"IB","description":"Level 30 Passive Your successful blocks now have a 50% chance to critically block for twice the normal amount.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705331:effect:0:aura:253","name":"Iron Barrier (Aura 253)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block-critical-strike","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":253,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705331,"level":30,"description":"Level 30 Passive Your successful blocks now have a 50% chance to critically block for twice the normal amount.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705331:effect:0:aura:253","name":"Iron Barrier (Aura 253)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block-critical-strike","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":253,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4716},{"id":"coa-18-inspiring-speech-68-503217","classId":"guardian","dbcSpellId":503217,"name":"Inspiring Speech","unlockLevel":37,"icon":"/assets/ui/spells/epic_rpg_icon_pack_brutal_icon_0010s_0000_light-1_border.png","sigil":"IS","description":"Inspiring SpeechRank 535 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","target":"any","range":{"min":0,"max":15},"radius":40,"castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503217:effect:0:aura:87","name":"Inspiring Speech (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803962,"withValue":-5},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["curse"],"maxCount":1},{"kind":"resource","amount":10}],"passive":false,"source":"coa-progression","ranks":[{"rank":5,"spellId":503217,"level":37,"description":"Inspiring SpeechRank 535 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503217:effect:0:aura:87","name":"Inspiring Speech (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803962,"withValue":-5},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["curse"],"maxCount":1},{"kind":"resource","amount":10}]},{"rank":6,"spellId":503218,"level":45,"description":"Inspiring SpeechRank 635 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503218:effect:0:aura:87","name":"Inspiring Speech (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803962,"withValue":-5},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["curse"],"maxCount":1},{"kind":"resource","amount":10}]},{"rank":7,"spellId":503219,"level":54,"description":"Inspiring SpeechRank 735 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503219:effect:0:aura:87","name":"Inspiring Speech (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803962,"withValue":-5},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["curse"],"maxCount":1},{"kind":"resource","amount":10}]},{"rank":8,"spellId":503220,"level":63,"description":"Inspiring SpeechRank 835 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503220:effect:0:aura:87","name":"Inspiring Speech (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803962,"withValue":-5},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["curse"],"maxCount":1},{"kind":"resource","amount":10}]},{"rank":9,"spellId":503221,"level":72,"description":"Inspiring SpeechRank 935 Energy 1 sec cast8 sec cooldownEmpowers an ally for until cancelled, increasing the damage or healing of their next 3 attacks or spells by 10%. Subsequent applications stack bonus charges, up to 9. Falls off when combat ends and can only be used in combat. Usable while moving.","castMode":"cast","castTimeMs":1000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503221:effect:0:aura:87","name":"Inspiring Speech (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803962,"withValue":-5},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["curse"],"maxCount":1},{"kind":"resource","amount":10}]}]},{"id":"coa-tree-4710","classId":"guardian","dbcSpellId":570713,"name":"Experienced Soldier","unlockLevel":40,"icon":"/assets/ui/spells/ability_golemthunderclap.png","sigil":"ES","description":"Level 40 Passive Melee attacks now reduce the cooldown of Brace by -1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570713:effect:0:aura:42","name":"Experienced Soldier (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:570713:proc:0:704414","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704414}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704414}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":570713,"level":40,"description":"Level 40 Passive Melee attacks now reduce the cooldown of Brace by -1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570713:effect:0:aura:42","name":"Experienced Soldier (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:570713:proc:0:704414","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704414}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704414}]}],"talentEntryId":4710},{"id":"coa-tree-4224","classId":"guardian","dbcSpellId":807297,"name":"Shield Combat","unlockLevel":40,"icon":"/assets/ui/spells/ability_warrior_victoryrush.png","sigil":"SC","description":"Level 40 Passive Casting Ram and Pulverize now increases your attack power based on your block rating for 6 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807297:effect:0:aura:42","name":"Shield Combat (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807297:proc:0:705381","triggers":["block","cast","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705381}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":705381},{"kind":"apply-aura","aura":{"id":"coa:807297:effect:1:aura:107","name":"Shield Combat (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807297,"level":40,"description":"Level 40 Passive Casting Ram and Pulverize now increases your attack power based on your block rating for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807297:effect:0:aura:42","name":"Shield Combat (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807297:proc:0:705381","triggers":["block","cast","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705381}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":705381},{"kind":"apply-aura","aura":{"id":"coa:807297:effect:1:aura:107","name":"Shield Combat (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":4224},{"id":"coa-18-counter-stance-67-501536","classId":"guardian","dbcSpellId":501536,"name":"Counter Stance","unlockLevel":41,"icon":"/assets/ui/spells/ability_warrior_vigilance.png","sigil":"CS","description":"Counter StanceRank 3Instant1 min cooldownRequires Shields You are granted 8 charges of Counter Stance, increasing your chance to block by 15% and your block value by 20% for 15 sec and dealing 125 to 168 damage to attackers whenever you take Physical Damage or block a physical attack. Each attack expends a charge.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501536:effect:0:aura:51","name":"Counter Stance (Aura 51)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501536:effect:1:aura:43","name":"Counter Stance (Aura 43)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501536:effect:2:aura:150","name":"Counter Stance (Aura 150)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":150,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":501536,"level":41,"description":"Counter StanceRank 3Instant1 min cooldownRequires Shields You are granted 8 charges of Counter Stance, increasing your chance to block by 15% and your block value by 20% for 15 sec and dealing 125 to 168 damage to attackers whenever you take Physical Damage or block a physical attack. Each attack expends a charge.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501536:effect:0:aura:51","name":"Counter Stance (Aura 51)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501536:effect:1:aura:43","name":"Counter Stance (Aura 43)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501536:effect:2:aura:150","name":"Counter Stance (Aura 150)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":150,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501537,"level":61,"description":"Counter StanceRank 4Instant1 min cooldownRequires Shields You are granted 8 charges of Counter Stance, increasing your chance to block by 15% and your block value by 20% for 15 sec and dealing 304 to 388 damage to attackers whenever you take Physical Damage or block a physical attack. Each attack expends a charge.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501537:effect:0:aura:51","name":"Counter Stance (Aura 51)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501537:effect:1:aura:43","name":"Counter Stance (Aura 43)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501537:effect:2:aura:150","name":"Counter Stance (Aura 150)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":150,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-4225","classId":"guardian","dbcSpellId":704322,"name":"Favor","unlockLevel":50,"icon":"/assets/ui/spells/warrior_talent_icon_angermanagement.png","sigil":"FA","description":"Level 50 Passive Critical strikes and killing blows now grant you Favor for 1 minute, stacking 20 times. At 20 stacks, your next auto attack deals an additional 500% Weapon Damage, consuming the stacks.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704322:effect:0:aura:42","name":"Favor (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704322:proc:0:707821","triggers":["crit","kill","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707821}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707821}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704322,"level":50,"description":"Level 50 Passive Critical strikes and killing blows now grant you Favor for 1 minute, stacking 20 times. At 20 stacks, your next auto attack deals an additional 500% Weapon Damage, consuming the stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704322:effect:0:aura:42","name":"Favor (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704322:proc:0:707821","triggers":["crit","kill","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707821}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707821}]}],"talentEntryId":4225},{"id":"coa-tree-12710","classId":"guardian","dbcSpellId":707621,"name":"High Guard","unlockLevel":50,"icon":"/assets/ui/spells/custom_warriorskill_03_border.png","sigil":"HG","description":"Level 50 Passive After using Raise Shield, Advance or Battle Rush, you are granted High Guard.High Guard (Buff)Your next Heavy Blow within 15 seconds triggers no cooldown and allows the use of Reprisal as if you had recently blocked an attack.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707621:effect:0:aura:42","name":"High Guard (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707621:proc:0:504586","triggers":["block","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504586}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504586}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707621,"level":50,"description":"Level 50 Passive After using Raise Shield, Advance or Battle Rush, you are granted High Guard.High Guard (Buff)Your next Heavy Blow within 15 seconds triggers no cooldown and allows the use of Reprisal as if you had recently blocked an attack.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707621:effect:0:aura:42","name":"High Guard (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707621:proc:0:504586","triggers":["block","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504586}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504586}]}],"talentEntryId":12710},{"id":"coa-18-hammer-of-kings-500-503134","classId":"guardian","dbcSpellId":503134,"name":"Hammer of Kings","unlockLevel":71,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holyhammer_border.png","sigil":"HO","description":"Hammer of KingsRank 940 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 603+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":2.62984496124031,"basePoints":603,"dieSides":152,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":78}],"passive":false,"source":"coa-progression","ranks":[{"rank":9,"spellId":503134,"level":71,"description":"Hammer of KingsRank 940 Energy Instant15 sec cooldownRequires Melee Weapon Grants Motivation Slam the ground, dealing 603+0+AP*0.4 Physical Damage, scaling with defense rating to nearby enemies. Deals 0% increased damage to enemies affected by Line Formation.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":2.62984496124031,"basePoints":603,"dieSides":152,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":78}]}]}],"templar":[{"id":"coa-19-alertness-71-706321","classId":"templar","dbcSpellId":706321,"name":"Alertness","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_powerinfusion.png","sigil":"AL","description":"AlertnessRank 1Reduces damage taken by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706321:effect:0:aura:87","name":"Alertness (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706321:effect:1:aura:107","name":"Alertness (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706321,"level":1,"description":"AlertnessRank 1Reduces damage taken by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706321:effect:0:aura:87","name":"Alertness (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706321:effect:1:aura:107","name":"Alertness (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]},{"rank":2,"spellId":706322,"level":1,"description":"AlertnessRank 2Reduces Physical Damage taken by 4% and increases the range of Benediction by 10 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706322:effect:0:aura:87","name":"Alertness (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706322:effect:1:aura:107","name":"Alertness (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]}]},{"id":"coa-tree-34375","classId":"templar","dbcSpellId":801457,"name":"Binding Scripture","unlockLevel":1,"icon":"/assets/ui/spells/_d3breathofheaven.png","sigil":"BS","description":"Healing an ally now redirects 10% of their damage taken to you and reduces your damage taken by -5% for 10 seconds, stacking 3 times.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801457:effect:0:aura:42","name":"Binding Scripture (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:801457:proc:0:705309","triggers":["heal","damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705309}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":705309}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801457,"level":1,"description":"Healing an ally now redirects 10% of their damage taken to you and reduces your damage taken by -5% for 10 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801457:effect:0:aura:42","name":"Binding Scripture (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:801457:proc:0:705309","triggers":["heal","damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705309}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":705309}]}],"talentEntryId":34375},{"id":"coa-tree-29704","classId":"templar","dbcSpellId":803872,"name":"Blade of Faith","unlockLevel":1,"icon":"/assets/ui/spells/holy_blade_templar.png","sigil":"BO","description":"Unleash a devastating Oath Breaker on an enemy dealing 119 + 140% SP + 70% AP Holy damage over 21 seconds. This ability can critically strike. Consumes your Oaths, dealing additional damage for each consumed.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803872:effect:0:aura:3","name":"Blade of Faith (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2709999978542328,"basePoints":17,"dieSides":1,"pointsPerLevel":0.25,"bonusPowerCoefficient":0.2709999978542328,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000,"tag":"spell-803872"},{"kind":"apply-aura","aura":{"id":"coa:803872:effect:1:aura:271","name":"Blade of Faith (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803872,"level":1,"description":"Unleash a devastating Oath Breaker on an enemy dealing 119 + 140% SP + 70% AP Holy damage over 21 seconds. This ability can critically strike. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803872:effect:0:aura:3","name":"Blade of Faith (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2709999978542328,"basePoints":17,"dieSides":1,"pointsPerLevel":0.25,"bonusPowerCoefficient":0.2709999978542328,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000,"tag":"spell-803872"},{"kind":"apply-aura","aura":{"id":"coa:803872:effect:1:aura:271","name":"Blade of Faith (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29704},{"id":"coa-tree-34395","classId":"templar","dbcSpellId":301311,"name":"Blessed Padding","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_powerwordshield.png","sigil":"BP","description":"Increases your Armor contribution from mail items by 50% and reduces damage taken from area of effect attacks by -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301311:effect:0:aura:142","name":"Blessed Padding (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301311:effect:1:aura:229","name":"Blessed Padding (Aura 229)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":229,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301311,"level":1,"description":"Increases your Armor contribution from mail items by 50% and reduces damage taken from area of effect attacks by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301311:effect:0:aura:142","name":"Blessed Padding (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301311:effect:1:aura:229","name":"Blessed Padding (Aura 229)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":229,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":301360,"level":1,"description":"Increases your Armor contribution from mail items by 100% and reduces damage taken from area of effect attacks by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301360:effect:0:aura:142","name":"Blessed Padding (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301360:effect:1:aura:229","name":"Blessed Padding (Aura 229)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":229,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":34395},{"id":"coa-tree-29714","classId":"templar","dbcSpellId":704180,"name":"Blessed Strikes","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_vindication.png","sigil":"BS","description":"Reduces the Energy cost of your Oath Breakers by -10.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704180:effect:0:aura:107","name":"Blessed Strikes (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704180,"level":1,"description":"Reduces the Energy cost of your Oath Breakers by -10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704180:effect:0:aura:107","name":"Blessed Strikes (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":29714},{"id":"coa-19-chastise-494-803157","classId":"templar","dbcSpellId":803157,"name":"Chastise","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CH","description":"ChastiseRank 125 Energy InstantUnleash an Oath Breaker, blasting an enemy for 10+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","target":"hostile","range":{"min":0,"max":15},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.23697916666666666,"basePoints":10,"dieSides":3,"pointsPerLevel":0.375,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"damage","coefficient":0.1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803157,"level":1,"description":"ChastiseRank 125 Energy InstantUnleash an Oath Breaker, blasting an enemy for 10+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.23697916666666666,"basePoints":10,"dieSides":3,"pointsPerLevel":0.375,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"damage","coefficient":0.1}]},{"rank":2,"spellId":503135,"level":8,"description":"ChastiseRank 225 Energy InstantUnleash an Oath Breaker, blasting an enemy for 15+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.2840579696323561,"basePoints":15,"dieSides":3,"pointsPerLevel":0.44999998807907104,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"damage","coefficient":0.1}]},{"rank":3,"spellId":503136,"level":18,"description":"ChastiseRank 325 Energy InstantUnleash an Oath Breaker, blasting an enemy for 32+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.48888889105633054,"basePoints":32,"dieSides":5,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"damage","coefficient":0.1}]},{"rank":4,"spellId":503137,"level":26,"description":"ChastiseRank 425 Energy InstantUnleash an Oath Breaker, blasting an enemy for 68+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.7463414659345053,"basePoints":68,"dieSides":7,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"damage","coefficient":0.1}]},{"rank":5,"spellId":503138,"level":34,"description":"ChastiseRank 525 Energy InstantUnleash an Oath Breaker, blasting an enemy for 101+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":0.9489795918367347,"basePoints":101,"dieSides":10,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"damage","coefficient":0.1}]},{"rank":6,"spellId":503139,"level":42,"description":"ChastiseRank 625 Energy InstantUnleash an Oath Breaker, blasting an enemy for 151+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":1.2616959064327486,"basePoints":151,"dieSides":15,"pointsPerLevel":1.375,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48},{"kind":"damage","coefficient":0.1}]},{"rank":7,"spellId":503140,"level":50,"description":"ChastiseRank 725 Energy InstantUnleash an Oath Breaker, blasting an enemy for 226+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":1.6,"basePoints":226,"dieSides":23,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":58},{"kind":"damage","coefficient":0.1}]},{"rank":8,"spellId":503141,"level":60,"description":"ChastiseRank 825 Energy InstantUnleash an Oath Breaker, blasting an enemy for 338+0+HolP*0.6+AP*0.45 Holy damage. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":25},"effects":[{"kind":"damage","coefficient":1.9755555555555555,"basePoints":338,"dieSides":34,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"damage","coefficient":0.1}]}]},{"id":"coa-19-combat-training-70-706319","classId":"templar","dbcSpellId":706319,"name":"Combat Training","unlockLevel":1,"icon":"/assets/ui/spells/ability_monk_quipunch.png","sigil":"CT","description":"Combat TrainingRank 1Increases the effectiveness of Oaths by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706319:effect:0:aura:108","name":"Combat Training (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706319,"level":1,"description":"Combat TrainingRank 1Increases the effectiveness of Oaths by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706319:effect:0:aura:108","name":"Combat Training (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}]},{"id":"coa-tree-34341","classId":"templar","dbcSpellId":707754,"name":"Courage","unlockLevel":1,"icon":"/assets/ui/spells/ability_karoz_leap.png","sigil":"CO","description":"Increases your movement speed and reduces the duration of movement slowing effects on you by -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707754:effect:0:aura:31","name":"Courage (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707754:effect:1:aura:232","name":"Courage (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":232,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707754,"level":1,"description":"Increases your movement speed and reduces the duration of movement slowing effects on you by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707754:effect:0:aura:31","name":"Courage (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707754:effect:1:aura:232","name":"Courage (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":232,"miscValue":11,"triggerSpellId":0}]},{"rank":2,"spellId":712466,"level":1,"description":"Increases your movement speed and reduces the duration of movement slowing effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712466:effect:0:aura:31","name":"Courage (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:712466:effect:1:aura:232","name":"Courage (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":232,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":34341},{"id":"coa-tree-5156","classId":"templar","dbcSpellId":705256,"name":"Determined","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_heroism.png","sigil":"DE","description":"Your Temple Guardian now makes your next ability within 5 seconds free of cost.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705256:effect:0:aura:4","name":"Determined (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":4,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705256,"level":1,"description":"Your Temple Guardian now makes your next ability within 5 seconds free of cost.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705256:effect:0:aura:4","name":"Determined (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":4,"triggerSpellId":0}]}],"talentEntryId":5156},{"id":"coa-tree-31314","classId":"templar","dbcSpellId":806153,"name":"Divine Force","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_pathofdevout.png","sigil":"DF","description":"Leap at an enemy with divine force, stunning them for 6 seconds, dealing 20 + 100% SP + 55% AP Holy damage, and interrupting non-player spellcasting for 3 seconds.","target":"hostile","range":{"min":0,"max":15},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"trigger-spell","spellId":807890},{"kind":"apply-aura","aura":{"id":"coa:807890:effect:0:aura:12","name":"Divine Force (Aura 12)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"movement","movement":"leap","toward":"destination"},{"kind":"damage","coefficient":0.36666666666666664,"basePoints":20,"dieSides":1,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806153,"level":1,"description":"Leap at an enemy with divine force, stunning them for 6 seconds, dealing 20 + 100% SP + 55% AP Holy damage, and interrupting non-player spellcasting for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"trigger-spell","spellId":807890},{"kind":"apply-aura","aura":{"id":"coa:807890:effect:0:aura:12","name":"Divine Force (Aura 12)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"movement","movement":"leap","toward":"destination"},{"kind":"damage","coefficient":0.36666666666666664,"basePoints":20,"dieSides":1,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}]}],"talentEntryId":31314},{"id":"coa-19-fight-club-70-705269","classId":"templar","dbcSpellId":705269,"name":"Fight Club","unlockLevel":1,"icon":"/assets/ui/spells/5_paladinskill18_border.png","sigil":"FC","description":"Fight ClubRank 1Increases Physical damage dealt by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705269:effect:0:aura:166","name":"Fight Club (Aura 166)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":166,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705269,"level":1,"description":"Fight ClubRank 1Increases Physical damage dealt by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705269:effect:0:aura:166","name":"Fight Club (Aura 166)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":166,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705270,"level":1,"description":"Fight ClubRank 2Increases Physical Damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705270:effect:0:aura:79","name":"Fight Club (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-34349","classId":"templar","dbcSpellId":705268,"name":"Final Prayer","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedlife.png","sigil":"FP","description":"Doubles the healing done to you by Testament of Fortitude and Testament of Faith.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705268:effect:0:aura:108","name":"Final Prayer (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705268:effect:1:aura:283","name":"Final Prayer (Aura 283)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705268,"level":1,"description":"Doubles the healing done to you by Testament of Fortitude and Testament of Faith.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705268:effect:0:aura:108","name":"Final Prayer (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705268:effect:1:aura:283","name":"Final Prayer (Aura 283)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34349},{"id":"coa-19-flaming-edge-72-705257","classId":"templar","dbcSpellId":705257,"name":"Flaming Edge","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_volatilefire.png","sigil":"FE","description":"Flaming EdgeRank 1Causes enemies affected by Bladegrease to take 10% increased damage from Burning Thrust. Periodic damage of Flaming Blade of Lantresor increased by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705257:effect:0:aura:107","name":"Flaming Edge (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705257:effect:1:aura:108","name":"Flaming Edge (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705257,"level":1,"description":"Flaming EdgeRank 1Causes enemies affected by Bladegrease to take 10% increased damage from Burning Thrust. Periodic damage of Flaming Blade of Lantresor increased by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705257:effect:0:aura:107","name":"Flaming Edge (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705257:effect:1:aura:108","name":"Flaming Edge (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}]},{"id":"coa-tree-29259","classId":"templar","dbcSpellId":801481,"name":"Glory","unlockLevel":1,"icon":"/assets/ui/spells/_d3innersanctuary.png","sigil":"GL","description":"Bring glory to the holy light, increasing your attack speed by 30% for 5 seconds. After the duration, you gain Downfall. DownfallYou heal for 50% of all damage dealt for 5 seconds. After the duration, you gain Redemption.RedemptionIncreases attack speed by 30% and you heal for 50% of all damage dealt for 5 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801481:effect:0:aura:138","name":"Glory (Aura 138)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801481:effect:1:aura:23","name":"Glory (Aura 23)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801481:proc:1:801482","triggers":["periodic"],"chance":1,"charges":10,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801482}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801481,"level":1,"description":"Bring glory to the holy light, increasing your attack speed by 30% for 5 seconds. After the duration, you gain Downfall. DownfallYou heal for 50% of all damage dealt for 5 seconds. After the duration, you gain Redemption.RedemptionIncreases attack speed by 30% and you heal for 50% of all damage dealt for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801481:effect:0:aura:138","name":"Glory (Aura 138)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801481:effect:1:aura:23","name":"Glory (Aura 23)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801481:proc:1:801482","triggers":["periodic"],"chance":1,"charges":10,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801482}]}],"talentEntryId":29259},{"id":"coa-19-guidance-72-706324","classId":"templar","dbcSpellId":706324,"name":"Guidance","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_power.png","sigil":"GU","description":"GuidanceRank 2Increases Agility by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706324:effect:0:aura:137","name":"Guidance (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706324,"level":1,"description":"GuidanceRank 2Increases Agility by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706324:effect:0:aura:137","name":"Guidance (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-34356","classId":"templar","dbcSpellId":524747,"name":"Holy Crusader","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holyring_border.png","sigil":"HC","description":"Reduces the cooldown of Divine Force by -30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524747:effect:0:aura:107","name":"Holy Crusader (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524747,"level":1,"description":"Reduces the cooldown of Divine Force by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524747:effect:0:aura:107","name":"Holy Crusader (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":34356},{"id":"coa-19-honed-edge-72-706310","classId":"templar","dbcSpellId":706310,"name":"Honed Edge","unlockLevel":1,"icon":"/assets/ui/spells/ability_skyreach_fourblades.png","sigil":"HE","description":"Honed EdgeRank 1Increases the damage dealt by Follow Ups by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706310:effect:0:aura:108","name":"Honed Edge (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706310:effect:2:aura:4","name":"Honed Edge (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706310,"level":1,"description":"Honed EdgeRank 1Increases the damage dealt by Follow Ups by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706310:effect:0:aura:108","name":"Honed Edge (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706310:effect:2:aura:4","name":"Honed Edge (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-34368","classId":"templar","dbcSpellId":705287,"name":"Improved Benediction","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_improvedresistanceauras.png","sigil":"IB","description":"Benediction now grants your target armor based on your Agility and Stamina for 15 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705287:effect:0:aura:107","name":"Improved Benediction (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":150}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705287:effect:1:aura:4","name":"Improved Benediction (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705287,"level":1,"description":"Benediction now grants your target armor based on your Agility and Stamina for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705287:effect:0:aura:107","name":"Improved Benediction (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":150}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705287:effect:1:aura:4","name":"Improved Benediction (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34368},{"id":"coa-19-improved-engrave-fists-70-705260","classId":"templar","dbcSpellId":705260,"name":"Improved Engrave Fists","unlockLevel":1,"icon":"/assets/ui/spells/inv__fistofthewhitetiger.png","sigil":"IE","description":"Improved Engrave FistsRank 1Engrave Fists grants an additional 10% of your Agility and Intellect as attack power.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705260:effect:0:aura:107","name":"Improved Engrave Fists (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705260:effect:1:aura:4","name":"Improved Engrave Fists (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705260:effect:2:aura:268","name":"Improved Engrave Fists (Aura 268)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":0,"sourceAuraType":268,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705260,"level":1,"description":"Improved Engrave FistsRank 1Engrave Fists grants an additional 10% of your Agility and Intellect as attack power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705260:effect:0:aura:107","name":"Improved Engrave Fists (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705260:effect:1:aura:4","name":"Improved Engrave Fists (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705260:effect:2:aura:268","name":"Improved Engrave Fists (Aura 268)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":0,"sourceAuraType":268,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-19-improved-engrave-fists-none-706316","classId":"templar","dbcSpellId":706316,"name":"Improved Engrave Fists","unlockLevel":1,"icon":"/assets/ui/spells/inv__fistofthewhitetiger.png","sigil":"IE","description":"Improved Engrave FistsRank 2Engrave Fists grants an additional 20% of your Agility and Intellect as attack power.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706316:effect:0:aura:107","name":"Improved Engrave Fists (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706316:effect:1:aura:4","name":"Improved Engrave Fists (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706316:effect:2:aura:268","name":"Improved Engrave Fists (Aura 268)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":0,"sourceAuraType":268,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706316,"level":1,"description":"Improved Engrave FistsRank 2Engrave Fists grants an additional 20% of your Agility and Intellect as attack power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706316:effect:0:aura:107","name":"Improved Engrave Fists (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706316:effect:1:aura:4","name":"Improved Engrave Fists (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706316:effect:2:aura:268","name":"Improved Engrave Fists (Aura 268)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":0,"sourceAuraType":268,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-19-improved-mend-ward-71-705310","classId":"templar","dbcSpellId":705310,"name":"Improved Mend Ward","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IM","description":"Improved Mend WardRank 1Reduces the cooldown of Mend Ward by 30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705310:effect:0:aura:107","name":"Improved Mend Ward (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705310:effect:1:aura:4","name":"Improved Mend Ward (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705310,"level":1,"description":"Improved Mend WardRank 1Reduces the cooldown of Mend Ward by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705310:effect:0:aura:107","name":"Improved Mend Ward (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705310:effect:1:aura:4","name":"Improved Mend Ward (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":705311,"level":1,"description":"Improved Mend WardRank 2Reduces the cooldown of Mend Ward by 60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705311:effect:0:aura:107","name":"Improved Mend Ward (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705311:effect:1:aura:4","name":"Improved Mend Ward (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-34347","classId":"templar","dbcSpellId":524767,"name":"Judgement of the Gods","unlockLevel":1,"icon":"/assets/ui/spells/custom_skill_161_border.png","sigil":"JO","description":"Increases the critical strike chance of Titanstrike by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524767:effect:0:aura:107","name":"Judgement of the Gods (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524767,"level":1,"description":"Increases the critical strike chance of Titanstrike by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524767:effect:0:aura:107","name":"Judgement of the Gods (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}],"talentEntryId":34347},{"id":"coa-tree-34377","classId":"templar","dbcSpellId":706359,"name":"Judicator","unlockLevel":1,"icon":"/assets/ui/spells/ability_thunderclap.png","sigil":"JU","description":"Increases your parry and dodge chance by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706359:effect:0:aura:47","name":"Judicator (Aura 47)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706359:effect:1:aura:49","name":"Judicator (Aura 49)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706359,"level":1,"description":"Increases your parry and dodge chance by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706359:effect:0:aura:47","name":"Judicator (Aura 47)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706359:effect:1:aura:49","name":"Judicator (Aura 49)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34377},{"id":"coa-tree-4023","classId":"templar","dbcSpellId":92109,"name":"Keeping the Oath","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_2h_nazmirraid_d_01.png","sigil":"KT","description":"Level 10 Passive You now delay 40% of direct damage taken, instead taking it over 8 seconds. In addition, you no longer consume your Oaths with Oath Breakers.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92109:effect:0:aura:4","name":"Keeping the Oath (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":200,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92109:effect:1:aura:4","name":"Keeping the Oath (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":202,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92109:effect:2:aura:42","name":"Keeping the Oath (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92109:proc:2:681170","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":681170}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":681170}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92109,"level":1,"description":"Level 10 Passive You now delay 40% of direct damage taken, instead taking it over 8 seconds. In addition, you no longer consume your Oaths with Oath Breakers.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92109:effect:0:aura:4","name":"Keeping the Oath (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":200,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92109:effect:1:aura:4","name":"Keeping the Oath (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":202,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92109:effect:2:aura:42","name":"Keeping the Oath (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92109:proc:2:681170","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":681170}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":681170}]}],"talentEntryId":4023},{"id":"coa-19-lasting-markings-70-705262","classId":"templar","dbcSpellId":705262,"name":"Lasting Markings","unlockLevel":1,"icon":"/assets/ui/spells/70_inscription_vantus_rune_light.png","sigil":"LM","description":"Lasting MarkingsRank 1Increases the duration of Engrave Runes effects by 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705262:effect:0:aura:107","name":"Lasting Markings (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705262:effect:1:aura:4","name":"Lasting Markings (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705262,"level":1,"description":"Lasting MarkingsRank 1Increases the duration of Engrave Runes effects by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705262:effect:0:aura:107","name":"Lasting Markings (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705262:effect:1:aura:4","name":"Lasting Markings (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0}]}]},{"id":"coa-tree-30611","classId":"templar","dbcSpellId":705266,"name":"Liberty","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_weaponscroll03.png","sigil":"LI","description":"Reduces the cooldown of your Libram spells by -30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705266:effect:0:aura:107","name":"Liberty (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705266:effect:1:aura:107","name":"Liberty (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":300}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":107,"miscValue":21,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705266,"level":1,"description":"Reduces the cooldown of your Libram spells by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705266:effect:0:aura:107","name":"Liberty (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705266:effect:1:aura:107","name":"Liberty (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":300}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":107,"miscValue":21,"triggerSpellId":0}]}],"talentEntryId":30611},{"id":"coa-tree-5713","classId":"templar","dbcSpellId":805423,"name":"Libram of Fervor","unlockLevel":1,"icon":"/assets/ui/spells/_book2motif_tyr.png","sigil":"LO","description":"Read from your Libram of Fervor, granting you spell power equal to 30% of your Agility and attack power equal to 30% of your Intellect for 20 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805423:effect:0:aura:268","name":"Libram of Fervor (Aura 268)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":268,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805423:effect:1:aura:174","name":"Libram of Fervor (Aura 174)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805423:effect:2:aura:175","name":"Libram of Fervor (Aura 175)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":175,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805423,"level":1,"description":"Read from your Libram of Fervor, granting you spell power equal to 30% of your Agility and attack power equal to 30% of your Intellect for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805423:effect:0:aura:268","name":"Libram of Fervor (Aura 268)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":268,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805423:effect:1:aura:174","name":"Libram of Fervor (Aura 174)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805423:effect:2:aura:175","name":"Libram of Fervor (Aura 175)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":175,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":5713},{"id":"coa-tree-34340","classId":"templar","dbcSpellId":801461,"name":"Libram of Tenacity","unlockLevel":1,"icon":"/assets/ui/spells/_book2motif_lordaeroncorrupted.png","sigil":"LO","description":"Read from your Libram of Tenacity, reducing your Physical Damage taken by -30% for 20 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":16},{"kind":"apply-aura","aura":{"id":"coa:801461:effect:1:aura:87","name":"Libram of Tenacity (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801461,"level":1,"description":"Read from your Libram of Tenacity, reducing your Physical Damage taken by -30% for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":16},{"kind":"apply-aura","aura":{"id":"coa:801461:effect:1:aura:87","name":"Libram of Tenacity (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":34340},{"id":"coa-tree-29707","classId":"templar","dbcSpellId":804928,"name":"Mark of Aggramar","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_holyguidance.png","sigil":"MO","description":"Reduces the Energy cost of your Testaments by -50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804928:effect:0:aura:108","name":"Mark of Aggramar (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804928,"level":1,"description":"Reduces the Energy cost of your Testaments by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804928:effect:0:aura:108","name":"Mark of Aggramar (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":29707},{"id":"coa-19-martial-paladin-70-705250","classId":"templar","dbcSpellId":705250,"name":"Martial Paladin","unlockLevel":1,"icon":"/assets/ui/spells/inv_glaive_1h_artifactaldrochi_d_01dual.png","sigil":"MP","description":"Martial PaladinRank 1Increases your Agility by 5% and your chance to hit by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705250:effect:0:aura:137","name":"Martial Paladin (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705250:effect:1:aura:333","name":"Martial Paladin (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705250,"level":1,"description":"Martial PaladinRank 1Increases your Agility by 5% and your chance to hit by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705250:effect:0:aura:137","name":"Martial Paladin (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705250:effect:1:aura:333","name":"Martial Paladin (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705251,"level":1,"description":"Martial PaladinRank 2Increases your Agility by 10% and your chance to hit by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705251:effect:0:aura:137","name":"Martial Paladin (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705251:effect:1:aura:333","name":"Martial Paladin (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29706","classId":"templar","dbcSpellId":300530,"name":"Martyr","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_fanaticism.png","sigil":"MA","description":"Increases the effectiveness of Gift of Zeal by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300530:effect:0:aura:137","name":"Martyr (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300530:effect:1:aura:108","name":"Martyr (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300530,"level":1,"description":"Increases the effectiveness of Gift of Zeal by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300530:effect:0:aura:137","name":"Martyr (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300530:effect:1:aura:108","name":"Martyr (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":29706},{"id":"coa-19-power-in-holy-abdicationer-71-705267","classId":"templar","dbcSpellId":705267,"name":"Power In Holy Abdicationer","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedlife.png","sigil":"PI","description":"Power In Holy AbdicationerRank 1Reduces the cooldown of Holy Abdication by 2 sec and boosts its healing by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705267:effect:0:aura:107","name":"Power In Holy Abdicationer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705267:effect:1:aura:108","name":"Power In Holy Abdicationer (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705267,"level":1,"description":"Power In Holy AbdicationerRank 1Reduces the cooldown of Holy Abdication by 2 sec and boosts its healing by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705267:effect:0:aura:107","name":"Power In Holy Abdicationer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705267:effect:1:aura:108","name":"Power In Holy Abdicationer (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-19-powerful-strikes-72-705254","classId":"templar","dbcSpellId":705254,"name":"Powerful Strikes","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_2h_nazmirraid_d_01.png","sigil":"PS","description":"Powerful StrikesRank 1Increases the damage of Templar Strike by 5% and its critical strike chance by 2%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705254:effect:0:aura:108","name":"Powerful Strikes (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705254:effect:1:aura:107","name":"Powerful Strikes (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705254,"level":1,"description":"Powerful StrikesRank 1Increases the damage of Templar Strike by 5% and its critical strike chance by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705254:effect:0:aura:108","name":"Powerful Strikes (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705254:effect:1:aura:107","name":"Powerful Strikes (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}]},{"id":"coa-tree-30063","classId":"templar","dbcSpellId":680953,"name":"Profound Enlightenment","unlockLevel":1,"icon":"/assets/ui/spells/nhi_corruptionmind_border.png","sigil":"PE","description":"Attain enlightenment, reducing the remaining cooldown of Testaments by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reduce","abilityName":"Testament of Fortitude","amountPercent":0.5},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Testament of Faith","amountPercent":0.5},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Testament of Hope","amountPercent":0.5}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680953,"level":1,"description":"Attain enlightenment, reducing the remaining cooldown of Testaments by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reduce","abilityName":"Testament of Fortitude","amountPercent":0.5},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Testament of Faith","amountPercent":0.5},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Testament of Hope","amountPercent":0.5}]}],"talentEntryId":30063},{"id":"coa-19-radiance-70-706317","classId":"templar","dbcSpellId":706317,"name":"Radiance","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_49.png","sigil":"RA","description":"RadianceRank 1Increases the damage of Righteous Lunge by 0%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706317,"level":1,"description":"RadianceRank 1Increases the damage of Righteous Lunge by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"templar-righteous-lunge","classId":"templar","dbcSpellId":801443,"name":"Righteous Lunge","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_2h_artifactashbringerpurified_d_02.png","sigil":"RL","description":"Righteous LungeRank 140 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 80% Weapon Damage plus 9 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801443,"level":1,"description":"Righteous LungeRank 140 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 80% Weapon Damage plus 9 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":2,"spellId":501570,"level":10,"description":"Righteous LungeRank 240 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 90% Weapon Damage plus 16 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.9}]},{"rank":3,"spellId":501571,"level":18,"description":"Righteous LungeRank 340 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 100% Weapon Damage plus 34 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":501572,"level":26,"description":"Righteous LungeRank 440 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 110% Weapon Damage plus 78 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.1}]},{"rank":5,"spellId":501573,"level":34,"description":"Righteous LungeRank 540 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 125% Weapon Damage plus 107 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.25}]},{"rank":6,"spellId":501574,"level":42,"description":"Righteous LungeRank 640 Energy InstantRequires Melee Weapon Stab an enemy with holy fervor, dealing 135% Weapon Damage plus 144 and granting an Oath. Oath: Your abilities damage or heal for 10% more.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.35}]}]},{"id":"coa-19-runes-of-power-70-705264","classId":"templar","dbcSpellId":705264,"name":"Runes of Power","unlockLevel":1,"icon":"/assets/ui/spells/_inscriptionstones_orange.png","sigil":"RO","description":"Runes of PowerRank 1Increases the damage and healing of your Engrave Runes effects by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705264:effect:0:aura:108","name":"Runes of Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705264:effect:1:aura:4","name":"Runes of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705264,"level":1,"description":"Runes of PowerRank 1Increases the damage and healing of your Engrave Runes effects by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705264:effect:0:aura:108","name":"Runes of Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705264:effect:1:aura:4","name":"Runes of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0}]},{"rank":2,"spellId":705265,"level":1,"description":"Runes of PowerRank 2Increases the damage and healing of your Engrave Runes effects by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705265:effect:0:aura:108","name":"Runes of Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705265:effect:1:aura:4","name":"Runes of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0}]}]},{"id":"templar-sacred-slam","classId":"templar","dbcSpellId":803169,"name":"Sacred Slam","unlockLevel":1,"icon":"/assets/ui/spells/ability_monk_powerstrikes.png","sigil":"SS","description":"Begin charging up a staff attack over $d. When you release this, you deal $803170s1% Weapon Damage to enemies in front of you, generate 1 Holy Rune, and remove a Broken Ward stack from nearby allies. Damage and threat generation scales exponentially with time charged. Cannot move or perform other actions while charging.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803170},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803169:effect:2:aura:37","name":"Sacred Slam (Aura 37)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":68,"triggerSpellId":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":803169,"level":1,"description":"Begin charging up a staff attack over $d. When you release this, you deal $803170s1% Weapon Damage to enemies in front of you, generate 1 Holy Rune, and remove a Broken Ward stack from nearby allies. Damage and threat generation scales exponentially with time charged. Cannot move or perform other actions while charging.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803170},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803169:effect:2:aura:37","name":"Sacred Slam (Aura 37)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":37,"miscValue":68,"triggerSpellId":0}]}]},{"id":"coa-tree-34379","classId":"templar","dbcSpellId":705278,"name":"Sacred Style","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_pureofheart.png","sigil":"SS","description":"Increases your Holy healing done and received by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705278:effect:0:aura:118","name":"Sacred Style (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705278:effect:1:aura:136","name":"Sacred Style (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":2,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705278,"level":1,"description":"Increases your Holy healing done and received by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705278:effect:0:aura:118","name":"Sacred Style (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705278:effect:1:aura:136","name":"Sacred Style (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":2,"triggerSpellId":0}]}],"talentEntryId":34379},{"id":"coa-tree-34357","classId":"templar","dbcSpellId":525024,"name":"Scarlet Judicator","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_challange_yellow.png","sigil":"SJ","description":"Your Divine Force now strikes 2 additional enemies near the primary target.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525024:effect:0:aura:107","name":"Scarlet Judicator (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525024,"level":1,"description":"Your Divine Force now strikes 2 additional enemies near the primary target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525024:effect:0:aura:107","name":"Scarlet Judicator (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}]}],"talentEntryId":34357},{"id":"coa-tree-4024","classId":"templar","dbcSpellId":92111,"name":"Scourgebane","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firesword_border.png","sigil":"SC","description":"Level 10 Passive Direct damage dealt now has a 20% chance to strike an enemy with Scourgebane, dealing an additional 162 + 25% SP + 15% AP Holyflame Damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92111:effect:0:aura:354","name":"Scourgebane (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807414}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92111,"level":1,"description":"Level 10 Passive Direct damage dealt now has a 20% chance to strike an enemy with Scourgebane, dealing an additional 162 + 25% SP + 15% AP Holyflame Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92111:effect:0:aura:354","name":"Scourgebane (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807414}]}],"talentEntryId":4024},{"id":"coa-tree-34352","classId":"templar","dbcSpellId":801465,"name":"Silverhand Incantation","unlockLevel":1,"icon":"/assets/ui/spells/5_paladinskill06_border.png","sigil":"SI","description":"Chant a silverhand incantation and toss a holy hammer at your target, charging you to them and removing Sacred Restraint from you and them if they are an ally. Upon reaching your target you deal 300 + 200% AP Holy damage to all nearby enemies and heal nearby allies for the same amount.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":801501},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58},{"kind":"movement","movement":"charge","toward":"target"}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801465,"level":1,"description":"Chant a silverhand incantation and toss a holy hammer at your target, charging you to them and removing Sacred Restraint from you and them if they are an ally. Upon reaching your target you deal 300 + 200% AP Holy damage to all nearby enemies and heal nearby allies for the same amount.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"trigger-spell","spellId":801501},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58},{"kind":"movement","movement":"charge","toward":"target"}]}],"talentEntryId":34352},{"id":"coa-tree-34345","classId":"templar","dbcSpellId":681009,"name":"Sturdy","unlockLevel":1,"icon":"/assets/ui/spells/spell_monk_envelopingmist.png","sigil":"ST","description":"Increases your maximum health and Energy by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681009:effect:0:aura:133","name":"Sturdy (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":133,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681009:effect:1:aura:132","name":"Sturdy (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681009,"level":1,"description":"Increases your maximum health and Energy by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681009:effect:0:aura:133","name":"Sturdy (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":133,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681009:effect:1:aura:132","name":"Sturdy (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":681537,"level":1,"description":"Increases your maximum health and Energy by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681537:effect:0:aura:133","name":"Sturdy (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":133,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681537:effect:1:aura:132","name":"Sturdy (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34345},{"id":"coa-tree-34337","classId":"templar","dbcSpellId":707385,"name":"Tenacious Defender","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_sealoffury.png","sigil":"TD","description":"Casting Libram of Tenacity now also heals you for 20% of your maximum health.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707385:effect:0:aura:107","name":"Tenacious Defender (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707385,"level":1,"description":"Casting Libram of Tenacity now also heals you for 20% of your maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707385:effect:0:aura:107","name":"Tenacious Defender (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34337},{"id":"coa-tree-34402","classId":"templar","dbcSpellId":500678,"name":"Testament of Fortitude","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holymeditation_border.png","sigil":"TO","description":"Meditate for 15 seconds, restoring 5% of your maximum health every 1 sec and reducing damage taken by -50%. Each second you will also remove 1 disease effect from yourself. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments.","target":"hostile","range":{"min":0,"max":0},"castMode":"channel","castTimeMs":15000,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500678:effect:0:aura:227","name":"Testament of Fortitude (Aura 227)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:500678:proc:0:500690","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500690}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":1,"triggerSpellId":500690},{"kind":"apply-aura","aura":{"id":"coa:500678:effect:1:aura:87","name":"Testament of Fortitude (Aura 87)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":102208},{"kind":"apply-aura","aura":{"id":"coa:102208:effect:0:aura:77","name":"Sacred Restraint (Aura 77)","disposition":"debuff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":25,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500678,"level":1,"description":"Meditate for 15 seconds, restoring 5% of your maximum health every 1 sec and reducing damage taken by -50%. Each second you will also remove 1 disease effect from yourself. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments.","castMode":"channel","castTimeMs":15000,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500678:effect:0:aura:227","name":"Testament of Fortitude (Aura 227)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:500678:proc:0:500690","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500690}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":1,"triggerSpellId":500690},{"kind":"apply-aura","aura":{"id":"coa:500678:effect:1:aura:87","name":"Testament of Fortitude (Aura 87)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":102208},{"kind":"apply-aura","aura":{"id":"coa:102208:effect:0:aura:77","name":"Sacred Restraint (Aura 77)","disposition":"debuff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":25,"triggerSpellId":0}]}],"talentEntryId":34402},{"id":"coa-tree-6375","classId":"templar","dbcSpellId":560649,"name":"Tyr's Guard","unlockLevel":1,"icon":"/assets/ui/spells/inv_jewelry_talisman_01.png","sigil":"TS","description":"Testament of Hope now summons an additional copy of yourself.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560649:effect:0:aura:42","name":"Tyr's Guard (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560649:proc:0:524616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524616}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524616},{"kind":"apply-aura","aura":{"id":"coa:560649:effect:1:aura:107","name":"Tyr's Guard (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560649:effect:2:aura:107","name":"Tyr's Guard (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560649,"level":1,"description":"Testament of Hope now summons an additional copy of yourself.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560649:effect:0:aura:42","name":"Tyr's Guard (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560649:proc:0:524616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524616}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524616},{"kind":"apply-aura","aura":{"id":"coa:560649:effect:1:aura:107","name":"Tyr's Guard (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560649:effect:2:aura:107","name":"Tyr's Guard (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6375},{"id":"coa-19-vitality-none-705312","classId":"templar","dbcSpellId":705312,"name":"Vitality","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessingofstamina.png","sigil":"VI","description":"VitalityRank 2Increases Stamina by 8% and Armor by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705312:effect:0:aura:137","name":"Vitality (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705312:effect:1:aura:101","name":"Vitality (Aura 101)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705312,"level":1,"description":"VitalityRank 2Increases Stamina by 8% and Armor by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705312:effect:0:aura:137","name":"Vitality (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705312:effect:1:aura:101","name":"Vitality (Aura 101)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-4022","classId":"templar","dbcSpellId":92108,"name":"Zealotry","unlockLevel":1,"icon":"/assets/ui/spells/custom_paladinskill_24_border.png","sigil":"ZE","description":"Level 10 Passive Your off-hand auto attacks now trigger Zealotry.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92108:effect:0:aura:220","name":"Zealotry (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:128","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":128,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92108:effect:1:aura:42","name":"Zealotry (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92108:proc:1:801450","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801450}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801450}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92108,"level":1,"description":"Level 10 Passive Your off-hand auto attacks now trigger Zealotry.Zealotry (Proc)Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92108:effect:0:aura:220","name":"Zealotry (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:128","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":128,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92108:effect:1:aura:42","name":"Zealotry (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92108:proc:1:801450","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801450}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801450}]}],"talentEntryId":4022},{"id":"coa-19-benediction-71-801448","classId":"templar","dbcSpellId":801448,"name":"Benediction","unlockLevel":2,"icon":"/assets/ui/spells/priest_icon_innewill.png","sigil":"BE","description":"BenedictionRank 120 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 6+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","target":"friendly","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":0.213725489728591,"basePoints":6,"dieSides":8,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":8}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801448,"level":2,"description":"BenedictionRank 120 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 6+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":0.213725489728591,"basePoints":6,"dieSides":8,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":8}]},{"rank":2,"spellId":803373,"level":10,"description":"BenedictionRank 220 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 17+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":0.548000005086263,"basePoints":17,"dieSides":10,"pointsPerLevel":1.9600000381469727,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}]},{"rank":3,"spellId":803374,"level":18,"description":"BenedictionRank 320 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 36+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":0.790707077642884,"basePoints":36,"dieSides":15,"pointsPerLevel":1.9600000381469727,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24}]},{"rank":4,"spellId":803375,"level":26,"description":"BenedictionRank 420 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 56+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":0.8018211484924564,"basePoints":56,"dieSides":20,"pointsPerLevel":1.2740000486373901,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32}]},{"rank":5,"spellId":803376,"level":34,"description":"BenedictionRank 520 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 116+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":1.1790204194127296,"basePoints":116,"dieSides":29,"pointsPerLevel":1.2740000486373901,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":6,"spellId":803377,"level":42,"description":"BenedictionRank 620 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 190+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":1.614854629973919,"basePoints":190,"dieSides":40,"pointsPerLevel":1.5866700410842896,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48}]},{"rank":7,"spellId":803378,"level":50,"description":"BenedictionRank 720 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 246+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":1.9324794720380734,"basePoints":246,"dieSides":56,"pointsPerLevel":2.0666699409484863,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":8,"spellId":578276,"level":58,"description":"BenedictionRank 820 Energy Instant6 sec cooldownUnleash a healing Oath Breaker, restoring 283+0+Sta*0.25+SP*0.3 health to an ally, scaling with Stamina. Consumes your Oaths, dealing additional healing for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1250,"cost":{"resource":"energy","amount":20},"effects":[{"kind":"trigger-spell","spellId":801409},{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"heal","coefficient":1.9527853830764283,"basePoints":283,"dieSides":56,"pointsPerLevel":2.0199999809265137,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66}]}]},{"id":"coa-19-gift-of-zeal-494-706634","classId":"templar","dbcSpellId":706634,"name":"Gift of Zeal","unlockLevel":2,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"Gift of ZealRank 1InstantPlaces a Gift on a friendly target, increasing Agility by 3 for 30 min.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706634:effect:0:aura:29","name":"Gift of Zeal (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"agility","operation":"flat","value":3}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706634,"level":2,"description":"Gift of ZealRank 1InstantPlaces a Gift on a friendly target, increasing Agility by 3 for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706634:effect:0:aura:29","name":"Gift of Zeal (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"agility","operation":"flat","value":3}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-19-testament-of-faith-494-801478","classId":"templar","dbcSpellId":801478,"name":"Testament of Faith","unlockLevel":8,"icon":"/assets/ui/spells/_d3blindingflash.png","sigil":"TO","description":"Testament of FaithRank 150 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 152+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","target":"friendly","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":1.2000000476837158,"basePoints":152,"dieSides":5,"pointsPerLevel":2.0133299827575684,"bonusPowerCoefficient":1.2000000476837158,"sourceLevel":8,"maxScalingLevel":14},{"kind":"apply-aura","aura":{"id":"coa:801478:effect:1:aura:31","name":"Testament of Faith (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.35}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801478,"level":8,"description":"Testament of FaithRank 150 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 152+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":1.2000000476837158,"basePoints":152,"dieSides":5,"pointsPerLevel":2.0133299827575684,"bonusPowerCoefficient":1.2000000476837158,"sourceLevel":8,"maxScalingLevel":14},{"kind":"apply-aura","aura":{"id":"coa:801478:effect:1:aura:31","name":"Testament of Faith (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.35}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501601,"level":16,"description":"Testament of FaithRank 250 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 316+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":316,"dieSides":8,"pointsPerLevel":4.139999866485596,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501601:effect:1:aura:31","name":"Testament of Faith (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.34}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501602,"level":22,"description":"Testament of FaithRank 350 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 621+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":621,"dieSides":14,"pointsPerLevel":3.1500000953674316,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30},{"kind":"apply-aura","aura":{"id":"coa:501602:effect:1:aura:31","name":"Testament of Faith (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.32}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501603,"level":32,"description":"Testament of FaithRank 450 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 1002+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":1002,"dieSides":23,"pointsPerLevel":6.053329944610596,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"apply-aura","aura":{"id":"coa:501603:effect:1:aura:31","name":"Testament of Faith (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.31}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501604,"level":40,"description":"Testament of FaithRank 550 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 1981+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":1981,"dieSides":35,"pointsPerLevel":7.266670227050781,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"apply-aura","aura":{"id":"coa:501604:effect:1:aura:31","name":"Testament of Faith (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501605,"level":48,"description":"Testament of FaithRank 650 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 2751+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":2751,"dieSides":49,"pointsPerLevel":6.78000020980835,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:501605:effect:1:aura:31","name":"Testament of Faith (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501606,"level":58,"description":"Testament of FaithRank 750 Energy Instant cast3 min cooldownSay a prayer for an ally, healing them for 3401+0+SP*1+AP*2. Applies Sacred Restraint for 1 min. Sacred Restraint Cannot be targeted by Testaments.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"energy","amount":50},"effects":[{"kind":"heal","coefficient":4,"basePoints":3401,"dieSides":68,"pointsPerLevel":6.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":68},{"kind":"apply-aura","aura":{"id":"coa:501606:effect:1:aura:31","name":"Testament of Faith (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-19-vindication-70-801446","classId":"templar","dbcSpellId":801446,"name":"Vindication","unlockLevel":11,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VI","description":"VindicationRank 135 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 31+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5012820546443646,"basePoints":31,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801446,"level":11,"description":"VindicationRank 135 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 31+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5012820546443646,"basePoints":31,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16}]},{"rank":2,"spellId":501589,"level":18,"description":"VindicationRank 235 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 42+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5959595959595959,"basePoints":42,"dieSides":8,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:501589:effect:1:aura:344","name":"Vindication (Aura 344)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501590,"level":28,"description":"VindicationRank 335 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 58+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.7054263565891473,"basePoints":58,"dieSides":11,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"apply-aura","aura":{"id":"coa:501590:effect:1:aura:344","name":"Vindication (Aura 344)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501591,"level":36,"description":"VindicationRank 435 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 81+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.8725490196078431,"basePoints":81,"dieSides":16,"pointsPerLevel":1.25,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"apply-aura","aura":{"id":"coa:501591:effect:1:aura:344","name":"Vindication (Aura 344)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501592,"level":44,"description":"VindicationRank 535 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 113+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.0706214689265536,"basePoints":113,"dieSides":22,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:501592:effect:1:aura:344","name":"Vindication (Aura 344)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501593,"level":52,"description":"VindicationRank 635 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 157+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.308457711442786,"basePoints":157,"dieSides":31,"pointsPerLevel":1.75,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"apply-aura","aura":{"id":"coa:501593:effect:1:aura:344","name":"Vindication (Aura 344)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":573324,"level":60,"description":"VindicationRank 735 Energy InstantRequires One-Handed Melee Weapon Strike an enemy with zeal, dealing 233+0+AP*0.285+SP*0.35 Physical damage, triggering Zealotry, and granting an Oath. Oath: Your damaging abilities have a 10% chance to trigger Zealotry. Zealotry Deals 40% off-hand Weapon Damage as Holy Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.6022222222222222,"basePoints":233,"dieSides":46,"pointsPerLevel":1.75,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"apply-aura","aura":{"id":"coa:573324:effect:1:aura:344","name":"Vindication (Aura 344)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":3,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122388,"triggerSpellId":0,"durationMs":0}]}]},{"id":"templar-holy-cleave","classId":"templar","dbcSpellId":801445,"name":"Holy Cleave","unlockLevel":12,"icon":"/assets/ui/spells/nhi_holyslash_border.png","sigil":"HC","description":"Holy CleaveRank 135 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 60% Weapon Damage plus 1 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","target":"hostile","range":{"min":0,"max":5},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.6}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801445,"level":12,"description":"Holy CleaveRank 135 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 60% Weapon Damage plus 1 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.6}]},{"rank":2,"spellId":501582,"level":18,"description":"Holy CleaveRank 235 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 65% Weapon Damage plus 9 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.65}]},{"rank":3,"spellId":501583,"level":24,"description":"Holy CleaveRank 335 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 70% Weapon Damage plus 19 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.7},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":4,"spellId":501584,"level":30,"description":"Holy CleaveRank 435 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 75% Weapon Damage plus 32 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":5,"spellId":501585,"level":36,"description":"Holy CleaveRank 535 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 75% Weapon Damage plus 54 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":6,"spellId":501586,"level":42,"description":"Holy CleaveRank 635 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 80% Weapon Damage plus 75 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":7,"spellId":501587,"level":48,"description":"Holy CleaveRank 735 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 80% Weapon Damage plus 107 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]},{"rank":8,"spellId":501588,"level":54,"description":"Holy CleaveRank 835 Energy InstantRequires Melee Weapon Cleave through enemies, dealing 85% Weapon Damage plus 140 to your target and an additional nearby enemy and granting an Oath. Oath: Your abilities strike 1 additional nearby target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.85},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":456703,"triggerSpellId":803143,"durationMs":0}]}]},{"id":"templar-righteous-upheaval","classId":"templar","dbcSpellId":501562,"name":"Righteous Upheaval","unlockLevel":13,"icon":"/assets/ui/spells/_monkability_uplift_yellow.png","sigil":"RU","description":"Righteous UpheavalRank 135 Energy Instant20 sec cooldownRequires One-Handed Melee Weapon Unleash a dominating Oath Breaker, dealing 31+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","target":"hostile","range":{"min":0,"max":5},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.4523809523809524,"basePoints":31,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":501562,"level":13,"description":"Righteous UpheavalRank 135 Energy Instant20 sec cooldownRequires One-Handed Melee Weapon Unleash a dominating Oath Breaker, dealing 31+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.4523809523809524,"basePoints":31,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18}]},{"rank":2,"spellId":501563,"level":20,"description":"Righteous UpheavalRank 235 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 42+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.49047619047619045,"basePoints":42,"dieSides":20,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26}]},{"rank":3,"spellId":501564,"level":28,"description":"Righteous UpheavalRank 335 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 60+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5736434108527132,"basePoints":60,"dieSides":29,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34}]},{"rank":4,"spellId":501565,"level":36,"description":"Righteous UpheavalRank 435 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 82+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.6633986928104575,"basePoints":82,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42}]},{"rank":5,"spellId":501566,"level":44,"description":"Righteous UpheavalRank 535 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 111+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.7796610169491526,"basePoints":111,"dieSides":55,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50}]},{"rank":6,"spellId":572021,"level":52,"description":"Righteous UpheavalRank 635 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 147+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.9104477611940298,"basePoints":147,"dieSides":73,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58}]},{"rank":7,"spellId":572027,"level":60,"description":"Righteous UpheavalRank 735 Energy Instant20 sec cooldownUnleash a dominating Oath Breaker, dealing 192+0+AP*0.45+SP*0.45 Physical damage, increased by 3% for each time you triggered Zealotry during your Oath Chain. Consumes your Oaths, dealing additional damage for each consumed.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.0622222222222222,"basePoints":192,"dieSides":95,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68}]}]},{"id":"coa-19-spiritual-ascension-71-500688","classId":"templar","dbcSpellId":500688,"name":"Spiritual Ascension","unlockLevel":20,"icon":"/assets/ui/spells/ability_paladin_selflesshealer.png","sigil":"SA","description":"Spiritual AscensionRank 12 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","target":"friendly","range":{"min":0,"max":20},"castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500688,"level":20,"description":"Spiritual AscensionRank 12 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":2,"spellId":500757,"level":50,"description":"Spiritual AscensionRank 22 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":3,"spellId":500758,"level":60,"description":"Spiritual AscensionRank 32 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":4,"spellId":500759,"level":70,"description":"Spiritual AscensionRank 42 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":5,"spellId":500760,"level":80,"description":"Spiritual AscensionRank 52 sec cast5 min cooldownCall an ally's spirit back to their body, bringing them back to life. Usable while in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]}]},{"id":"coa-19-temple-guardian-71-801165","classId":"templar","dbcSpellId":801165,"name":"Temple Guardian","unlockLevel":22,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TG","description":"Temple GuardianRank 115 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 102+0+AP*0.805+HolP*0.85.","target":"friendly","range":{"min":5,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"heal","coefficient":1.1609909985516522,"basePoints":102,"dieSides":7,"pointsPerLevel":1.0850000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30},{"kind":"heal","coefficient":1.1609909985516522,"basePoints":102,"dieSides":7,"pointsPerLevel":1.0850000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801165,"level":22,"description":"Temple GuardianRank 115 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 102+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"heal","coefficient":1.1609909985516522,"basePoints":102,"dieSides":7,"pointsPerLevel":1.0850000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30},{"kind":"heal","coefficient":1.1609909985516522,"basePoints":102,"dieSides":7,"pointsPerLevel":1.0850000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30}]},{"rank":2,"spellId":803792,"level":30,"description":"Temple GuardianRank 215 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 286+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"heal","coefficient":2.3974074010495787,"basePoints":286,"dieSides":7,"pointsPerLevel":1.1549999713897705,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":40},{"kind":"heal","coefficient":2.3974074010495787,"basePoints":286,"dieSides":7,"pointsPerLevel":1.1549999713897705,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":40}]},{"rank":3,"spellId":803793,"level":40,"description":"Temple GuardianRank 315 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 402+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"heal","coefficient":2.751515157294996,"basePoints":402,"dieSides":7,"pointsPerLevel":1.225000023841858,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"heal","coefficient":2.751515157294996,"basePoints":402,"dieSides":7,"pointsPerLevel":1.225000023841858,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48}]},{"rank":4,"spellId":803794,"level":48,"description":"Temple GuardianRank 415 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 596+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"heal","coefficient":3.498201047301923,"basePoints":596,"dieSides":7,"pointsPerLevel":1.2949999570846558,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"heal","coefficient":3.498201047301923,"basePoints":596,"dieSides":7,"pointsPerLevel":1.2949999570846558,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":5,"spellId":803795,"level":54,"description":"Temple GuardianRank 515 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 726+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"heal","coefficient":3.8778260894443677,"basePoints":726,"dieSides":7,"pointsPerLevel":1.3650000095367432,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60},{"kind":"heal","coefficient":3.8778260894443677,"basePoints":726,"dieSides":7,"pointsPerLevel":1.3650000095367432,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60}]},{"rank":6,"spellId":803796,"level":60,"description":"Temple GuardianRank 615 Energy Instant3 Charges, 35 sec recharge Charge towards an ally, healing you and them for 881+0+AP*0.805+HolP*0.85.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1000,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"movement","movement":"charge","toward":"target"},{"kind":"heal","coefficient":4,"basePoints":881,"dieSides":7,"pointsPerLevel":1.434999942779541,"bonusPowerCoefficient":0,"sourceLevel":60},{"kind":"heal","coefficient":4,"basePoints":881,"dieSides":7,"pointsPerLevel":1.434999942779541,"bonusPowerCoefficient":0,"sourceLevel":60}]}]},{"id":"coa-19-titanstrike-72-806521","classId":"templar","dbcSpellId":806521,"name":"Titanstrike","unlockLevel":34,"icon":"/assets/ui/spells/nhi_holythrow_border.png","sigil":"TI","description":"TitanstrikeRank 115 Energy Instant cast8 sec cooldownCall down the wrath of the gods on an injured enemy, dealing 356+0+AP*0.2+HolP*1 Holy Damage, healing you equal to the damage dealt, and extending the duration of your Oath Chain by 5 sec. Only usable on enemies below 35% health.","target":"hostile","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":3.1359937531607494,"basePoints":356,"dieSides":129,"pointsPerLevel":1.2056200504302979,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":44},{"kind":"heal","coefficient":3.1359937531607494,"basePoints":356,"dieSides":129,"pointsPerLevel":1.2056200504302979,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":707896}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806521,"level":34,"description":"TitanstrikeRank 115 Energy Instant cast8 sec cooldownCall down the wrath of the gods on an injured enemy, dealing 356+0+AP*0.2+HolP*1 Holy Damage, healing you equal to the damage dealt, and extending the duration of your Oath Chain by 5 sec. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":3.1359937531607494,"basePoints":356,"dieSides":129,"pointsPerLevel":1.2056200504302979,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":44},{"kind":"heal","coefficient":3.1359937531607494,"basePoints":356,"dieSides":129,"pointsPerLevel":1.2056200504302979,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":707896}]},{"rank":2,"spellId":806834,"level":42,"description":"Call down the wrath of the gods on an injured enemy, dealing ${$m1+0+$AP*0.2+$sph*1} Holy Damage, healing you equal to the damage dealt, and extending the duration of your Oath Chain by $/1000;707896s1 sec. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":3.7445429194043256,"basePoints":505,"dieSides":129,"pointsPerLevel":1.6980199813842773,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":52},{"kind":"heal","coefficient":3.7445429194043256,"basePoints":505,"dieSides":129,"pointsPerLevel":1.6980199813842773,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":707896}]},{"rank":3,"spellId":806835,"level":52,"description":"Call down the wrath of the gods on an injured enemy, dealing ${$m1+0+$AP*0.2+$sph*1} Holy Damage, healing you equal to the damage dealt, and extending the duration of your Oath Chain by $/1000;707896s1 sec. Only usable on enemies below 35% health.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"energy","amount":15},"effects":[{"kind":"damage","coefficient":4,"basePoints":716,"dieSides":129,"pointsPerLevel":3.2808399200439453,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":61},{"kind":"heal","coefficient":4,"basePoints":716,"dieSides":129,"pointsPerLevel":3.2808399200439453,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":61},{"kind":"trigger-spell","spellId":707896}]}]},{"id":"coa-19-flaming-blade-72-801451","classId":"templar","dbcSpellId":801451,"name":"Flaming Blade","unlockLevel":62,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0000s_0000_sword_border.png","sigil":"FB","description":"Flaming BladeRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 50+PL*0.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 27 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801451:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801451:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.15000000596046448,"basePoints":3,"dieSides":1,"pointsPerLevel":0.1599999964237213,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":62,"maxScalingLevel":63,"ticks":9,"intervalMs":2000,"tag":"spell-801451"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801451,"level":62,"description":"Flaming BladeRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 50+PL*0.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 27 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801451:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801451:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.15000000596046448,"basePoints":3,"dieSides":1,"pointsPerLevel":0.1599999964237213,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":62,"maxScalingLevel":63,"ticks":9,"intervalMs":2000,"tag":"spell-801451"}]},{"rank":2,"spellId":501594,"level":64,"description":"Flaming BladeRank 2InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 100+PL*1+(FireP+AP)*0.67 and causing the target to bleed for an additional 45 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501594:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501594:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09638481301094409,"basePoints":5,"dieSides":1,"pointsPerLevel":0.27880001068115234,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":65,"ticks":9,"intervalMs":2000,"tag":"spell-501594"}]},{"rank":3,"spellId":501595,"level":66,"description":"Flaming BladeRank 3InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 190+PL*1.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 81 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501595:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501595:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.16925431695985205,"basePoints":9,"dieSides":1,"pointsPerLevel":0.4867999851703644,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":67,"ticks":9,"intervalMs":2000,"tag":"spell-501595"}]},{"rank":4,"spellId":501596,"level":68,"description":"Flaming BladeRank 4InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 250+PL*2.0+(FireP+AP)*0.67 and causing the target to bleed for an additional 117 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501596:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501596:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2419534189155303,"basePoints":13,"dieSides":1,"pointsPerLevel":0.6948000192642212,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":69,"ticks":9,"intervalMs":2000,"tag":"spell-501596"}]},{"rank":5,"spellId":501597,"level":70,"description":"Flaming BladeRank 5InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 380+PL*2.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 189 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501597:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501597:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.302729411686168,"basePoints":21,"dieSides":1,"pointsPerLevel":0.8027999997138977,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":71,"ticks":9,"intervalMs":2000,"tag":"spell-501597"}]},{"rank":6,"spellId":501598,"level":72,"description":"Flaming BladeRank 6InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 572+PL*3.0+(FireP+AP)*0.67 and causing the target to bleed for an additional 207 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501598:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501598:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3393777723056603,"basePoints":23,"dieSides":1,"pointsPerLevel":0.9107999801635742,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":74,"ticks":9,"intervalMs":2000,"tag":"spell-501598"}]},{"rank":7,"spellId":501599,"level":76,"description":"Flaming BladeRank 7InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 901+PL*3.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 261 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501599:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501599:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4158728236243838,"basePoints":29,"dieSides":1,"pointsPerLevel":1.112280011177063,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78,"ticks":9,"intervalMs":2000,"tag":"spell-501599"}]},{"rank":8,"spellId":501600,"level":80,"description":"Flaming BladeRank 8InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 1386+PL*4+(FireP+AP)*0.67 and causing the target to bleed for an additional 351 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501600:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501600:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4807017610784163,"basePoints":39,"dieSides":1,"pointsPerLevel":1.225000023841858,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":9,"intervalMs":2000,"tag":"spell-501600"}]}]},{"id":"coa-19-flaming-blade-70-72-801451","classId":"templar","dbcSpellId":801451,"name":"Flaming Blade","unlockLevel":62,"icon":"/assets/ui/spells/epic_rpg_icon_pack_fire_0000s_0000_sword_border.png","sigil":"FB","description":"Flaming BladeRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 50+PL*0.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 27 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801451:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801451:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.15000000596046448,"basePoints":3,"dieSides":1,"pointsPerLevel":0.1599999964237213,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":62,"maxScalingLevel":63,"ticks":9,"intervalMs":2000,"tag":"spell-801451"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801451,"level":62,"description":"Flaming BladeRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 50+PL*0.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 27 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801451:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801451:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.15000000596046448,"basePoints":3,"dieSides":1,"pointsPerLevel":0.1599999964237213,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":62,"maxScalingLevel":63,"ticks":9,"intervalMs":2000,"tag":"spell-801451"}]},{"rank":2,"spellId":501594,"level":64,"description":"Flaming BladeRank 2InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 100+PL*1+(FireP+AP)*0.67 and causing the target to bleed for an additional 45 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501594:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501594:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09638481301094409,"basePoints":5,"dieSides":1,"pointsPerLevel":0.27880001068115234,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":65,"ticks":9,"intervalMs":2000,"tag":"spell-501594"}]},{"rank":3,"spellId":501595,"level":66,"description":"Flaming BladeRank 3InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 190+PL*1.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 81 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501595:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501595:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.16925431695985205,"basePoints":9,"dieSides":1,"pointsPerLevel":0.4867999851703644,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":67,"ticks":9,"intervalMs":2000,"tag":"spell-501595"}]},{"rank":4,"spellId":501596,"level":68,"description":"Flaming BladeRank 4InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 250+PL*2.0+(FireP+AP)*0.67 and causing the target to bleed for an additional 117 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501596:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501596:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2419534189155303,"basePoints":13,"dieSides":1,"pointsPerLevel":0.6948000192642212,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":69,"ticks":9,"intervalMs":2000,"tag":"spell-501596"}]},{"rank":5,"spellId":501597,"level":70,"description":"Flaming BladeRank 5InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 380+PL*2.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 189 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501597:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501597:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.302729411686168,"basePoints":21,"dieSides":1,"pointsPerLevel":0.8027999997138977,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":71,"ticks":9,"intervalMs":2000,"tag":"spell-501597"}]},{"rank":6,"spellId":501598,"level":72,"description":"Flaming BladeRank 6InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 572+PL*3.0+(FireP+AP)*0.67 and causing the target to bleed for an additional 207 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501598:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501598:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3393777723056603,"basePoints":23,"dieSides":1,"pointsPerLevel":0.9107999801635742,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":74,"ticks":9,"intervalMs":2000,"tag":"spell-501598"}]},{"rank":7,"spellId":501599,"level":76,"description":"Flaming BladeRank 7InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 901+PL*3.5+(FireP+AP)*0.67 and causing the target to bleed for an additional 261 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501599:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501599:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4158728236243838,"basePoints":29,"dieSides":1,"pointsPerLevel":1.112280011177063,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78,"ticks":9,"intervalMs":2000,"tag":"spell-501599"}]},{"rank":8,"spellId":501600,"level":80,"description":"Flaming BladeRank 8InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Unleash a Oath Breaker, dealing Weapon Damage plus 1386+PL*4+(FireP+AP)*0.67 and causing the target to bleed for an additional 351 Fire Damage over 18 sec. Gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501600:effect:1:aura:4","name":"Flaming Blade (Aura 4)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501600:effect:2:aura:3","name":"Flaming Blade (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4807017610784163,"basePoints":39,"dieSides":1,"pointsPerLevel":1.225000023841858,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":9,"intervalMs":2000,"tag":"spell-501600"}]}]},{"id":"coa-19-divine-fury-70-501567","classId":"templar","dbcSpellId":501567,"name":"Divine Fury","unlockLevel":68,"icon":"/assets/ui/spells/nhi_hammeroflight_border.png","sigil":"DF","description":"Divine FuryRank 2Instant cast35 sec cooldownRequires 3 Oaths Unleash a devastating Oath Breaker, dealing 143+0+HolP*0.85+AP*.355 Holy Damage to an enemy and up to 4 nearby enemies and increasing damage they take from you by 10% for 20 sec. Also gains the Oaths of each Follow Up used in the chain.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.9693975812460045,"basePoints":143,"dieSides":6,"pointsPerLevel":1.409999966621399,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"apply-aura","aura":{"id":"coa:501567:effect:1:aura:271","name":"Divine Fury (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501567,"level":68,"description":"Divine FuryRank 2Instant cast35 sec cooldownRequires 3 Oaths Unleash a devastating Oath Breaker, dealing 143+0+HolP*0.85+AP*.355 Holy Damage to an enemy and up to 4 nearby enemies and increasing damage they take from you by 10% for 20 sec. Also gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.9693975812460045,"basePoints":143,"dieSides":6,"pointsPerLevel":1.409999966621399,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"apply-aura","aura":{"id":"coa:501567:effect:1:aura:271","name":"Divine Fury (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]},{"rank":3,"spellId":501568,"level":76,"description":"Divine FuryRank 3Instant cast35 sec cooldownRequires 3 Oaths Unleash a devastating Oath Breaker, dealing 276+0+HolP*0.85+AP*.355 Holy Damage to an enemy and up to 4 nearby enemies and increasing damage they take from you by 10% for 20 sec. Also gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.6528205207852653,"basePoints":276,"dieSides":14,"pointsPerLevel":2.2200000286102295,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78},{"kind":"apply-aura","aura":{"id":"coa:501568:effect:1:aura:271","name":"Divine Fury (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]},{"rank":4,"spellId":501569,"level":80,"description":"Divine FuryRank 4Instant cast35 sec cooldownRequires 3 Oaths Unleash a devastating Oath Breaker, dealing 211+0+HolP*0.85+AP*.355 Holy Damage to an enemy and up to 2 nearby enemies and increasing damage they take from you by 10% for 20 sec. Also gains the Oaths of each Follow Up used in the chain.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.6382456060041461,"basePoints":211,"dieSides":28,"pointsPerLevel":3.0299999713897705,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:501569:effect:1:aura:271","name":"Divine Fury (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":20000}]}]}],"bloodmage":[{"id":"coa-tree-29871","classId":"bloodmage","dbcSpellId":504285,"name":"Alacrity","unlockLevel":1,"icon":"/assets/ui/spells/5_run_border.png","sigil":"AL","description":"Increases all primary stats by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504285:effect:0:aura:137","name":"Alacrity (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504285,"level":1,"description":"Increases all primary stats by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504285:effect:0:aura:137","name":"Alacrity (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}]},{"rank":2,"spellId":504893,"level":1,"description":"Increases all primary stats by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504893:effect:0:aura:137","name":"Alacrity (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}]}],"talentEntryId":29871},{"id":"coa-20-atheranns-wickedness-73-704642","classId":"bloodmage","dbcSpellId":704642,"name":"Atherann's Wickedness","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_destructivesoul.png","sigil":"AS","description":"Atherann's WickednessRank 1Increases your Shadow damage dealt by 4% and increases your hit chance by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704642:effect:0:aura:79","name":"Atherann's Wickedness (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"shadow","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":32,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704642:effect:1:aura:333","name":"Atherann's Wickedness (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704642,"level":1,"description":"Atherann's WickednessRank 1Increases your Shadow damage dealt by 4% and increases your hit chance by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704642:effect:0:aura:79","name":"Atherann's Wickedness (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"shadow","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":32,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704642:effect:1:aura:333","name":"Atherann's Wickedness (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":704643,"level":1,"description":"Atherann's WickednessRank 2Increases the damage of Atherann's Anguish by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704643:effect:0:aura:108","name":"Atherann's Wickedness (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-8215","classId":"bloodmage","dbcSpellId":504627,"name":"Blood Bond","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodsacrifice_border.png","sigil":"BB","description":"Bond yourself to an ally for 30 minutes, causing direct damage taken by the ally to generate 1 Rage and 3% base health and redirect their threat generated to you. In addition, while out of combat, you and your bonded ally have 30% increased movement speed.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504627:effect:0:aura:42","name":"Blood Bond (Aura 42)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504627:proc:0:505325","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505325}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":505325},{"kind":"apply-aura","aura":{"id":"coa:504627:effect:1:aura:23","name":"Blood Bond (Aura 23)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504627:proc:1:505169","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505169}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":505169}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504627,"level":1,"description":"Bond yourself to an ally for 30 minutes, causing direct damage taken by the ally to generate 1 Rage and 3% base health and redirect their threat generated to you. In addition, while out of combat, you and your bonded ally have 30% increased movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504627:effect:0:aura:42","name":"Blood Bond (Aura 42)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504627:proc:0:505325","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505325}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":505325},{"kind":"apply-aura","aura":{"id":"coa:504627:effect:1:aura:23","name":"Blood Bond (Aura 23)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504627:proc:1:505169","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505169}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":505169}]}],"talentEntryId":8215},{"id":"coa-tree-29484","classId":"bloodmage","dbcSpellId":804199,"name":"Blood Moon","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_earth.png","sigil":"BM","description":"Your Animated Blood now spawns an additional amalgam.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804199:effect:0:aura:107","name":"Blood Moon (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804199,"level":1,"description":"Your Animated Blood now spawns an additional amalgam.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804199:effect:0:aura:107","name":"Blood Moon (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":29484},{"id":"coa-tree-31117","classId":"bloodmage","dbcSpellId":801955,"name":"Blood Pact","unlockLevel":1,"icon":"/assets/ui/spells/ability_xavius_darkeningsoul.png","sigil":"BP","description":"Invoke a blood pact, exchanging health for enhanced reflexes, increasing your chance to dodge and reducing the chance for ranged attacks to hit you by 50% for 12 seconds. While active you can dodge or parry while casting.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801955:effect:0:aura:185","name":"Blood Pact (Aura 185)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":185,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801955:effect:1:aura:118","name":"Blood Pact (Aura 118)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801955:effect:2:aura:49","name":"Blood Pact (Aura 49)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801955,"level":1,"description":"Invoke a blood pact, exchanging health for enhanced reflexes, increasing your chance to dodge and reducing the chance for ranged attacks to hit you by 50% for 12 seconds. While active you can dodge or parry while casting.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801955:effect:0:aura:185","name":"Blood Pact (Aura 185)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":185,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801955:effect:1:aura:118","name":"Blood Pact (Aura 118)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801955:effect:2:aura:49","name":"Blood Pact (Aura 49)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":31117},{"id":"coa-tree-6630","classId":"bloodmage","dbcSpellId":560254,"name":"Blood Rush","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_bloodyeye.png","sigil":"BR","description":"Periodic damage dealt now has a 20% chance to grant you Blood Rush. Can only occur once every 5 sec.Blood RushIncreases your haste by 20% for 5 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560254:effect:0:aura:42","name":"Blood Rush (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560254:proc:0:504551","triggers":["hit"],"chance":0.2,"internalCooldownMs":5000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504551}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504551}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560254,"level":1,"description":"Periodic damage dealt now has a 20% chance to grant you Blood Rush. Can only occur once every 5 sec.Blood RushIncreases your haste by 20% for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560254:effect:0:aura:42","name":"Blood Rush (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560254:proc:0:504551","triggers":["hit"],"chance":0.2,"internalCooldownMs":5000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504551}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504551}]}],"talentEntryId":6630},{"id":"coa-tree-31215","classId":"bloodmage","dbcSpellId":804858,"name":"Blood Trails","unlockLevel":1,"icon":"/assets/ui/spells/uico_blood_spell_07_border.png","sigil":"BT","description":"Periodic damage and healing now causes targets to spill a pool of blood beneath them. Allies in a Cursed Form who move through the pools of blood gain Trail of Blood for 6 seconds.Trail of BloodMovement speed cannot be reduced below 80%. Movement speed increased by 20%. Damage dealt increased by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804858:effect:0:aura:4","name":"Blood Trails (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804858:effect:1:aura:42","name":"Blood Trails (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804858:proc:1:804857","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804857}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804857}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804858,"level":1,"description":"Periodic damage and healing now causes targets to spill a pool of blood beneath them. Allies in a Cursed Form who move through the pools of blood gain Trail of Blood for 6 seconds.Trail of BloodMovement speed cannot be reduced below 80%. Movement speed increased by 20%. Damage dealt increased by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804858:effect:0:aura:4","name":"Blood Trails (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804858:effect:1:aura:42","name":"Blood Trails (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804858:proc:1:804857","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804857}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804857}]}],"talentEntryId":31215},{"id":"coa-tree-34969","classId":"bloodmage","dbcSpellId":504263,"name":"Blood Veil","unlockLevel":1,"icon":"/assets/ui/spells/nhi_blood_drain_border.png","sigil":"BV","description":"Create a magical veil around an ally, absorbing 50% of incoming damage, up to a maximum of 511 + 150% Spirit + 75% AP for 8 seconds.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":8000},{"kind":"apply-aura","aura":{"id":"coa:504263:effect:0:aura:69","name":"Blood Veil (Aura 69)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:504263:absorb:0","amount":50,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504263:effect:1:aura:69","name":"Blood Veil (Aura 69)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:504263:absorb:1","amount":511,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504263,"level":1,"description":"Create a magical veil around an ally, absorbing 50% of incoming damage, up to a maximum of 511 + 150% Spirit + 75% AP for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":8000},{"kind":"apply-aura","aura":{"id":"coa:504263:effect:0:aura:69","name":"Blood Veil (Aura 69)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:504263:absorb:0","amount":50,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504263:effect:1:aura:69","name":"Blood Veil (Aura 69)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:504263:absorb:1","amount":511,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":34969},{"id":"coa-tree-4969","classId":"bloodmage","dbcSpellId":806423,"name":"Bloodleaper","unlockLevel":1,"icon":"/assets/ui/spells/inv_boot_cloth_raidwarlock_r_01.png","sigil":"BL","description":"Reduces the cooldown of your Lunge by -10 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806423:effect:0:aura:107","name":"Bloodleaper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806423,"level":1,"description":"Reduces the cooldown of your Lunge by -10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806423:effect:0:aura:107","name":"Bloodleaper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":4969},{"id":"coa-tree-29876","classId":"bloodmage","dbcSpellId":801961,"name":"Bloodmoon Power","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_rogue_bloodyeye_nightmare.png","sigil":"BP","description":"Your Liquify now cleanses all negative effects when used.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801961:effect:0:aura:4","name":"Bloodmoon Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801961,"level":1,"description":"Your Liquify now cleanses all negative effects when used.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801961:effect:0:aura:4","name":"Bloodmoon Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29876},{"id":"coa-tree-34628","classId":"bloodmage","dbcSpellId":705742,"name":"Bloody Sacrifice","unlockLevel":1,"icon":"/assets/ui/spells/_sacrificialdagger_blood.png","sigil":"BS","description":"Increases your healing received by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705742:effect:0:aura:118","name":"Bloody Sacrifice (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705742,"level":1,"description":"Increases your healing received by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705742:effect:0:aura:118","name":"Bloody Sacrifice (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":34628},{"id":"coa-20-dark-curse-none-560252","classId":"bloodmage","dbcSpellId":560252,"name":"Dark Curse","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_cannibalize.png","sigil":"DC","description":"Dark CurseRank 2Increases critical strike chance by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560252:effect:0:aura:290","name":"Dark Curse (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560252,"level":1,"description":"Dark CurseRank 2Increases critical strike chance by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560252:effect:0:aura:290","name":"Dark Curse (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-20-dark-hide-75-705730","classId":"bloodmage","dbcSpellId":705730,"name":"Dark Hide","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DH","description":"Dark HideRank 1Reduces damage taken by 3% and increases Stamina by 2%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705730:effect:0:aura:87","name":"Dark Hide (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705730:effect:1:aura:137","name":"Dark Hide (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705730,"level":1,"description":"Dark HideRank 1Reduces damage taken by 3% and increases Stamina by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705730:effect:0:aura:87","name":"Dark Hide (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705730:effect:1:aura:137","name":"Dark Hide (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0}]}]},{"id":"coa-tree-5907","classId":"bloodmage","dbcSpellId":704621,"name":"Easy Prey","unlockLevel":1,"icon":"/assets/ui/spells/ability_mount_epicbatmount.png","sigil":"EP","description":"Increases the duration of Hemostasis by 1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704621:effect:0:aura:107","name":"Easy Prey (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704621,"level":1,"description":"Increases the duration of Hemostasis by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704621:effect:0:aura:107","name":"Easy Prey (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":5907},{"id":"coa-tree-4027","classId":"bloodmage","dbcSpellId":92114,"name":"Eternal Curse","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_viciousness.png","sigil":"EC","description":"Level 10 Passive Teaches you Eternal Curse.Eternal Curse (Cursed Form)Embrace your eternal curse, entering a Cursed Form, reducing your damage dealt by -10% and increasing your threat generated by 80%, plus an additional 50% from damage dealt by spells that cost health. While active your armor contribution from items is increased by 400% and your total Stamina is increased by 25%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92114:effect:0:aura:4","name":"Eternal Curse (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92114,"level":1,"description":"Level 10 Passive Teaches you Eternal Curse.Eternal Curse (Cursed Form)Embrace your eternal curse, entering a Cursed Form, reducing your damage dealt by -10% and increasing your threat generated by 80%, plus an additional 50% from damage dealt by spells that cost health. While active your armor contribution from items is increased by 400% and your total Stamina is increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92114:effect:0:aura:4","name":"Eternal Curse (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4027},{"id":"coa-tree-29629","classId":"bloodmage","dbcSpellId":801952,"name":"Fleshcraft","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodtear_border.png","sigil":"FL","description":"Mend blood and bone, healing an ally for 50% of their maximum health and applies Sated. SatedCannot be affected by Fleshcraft for 3 minutes.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":50},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.5,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1},{"kind":"resource","amount":0,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:801952:effect:2:aura:216","name":"Fleshcraft (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801952,"level":1,"description":"Mend blood and bone, healing an ally for 50% of their maximum health and applies Sated. SatedCannot be affected by Fleshcraft for 3 minutes.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"rage","amount":50},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.5,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1},{"kind":"resource","amount":0,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:801952:effect:2:aura:216","name":"Fleshcraft (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29629},{"id":"coa-20-gnash-none-704658","classId":"bloodmage","dbcSpellId":704658,"name":"Gnash","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_deathpact.png","sigil":"GN","description":"GnashRank 2Increases the damage caused when you apply Grimclaw by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704658:effect:0:aura:108","name":"Gnash (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704658,"level":1,"description":"GnashRank 2Increases the damage caused when you apply Grimclaw by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704658:effect:0:aura:108","name":"Gnash (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-20-heightened-reflexes-75-704627","classId":"bloodmage","dbcSpellId":704627,"name":"Heightened Reflexes","unlockLevel":1,"icon":"/assets/ui/spells/inv_skinning_80_coarsefur.png","sigil":"HR","description":"Heightened ReflexesRank 1Increases your chance to dodge by 4% and your expertise by 5.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704627:effect:0:aura:49","name":"Heightened Reflexes (Aura 49)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704627:effect:1:aura:240","name":"Heightened Reflexes (Aura 240)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"expertise","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":240,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704627,"level":1,"description":"Heightened ReflexesRank 1Increases your chance to dodge by 4% and your expertise by 5.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704627:effect:0:aura:49","name":"Heightened Reflexes (Aura 49)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704627:effect:1:aura:240","name":"Heightened Reflexes (Aura 240)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"expertise","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":240,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":704628,"level":1,"description":"Heightened ReflexesRank 2Increases your chance to dodge by 8% and your expertise by 10.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704628:effect:0:aura:49","name":"Heightened Reflexes (Aura 49)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704628:effect:1:aura:240","name":"Heightened Reflexes (Aura 240)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"expertise","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":240,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-20-improved-arugals-blessing-73-705743","classId":"bloodmage","dbcSpellId":705743,"name":"Improved Arugal's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/ability_xavius_darkeningsoul.png","sigil":"IA","description":"Improved Arugal's BlessingRank 1Reduces the cooldown of Arugal's Blessing by 5 sec and increases its duration by 1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705743:effect:0:aura:107","name":"Improved Arugal's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705743:effect:1:aura:107","name":"Improved Arugal's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705743,"level":1,"description":"Improved Arugal's BlessingRank 1Reduces the cooldown of Arugal's Blessing by 5 sec and increases its duration by 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705743:effect:0:aura:107","name":"Improved Arugal's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705743:effect:1:aura:107","name":"Improved Arugal's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-9970","classId":"bloodmage","dbcSpellId":706617,"name":"Life Scent","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_garrote.png","sigil":"LS","description":"Increases your stealth detection significantly.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706617:effect:0:aura:17","name":"Life Scent (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706617,"level":1,"description":"Increases your stealth detection significantly.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706617:effect:0:aura:17","name":"Life Scent (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":9970},{"id":"coa-tree-33688","classId":"bloodmage","dbcSpellId":806310,"name":"Liquify","unlockLevel":1,"icon":"/assets/ui/spells/ability_ironmaidens_corruptedblood.png","sigil":"LI","description":"Requires Mortal Form Dissipate into a pool of blood, making you immune to damage from spells and attacks, but preventing you from attacking or casting spells and slowing your movement speed by -30% for 6 seconds. Usable while stunned, feared or confused.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806310:effect:0:aura:263","name":"Liquify (Aura 263)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":263,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806310:effect:1:aura:40","name":"Liquify (Aura 40)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":40,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806310:effect:2:aura:33","name":"Liquify (Aura 33)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806310,"level":1,"description":"Requires Mortal Form Dissipate into a pool of blood, making you immune to damage from spells and attacks, but preventing you from attacking or casting spells and slowing your movement speed by -30% for 6 seconds. Usable while stunned, feared or confused.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806310:effect:0:aura:263","name":"Liquify (Aura 263)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":263,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806310:effect:1:aura:40","name":"Liquify (Aura 40)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":40,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806310:effect:2:aura:33","name":"Liquify (Aura 33)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":33688},{"id":"coa-tree-30846","classId":"bloodmage","dbcSpellId":504292,"name":"Mortal Wounds","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_death.png","sigil":"MW","description":"Your direct harmful critical strikes with spells and abilities now cause the target to bleed for 306 + 6% AP + 30% SP over 6 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504292:effect:0:aura:42","name":"Mortal Wounds (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504292:proc:0:504291","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504291}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504291}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504292,"level":1,"description":"Your direct harmful critical strikes with spells and abilities now cause the target to bleed for 306 + 6% AP + 30% SP over 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504292:effect:0:aura:42","name":"Mortal Wounds (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504292:proc:0:504291","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504291}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504291}]}],"talentEntryId":30846},{"id":"coa-tree-29370","classId":"bloodmage","dbcSpellId":300226,"name":"Nightmare","unlockLevel":1,"icon":"/assets/ui/spells/_deathcoilv2_blood.png","sigil":"NI","description":"While above 50% maximum health, abilities that cost Rage now consume 2% of your maximum health to damage or heal your target for an additional 10% of the value.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300226:effect:0:aura:23","name":"Nightmare (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300226:proc:0:301273","triggers":["periodic"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301273}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301273}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300226,"level":1,"description":"While above 50% maximum health, abilities that cost Rage now consume 2% of your maximum health to damage or heal your target for an additional 10% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300226:effect:0:aura:23","name":"Nightmare (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300226:proc:0:301273","triggers":["periodic"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301273}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301273}]}],"talentEntryId":29370},{"id":"coa-tree-9905","classId":"bloodmage","dbcSpellId":681078,"name":"Pooled Vitality","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_food_legion_gooamber_pool.png","sigil":"PV","description":"Level 10 Passive Spells that cost health now grant a stack of Pooled Vitality, stacking 10 times. Mortal Form spells that cost Rage consume 10 stacks of Pooled Vitality to become empowered.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681078:effect:0:aura:4","name":"Pooled Vitality (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681078,"level":1,"description":"Level 10 Passive Spells that cost health now grant a stack of Pooled Vitality, stacking 10 times. Mortal Form spells that cost Rage consume 10 stacks of Pooled Vitality to become empowered.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681078:effect:0:aura:4","name":"Pooled Vitality (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":9905},{"id":"coa-tree-34964","classId":"bloodmage","dbcSpellId":300590,"name":"Predator","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_summonfelhunter.png","sigil":"PR","description":"Your Sanguine Mend now heals 1 additional nearby target. Increases the critical damage of Claw Sweep and Sanguine Rupture by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300590:effect:0:aura:108","name":"Predator (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300590:effect:1:aura:107","name":"Predator (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300590,"level":1,"description":"Your Sanguine Mend now heals 1 additional nearby target. Increases the critical damage of Claw Sweep and Sanguine Rupture by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300590:effect:0:aura:108","name":"Predator (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300590:effect:1:aura:107","name":"Predator (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}]}],"talentEntryId":34964},{"id":"coa-20-ravenous-bite-packleader-75-560365","classId":"bloodmage","dbcSpellId":560365,"name":"Ravenous Bite (Packleader)","unlockLevel":1,"icon":"/assets/ui/spells/artifactability_feraldruid_ashamanesbite.png","sigil":"RB","description":"Ravenous Bite (Packleader)Rank 1InstantA strong bite that causes 15 to 17 Physical Damage and heals you for the same amount. Generates additional threat.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.347916666418314,"basePoints":15,"dieSides":3,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":8},{"kind":"heal","coefficient":0.347916666418314,"basePoints":15,"dieSides":3,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":8},{"kind":"trigger-spell","spellId":804091},{"kind":"trigger-spell","spellId":800491},{"kind":"heal","coefficient":0,"percentMaxHealth":0.03,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":560365,"level":1,"description":"Ravenous Bite (Packleader)Rank 1InstantA strong bite that causes 15 to 17 Physical Damage and heals you for the same amount. Generates additional threat.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.347916666418314,"basePoints":15,"dieSides":3,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":8},{"kind":"heal","coefficient":0.347916666418314,"basePoints":15,"dieSides":3,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":8},{"kind":"trigger-spell","spellId":804091},{"kind":"trigger-spell","spellId":800491},{"kind":"heal","coefficient":0,"percentMaxHealth":0.03,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}]}]},{"id":"coa-20-regenerative-power-none-706597","classId":"bloodmage","dbcSpellId":706597,"name":"Regenerative Power","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_gem_bloodstone_01.png","sigil":"RP","description":"Regenerative PowerRank 2Increases damage and healing done by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706597:effect:0:aura:136","name":"Regenerative Power (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706597:effect:1:aura:79","name":"Regenerative Power (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706597,"level":1,"description":"Regenerative PowerRank 2Increases damage and healing done by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706597:effect:0:aura:136","name":"Regenerative Power (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706597:effect:1:aura:79","name":"Regenerative Power (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]}]},{"id":"bloodmage-sanguine-mend","classId":"bloodmage","dbcSpellId":802310,"name":"Sanguine Mend","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodhealth_border.png","sigil":"SM","description":"Sanguine MendRank 120 Rage 2 sec castRequires Mortal Form Mend an ally's wounds, healing them for 24+0+Spi*0.25+AP*.2+SP*.58.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0.5458333343267441,"basePoints":24,"dieSides":3,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":14}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":802310,"level":1,"description":"Sanguine MendRank 120 Rage 2 sec castRequires Mortal Form Mend an ally's wounds, healing them for 24+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0.5458333343267441,"basePoints":24,"dieSides":3,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":14}]},{"rank":2,"spellId":504079,"level":10,"description":"Sanguine MendRank 220 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 55+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1.1533333333333333,"basePoints":55,"dieSides":14,"pointsPerLevel":2.5,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14}]},{"rank":3,"spellId":504080,"level":16,"description":"Sanguine MendRank 320 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 125+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":1.967741935483871,"basePoints":125,"dieSides":21,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24}]},{"rank":4,"spellId":504081,"level":26,"description":"Sanguine MendRank 420 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 240+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.5536585164263967,"basePoints":240,"dieSides":14,"pointsPerLevel":2.5999999046325684,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34}]},{"rank":5,"spellId":504082,"level":36,"description":"Sanguine MendRank 520 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 347+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":3.0935947443145553,"basePoints":347,"dieSides":29,"pointsPerLevel":3.119999885559082,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":44}]},{"rank":6,"spellId":504083,"level":46,"description":"Sanguine MendRank 620 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 585+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":585,"dieSides":32,"pointsPerLevel":6.920000076293945,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50}]},{"rank":7,"spellId":504084,"level":52,"description":"Sanguine MendRank 720 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 776+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":776,"dieSides":45,"pointsPerLevel":5.506669998168945,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58}]},{"rank":8,"spellId":504085,"level":56,"description":"Sanguine MendRank 820 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 945+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":945,"dieSides":52,"pointsPerLevel":6.639999866485596,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62}]},{"rank":9,"spellId":504086,"level":64,"description":"Sanguine MendRank 920 Rage 2.5 sec castRequires Mortal Form Mend an ally's wounds, healing them for 759+0+Spi*0.25+AP*.2+SP*.58.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":759,"dieSides":98,"pointsPerLevel":7.893330097198486,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70}]}]},{"id":"coa-tree-34965","classId":"bloodmage","dbcSpellId":504098,"name":"Saturating Sutures","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_bloodysatyrscepter.png","sigil":"SS","description":"Your periodic damage and healing has a 15% chance to reduce the cost your next Sanguine Mend by -100% for 8 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504098:effect:0:aura:42","name":"Saturating Sutures (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504098:proc:0:504137","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504137}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504137}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504098,"level":1,"description":"Your periodic damage and healing has a 15% chance to reduce the cost your next Sanguine Mend by -100% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504098:effect:0:aura:42","name":"Saturating Sutures (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504098:proc:0:504137","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504137}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504137}]}],"talentEntryId":34965},{"id":"coa-tree-29543","classId":"bloodmage","dbcSpellId":801074,"name":"Scarlet Delirium","unlockLevel":1,"icon":"/assets/ui/spells/nhi_blooddrop_(2)_border.png","sigil":"SD","description":"Requires Mortal Form Flood the minds of up to 5 nearby enemies with visions of unraveling flesh, fearing them for 40 seconds (8 sec versus players) while draining their life essence, siphoning 8 + 15% SP health every 3 sec. Damage caused may interrupt the effect.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801074:effect:0:aura:7","name":"Scarlet Delirium (Aura 7)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801074:effect:1:aura:53","name":"Scarlet Delirium (Aura 53)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.18133333365122478,"basePoints":8,"dieSides":1,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":13,"intervalMs":3000,"tag":"spell-801074"},{"kind":"hot","coefficient":0.18133333365122478,"basePoints":8,"dieSides":1,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":13,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:801074:effect:2:aura:271","name":"Scarlet Delirium (Aura 271)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801074,"level":1,"description":"Requires Mortal Form Flood the minds of up to 5 nearby enemies with visions of unraveling flesh, fearing them for 40 seconds (8 sec versus players) while draining their life essence, siphoning 8 + 15% SP health every 3 sec. Damage caused may interrupt the effect.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801074:effect:0:aura:7","name":"Scarlet Delirium (Aura 7)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801074:effect:1:aura:53","name":"Scarlet Delirium (Aura 53)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.18133333365122478,"basePoints":8,"dieSides":1,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":13,"intervalMs":3000,"tag":"spell-801074"},{"kind":"hot","coefficient":0.18133333365122478,"basePoints":8,"dieSides":1,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":13,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:801074:effect:2:aura:271","name":"Scarlet Delirium (Aura 271)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29543},{"id":"coa-tree-33715","classId":"bloodmage","dbcSpellId":806177,"name":"Shadow Howl","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_howlofterror.png","sigil":"SH","description":"Let loose a dark howl that inspires your allies, granting immunity to movement impairing effects to all allies for 6 seconds.","target":"hostile","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806177:effect:0:aura:77","name":"Shadow Howl (Aura 77)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806177:effect:1:aura:77","name":"Shadow Howl (Aura 77)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":7,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806177,"level":1,"description":"Let loose a dark howl that inspires your allies, granting immunity to movement impairing effects to all allies for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806177:effect:0:aura:77","name":"Shadow Howl (Aura 77)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806177:effect:1:aura:77","name":"Shadow Howl (Aura 77)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":7,"triggerSpellId":0}]}],"talentEntryId":33715},{"id":"coa-tree-4025","classId":"bloodmage","dbcSpellId":92112,"name":"Thirst","unlockLevel":1,"icon":"/assets/ui/spells/epic_rpg_icon_pack_blood_0003s_0000_hand_border.png","sigil":"TH","description":"Level 10 Passive Spells that cost health now grant Thirst. Reaching 10 stacks makes you Insatiable, reducing your damage dealt by -30% every 3 sec until Thirst ends. ThirstGenerates 5 Rage and then increases the health costs of your spells by 5% and increases their damage by 3%. Stacks 10 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92112:effect:0:aura:42","name":"Thirst (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92112:proc:0:706613","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706613}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706613},{"kind":"apply-aura","aura":{"id":"coa:92112:effect:1:aura:149","name":"Thirst (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92112,"level":1,"description":"Level 10 Passive Spells that cost health now grant Thirst. Reaching 10 stacks makes you Insatiable, reducing your damage dealt by -30% every 3 sec until Thirst ends. ThirstGenerates 5 Rage and then increases the health costs of your spells by 5% and increases their damage by 3%. Stacks 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92112:effect:0:aura:42","name":"Thirst (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92112:proc:0:706613","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706613}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706613},{"kind":"apply-aura","aura":{"id":"coa:92112:effect:1:aura:149","name":"Thirst (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4025},{"id":"coa-tree-34966","classId":"bloodmage","dbcSpellId":705734,"name":"Transfusion","unlockLevel":1,"icon":"/assets/ui/spells/nhi_bloodboil_border.png","sigil":"TR","description":"Swap health percentages with an ally. Increases the lower health percentage of the two to 40%, if below that amount.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.4},{"kind":"utility","action":"class-script","effectType":77,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":705734,"level":1,"description":"Swap health percentages with an ally. Increases the lower health percentage of the two to 40%, if below that amount.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.4},{"kind":"utility","action":"class-script","effectType":77,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":34966},{"id":"coa-tree-4525","classId":"bloodmage","dbcSpellId":804726,"name":"Vampiric Fang","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_bloodhaze_border.png","sigil":"VF","description":"Vampiric FangRank 120 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 36+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8320512955005352,"basePoints":36,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:804726:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804726,"level":1,"description":"Vampiric FangRank 120 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 36+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8320512955005352,"basePoints":36,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:804726:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4525},{"id":"coa-tree-7283","classId":"bloodmage","dbcSpellId":504088,"name":"Vampiric Pools","unlockLevel":1,"icon":"/assets/ui/spells/warlock_bloodstone.png","sigil":"VP","description":"When Liquify ends, you now leech 474 + 100% SP health from nearby enemies.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504088:effect:0:aura:4","name":"Vampiric Pools (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504088,"level":1,"description":"When Liquify ends, you now leech 474 + 100% SP health from nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504088:effect:0:aura:4","name":"Vampiric Pools (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":7283},{"id":"coa-tree-30334","classId":"bloodmage","dbcSpellId":560074,"name":"Veins of Vengeance","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_sanguinaryvein.png","sigil":"VO","description":"Increases your chance to resist curse effects by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560074:effect:0:aura:178","name":"Veins of Vengeance (Aura 178)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560074:effect:1:aura:4","name":"Veins of Vengeance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560074,"level":1,"description":"Increases your chance to resist curse effects by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560074:effect:0:aura:178","name":"Veins of Vengeance (Aura 178)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560074:effect:1:aura:4","name":"Veins of Vengeance (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30334},{"id":"coa-20-vicious-maw-75-704619","classId":"bloodmage","dbcSpellId":704619,"name":"Vicious Maw","unlockLevel":1,"icon":"/assets/ui/spells/warrior_talent_icon_furyintheblood.png","sigil":"VM","description":"Vicious MawRank 2Grants a 20% chance to trigger a Worgen Bite against enemies who strike you with a melee attack while Ironfur is active.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704619:effect:0:aura:107","name":"Vicious Maw (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":800491},{"kind":"apply-aura","aura":{"id":"coa:704619:effect:1:aura:4","name":"Vicious Maw (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":32,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":704619,"level":1,"description":"Vicious MawRank 2Grants a 20% chance to trigger a Worgen Bite against enemies who strike you with a melee attack while Ironfur is active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704619:effect:0:aura:107","name":"Vicious Maw (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":800491},{"kind":"apply-aura","aura":{"id":"coa:704619:effect:1:aura:4","name":"Vicious Maw (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":32,"triggerSpellId":0}]}]},{"id":"coa-20-visceral-vitality-73-704687","classId":"bloodmage","dbcSpellId":704687,"name":"Visceral Vitality","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_boilingblood.png","sigil":"VV","description":"Visceral VitalityRank 1Increases all healing done by Lifedrinker by 10% and its tick rate by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704687:effect:0:aura:136","name":"Visceral Vitality (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704687:effect:1:aura:283","name":"Visceral Vitality (Aura 283)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704687:effect:2:aura:108","name":"Visceral Vitality (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704687,"level":1,"description":"Visceral VitalityRank 1Increases all healing done by Lifedrinker by 10% and its tick rate by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704687:effect:0:aura:136","name":"Visceral Vitality (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704687:effect:1:aura:283","name":"Visceral Vitality (Aura 283)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704687:effect:2:aura:108","name":"Visceral Vitality (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-tree-29173","classId":"bloodmage","dbcSpellId":804207,"name":"Wicked Howl","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_bloodmaw_border.png","sigil":"WH","description":"Let loose a wicked howl, increasing your maximum health by 30% for 20 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"health","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804207:effect:0:aura:133","name":"Wicked Howl (Aura 133)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804207,"level":1,"description":"Let loose a wicked howl, increasing your maximum health by 30% for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"health","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804207:effect:0:aura:133","name":"Wicked Howl (Aura 133)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29173},{"id":"bloodmage-blood-shield","classId":"bloodmage","dbcSpellId":504296,"name":"Blood Shield","unlockLevel":4,"icon":"/assets/ui/spells/inv_shield_1h_revendrethquest_b_01.png","sigil":"BS","description":"Protects the caster with blood magic. Your health regeneration now continues in combat and is increased by $s2%. Increases armor contribution from items by $s1%. Lasts $d. @ext: Only 1 Shield can be active at a time.:ext@","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504296:effect:0:aura:142","name":"Blood Shield (Aura 142)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504296:effect:1:aura:88","name":"Blood Shield (Aura 88)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"health-regeneration","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":88,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504296:effect:2:aura:116","name":"Blood Shield (Aura 116)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"health-regeneration","operation":"flat","value":100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":116,"miscValue":0,"triggerSpellId":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":504296,"level":4,"description":"Protects the caster with blood magic. Your health regeneration now continues in combat and is increased by $s2%. Increases armor contribution from items by $s1%. Lasts $d. @ext: Only 1 Shield can be active at a time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504296:effect:0:aura:142","name":"Blood Shield (Aura 142)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504296:effect:1:aura:88","name":"Blood Shield (Aura 88)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"health-regeneration","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":88,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504296:effect:2:aura:116","name":"Blood Shield (Aura 116)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"health-regeneration","operation":"flat","value":100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":116,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-20-bloodfang-bite-74-800156","classId":"bloodmage","dbcSpellId":800156,"name":"Bloodfang Bite","unlockLevel":6,"icon":"/assets/ui/spells/spell_deathknight_gnaw_ghoul.png","sigil":"BB","description":"Bloodfang BiteRank 130 Rage InstantBite an enemy, dealing 37+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.6031746031746031,"basePoints":37,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800156,"level":6,"description":"Bloodfang BiteRank 130 Rage InstantBite an enemy, dealing 37+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.6031746031746031,"basePoints":37,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10}]},{"rank":2,"spellId":501695,"level":12,"description":"Bloodfang BiteRank 230 Rage InstantBite an enemy, dealing 90+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1.123456790123457,"basePoints":90,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}]},{"rank":3,"spellId":501696,"level":18,"description":"Bloodfang BiteRank 330 Rage InstantBite an enemy, dealing 145+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1.47979797979798,"basePoints":145,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22}]},{"rank":4,"spellId":501697,"level":24,"description":"Bloodfang BiteRank 430 Rage InstantBite an enemy, dealing 203+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1.7564102564102564,"basePoints":203,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28}]},{"rank":5,"spellId":503613,"level":30,"description":"Bloodfang BiteRank 530 Rage InstantBite an enemy, dealing 278+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":2.085185185185185,"basePoints":278,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34}]},{"rank":6,"spellId":503614,"level":34,"description":"Bloodfang BiteRank 630 Rage InstantBite an enemy, dealing 347+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":2.3945578231292517,"basePoints":347,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":7,"spellId":503615,"level":42,"description":"Bloodfang BiteRank 730 Rage InstantBite an enemy, dealing 412+0+AP*0.265+SP*.265 Physical damage and creates a Bite Wound. Bite Wound Dealing damage to this target with auto attacks now restores health to you equal to 50% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":2.4502923976608186,"basePoints":412,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46}]}]},{"id":"bloodmage-bloodmoon-blast","classId":"bloodmage","dbcSpellId":501607,"name":"Bloodmoon Blast","unlockLevel":6,"icon":"/assets/ui/spells/ability_revendreth_warlock.png","sigil":"BB","description":"Bloodmoon BlastRank 27% of base 2 sec castRequires Mortal Form Blast an enemy for 41+ShaP*0.466229 Shadow damage and generates Rage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8412701553768582,"basePoints":41,"dieSides":5,"pointsPerLevel":1.6666699647903442,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501607,"level":6,"description":"Bloodmoon BlastRank 27% of base 2 sec castRequires Mortal Form Blast an enemy for 41+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8412701553768582,"basePoints":41,"dieSides":5,"pointsPerLevel":1.6666699647903442,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}]},{"rank":3,"spellId":501608,"level":14,"description":"Bloodmoon BlastRank 37% of base 2 sec castRequires Mortal Form Blast an enemy for 66+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3264367662627121,"basePoints":66,"dieSides":13,"pointsPerLevel":3.0999999046325684,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}]},{"rank":4,"spellId":501609,"level":22,"description":"Bloodmoon BlastRank 47% of base 2 sec castRequires Mortal Form Blast an enemy for 107+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4644144333160676,"basePoints":107,"dieSides":12,"pointsPerLevel":2.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}]},{"rank":5,"spellId":501610,"level":30,"description":"Bloodmoon BlastRank 57% of base 2 sec castRequires Mortal Form Blast an enemy for 158+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8511111153496635,"basePoints":158,"dieSides":21,"pointsPerLevel":2.7300000190734863,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}]},{"rank":6,"spellId":501611,"level":38,"description":"Bloodmoon BlastRank 67% of base 2 sec castRequires Mortal Form Blast an enemy for 215+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":2.184487189886705,"basePoints":215,"dieSides":25,"pointsPerLevel":3.166670083999634,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}]},{"rank":7,"spellId":501612,"level":46,"description":"Bloodmoon BlastRank 77% of base 2 sec castRequires Mortal Form Blast an enemy for 286+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":2.710382513661202,"basePoints":286,"dieSides":30,"pointsPerLevel":4.25,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}]},{"rank":8,"spellId":501613,"level":54,"description":"Bloodmoon BlastRank 87% of base 2 sec castRequires Mortal Form Blast an enemy for 383+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":383,"dieSides":43,"pointsPerLevel":8.574999809265137,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}]},{"rank":9,"spellId":501614,"level":60,"description":"Bloodmoon BlastRank 97% of base 2 sec castRequires Mortal Form Blast an enemy for 513+ShaP*0.466229 Shadow damage and generates Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":513,"dieSides":56,"pointsPerLevel":7.683330059051514,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"trigger-spell","spellId":804092,"withValue":50},{"kind":"resource","amount":40}]}]},{"id":"bloodmage-ravenous-strike","classId":"bloodmage","dbcSpellId":500123,"name":"Ravenous Strike","unlockLevel":6,"icon":"/assets/ui/spells/artifactability_feraldruid_ashamanesbite.png","sigil":"RS","description":"Ravenous StrikeRank 18% of base InstantStrike an enemy, dealing 19+0+AP*0.2+SP*.2 Physical damage and generating Rage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.30952380952380953,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10},{"kind":"heal","coefficient":0.30952380952380953,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500123,"level":6,"description":"Ravenous StrikeRank 18% of base InstantStrike an enemy, dealing 19+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.30952380952380953,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10},{"kind":"heal","coefficient":0.30952380952380953,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":2,"spellId":501671,"level":12,"description":"Ravenous StrikeRank 28% of base InstantStrike an enemy, dealing 27+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.345679012345679,"basePoints":27,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"heal","coefficient":0.345679012345679,"basePoints":27,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":3,"spellId":501672,"level":18,"description":"Ravenous StrikeRank 38% of base InstantStrike an enemy, dealing 36+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.3787878787878788,"basePoints":36,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"heal","coefficient":0.3787878787878788,"basePoints":36,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":4,"spellId":501673,"level":24,"description":"Ravenous StrikeRank 48% of base InstantStrike an enemy, dealing 52+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4658119658119658,"basePoints":52,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"heal","coefficient":0.4658119658119658,"basePoints":52,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":5,"spellId":501674,"level":30,"description":"Ravenous StrikeRank 58% of base InstantStrike an enemy, dealing 66+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5148148148148148,"basePoints":66,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"heal","coefficient":0.5148148148148148,"basePoints":66,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":6,"spellId":501675,"level":36,"description":"Ravenous StrikeRank 68% of base InstantStrike an enemy, dealing 91+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6274509803921569,"basePoints":91,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"heal","coefficient":0.6274509803921569,"basePoints":91,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":7,"spellId":501676,"level":42,"description":"Ravenous StrikeRank 78% of base InstantStrike an enemy, dealing 119+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7339181286549707,"basePoints":119,"dieSides":14,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"heal","coefficient":0.7339181286549707,"basePoints":119,"dieSides":14,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":8,"spellId":501677,"level":48,"description":"Ravenous StrikeRank 88% of base InstantStrike an enemy, dealing 144+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8068783068783069,"basePoints":144,"dieSides":18,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"heal","coefficient":0.8068783068783069,"basePoints":144,"dieSides":18,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":9,"spellId":501678,"level":54,"description":"Ravenous StrikeRank 98% of base InstantStrike an enemy, dealing 179+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9178743961352657,"basePoints":179,"dieSides":23,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"heal","coefficient":0.9178743961352657,"basePoints":179,"dieSides":23,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]},{"rank":10,"spellId":501679,"level":60,"description":"Ravenous StrikeRank 108% of base InstantStrike an enemy, dealing 249+0+AP*0.2+SP*.2 Physical damage and generating Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"health","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1.1622222222222223,"basePoints":249,"dieSides":26,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"heal","coefficient":1.1622222222222223,"basePoints":249,"dieSides":26,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"trigger-spell","spellId":805352,"withValue":50},{"kind":"resource","amount":30}]}]},{"id":"coa-tree-4026","classId":"bloodmage","dbcSpellId":92113,"name":"Unchained","unlockLevel":10,"icon":"/assets/ui/spells/nhi_foreshadowblood_border.png","sigil":"UN","description":"Level 10 Passive Your damaging Mortal Form spells can now be cast while moving.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92113:effect:0:aura:23","name":"Unchained (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92113:proc:0:807528","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807528}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807528},{"kind":"apply-aura","aura":{"id":"coa:92113:effect:1:aura:112","name":"Unchained (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20000,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92113,"level":10,"description":"Level 10 Passive Your damaging Mortal Form spells can now be cast while moving.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92113:effect:0:aura:23","name":"Unchained (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92113:proc:0:807528","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807528}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807528},{"kind":"apply-aura","aura":{"id":"coa:92113:effect:1:aura:112","name":"Unchained (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20000,"triggerSpellId":0}]}],"talentEntryId":4026},{"id":"coa-20-vampyr-bite-486-801563","classId":"bloodmage","dbcSpellId":801563,"name":"Vampyr Bite","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_monsterfang_02.png","sigil":"VB","description":"Vampyr BiteRank 18 sec castBrings a dead player back to life with 70% health and mana. For the next 20 sec, the target takes 50% increased healing, but being damaged ends the effect. Cannot be cast when in combat.","target":"friendly","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"resurrection","percentMaxHealth":0.35},{"kind":"apply-aura","aura":{"id":"coa:801563:effect:1:aura:56","name":"Vampyr Bite (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":27616,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801563:effect:2:aura:118","name":"Vampyr Bite (Aura 118)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801563,"level":10,"description":"Vampyr BiteRank 18 sec castBrings a dead player back to life with 70% health and mana. For the next 20 sec, the target takes 50% increased healing, but being damaged ends the effect. Cannot be cast when in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"resurrection","percentMaxHealth":0.35},{"kind":"apply-aura","aura":{"id":"coa:801563:effect:1:aura:56","name":"Vampyr Bite (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":27616,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801563:effect:2:aura:118","name":"Vampyr Bite (Aura 118)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-20-rotclaw-75-804197","classId":"bloodmage","dbcSpellId":804197,"name":"Rotclaw","unlockLevel":11,"icon":"/assets/ui/spells/5_clawstrike_border.png","sigil":"RO","description":"RotclawRank 110% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 28+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(6+0+AP*0.115) Shadow damage over 4 sec.","target":"hostile","range":{"min":0,"max":0},"radius":12,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.38602564099411935,"basePoints":28,"dieSides":5,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:804197:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.08474358971206805,"basePoints":6,"dieSides":2,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16,"ticks":4,"intervalMs":1000,"tag":"spell-804197"},{"kind":"apply-aura","aura":{"id":"coa:804197:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804197,"level":11,"description":"RotclawRank 110% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 28+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(6+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.38602564099411935,"basePoints":28,"dieSides":5,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:804197:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.08474358971206805,"basePoints":6,"dieSides":2,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16,"ticks":4,"intervalMs":1000,"tag":"spell-804197"},{"kind":"apply-aura","aura":{"id":"coa:804197:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":503476,"level":18,"description":"RotclawRank 210% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 42+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(11+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4614141413735019,"basePoints":42,"dieSides":8,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"apply-aura","aura":{"id":"coa:503476:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1129292928886534,"basePoints":11,"dieSides":1,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22,"ticks":4,"intervalMs":1000,"tag":"spell-503476"},{"kind":"apply-aura","aura":{"id":"coa:503476:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503477,"level":24,"description":"RotclawRank 310% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 55+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(19+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5105982905524409,"basePoints":55,"dieSides":10,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:503477:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1644444443985947,"basePoints":19,"dieSides":1,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":26,"ticks":4,"intervalMs":1000,"tag":"spell-503477"},{"kind":"apply-aura","aura":{"id":"coa:503477:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503478,"level":28,"description":"RotclawRank 410% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 70+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(28+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5641860464631125,"basePoints":70,"dieSides":6,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:503478:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.21922480615303497,"basePoints":28,"dieSides":1,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":4,"intervalMs":1000,"tag":"spell-503478"},{"kind":"apply-aura","aura":{"id":"coa:503478:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503479,"level":34,"description":"RotclawRank 510% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 91+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(36+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.645170067975513,"basePoints":91,"dieSides":8,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":36},{"kind":"apply-aura","aura":{"id":"coa:503479:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2472108843020436,"basePoints":36,"dieSides":1,"pointsPerLevel":0.009999999776482582,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":36,"ticks":4,"intervalMs":1000,"tag":"spell-503479"},{"kind":"apply-aura","aura":{"id":"coa:503479:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503480,"level":38,"description":"RotclawRank 610% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 118+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(45+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7771698112406258,"basePoints":118,"dieSides":11,"pointsPerLevel":0.014999999664723873,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42},{"kind":"apply-aura","aura":{"id":"coa:503480:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2866037735047768,"basePoints":45,"dieSides":1,"pointsPerLevel":0.014999999664723873,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42,"ticks":4,"intervalMs":1000,"tag":"spell-503480"},{"kind":"apply-aura","aura":{"id":"coa:503480:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503481,"level":44,"description":"RotclawRank 710% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 152+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(59+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8992090394646771,"basePoints":152,"dieSides":14,"pointsPerLevel":0.014999999664723873,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":46},{"kind":"apply-aura","aura":{"id":"coa:503481:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3370621468093099,"basePoints":59,"dieSides":1,"pointsPerLevel":0.014999999664723873,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":46,"ticks":4,"intervalMs":1000,"tag":"spell-503481"},{"kind":"apply-aura","aura":{"id":"coa:503481:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503482,"level":48,"description":"RotclawRank 810% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 181+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(76+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0050793649658325,"basePoints":181,"dieSides":17,"pointsPerLevel":0.019999999552965164,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"apply-aura","aura":{"id":"coa:503482:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.40719576708223454,"basePoints":76,"dieSides":1,"pointsPerLevel":0.019999999552965164,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52,"ticks":4,"intervalMs":1000,"tag":"spell-503482"},{"kind":"apply-aura","aura":{"id":"coa:503482:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":503483,"level":54,"description":"RotclawRank 910% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 202+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(90+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0245410626853146,"basePoints":202,"dieSides":19,"pointsPerLevel":0.019999999552965164,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:503483:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.43999999988338223,"basePoints":90,"dieSides":1,"pointsPerLevel":0.019999999552965164,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56,"ticks":4,"intervalMs":1000,"tag":"spell-503483"},{"kind":"apply-aura","aura":{"id":"coa:503483:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":503484,"level":58,"description":"RotclawRank 1010% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 220+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(107+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0545662101443227,"basePoints":220,"dieSides":20,"pointsPerLevel":0.02500000037252903,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62},{"kind":"apply-aura","aura":{"id":"coa:503484:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4952054795507155,"basePoints":107,"dieSides":1,"pointsPerLevel":0.02500000037252903,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62,"ticks":4,"intervalMs":1000,"tag":"spell-503484"},{"kind":"apply-aura","aura":{"id":"coa:503484:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":11,"spellId":503485,"level":64,"description":"RotclawRank 1110% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 267+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(120+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.1853164555151252,"basePoints":267,"dieSides":25,"pointsPerLevel":0.029999999329447746,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":74},{"kind":"apply-aura","aura":{"id":"coa:503485:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.514430379565758,"basePoints":120,"dieSides":1,"pointsPerLevel":0.029999999329447746,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":74,"ticks":4,"intervalMs":1000,"tag":"spell-503485"},{"kind":"apply-aura","aura":{"id":"coa:503485:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]},{"rank":12,"spellId":503486,"level":76,"description":"RotclawRank 1210% of base Instant2 Charges, 6 sec recharge Ravage all nearby enemies, dealing 572+0+AP*0.1 Shadow damage, generating Rage and infecting their wounds, causing them to bleed for (4*1000/1)*(141+0+AP*0.115) Shadow damage over 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"health","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.199780219531321,"basePoints":572,"dieSides":52,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:503486:effect:1:aura:3","name":"Rotclaw (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5276190473701491,"basePoints":141,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80,"ticks":4,"intervalMs":1000,"tag":"spell-503486"},{"kind":"apply-aura","aura":{"id":"coa:503486:effect:2:aura:338","name":"Rotclaw (Aura 338)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":338,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-20-vampiric-fang-73-804726","classId":"bloodmage","dbcSpellId":804726,"name":"Vampiric Fang","unlockLevel":11,"icon":"/assets/ui/spells/custom_t_bloodhaze_border.png","sigil":"VF","description":"Vampiric FangRank 120 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 36+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8320512955005352,"basePoints":36,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:804726:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804726,"level":11,"description":"Vampiric FangRank 120 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 36+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8320512955005352,"basePoints":36,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:804726:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":504093,"level":18,"description":"Vampiric FangRank 220 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 59+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.825252520917642,"basePoints":59,"dieSides":14,"pointsPerLevel":0.8999999761581421,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"apply-aura","aura":{"id":"coa:504093:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":504094,"level":24,"description":"Vampiric FangRank 320 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 82+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.9430769284566244,"basePoints":82,"dieSides":14,"pointsPerLevel":0.9100000262260437,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"apply-aura","aura":{"id":"coa:504094:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":504095,"level":32,"description":"Vampiric FangRank 420 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 110+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.092368781989348,"basePoints":110,"dieSides":15,"pointsPerLevel":1.156999945640564,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"apply-aura","aura":{"id":"coa:504095:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":504096,"level":38,"description":"Vampiric FangRank 520 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 148+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.313761000363332,"basePoints":148,"dieSides":22,"pointsPerLevel":1.3259999752044678,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"apply-aura","aura":{"id":"coa:504096:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":504097,"level":46,"description":"Vampiric FangRank 620 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 199+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.600459015434557,"basePoints":199,"dieSides":32,"pointsPerLevel":1.7039999961853027,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"apply-aura","aura":{"id":"coa:504097:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":553271,"level":54,"description":"Vampiric FangRank 720 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 268+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.8382415448985814,"basePoints":268,"dieSides":42,"pointsPerLevel":1.7039999961853027,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"apply-aura","aura":{"id":"coa:553271:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":553272,"level":60,"description":"Vampiric FangRank 820 Rage Instant cast8 sec cooldownExpends Thirst Stacks Steal 361+0+SP*0.34 health from an enemy. Damage increased by 10% for each Thirst stack. Clears Insatiable and Thirst stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":2.1721777767605253,"basePoints":361,"dieSides":52,"pointsPerLevel":1.7039999961853027,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"apply-aura","aura":{"id":"coa:553272:effect:1:aura:271","name":"Vampiric Fang (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-20-claw-sweep-486-500169","classId":"bloodmage","dbcSpellId":500169,"name":"Claw Sweep","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"Claw SweepRank 130 Rage InstantSwipe at nearby enemies, dealing 19+0+AP*.2+SP*0.2 Physical damage.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.24074074074074073,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500169,"level":12,"description":"Claw SweepRank 130 Rage InstantSwipe at nearby enemies, dealing 19+0+AP*.2+SP*0.2 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"damage","coefficient":0.24074074074074073,"basePoints":19,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}]}]},{"id":"coa-20-sanguine-rupture-486-800774","classId":"bloodmage","dbcSpellId":800774,"name":"Sanguine Rupture","unlockLevel":12,"icon":"/assets/ui/spells/inv_artifact_bloodoftheassassinated.png","sigil":"SR","description":"Sanguine RuptureRank 114% of base Instant castRequires Mortal Form Explode with boiling blood, dealing 17+0+ShaP*0.35 Shadow damage to enemies and generating Rage for each enemy hit.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":14,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800775,"withValue":17},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":3},{"kind":"trigger-spell","spellId":802496},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"apply-aura","aura":{"id":"coa:802496:effect:1:aura:79","name":"Sanguine Rupture (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"dealt","school":"shadow","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":32,"triggerSpellId":0},{"kind":"trigger-spell","spellId":561304},{"kind":"trigger-spell","spellId":561303},{"kind":"apply-aura","aura":{"id":"coa:561303:effect:0:aura:3","name":"Cursed Ground (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1109677386540238,"basePoints":87,"dieSides":1,"pointsPerLevel":1.0199999809265137,"bonusPowerCoefficient":0,"sourceLevel":16,"ticks":4,"intervalMs":500,"tag":"spell-561303"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800774,"level":12,"description":"Sanguine RuptureRank 114% of base Instant castRequires Mortal Form Explode with boiling blood, dealing 17+0+ShaP*0.35 Shadow damage to enemies and generating Rage for each enemy hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":14,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800775,"withValue":17},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":3},{"kind":"trigger-spell","spellId":802496},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"apply-aura","aura":{"id":"coa:802496:effect:1:aura:79","name":"Sanguine Rupture (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"dealt","school":"shadow","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":32,"triggerSpellId":0},{"kind":"trigger-spell","spellId":561304},{"kind":"trigger-spell","spellId":561303},{"kind":"apply-aura","aura":{"id":"coa:561303:effect:0:aura:3","name":"Cursed Ground (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1109677386540238,"basePoints":87,"dieSides":1,"pointsPerLevel":1.0199999809265137,"bonusPowerCoefficient":0,"sourceLevel":16,"ticks":4,"intervalMs":500,"tag":"spell-561303"}]}]},{"id":"coa-20-bloodthorns-73-802313","classId":"bloodmage","dbcSpellId":802313,"name":"Bloodthorns","unlockLevel":14,"icon":"/assets/ui/spells/ability_xavius_nightmareblades.png","sigil":"BL","description":"BloodthornsRank 1Instant castBloodthorns sprout from an ally for 30 min, causing 6+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802313:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802313:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":6,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802313,"level":14,"description":"BloodthornsRank 1Instant castBloodthorns sprout from an ally for 30 min, causing 6+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802313:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802313:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":6,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501662,"level":16,"description":"BloodthornsRank 2Instant castBloodthorns sprout from an ally for 30 min, causing 7+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501662:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501662:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":7,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501663,"level":26,"description":"BloodthornsRank 3Instant castBloodthorns sprout from an ally for 30 min, causing 10+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501663:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501663:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":10,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501664,"level":36,"description":"BloodthornsRank 4Instant castBloodthorns sprout from an ally for 30 min, causing 13+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501664:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501664:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":13,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501665,"level":46,"description":"BloodthornsRank 5Instant castBloodthorns sprout from an ally for 30 min, causing 16+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501665:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501665:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":16,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501666,"level":56,"description":"BloodthornsRank 6Instant castBloodthorns sprout from an ally for 30 min, causing 19+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501666:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501666:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":19,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501667,"level":60,"description":"BloodthornsRank 7Instant castBloodthorns sprout from an ally for 30 min, causing 22+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501667:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501667:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":22,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501668,"level":66,"description":"BloodthornsRank 8Instant castBloodthorns sprout from an ally for 30 min, causing 35+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501668:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501668:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":35,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501669,"level":76,"description":"BloodthornsRank 9Instant castBloodthorns sprout from an ally for 30 min, causing 73+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501669:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501669:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":73,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":501670,"level":80,"description":"BloodthornsRank 10Instant castBloodthorns sprout from an ally for 30 min, causing 73+0+ShaP*0.035 Shadow damage to attackers when hit. Can occur only once every half a second.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501670:effect:0:aura:15","name":"Bloodthorns (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501670:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":73,"school":"shadow","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-20-shadowfang-ritual-73-501625","classId":"bloodmage","dbcSpellId":501625,"name":"Shadowfang Ritual","unlockLevel":14,"icon":"/assets/ui/spells/spell_shadow_vampiricaura.png","sigil":"SR","description":"Shadowfang RitualRank 230 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 57 to 75, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"trigger-spell","spellId":800786},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:0:aura:136","name":"Sacrificial Rite (Aura 136)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:1:aura:8","name":"Sacrificial Rite (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9954337899543378,"basePoints":102,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":58,"ticks":10,"intervalMs":1500},{"kind":"heal","coefficient":1.6287448049961835,"basePoints":57,"dieSides":19,"pointsPerLevel":5.407199859619141,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501625,"level":14,"description":"Shadowfang RitualRank 230 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 57 to 75, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"trigger-spell","spellId":800786},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:0:aura:136","name":"Sacrificial Rite (Aura 136)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:1:aura:8","name":"Sacrificial Rite (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9954337899543378,"basePoints":102,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":58,"ticks":10,"intervalMs":1500},{"kind":"heal","coefficient":1.6287448049961835,"basePoints":57,"dieSides":19,"pointsPerLevel":5.407199859619141,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27}]},{"rank":3,"spellId":501626,"level":28,"description":"Shadowfang RitualRank 330 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 144 to 184, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"trigger-spell","spellId":800786},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:0:aura:136","name":"Sacrificial Rite (Aura 136)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:1:aura:8","name":"Sacrificial Rite (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9954337899543378,"basePoints":102,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":58,"ticks":10,"intervalMs":1500},{"kind":"heal","coefficient":3.0357086122498034,"basePoints":144,"dieSides":41,"pointsPerLevel":8.128800392150879,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":40}]},{"rank":4,"spellId":501627,"level":41,"description":"Shadowfang RitualRank 430 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 299 to 370, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"trigger-spell","spellId":800786},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:0:aura:136","name":"Sacrificial Rite (Aura 136)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:1:aura:8","name":"Sacrificial Rite (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9954337899543378,"basePoints":102,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":58,"ticks":10,"intervalMs":1500},{"kind":"heal","coefficient":4,"basePoints":299,"dieSides":72,"pointsPerLevel":10.656000137329102,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":53}]},{"rank":5,"spellId":501628,"level":54,"description":"Shadowfang RitualRank 530 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 565 to 677, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"trigger-spell","spellId":800786},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:0:aura:136","name":"Sacrificial Rite (Aura 136)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:1:aura:8","name":"Sacrificial Rite (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9954337899543378,"basePoints":102,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":58,"ticks":10,"intervalMs":1500},{"kind":"heal","coefficient":4,"basePoints":565,"dieSides":113,"pointsPerLevel":13.183199882507324,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":67}]},{"rank":6,"spellId":501629,"level":68,"description":"Shadowfang RitualRank 630 Rage 2 sec cast1 min cooldownRequires Mortal Form Heals an ally for 1038 to 1205, and transforms them into a Lesser Worgen for 15 sec. Sacrificial Rite","castMode":"cast","castTimeMs":2000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":30},"effects":[{"kind":"trigger-spell","spellId":800786},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:0:aura:136","name":"Sacrificial Rite (Aura 136)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:1:aura:8","name":"Sacrificial Rite (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9954337899543378,"basePoints":102,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":58,"ticks":10,"intervalMs":1500},{"kind":"heal","coefficient":4,"basePoints":1038,"dieSides":168,"pointsPerLevel":15.904800415039062,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80}]}]},{"id":"coa-20-dark-liturgy-500-800781","classId":"bloodmage","dbcSpellId":800781,"name":"Dark Liturgy","unlockLevel":15,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DL","description":"Dark LiturgyRank 115% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 77+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","target":"friendly","range":{"min":0,"max":30},"radius":25,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":1.1629111197259692,"basePoints":77,"dieSides":5,"pointsPerLevel":1.710800051689148,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18},{"kind":"trigger-spell","spellId":706623},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:0:aura:4","name":"Blood Rituals (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:1:aura:87","name":"Blood Rituals (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800781,"level":15,"description":"Dark LiturgyRank 115% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 77+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":1.1629111197259692,"basePoints":77,"dieSides":5,"pointsPerLevel":1.710800051689148,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18},{"kind":"trigger-spell","spellId":706623},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:0:aura:4","name":"Blood Rituals (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:1:aura:87","name":"Blood Rituals (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":501623,"level":20,"description":"Dark LiturgyRank 215% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 102+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":1.433142834617978,"basePoints":102,"dieSides":5,"pointsPerLevel":2.3239998817443848,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"trigger-spell","spellId":706623},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:0:aura:4","name":"Blood Rituals (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:1:aura:87","name":"Blood Rituals (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":501624,"level":30,"description":"Dark LiturgyRank 315% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 172+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":1.7829066594441731,"basePoints":172,"dieSides":8,"pointsPerLevel":2.1730799674987793,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"trigger-spell","spellId":706623},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:0:aura:4","name":"Blood Rituals (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:1:aura:87","name":"Blood Rituals (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":503611,"level":38,"description":"Dark LiturgyRank 415% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 232+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":2.230547434129055,"basePoints":232,"dieSides":12,"pointsPerLevel":3.0830800533294678,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":706623},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:0:aura:4","name":"Blood Rituals (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:1:aura:87","name":"Blood Rituals (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":503612,"level":48,"description":"Dark LiturgyRank 515% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 302+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":2.7095237610832092,"basePoints":302,"dieSides":18,"pointsPerLevel":4.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"trigger-spell","spellId":706623},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:0:aura:4","name":"Blood Rituals (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:1:aura:87","name":"Blood Rituals (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":572575,"level":56,"description":"Dark LiturgyRank 615% of base 2 sec castRequires Mortal Form Form a blood bond, healing a friendly target for 379+0+SP*0.35+Spi*0.25 and applying Blood Rituals to them, bouncing to up to 10 nearby allies, healing for less for each target struck. Blood Rituals Causes Bloodmoon Blast to heal marked allies for 4+4.7 Points Per Level+Heal*0.07+Sta*0.085.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":3.3769014385384573,"basePoints":379,"dieSides":23,"pointsPerLevel":5.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":64},{"kind":"trigger-spell","spellId":706623},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:0:aura:4","name":"Blood Rituals (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:1:aura:87","name":"Blood Rituals (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-20-vampyrs-kiss-500-504275","classId":"bloodmage","dbcSpellId":504275,"name":"Vampyr's Kiss","unlockLevel":15,"icon":"/assets/ui/spells/nhi_kiss_border.png","sigil":"VS","description":"Vampyr's KissRank 120% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 168 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504275:effect:0:aura:3","name":"Vampyr's Kiss (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4777777777777778,"basePoints":28,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":6,"intervalMs":5000,"tag":"spell-504275"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504275,"level":15,"description":"Vampyr's KissRank 120% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 168 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504275:effect:0:aura:3","name":"Vampyr's Kiss (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4777777777777778,"basePoints":28,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":6,"intervalMs":5000,"tag":"spell-504275"}]},{"rank":2,"spellId":504276,"level":22,"description":"Vampyr's KissRank 220% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 342 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504276:effect:0:aura:3","name":"Vampyr's Kiss (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.70675676148217,"basePoints":57,"dieSides":1,"pointsPerLevel":0.9750000238418579,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28,"ticks":6,"intervalMs":5000,"tag":"spell-504276"}]},{"rank":3,"spellId":504277,"level":30,"description":"Vampyr's KissRank 320% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 540 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504277:effect:0:aura:3","name":"Vampyr's Kiss (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1722222434149847,"basePoints":90,"dieSides":1,"pointsPerLevel":2.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34,"ticks":6,"intervalMs":5000,"tag":"spell-504277"}]},{"rank":4,"spellId":504278,"level":36,"description":"Vampyr's KissRank 420% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 732 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504278:effect:0:aura:3","name":"Vampyr's Kiss (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.332679761001487,"basePoints":122,"dieSides":1,"pointsPerLevel":2.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42,"ticks":6,"intervalMs":5000,"tag":"spell-504278"}]},{"rank":5,"spellId":504279,"level":44,"description":"Vampyr's KissRank 520% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 1152 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504279:effect:0:aura:3","name":"Vampyr's Kiss (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.2033898305084745,"basePoints":192,"dieSides":1,"pointsPerLevel":4.5,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48,"ticks":6,"intervalMs":5000,"tag":"spell-504279"}]},{"rank":6,"spellId":504280,"level":50,"description":"Vampyr's KissRank 620% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 1458 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504280:effect:0:aura:3","name":"Vampyr's Kiss (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.4,"basePoints":243,"dieSides":1,"pointsPerLevel":4.5,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56,"ticks":6,"intervalMs":5000,"tag":"spell-504280"}]},{"rank":7,"spellId":504281,"level":58,"description":"Vampyr's KissRank 720% of base Instant cast1 min cooldownCurse an enemy, causing them to bleed for 2034 Shadow damage over 30 sec. All periodic damage dealt to an enemy affected by Vampyr's Kiss is replicated on them equal to 25% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504281:effect:0:aura:3","name":"Vampyr's Kiss (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":3.136986301369863,"basePoints":339,"dieSides":1,"pointsPerLevel":6,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":6,"intervalMs":5000,"tag":"spell-504281"}]}]},{"id":"coa-20-hematophage-73-501640","classId":"bloodmage","dbcSpellId":501640,"name":"Hematophage","unlockLevel":16,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_bloodbite_border.png","sigil":"HE","description":"HematophageRank 27% of base 1.5 sec castRequires Mortal Form Infest an enemy with blood parasites, dealing 33+0+ShaP*.35 Shadow Damage and causing them to bleed for (12*1000/2)*(18+0+ShaP*0.1) over 12 sec. Periodic damage from this spell can critically strike.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501640:effect:0:aura:3","name":"Hematophage (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.39430193747243575,"basePoints":18,"dieSides":3,"pointsPerLevel":1.1043800115585327,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21,"ticks":6,"intervalMs":2000,"tag":"spell-501640"},{"kind":"damage","coefficient":0.46021505581435335,"basePoints":33,"dieSides":3,"pointsPerLevel":0.550000011920929,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501640,"level":16,"description":"HematophageRank 27% of base 1.5 sec castRequires Mortal Form Infest an enemy with blood parasites, dealing 33+0+ShaP*.35 Shadow Damage and causing them to bleed for (12*1000/2)*(18+0+ShaP*0.1) over 12 sec. Periodic damage from this spell can critically strike.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501640:effect:0:aura:3","name":"Hematophage (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.39430193747243575,"basePoints":18,"dieSides":3,"pointsPerLevel":1.1043800115585327,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21,"ticks":6,"intervalMs":2000,"tag":"spell-501640"},{"kind":"damage","coefficient":0.46021505581435335,"basePoints":33,"dieSides":3,"pointsPerLevel":0.550000011920929,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}]}]},{"id":"coa-20-sanguinary-offering-486-706630","classId":"bloodmage","dbcSpellId":706630,"name":"Sanguinary Offering","unlockLevel":16,"icon":"/assets/ui/spells/ability_deathwing_bloodcorruption_death.png","sigil":"SO","description":"Sanguinary OfferingRank 1Instant castEnact a sanguinary ritual with an ally, increasing their Stamina by 8. Lasts 30 min.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706630:effect:0:aura:29","name":"Sanguinary Offering (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"stamina","operation":"flat","value":8}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":2,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706630,"level":16,"description":"Sanguinary OfferingRank 1Instant castEnact a sanguinary ritual with an ally, increasing their Stamina by 8. Lasts 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"health","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706630:effect:0:aura:29","name":"Sanguinary Offering (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"stamina","operation":"flat","value":8}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":2,"triggerSpellId":0}]}]},{"id":"coa-tree-4526","classId":"bloodmage","dbcSpellId":706599,"name":"Cunning of Atherann","unlockLevel":20,"icon":"/assets/ui/spells/atherann2.png","sigil":"CO","description":"Level 20 Passive Increases your spell damage by 25% of your Stamina and Spirit.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706599:effect:0:aura:174","name":"Cunning of Atherann (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706599:effect:1:aura:174","name":"Cunning of Atherann (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706599,"level":20,"description":"Level 20 Passive Increases your spell damage by 25% of your Stamina and Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706599:effect:0:aura:174","name":"Cunning of Atherann (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706599:effect:1:aura:174","name":"Cunning of Atherann (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":4526},{"id":"coa-tree-11206","classId":"bloodmage","dbcSpellId":680684,"name":"Fleshbending","unlockLevel":20,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_rottenflesh_border.png","sigil":"FL","description":"Your critical strikes now increase the critical strike chance of all party and raid members by 5% for 10 seconds. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680684:effect:0:aura:42","name":"Fleshbending (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680684:proc:0:582766","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582766}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":582766}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680684,"level":20,"description":"Your critical strikes now increase the critical strike chance of all party and raid members by 5% for 10 seconds. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680684:effect:0:aura:42","name":"Fleshbending (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680684:proc:0:582766","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582766}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":582766}]}],"talentEntryId":11206},{"id":"coa-tree-4127","classId":"bloodmage","dbcSpellId":500445,"name":"Forbidden Power","unlockLevel":20,"icon":"/assets/ui/spells/5_bull_border.png","sigil":"FP","description":"Level 20 Passive Increases your spell critical strike rating by 30% of your Agility and spell hit rating by 5% of your Agility.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500445:effect:0:aura:107","name":"Forbidden Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":500445,"level":20,"description":"Level 20 Passive Increases your spell critical strike rating by 30% of your Agility and spell hit rating by 5% of your Agility.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500445:effect:0:aura:107","name":"Forbidden Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":4127},{"id":"coa-tree-11237","classId":"bloodmage","dbcSpellId":704632,"name":"Invigorated Flesh","unlockLevel":20,"icon":"/assets/ui/spells/ability_butcher_exsanguination.png","sigil":"IF","description":"Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704632:effect:0:aura:333","name":"Invigorated Flesh (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704632,"level":20,"description":"Increases chance to hit with all spells and attacks by 1% for you and party and raid members. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704632:effect:0:aura:333","name":"Invigorated Flesh (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":11237},{"id":"coa-tree-4627","classId":"bloodmage","dbcSpellId":301064,"name":"Uncanny Movement","unlockLevel":20,"icon":"/assets/ui/spells/spell_shadow_spectralsight.png","sigil":"UM","description":"Level 20 Passive Increases your Agility by 25% and your hit rating by 5% of your Agility. In addition, Claw Sweep now generates additional threat.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301064:effect:0:aura:137","name":"Uncanny Movement (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301064:effect:1:aura:220","name":"Uncanny Movement (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:224","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":224,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301064:effect:2:aura:108","name":"Uncanny Movement (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":2,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301064,"level":20,"description":"Level 20 Passive Increases your Agility by 25% and your hit rating by 5% of your Agility. In addition, Claw Sweep now generates additional threat.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301064:effect:0:aura:137","name":"Uncanny Movement (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301064:effect:1:aura:220","name":"Uncanny Movement (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:224","operation":"flat","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":224,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301064:effect:2:aura:108","name":"Uncanny Movement (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":2,"triggerSpellId":0}]}],"talentEntryId":4627},{"id":"coa-20-hypovolemic-shock-486-572305","classId":"bloodmage","dbcSpellId":572305,"name":"Hypovolemic Shock","unlockLevel":22,"icon":"/assets/ui/spells/uico_blood_spell_08_border.png","sigil":"HS","description":"Hypovolemic ShockRank 115% of base InstantInduce your blood into an enemy to shock their nervous system, reducing their attack power by 60 for 15 sec and removing 1 enrage effect.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572305:effect:0:aura:99","name":"Hypovolemic Shock (Aura 99)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"attack-power","operation":"flat","value":-60}]},"sourceEffectType":6,"sourceAuraType":99,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":652375},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["enrage"],"maxCount":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":572305,"level":22,"description":"Hypovolemic ShockRank 115% of base InstantInduce your blood into an enemy to shock their nervous system, reducing their attack power by 60 for 15 sec and removing 1 enrage effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":500,"cost":{"resource":"health","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572305:effect:0:aura:99","name":"Hypovolemic Shock (Aura 99)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"attack-power","operation":"flat","value":-60}]},"sourceEffectType":6,"sourceAuraType":99,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":652375},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["enrage"],"maxCount":1}]}]},{"id":"coa-20-crimson-tide-500-504282","classId":"bloodmage","dbcSpellId":504282,"name":"Crimson Tide","unlockLevel":27,"icon":"/assets/ui/spells/nhi_blood_slash_border.png","sigil":"CT","description":"Crimson TideRank 140 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(33+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504282:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.43301586688510957,"basePoints":33,"dieSides":2,"pointsPerLevel":0.7799999713897705,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32,"ticks":5,"intervalMs":3000,"tag":"spell-504282"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504282,"level":27,"description":"Crimson TideRank 140 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(33+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504282:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.43301586688510957,"basePoints":33,"dieSides":2,"pointsPerLevel":0.7799999713897705,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32,"ticks":5,"intervalMs":3000,"tag":"spell-504282"}]},{"rank":2,"spellId":504129,"level":34,"description":"Crimson TideRank 240 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(41+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504129:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.646530599010234,"basePoints":41,"dieSides":3,"pointsPerLevel":1.559999942779541,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":5,"intervalMs":3000,"tag":"spell-504129"}]},{"rank":3,"spellId":504130,"level":40,"description":"Crimson TideRank 340 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(54+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504130:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8406060421105587,"basePoints":54,"dieSides":4,"pointsPerLevel":2.0799999237060547,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":5,"intervalMs":3000,"tag":"spell-504130"}]},{"rank":4,"spellId":504131,"level":46,"description":"Crimson TideRank 440 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(73+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504131:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0158470185076605,"basePoints":73,"dieSides":6,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":5,"intervalMs":3000,"tag":"spell-504131"}]},{"rank":5,"spellId":504132,"level":52,"description":"Crimson TideRank 540 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(99+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504132:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.6870647259612581,"basePoints":99,"dieSides":8,"pointsPerLevel":4.550000190734863,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":54,"ticks":5,"intervalMs":3000,"tag":"spell-504132"}]},{"rank":6,"spellId":504133,"level":56,"description":"Crimson TideRank 640 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(135+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504133:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.2896713113560923,"basePoints":135,"dieSides":12,"pointsPerLevel":6.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58,"ticks":5,"intervalMs":3000,"tag":"spell-504133"}]},{"rank":7,"spellId":504134,"level":60,"description":"Crimson TideRank 740 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(351+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504134:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.6644444698757597,"basePoints":351,"dieSides":15,"pointsPerLevel":4.025000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":5,"intervalMs":3000,"tag":"spell-504134"}]},{"rank":8,"spellId":504135,"level":66,"description":"Crimson TideRank 840 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(458+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504135:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":3.3430040893240722,"basePoints":458,"dieSides":20,"pointsPerLevel":5.224999904632568,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":70,"ticks":5,"intervalMs":3000,"tag":"spell-504135"}]},{"rank":9,"spellId":504136,"level":72,"description":"Crimson TideRank 940 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(765+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504136:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":3.920306487101705,"basePoints":765,"dieSides":26,"pointsPerLevel":3.4124999046325684,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":5,"intervalMs":3000,"tag":"spell-504136"}]}]},{"id":"coa-tree-4128","classId":"bloodmage","dbcSpellId":804849,"name":"Blood Shards","unlockLevel":30,"icon":"/assets/ui/spells/uico_blood_spell_02_border.png","sigil":"BS","description":"Level 30 Passive Shadow Damage dealt now generates 1 Blood Shard, plus 1 additional if it critically strikes, for 10 minutes, up to 8. Dealing damage with Veinburst will now expend all stacks of Blood Shards, each dealing 18 + 9% AP + 15% SP Arcane damage to your target.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804849:effect:0:aura:42","name":"Blood Shards (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804849:proc:0:506640","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":506640}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":506640}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804849,"level":30,"description":"Level 30 Passive Shadow Damage dealt now generates 1 Blood Shard, plus 1 additional if it critically strikes, for 10 minutes, up to 8. Dealing damage with Veinburst will now expend all stacks of Blood Shards, each dealing 18 + 9% AP + 15% SP Arcane damage to your target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804849:effect:0:aura:42","name":"Blood Shards (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804849:proc:0:506640","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":506640}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":506640}]}],"talentEntryId":4128},{"id":"coa-tree-12906","classId":"bloodmage","dbcSpellId":685028,"name":"Blood-Cursed Armor","unlockLevel":30,"icon":"/assets/ui/spells/spell_shadow_curseoftounges.png","sigil":"BC","description":"You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:685028:effect:0:aura:22","name":"Blood-Cursed Armor (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":390}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":685028,"level":30,"description":"You now emanate an aura around you, increasing the Armor of party and raid members by 390. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:685028:effect:0:aura:22","name":"Blood-Cursed Armor (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":390}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":12906},{"id":"coa-tree-9906","classId":"bloodmage","dbcSpellId":684331,"name":"Blood-Cursed Weapons","unlockLevel":30,"icon":"/assets/ui/spells/5_assassinskill09_border.png","sigil":"BC","description":"Casting Crimson Tide now additionally increases the haste of all party and raid members by 5% for 15 seconds. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:684331:effect:0:aura:42","name":"Blood-Cursed Weapons (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:684331:proc:0:685029","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":685029}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":685029}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":684331,"level":30,"description":"Casting Crimson Tide now additionally increases the haste of all party and raid members by 5% for 15 seconds. Does not stack with similar effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:684331:effect:0:aura:42","name":"Blood-Cursed Weapons (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:684331:proc:0:685029","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":685029}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":685029}]}],"talentEntryId":9906},{"id":"coa-tree-11528","classId":"bloodmage","dbcSpellId":805591,"name":"Bloodsores","unlockLevel":30,"icon":"/assets/ui/spells/ability_deathknight_desolation.png","sigil":"BL","description":"Level 30 Passive Periodic damage dealt now has a 20% chance to apply a Bloodsore to your target for 8 seconds, stacking 5 times. BloodsoreIncreases the damage of your next Sanguine Rupture and Bloodmoon Blast against the target by 10% for 8 seconds, stacking 5 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805591:effect:0:aura:42","name":"Bloodsores (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805591:proc:0:805592","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805592}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805592}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805591,"level":30,"description":"Level 30 Passive Periodic damage dealt now has a 20% chance to apply a Bloodsore to your target for 8 seconds, stacking 5 times. BloodsoreIncreases the damage of your next Sanguine Rupture and Bloodmoon Blast against the target by 10% for 8 seconds, stacking 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805591:effect:0:aura:42","name":"Bloodsores (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805591:proc:0:805592","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805592}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805592}]}],"talentEntryId":11528},{"id":"coa-tree-4629","classId":"bloodmage","dbcSpellId":704661,"name":"Feral Strength","unlockLevel":30,"icon":"/assets/ui/spells/nhi_unholy_wounds_border.png","sigil":"FS","description":"Level 30 Passive While in Eternal Curse, you now gain 50% more attack power from Agility and Strength.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704661:effect:0:aura:107","name":"Feral Strength (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704661:effect:1:aura:107","name":"Feral Strength (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704661,"level":30,"description":"Level 30 Passive While in Eternal Curse, you now gain 50% more attack power from Agility and Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704661:effect:0:aura:107","name":"Feral Strength (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704661:effect:1:aura:107","name":"Feral Strength (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":4629},{"id":"coa-20-night-hunters-howl-74-501680","classId":"bloodmage","dbcSpellId":501680,"name":"Night Hunter's Howl","unlockLevel":38,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"NH","description":"Night Hunter's HowlRank 225 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 98+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.8065251629307585,"basePoints":98,"dieSides":23,"pointsPerLevel":0.5062500238418579,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":520459,"withValue":-60},{"kind":"apply-aura","aura":{"id":"coa:520459:effect:0:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.05}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501680,"level":38,"description":"Night Hunter's HowlRank 225 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 98+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.8065251629307585,"basePoints":98,"dieSides":23,"pointsPerLevel":0.5062500238418579,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":520459,"withValue":-60},{"kind":"apply-aura","aura":{"id":"coa:520459:effect:0:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.05}]},{"rank":3,"spellId":501681,"level":48,"description":"Night Hunter's HowlRank 325 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 137+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.9846560816285471,"basePoints":137,"dieSides":32,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":56},{"kind":"trigger-spell","spellId":520459,"withValue":-60},{"kind":"apply-aura","aura":{"id":"coa:520459:effect:0:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.05}]},{"rank":4,"spellId":501682,"level":58,"description":"Night Hunter's HowlRank 425 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 191+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.2318493182256343,"basePoints":191,"dieSides":44,"pointsPerLevel":0.987500011920929,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66},{"kind":"trigger-spell","spellId":520459,"withValue":-60},{"kind":"apply-aura","aura":{"id":"coa:520459:effect:0:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.05}]},{"rank":5,"spellId":501683,"level":68,"description":"Night Hunter's Howlrank 525 Rage Instant8 sec cooldownHowl into the souls of nearby enemies, dealing 267+0+AP*0.285 Shadow damage and slowing their movement speed by 60% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.464457834580816,"basePoints":267,"dieSides":62,"pointsPerLevel":0.987500011920929,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":78},{"kind":"trigger-spell","spellId":520459,"withValue":-60},{"kind":"apply-aura","aura":{"id":"coa:520459:effect:0:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.05}]},{"rank":6,"spellId":501684,"level":51,"description":"Night Hunter's HowlRank 625 Rage Instant cast8 sec cooldownHowl into the souls of nearby enemies, slowing their movement speed by 60% for 6 sec, and dealing 309+0+AP*0.258+SP*0.368973 Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":2.7402399284671053,"basePoints":309,"dieSides":15,"pointsPerLevel":4.442500114440918,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60},{"kind":"apply-aura","aura":{"id":"coa:501684:effect:1:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.6}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.6}]},{"rank":7,"spellId":501685,"level":61,"description":"Night Hunter's HowlRank 725 Rage Instant cast8 sec cooldownHowl into the souls of nearby enemies, slowing their movement speed by 60% for 6 sec, and dealing 484+0+AP*0.258+SP*0.368973 Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":3.533629340037965,"basePoints":484,"dieSides":20,"pointsPerLevel":5.117499828338623,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70},{"kind":"apply-aura","aura":{"id":"coa:501685:effect:1:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.6}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.6}]},{"rank":8,"spellId":501686,"level":71,"description":"Night Hunter's HowlRank 825 Rage Instant cast8 sec cooldownHowl into the souls of nearby enemies, slowing their movement speed by 60% for 6 sec, and dealing 742+0+AP*0.258+SP*0.368973 Shadow Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":4,"basePoints":742,"dieSides":26,"pointsPerLevel":5.792500019073486,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:501686:effect:1:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.6}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.6}]}]},{"id":"coa-tree-4906","classId":"bloodmage","dbcSpellId":681792,"name":"Cursed Blood","unlockLevel":40,"icon":"/assets/ui/spells/5_assassinskill37_border.png","sigil":"CB","description":"Increases the damage dealt and spell power scaling of Bloodbolt, Bloodmoon Blast, and Crimson Tide by 20%. In addition, damage dealt by Bloodbolt now reduces all resistances by 75 and increases the target's Magic damage taken by 2% for 10 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:681792:effect:0:aura:42","name":"Cursed Blood (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:681792:proc:0:803722","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803722}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803722},{"kind":"apply-aura","aura":{"id":"coa:681792:effect:1:aura:108","name":"Cursed Blood (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681792:effect:2:aura:108","name":"Cursed Blood (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681792,"level":40,"description":"Increases the damage dealt and spell power scaling of Bloodbolt, Bloodmoon Blast, and Crimson Tide by 20%. In addition, damage dealt by Bloodbolt now reduces all resistances by 75 and increases the target's Magic damage taken by 2% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:681792:effect:0:aura:42","name":"Cursed Blood (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:681792:proc:0:803722","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803722}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803722},{"kind":"apply-aura","aura":{"id":"coa:681792:effect:1:aura:108","name":"Cursed Blood (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681792:effect:2:aura:108","name":"Cursed Blood (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}],"talentEntryId":4906},{"id":"coa-tree-9418","classId":"bloodmage","dbcSpellId":300978,"name":"Enraging Wounds","unlockLevel":40,"icon":"/assets/ui/spells/5_wound_border.png","sigil":"EW","description":"Level 40 Passive Melee critical strikes now leech 96 + 30% Stamina health from the target, scaling with your Stamina.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300978:effect:0:aura:42","name":"Enraging Wounds (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300978:proc:0:560589","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560589}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560589}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300978,"level":40,"description":"Level 40 Passive Melee critical strikes now leech 96 + 30% Stamina health from the target, scaling with your Stamina.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300978:effect:0:aura:42","name":"Enraging Wounds (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300978:proc:0:560589","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560589}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560589}]}],"talentEntryId":9418},{"id":"coa-tree-11906","classId":"bloodmage","dbcSpellId":520314,"name":"Heartbreak","unlockLevel":40,"icon":"/assets/ui/spells/nhi_blooddrop_border.png","sigil":"HE","description":"Unleash a powerful surge of blood, dealing 172 + 50% shadow SP + 100% Spirit Shadow damage to an enemy, and healing 12 allies within 20 yds of the target for 162 + 30% healing + 100% Spirit. Empowered: Increases your party and raid members attack or spell power by 95 for 20 seconds, plus an additional 95 for you, scaling with level.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"damage","coefficient":1.4206060467344341,"basePoints":172,"dieSides":1,"pointsPerLevel":1.559999942779541,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"heal","coefficient":1.4206060467344341,"basePoints":172,"dieSides":1,"pointsPerLevel":1.559999942779541,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":807563,"withValue":95},{"kind":"apply-aura","aura":{"id":"coa:807563:effect:0:aura:344","name":"Heartbreak (Aura 344)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807563:effect:1:aura:345","name":"Heartbreak (Aura 345)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":345,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807563:effect:2:aura:4","name":"Heartbreak (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520315,"withValue":162},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520314,"level":40,"description":"Unleash a powerful surge of blood, dealing 172 + 50% shadow SP + 100% Spirit Shadow damage to an enemy, and healing 12 allies within 20 yds of the target for 162 + 30% healing + 100% Spirit. Empowered: Increases your party and raid members attack or spell power by 95 for 20 seconds, plus an additional 95 for you, scaling with level.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"damage","coefficient":1.4206060467344341,"basePoints":172,"dieSides":1,"pointsPerLevel":1.559999942779541,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"heal","coefficient":1.4206060467344341,"basePoints":172,"dieSides":1,"pointsPerLevel":1.559999942779541,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":807563,"withValue":95},{"kind":"apply-aura","aura":{"id":"coa:807563:effect:0:aura:344","name":"Heartbreak (Aura 344)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807563:effect:1:aura:345","name":"Heartbreak (Aura 345)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":345,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807563:effect:2:aura:4","name":"Heartbreak (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520315,"withValue":162},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40}]}],"talentEntryId":11906},{"id":"coa-tree-4528","classId":"bloodmage","dbcSpellId":504252,"name":"Reckless Abandon","unlockLevel":40,"icon":"/assets/ui/spells/nhi_bloodavatar_border.png","sigil":"RA","description":"Level 40 Passive Each stack of Thirst now increases your critical strike chance by 1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504252:effect:0:aura:107","name":"Reckless Abandon (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504252,"level":40,"description":"Level 40 Passive Each stack of Thirst now increases your critical strike chance by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504252:effect:0:aura:107","name":"Reckless Abandon (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":4528},{"id":"coa-tree-4129","classId":"bloodmage","dbcSpellId":704652,"name":"Relentless","unlockLevel":40,"icon":"/assets/ui/spells/inv_shoulder_mail_pvphunter_g_01.png","sigil":"RE","description":"Level 40 Passive Physical critical strikes now reduce the cooldown of Aortic Assault by -1 sec and grant you Relentless.Relentless (Proc)Your Aortic Assault channels -10% faster for 10 seconds, stacking 5 times, and each strike now extends the duration of Taldaram's Torment by 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704652:effect:0:aura:42","name":"Relentless (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704652:proc:0:807357","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807357}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807357}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704652,"level":40,"description":"Level 40 Passive Physical critical strikes now reduce the cooldown of Aortic Assault by -1 sec and grant you Relentless.Relentless (Proc)Your Aortic Assault channels -10% faster for 10 seconds, stacking 5 times, and each strike now extends the duration of Taldaram's Torment by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704652:effect:0:aura:42","name":"Relentless (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704652:proc:0:807357","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807357}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807357}]}],"talentEntryId":4129},{"id":"coa-tree-4305","classId":"bloodmage","dbcSpellId":578120,"name":"Bloodmoon Power","unlockLevel":50,"icon":"/assets/ui/spells/inv_crawlinghandpet_red.png","sigil":"BP","description":"Level 50 Passive Periodic damage dealt by Rotclaw now hits -50% more often and your Bloodfang Bite, Claw Sweep, and Bloodbolt additionally scales with dodge rating.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:578120:effect:0:aura:108","name":"Bloodmoon Strength (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:578120:effect:1:aura:23","name":"Bloodmoon Strength (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:578120:proc:1:560480","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560480}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":560480}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":578120,"level":50,"description":"Level 50 Passive Periodic damage dealt by Rotclaw now hits -50% more often and your Bloodfang Bite, Claw Sweep, and Bloodbolt additionally scales with dodge rating.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:578120:effect:0:aura:108","name":"Bloodmoon Strength (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:578120:effect:1:aura:23","name":"Bloodmoon Strength (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:578120:proc:1:560480","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560480}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":560480}]}],"talentEntryId":4305},{"id":"coa-tree-11916","classId":"bloodmage","dbcSpellId":680679,"name":"Purify Blood","unlockLevel":50,"icon":"/assets/ui/spells/spell_animarevendreth_nova.png","sigil":"PB","description":"Emanate an aura for 15 seconds, causing allied players to deal 70% shadow SP additional damage as Shadow damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","target":"hostile","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":26,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520839,"withValue":0},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520839:effect:0:aura:231","name":"Purify Blood (Aura 231)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520839:proc:0:573273","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573273}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":573273},{"kind":"trigger-spell","spellId":573255},{"kind":"apply-aura","aura":{"id":"coa:573255:effect:0:aura:4","name":"Exhaustion (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":573254}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680679,"level":50,"description":"Emanate an aura for 15 seconds, causing allied players to deal 70% shadow SP additional damage as Shadow damage when they deal direct damage. Applies Exhaustion, preventing you from benefiting from similar effects for 1 minute.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":26,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520839,"withValue":0},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520839:effect:0:aura:231","name":"Purify Blood (Aura 231)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520839:proc:0:573273","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573273}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":573273},{"kind":"trigger-spell","spellId":573255},{"kind":"apply-aura","aura":{"id":"coa:573255:effect:0:aura:4","name":"Exhaustion (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":573254}]}],"talentEntryId":11916},{"id":"coa-tree-4916","classId":"bloodmage","dbcSpellId":520493,"name":"Red Thirst","unlockLevel":50,"icon":"/assets/ui/spells/ability_revendreth_priest.png","sigil":"RT","description":"Enrage allies within 40 yds, increasing haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","target":"hostile","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"health","amount":26,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520493:effect:0:aura:65","name":"Red Thirst (Aura 65)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":65,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520493:effect:1:aura:192","name":"Red Thirst (Aura 192)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804457},{"kind":"apply-aura","aura":{"id":"coa:804457:effect:0:aura:4","name":"Worn Out (Aura 4)","disposition":"debuff","durationMs":300000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520493,"level":50,"description":"Enrage allies within 40 yds, increasing haste by 30% for 20 seconds. After being affected by this spell, allies cannot benefit from similar effects for 5 minutes.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"health","amount":26,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520493:effect:0:aura:65","name":"Red Thirst (Aura 65)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":65,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520493:effect:1:aura:192","name":"Red Thirst (Aura 192)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804457},{"kind":"apply-aura","aura":{"id":"coa:804457:effect:0:aura:4","name":"Worn Out (Aura 4)","disposition":"debuff","durationMs":300000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4916},{"id":"coa-tree-4306","classId":"bloodmage","dbcSpellId":807487,"name":"The Hunter and the Hunted","unlockLevel":50,"icon":"/assets/ui/spells/nhi_blood_aura_border.png","sigil":"TH","description":"Level 50 Passive When you activate a Cursed Form you now charge to your target if they are within 20 yds. If they're an enemy you root them for 2 seconds. Upon expiration, your Accursed Form can be reactivated to cause you to erupt in a burst of blood magic, leeching 364 + 33% shadow SP + 12.5% AP health from nearby enemies and teleporting you backwards.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807487:effect:0:aura:4","name":"The Hunter and the Hunted (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807487,"level":50,"description":"Level 50 Passive When you activate a Cursed Form you now charge to your target if they are within 20 yds. If they're an enemy you root them for 2 seconds. Upon expiration, your Accursed Form can be reactivated to cause you to erupt in a burst of blood magic, leeching 364 + 33% shadow SP + 12.5% AP health from nearby enemies and teleporting you backwards.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807487:effect:0:aura:4","name":"The Hunter and the Hunted (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4306},{"id":"coa-tree-12448","classId":"bloodmage","dbcSpellId":570023,"name":"Thirst for Blood","unlockLevel":50,"icon":"/assets/ui/spells/epic_rpg_icon_pack_blood_0002s_0000_foreground_border.png","sigil":"TF","description":"Level 50 Passive Receive a bonus based on your Thirst level. Between 1-5 stacks of Thirst: You become Sated. Between 6-10 stacks of Thirst: You become Ravenous. SatedSpell haste increased by 10%.RavenousSpell critical damage increased by 100%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570023:effect:0:aura:4","name":"Thirst for Blood (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":570025},{"kind":"apply-aura","aura":{"id":"coa:570023:effect:1:aura:4","name":"Thirst for Blood (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":570024}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":570023,"level":50,"description":"Level 50 Passive Receive a bonus based on your Thirst level. Between 1-5 stacks of Thirst: You become Sated. Between 6-10 stacks of Thirst: You become Ravenous. SatedSpell haste increased by 10%.RavenousSpell critical damage increased by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570023:effect:0:aura:4","name":"Thirst for Blood (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":570025},{"kind":"apply-aura","aura":{"id":"coa:570023:effect:1:aura:4","name":"Thirst for Blood (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":570024}]}],"talentEntryId":12448},{"id":"coa-20-crimson-tide-73-504134","classId":"bloodmage","dbcSpellId":504134,"name":"Crimson Tide","unlockLevel":60,"icon":"/assets/ui/spells/nhi_blood_slash_border.png","sigil":"CT","description":"Crimson TideRank 740 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(351+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504134:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.6644444698757597,"basePoints":351,"dieSides":15,"pointsPerLevel":4.025000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":5,"intervalMs":3000,"tag":"spell-504134"}],"passive":false,"source":"coa-progression","ranks":[{"rank":7,"spellId":504134,"level":60,"description":"Crimson TideRank 740 Rage Instant castRequires Mortal Form Create a pool of blood beneath up to 10 enemies within 10 yds of you, causing them to bleed for (15*1000/3)*(351+0+SP*.28) Shadow damage over 15 sec. Empowered: Radius increased by 5 yds and costs 100% less Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504134:effect:0:aura:3","name":"Crimson Tide (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.6644444698757597,"basePoints":351,"dieSides":15,"pointsPerLevel":4.025000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":5,"intervalMs":3000,"tag":"spell-504134"}]}]}],"ranger":[{"id":"coa-21-agile-none-560796","classId":"ranger","dbcSpellId":560796,"name":"Agile","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_38.png","sigil":"AG","description":"AgileRank 2Increases the damage of Wild Strike, Whipvine Arrow, and Ravage by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560796:effect:0:aura:108","name":"Agile (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560796:effect:1:aura:108","name":"Agile (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560796,"level":1,"description":"AgileRank 2Increases the damage of Wild Strike, Whipvine Arrow, and Ravage by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560796:effect:0:aura:108","name":"Agile (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560796:effect:1:aura:108","name":"Agile (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}]},{"id":"coa-21-archery-training-76-705036","classId":"ranger","dbcSpellId":705036,"name":"Archery Training","unlockLevel":1,"icon":"/assets/ui/spells/inv_bow_1h_draenorcrafted_d_01_a_horde.png","sigil":"AT","description":"Archery TrainingRank 1Increases the damage of Skullpiercer by 3% and your critical strike chance by 1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705036:effect:0:aura:290","name":"Archery Training (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705036:effect:1:aura:108","name":"Archery Training (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705036,"level":1,"description":"Archery TrainingRank 1Increases the damage of Skullpiercer by 3% and your critical strike chance by 1%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705036:effect:0:aura:290","name":"Archery Training (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705036:effect:1:aura:108","name":"Archery Training (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705037,"level":1,"description":"Archery TrainingRank 2Increases the damage of Skullpiercer by 6% and your critical strike chance by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705037:effect:0:aura:290","name":"Archery Training (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705037:effect:1:aura:108","name":"Archery Training (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29331","classId":"ranger","dbcSpellId":800084,"name":"Briar Veil","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureempower_border.png","sigil":"BV","description":"Thorns and leaves swirl around you, masking your movements for 10 seconds, increasing your dodge chance by 50% and causing dodging attacks to restore 2% maximum health and 5 Focus.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800084:effect:0:aura:49","name":"Briar Veil (Aura 49)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:800084:effect:2:aura:42","name":"Briar Veil (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800084:proc:2:803288","triggers":["dodge","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803288}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803288}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800084,"level":1,"description":"Thorns and leaves swirl around you, masking your movements for 10 seconds, increasing your dodge chance by 50% and causing dodging attacks to restore 2% maximum health and 5 Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800084:effect:0:aura:49","name":"Briar Veil (Aura 49)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:800084:effect:2:aura:42","name":"Briar Veil (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800084:proc:2:803288","triggers":["dodge","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803288}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803288}]}],"talentEntryId":29331},{"id":"coa-tree-34168","classId":"ranger","dbcSpellId":705026,"name":"Camper","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_makecamp.png","sigil":"CA","description":"Reduces the cast time of your Bushcraft abilities by -50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705026:effect:0:aura:108","name":"Camper (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705026,"level":1,"description":"Reduces the cast time of your Bushcraft abilities by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705026:effect:0:aura:108","name":"Camper (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":34168},{"id":"coa-21-compound-bow-none-506815","classId":"ranger","dbcSpellId":506815,"name":"Compound Bow","unlockLevel":1,"icon":"/assets/ui/spells/inv_bow_1h_draenorquest95_b_01.png","sigil":"CB","description":"Compound BowRank 2Increases ranged attack power by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:506815:effect:0:aura:167","name":"Compound Bow (Aura 167)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":167,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":506815,"level":1,"description":"Compound BowRank 2Increases ranged attack power by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:506815:effect:0:aura:167","name":"Compound Bow (Aura 167)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":167,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29144","classId":"ranger","dbcSpellId":804725,"name":"Crippling Shot","unlockLevel":1,"icon":"/assets/ui/spells/custom_dismounting_shot.png","sigil":"CS","description":"Fire a crippling shot at an enemy slowing movement speed by -50% and knocking them off their mounts, making them unable to mount again for 5 seconds.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804725:effect:0:aura:77","name":"Crippling Shot (Aura 77)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804725:effect:1:aura:42","name":"Crippling Shot (Aura 42)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804725:proc:1:300851","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":300851}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":300851},{"kind":"apply-aura","aura":{"id":"coa:804725:effect:2:aura:33","name":"Crippling Shot (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804725,"level":1,"description":"Fire a crippling shot at an enemy slowing movement speed by -50% and knocking them off their mounts, making them unable to mount again for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804725:effect:0:aura:77","name":"Crippling Shot (Aura 77)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804725:effect:1:aura:42","name":"Crippling Shot (Aura 42)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804725:proc:1:300851","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":300851}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":300851},{"kind":"apply-aura","aura":{"id":"coa:804725:effect:2:aura:33","name":"Crippling Shot (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]}],"talentEntryId":29144},{"id":"coa-tree-30051","classId":"ranger","dbcSpellId":705044,"name":"Dirty Fighter","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_plunderarmor.png","sigil":"DF","description":"Increases the chance for Flank to critically strike by 50% and increases your chance to resist root effects by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705044:effect:0:aura:107","name":"Dirty Fighter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705044:effect:1:aura:117","name":"Dirty Fighter (Aura 117)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":117,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705044,"level":1,"description":"Increases the chance for Flank to critically strike by 50% and increases your chance to resist root effects by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705044:effect:0:aura:107","name":"Dirty Fighter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705044:effect:1:aura:117","name":"Dirty Fighter (Aura 117)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":117,"miscValue":7,"triggerSpellId":0}]}],"talentEntryId":30051},{"id":"coa-tree-4030","classId":"ranger","dbcSpellId":92117,"name":"Dream Flowers","unlockLevel":1,"icon":"/assets/ui/spells/inv_legion_faction_dreamweavers.png","sigil":"DF","description":"Level 10 Passive Your damaging critical strikes now spawn a green Dream Flower at a random location within 15 yds of you. Dream Flower (Spawner)When an ally runs over the flower, they consume it to heal for 3% maximum health and gain 40% increased movement speed for 5 seconds.Can only occur once per sec.","target":"friendly","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92117:effect:0:aura:42","name":"Dream Flowers (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92117:proc:0:561005","triggers":["crit","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":561005}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":561005}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92117,"level":1,"description":"Level 10 Passive Your damaging critical strikes now spawn a green Dream Flower at a random location within 15 yds of you. Dream Flower (Spawner)When an ally runs over the flower, they consume it to heal for 3% maximum health and gain 40% increased movement speed for 5 seconds.Can only occur once per sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92117:effect:0:aura:42","name":"Dream Flowers (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92117:proc:0:561005","triggers":["crit","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":561005}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":561005}]}],"talentEntryId":4030},{"id":"coa-21-durable-quivers-76-706279","classId":"ranger","dbcSpellId":706279,"name":"Durable Quivers","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_quiver_09.png","sigil":"DQ","description":"Durable QuiversRank 1Increases the duration of Quivers by 1.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706279:effect:0:aura:4","name":"Durable Quivers (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706279:effect:1:aura:107","name":"Durable Quivers (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706279,"level":1,"description":"Durable QuiversRank 1Increases the duration of Quivers by 1.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706279:effect:0:aura:4","name":"Durable Quivers (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706279:effect:1:aura:107","name":"Durable Quivers (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":706280,"level":1,"description":"Durable QuiversRank 2Increases the duration of Quivers by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706280:effect:0:aura:4","name":"Durable Quivers (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706280:effect:1:aura:107","name":"Durable Quivers (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-6670","classId":"ranger","dbcSpellId":560340,"name":"Elusive Character","unlockLevel":1,"icon":"/assets/ui/spells/custom_16_shadow_swords_border.png","sigil":"EC","description":"Increases your damage dealt by 10% for 12 seconds after leaving Elude.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560340:effect:0:aura:4","name":"Elusive Character (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560340,"level":1,"description":"Increases your damage dealt by 10% for 12 seconds after leaving Elude.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560340:effect:0:aura:4","name":"Elusive Character (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6670},{"id":"coa-21-elven-quivers-76-706278","classId":"ranger","dbcSpellId":706278,"name":"Elven Quivers","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_quiver_05.png","sigil":"EQ","description":"Elven QuiversRank 2InstantIncreases the effectiveness of Quivers by 25% and increases the amount of enemies hit with Spray Quiver by 2.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706278:effect:0:aura:107","name":"Elven Quivers (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706278:effect:1:aura:108","name":"Elven Quivers (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706278,"level":1,"description":"Elven QuiversRank 2InstantIncreases the effectiveness of Quivers by 25% and increases the amount of enemies hit with Spray Quiver by 2.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706278:effect:0:aura:107","name":"Elven Quivers (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706278:effect:1:aura:108","name":"Elven Quivers (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}]},{"id":"coa-tree-4156","classId":"ranger","dbcSpellId":560701,"name":"Elven Tactics","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_archer.png","sigil":"ET","description":"You now have a -20% chance to not consume Advantage on cast.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560701:effect:0:aura:107","name":"Elven Tactics (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560701,"level":1,"description":"You now have a -20% chance to not consume Advantage on cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560701:effect:0:aura:107","name":"Elven Tactics (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}],"talentEntryId":4156},{"id":"coa-21-even-quicker-shots-76-705030","classId":"ranger","dbcSpellId":705030,"name":"Even Quicker Shots","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_thrillofthehunt.png","sigil":"EQ","description":"Even Quicker ShotsRank 1Reduces the cast time of Quick Shot by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705030:effect:0:aura:108","name":"Even Quicker Shots (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705030,"level":1,"description":"Even Quicker ShotsRank 1Reduces the cast time of Quick Shot by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705030:effect:0:aura:108","name":"Even Quicker Shots (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}]}]},{"id":"coa-tree-29416","classId":"ranger","dbcSpellId":705092,"name":"Grace","unlockLevel":1,"icon":"/assets/ui/spells/5_archerskill10_border.png","sigil":"GR","description":"Increases your Agility and movement speed by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705092:effect:0:aura:137","name":"Grace (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705092:effect:1:aura:31","name":"Grace (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705092,"level":1,"description":"Increases your Agility and movement speed by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705092:effect:0:aura:137","name":"Grace (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705092:effect:1:aura:31","name":"Grace (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":707848,"level":1,"description":"Increases your Agility and movement speed by 7%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707848:effect:0:aura:137","name":"Grace (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.07}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707848:effect:1:aura:31","name":"Grace (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.07}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":712477,"level":1,"description":"Increases your Agility and movement speed by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712477:effect:0:aura:137","name":"Grace (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:712477:effect:1:aura:31","name":"Grace (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29416},{"id":"coa-tree-9782","classId":"ranger","dbcSpellId":561106,"name":"Grappling Arrows","unlockLevel":1,"icon":"/assets/ui/spells/custom_21_light_arrow_border.png","sigil":"GA","description":"Increases the range of Snatch by 15 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561106:effect:0:aura:107","name":"Grappling Arrows (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561106,"level":1,"description":"Increases the range of Snatch by 15 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561106:effect:0:aura:107","name":"Grappling Arrows (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":9782},{"id":"coa-tree-7906","classId":"ranger","dbcSpellId":520353,"name":"Guile of the Ranger","unlockLevel":1,"icon":"/assets/ui/spells/5_archerskill27_border.png","sigil":"GO","description":"Your Instinct now additionally increases your critical strike rating by 20% of your Agility.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520353:effect:0:aura:42","name":"Guile of the Ranger (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:520353:proc:0:520545","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520545}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520545}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520353,"level":1,"description":"Your Instinct now additionally increases your critical strike rating by 20% of your Agility.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520353:effect:0:aura:42","name":"Guile of the Ranger (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:520353:proc:0:520545","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520545}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520545}]}],"talentEntryId":7906},{"id":"coa-tree-1906","classId":"ranger","dbcSpellId":520753,"name":"Guise","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_stayofexecution.png","sigil":"GU","description":"Instantly generates 5 stacks of Advantage and allows you see nearby stealthed enemies for 5 seconds. Usable while stealthed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"trigger-spell","spellId":520791},{"kind":"trigger-spell","spellId":804329},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804329},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520753:effect:1:aura:228","name":"Guise (Aura 228)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":228,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520753,"level":1,"description":"Instantly generates 5 stacks of Advantage and allows you see nearby stealthed enemies for 5 seconds. Usable while stealthed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"trigger-spell","spellId":520791},{"kind":"trigger-spell","spellId":804329},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804329},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520753:effect:1:aura:228","name":"Guise (Aura 228)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":228,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":1906},{"id":"coa-21-improved-grapplebomb-78-705090","classId":"ranger","dbcSpellId":705090,"name":"Improved Grapplebomb","unlockLevel":1,"icon":"/assets/ui/spells/ability_ironmaidens_grapeshotblast.png","sigil":"IG","description":"Improved GrapplebombRank 1Reduces the cooldown of Grapplebomb by 5 sec and increases its damage by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705090:effect:0:aura:107","name":"Improved Grapplebomb (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705090:effect:1:aura:108","name":"Improved Grapplebomb (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705090,"level":1,"description":"Improved GrapplebombRank 1Reduces the cooldown of Grapplebomb by 5 sec and increases its damage by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705090:effect:0:aura:107","name":"Improved Grapplebomb (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705090:effect:1:aura:108","name":"Improved Grapplebomb (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705091,"level":1,"description":"Improved GrapplebombRank 2Reduces the cooldown of Grapplebomb by 10 sec and increases its damage by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705091:effect:0:aura:107","name":"Improved Grapplebomb (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705091:effect:1:aura:108","name":"Improved Grapplebomb (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30351","classId":"ranger","dbcSpellId":573057,"name":"Improved Waterskins","unlockLevel":1,"icon":"/assets/ui/spells/inv_drink_waterskin_03.png","sigil":"IW","description":"Increases the effectiveness of your Waterskins by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573057:effect:0:aura:108","name":"Improved Waterskins (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":573057,"level":1,"description":"Increases the effectiveness of your Waterskins by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573057:effect:0:aura:108","name":"Improved Waterskins (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":30351},{"id":"coa-tree-29337","classId":"ranger","dbcSpellId":801435,"name":"Knockout","unlockLevel":1,"icon":"/assets/ui/spells/ability_monk_blackoutkick.png","sigil":"KN","description":"Knock an enemy out, incapacitating them for 4 seconds and removing bleed and poison effects from them. Damage caused will interrupt this effect. Usable while in Elude.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"status","status":"sleep","durationMs":8000},{"kind":"trigger-spell","spellId":706763},{"kind":"dispel-mechanic","mechanic":15,"maxCount":10},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["poison"],"maxCount":10},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801435,"level":1,"description":"Knock an enemy out, incapacitating them for 4 seconds and removing bleed and poison effects from them. Damage caused will interrupt this effect. Usable while in Elude.","castMode":"instant","castTimeMs":0,"cooldownMs":18000,"gcdMs":1500,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"status","status":"sleep","durationMs":8000},{"kind":"trigger-spell","spellId":706763},{"kind":"dispel-mechanic","mechanic":15,"maxCount":10},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["poison"],"maxCount":10},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29337},{"id":"coa-tree-4936","classId":"ranger","dbcSpellId":704320,"name":"Lethal Cunning","unlockLevel":1,"icon":"/assets/ui/spells/_aimedshot_red.png","sigil":"LC","description":"Entering Elude generates 1 stack of Advantage and 10 Focus every 5 sec for 30 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704320:effect:0:aura:42","name":"Lethal Cunning (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704320:proc:0:704321","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704321}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704321}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704320,"level":1,"description":"Entering Elude generates 1 stack of Advantage and 10 Focus every 5 sec for 30 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704320:effect:0:aura:42","name":"Lethal Cunning (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704320:proc:0:704321","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704321}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704321}]}],"talentEntryId":4936},{"id":"coa-21-lethal-wounds-77-705056","classId":"ranger","dbcSpellId":705056,"name":"Lethal Wounds","unlockLevel":1,"icon":"/assets/ui/spells/uico_blood_spell_02_border.png","sigil":"LW","description":"Lethal WoundsRank 2Increases the tick rate of your periodic damage effects by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705056:effect:0:aura:108","name":"Lethal Wounds (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705056,"level":1,"description":"Lethal WoundsRank 2Increases the tick rate of your periodic damage effects by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705056:effect:0:aura:108","name":"Lethal Wounds (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-tree-6945","classId":"ranger","dbcSpellId":520585,"name":"Natural Disguise","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureambush_border.png","sigil":"ND","description":"Instantly dispels all movement slowing effects from allies within 30 yds and transforms them into a bush, stealthing them for 20 seconds.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520585:effect:0:aura:16","name":"Natural Disguise (Aura 16)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["stealth"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":16,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520585:effect:1:aura:56","name":"Natural Disguise (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":421460,"triggerSpellId":0},{"kind":"dispel-mechanic","mechanic":11,"maxCount":150}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520585,"level":1,"description":"Instantly dispels all movement slowing effects from allies within 30 yds and transforms them into a bush, stealthing them for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520585:effect:0:aura:16","name":"Natural Disguise (Aura 16)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["stealth"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":16,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520585:effect:1:aura:56","name":"Natural Disguise (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":421460,"triggerSpellId":0},{"kind":"dispel-mechanic","mechanic":11,"maxCount":150}]}],"talentEntryId":6945},{"id":"coa-tree-6682","classId":"ranger","dbcSpellId":706277,"name":"Outlaw","unlockLevel":1,"icon":"/assets/ui/spells/_human_04.png","sigil":"OU","description":"Increases the effectiveness of your Adaptations by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706277:effect:0:aura:108","name":"Outlaw (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706277,"level":1,"description":"Increases the effectiveness of your Adaptations by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706277:effect:0:aura:108","name":"Outlaw (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":6682},{"id":"coa-tree-34157","classId":"ranger","dbcSpellId":801468,"name":"Pinpoint Accuracy","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_bow_01.png","sigil":"PA","description":"Critical strikes with direct damaging abilities now generate 4 Focus.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801468:effect:0:aura:42","name":"Pinpoint Accuracy (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:801468:proc:0:801471","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801471}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":1,"triggerSpellId":801471}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801468,"level":1,"description":"Critical strikes with direct damaging abilities now generate 4 Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801468:effect:0:aura:42","name":"Pinpoint Accuracy (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:801468:proc:0:801471","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801471}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":1,"triggerSpellId":801471}]}],"talentEntryId":34157},{"id":"coa-21-quick-shot-495-500074","classId":"ranger","dbcSpellId":500074,"name":"Quick Shot","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"QS","description":"Quick ShotRank 140 Focus InstantRequires Bows, Crossbows Generates 1 Advantage Shoot an enemy, dealing 90% Ranged Weapon Damage plus 2.","target":"hostile","range":{"min":5,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.9}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500074,"level":1,"description":"Quick ShotRank 140 Focus InstantRequires Bows, Crossbows Generates 1 Advantage Shoot an enemy, dealing 90% Ranged Weapon Damage plus 2.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.9}]}]},{"id":"coa-tree-34156","classId":"ranger","dbcSpellId":560341,"name":"Rapid Strikes","unlockLevel":1,"icon":"/assets/ui/spells/_crossingswords_colorsgreen.png","sigil":"RS","description":"Melee and ranged auto attacks now have a 25% chance to strike an additional time for 50% of the damage dealt. Can only occur once per sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560341:effect:0:aura:354","name":"Rapid Strikes (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":560342}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560341,"level":1,"description":"Melee and ranged auto attacks now have a 25% chance to strike an additional time for 50% of the damage dealt. Can only occur once per sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560341:effect:0:aura:354","name":"Rapid Strikes (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":560342}]}],"talentEntryId":34156},{"id":"coa-tree-4029","classId":"ranger","dbcSpellId":92116,"name":"Ravager","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_energeticrecovery.png","sigil":"RA","description":"Level 10 Passive Your Wild Strike now generates 1 additional Advantage. Removes the minimum range of your ranged abilities.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92116:effect:0:aura:42","name":"Ravager (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92116:proc:0:524659","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524659}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524659},{"kind":"apply-aura","aura":{"id":"coa:92116:effect:1:aura:312","name":"Ravager (Aura 312)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":312,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92116:effect:2:aura:112","name":"Ravager (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20007,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92116,"level":1,"description":"Level 10 Passive Your Wild Strike now generates 1 additional Advantage. Removes the minimum range of your ranged abilities.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92116:effect:0:aura:42","name":"Ravager (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92116:proc:0:524659","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524659}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524659},{"kind":"apply-aura","aura":{"id":"coa:92116:effect:1:aura:312","name":"Ravager (Aura 312)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":312,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92116:effect:2:aura:112","name":"Ravager (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20007,"triggerSpellId":0}]}],"talentEntryId":4029},{"id":"coa-tree-34171","classId":"ranger","dbcSpellId":504008,"name":"Resourceful","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_healingtouch.png","sigil":"RE","description":"Reduces the cooldown of Crippling Shot and Snapseed by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504008:effect:0:aura:108","name":"Resourceful (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504008,"level":1,"description":"Reduces the cooldown of Crippling Shot and Snapseed by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504008:effect:0:aura:108","name":"Resourceful (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":34171},{"id":"coa-tree-4028","classId":"ranger","dbcSpellId":92115,"name":"Skirmisher","unlockLevel":1,"icon":"/assets/ui/spells/inv_archaeology_70_tauren_stonewoodbow.png","sigil":"SK","description":"Level 10 Passive Increases the damage and tick rate of Toxic Dart by -30%, but reduces the duration of its damaging effect by -30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92115:effect:0:aura:4","name":"Skirmisher (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92115:effect:1:aura:23","name":"Skirmisher (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92115:proc:1:102203","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":102203}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":102203}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92115,"level":1,"description":"Level 10 Passive Increases the damage and tick rate of Toxic Dart by -30%, but reduces the duration of its damaging effect by -30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92115:effect:0:aura:4","name":"Skirmisher (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92115:effect:1:aura:23","name":"Skirmisher (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92115:proc:1:102203","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":102203}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":102203}]}],"talentEntryId":4028},{"id":"coa-tree-34169","classId":"ranger","dbcSpellId":804027,"name":"Snapseed","unlockLevel":1,"icon":"/assets/ui/spells/twisted_seed.png","sigil":"SN","description":"SnapseedRank 135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 27+0+RAP*.3 Physical damage and knocking them back.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":12,"pointsPerLevel":0.5166670083999634,"bonusPowerCoefficient":0.75,"sourceLevel":14,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:804027:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804027,"level":1,"description":"SnapseedRank 135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 27+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":12,"pointsPerLevel":0.5166670083999634,"bonusPowerCoefficient":0.75,"sourceLevel":14,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:804027:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]}],"talentEntryId":34169},{"id":"coa-tree-34188","classId":"ranger","dbcSpellId":803115,"name":"Snatch","unlockLevel":1,"icon":"/assets/ui/spells/rogue_subterfuge.png","sigil":"SN","description":"Snatch an enemy's melee weapons, disarming them for 4 seconds. If you are disarmed, you also return your weapon to yourself.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"trigger-spell","spellId":560496},{"kind":"dispel-mechanic","mechanic":3,"maxCount":1},{"kind":"trigger-spell","spellId":803123},{"kind":"apply-aura","aura":{"id":"coa:803123:effect:0:aura:4","name":"Snatch (Aura 4)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803123:effect:1:aura:254","name":"Snatch (Aura 254)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":254,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803123:effect:2:aura:67","name":"Snatch (Aura 67)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":67,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803115,"level":1,"description":"Snatch an enemy's melee weapons, disarming them for 4 seconds. If you are disarmed, you also return your weapon to yourself.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"trigger-spell","spellId":560496},{"kind":"dispel-mechanic","mechanic":3,"maxCount":1},{"kind":"trigger-spell","spellId":803123},{"kind":"apply-aura","aura":{"id":"coa:803123:effect:0:aura:4","name":"Snatch (Aura 4)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803123:effect:1:aura:254","name":"Snatch (Aura 254)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":254,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803123:effect:2:aura:67","name":"Snatch (Aura 67)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":67,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34188},{"id":"coa-tree-30352","classId":"ranger","dbcSpellId":802839,"name":"Survival Potion","unlockLevel":1,"icon":"/assets/ui/spells/nhi_naturecocktail_border.png","sigil":"SP","description":"Drink a survival potion, dispelling all poison and disease effects and removing 1 poison and disease effect every 3 sec for 9 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802839:effect:0:aura:23","name":"Survival Potion (Aura 23)","disposition":"buff","durationMs":9000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:802839:proc:0:704341","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704341}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":704341},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["poison"],"maxCount":100},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["disease"],"maxCount":100}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802839,"level":1,"description":"Drink a survival potion, dispelling all poison and disease effects and removing 1 poison and disease effect every 3 sec for 9 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802839:effect:0:aura:23","name":"Survival Potion (Aura 23)","disposition":"buff","durationMs":9000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:802839:proc:0:704341","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704341}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":704341},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["poison"],"maxCount":100},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["disease"],"maxCount":100}]}],"talentEntryId":30352},{"id":"coa-tree-6782","classId":"ranger","dbcSpellId":560495,"name":"Whats Yours Is Mine","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_edwinvancleef.png","sigil":"WY","description":"Removes the Focus cost of Snatch.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560495:effect:0:aura:4","name":"Whats Yours Is Mine (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560495:effect:1:aura:108","name":"Whats Yours Is Mine (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560495,"level":1,"description":"Removes the Focus cost of Snatch.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560495:effect:0:aura:4","name":"Whats Yours Is Mine (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560495:effect:1:aura:108","name":"Whats Yours Is Mine (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":6782},{"id":"coa-21-skullpiercer-495-802036","classId":"ranger","dbcSpellId":802036,"name":"Skullpiercer","unlockLevel":3,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SK","description":"SkullpiercerRank 130 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 10+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":0.2037037037037037,"basePoints":10,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":3,"maxScalingLevel":8}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802036,"level":3,"description":"SkullpiercerRank 130 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 10+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":0.2037037037037037,"basePoints":10,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":3,"maxScalingLevel":8}]},{"rank":2,"spellId":501715,"level":10,"description":"SkullpiercerRank 230 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 22+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":0.31333333333333335,"basePoints":22,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}]},{"rank":3,"spellId":501716,"level":18,"description":"SkullpiercerRank 330 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 47+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":0.47474747474747475,"basePoints":47,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24}]},{"rank":4,"spellId":501717,"level":26,"description":"SkullpiercerRank 430 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 81+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":0.6626016260162602,"basePoints":81,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32}]},{"rank":5,"spellId":501718,"level":34,"description":"SkullpiercerRank 530 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 117+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":0.8061224489795918,"basePoints":117,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":6,"spellId":501719,"level":42,"description":"SkullpiercerRank 630 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 177+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":1.0497076023391814,"basePoints":177,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48}]},{"rank":7,"spellId":501720,"level":50,"description":"SkullpiercerRank 730 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 235+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":1.2256410256410257,"basePoints":235,"dieSides":9,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":8,"spellId":501721,"level":58,"description":"SkullpiercerRank 830 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 314+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":1.461187214611872,"basePoints":314,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64}]},{"rank":9,"spellId":501722,"level":66,"description":"SkullpiercerRank 930 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 443+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":1.860082304526749,"basePoints":443,"dieSides":19,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72}]},{"rank":10,"spellId":501723,"level":74,"description":"SkullpiercerRank 1030 Focus InstantRequires Bows, Crossbows Aim for the skull, dealing 554+0+RAP*0.25+AP*.1 Physical damage. Damage increased for each stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"damage","coefficient":2.1235955056179776,"basePoints":554,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80}]}]},{"id":"coa-21-flank-495-804940","classId":"ranger","dbcSpellId":804940,"name":"Flank","unlockLevel":4,"icon":"/assets/ui/spells/ability_rogue_surpriseattack2.png","sigil":"FL","description":"FlankRank 160 Focus InstantRequires Melee Weapon Generates 2 Advantage Flank an enemy from behind, taking them by surprise and dealing 150% Weapon Damage (300% if a dagger is equipped) plus 10 Physical damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804940,"level":4,"description":"FlankRank 160 Focus InstantRequires Melee Weapon Generates 2 Advantage Flank an enemy from behind, taking them by surprise and dealing 150% Weapon Damage (300% if a dagger is equipped) plus 10 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":60},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5}]}]},{"id":"coa-21-waterskin-505-800269","classId":"ranger","dbcSpellId":800269,"name":"Waterskin","unlockLevel":6,"icon":"/assets/ui/spells/inv_drink_waterskin_12.png","sigil":"WA","description":"WaterskinRank 1Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 61+0+AP*1 health and 20% of your missing Mana or Focus.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":1.044444445579771,"basePoints":61,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800269,"level":6,"description":"WaterskinRank 1Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 61+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":1.044444445579771,"basePoints":61,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":2,"spellId":501748,"level":14,"description":"WaterskinRank 2Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 156+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":2.125671024980216,"basePoints":156,"dieSides":1,"pointsPerLevel":2.0666699409484863,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":3,"spellId":501749,"level":22,"description":"WaterskinRank 3Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 271+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":3.511711730613365,"basePoints":271,"dieSides":1,"pointsPerLevel":5.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":4,"spellId":501750,"level":28,"description":"WaterskinRank 4Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 401+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":401,"dieSides":1,"pointsPerLevel":5.333330154418945,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":5,"spellId":501751,"level":36,"description":"WaterskinRank 5Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 566+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":566,"dieSides":1,"pointsPerLevel":7.533329963684082,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":6,"spellId":501752,"level":44,"description":"WaterskinRank 6Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 731+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":731,"dieSides":1,"pointsPerLevel":9.733329772949219,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":7,"spellId":501753,"level":52,"description":"WaterskinRank 7Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 951+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":951,"dieSides":1,"pointsPerLevel":12.66670036315918,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":8,"spellId":501754,"level":60,"description":"WaterskinRank 8Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 1236+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":1236,"dieSides":1,"pointsPerLevel":16.466699600219727,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":9,"spellId":501755,"level":68,"description":"WaterskinRank 930 Focus Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 1694+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":1694,"dieSides":1,"pointsPerLevel":13.359999656677246,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]},{"rank":10,"spellId":501756,"level":76,"description":"WaterskinRank 1030 Focus Instant cast1 min cooldownDrink from an enchanted waterskin, restoring 2052+0+AP*1 health and 20% of your missing Mana or Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"focus","amount":30},"effects":[{"kind":"heal","coefficient":4,"basePoints":2052,"dieSides":1,"pointsPerLevel":13.069999694824219,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":84},{"kind":"resource","amount":20,"percentage":true},{"kind":"resource","amount":25,"percentage":true}]}]},{"id":"ranger-wild-strike","classId":"ranger","dbcSpellId":501724,"name":"Wild Strike","unlockLevel":8,"icon":"/assets/ui/spells/ability_rogue_cuttothechase.png","sigil":"WS","description":"Wild StrikeRank 250 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 12. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501724,"level":8,"description":"Wild StrikeRank 250 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 12. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":501725,"level":14,"description":"Wild StrikeRank 350 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 27. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":501726,"level":22,"description":"Wild StrikeRank 450 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 48. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":501727,"level":28,"description":"Wild StrikeRank 550 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 77. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":501728,"level":34,"description":"Wild StrikeRank 650 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 107. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":501729,"level":42,"description":"Wild StrikeRank 750 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 147. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":8,"spellId":501730,"level":48,"description":"Wild StrikeRank 850 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 189. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":9,"spellId":501731,"level":54,"description":"Wild StrikeRank 950 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 250. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":10,"spellId":501732,"level":60,"description":"Wild StrikeRank 1050 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 319. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":11,"spellId":501733,"level":68,"description":"Wild StrikeRank 1150 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 406. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":12,"spellId":501734,"level":74,"description":"Wild StrikeRank 1250 Focus InstantRequires Melee Weapon Generates 1 Advantage Strike an enemy wildly for 100% Weapon Damage plus 510. If dual wielding, deals additional Weapon Damage with your off-hand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":50},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":560962},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]}]},{"id":"coa-21-woodsmans-adaptation-495-800266","classId":"ranger","dbcSpellId":800266,"name":"Woodsman's Adaptation","unlockLevel":8,"icon":"/assets/ui/spells/misc_legionfall_hunter.png","sigil":"WS","description":"Woodsman's AdaptationRank 120 Focus Instant castEnhance an ally's focus, increasing their melee and ranged attack power by 30. Lasts 30 min","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800266:effect:0:aura:99","name":"Woodsman's Adaptation (Aura 99)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"flat","value":30}]},"sourceEffectType":6,"sourceAuraType":99,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800266:effect:1:aura:124","name":"Woodsman's Adaptation (Aura 124)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"flat","value":30}]},"sourceEffectType":6,"sourceAuraType":124,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800266,"level":8,"description":"Woodsman's AdaptationRank 120 Focus Instant castEnhance an ally's focus, increasing their melee and ranged attack power by 30. Lasts 30 min","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800266:effect:0:aura:99","name":"Woodsman's Adaptation (Aura 99)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"flat","value":30}]},"sourceEffectType":6,"sourceAuraType":99,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800266:effect:1:aura:124","name":"Woodsman's Adaptation (Aura 124)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"flat","value":30}]},"sourceEffectType":6,"sourceAuraType":124,"miscValue":0,"triggerSpellId":0}]}]},{"id":"ranger-hydras-bite","classId":"ranger","dbcSpellId":503106,"name":"Hydra's Bite","unlockLevel":10,"icon":"/assets/ui/spells/novart_weapon_(4)_border.png","sigil":"HS","description":"Hydra's BiteRank 240 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503106:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503106:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":503106,"level":10,"description":"Hydra's BiteRank 240 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503106:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503106:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}]},{"rank":3,"spellId":503107,"level":19,"description":"Hydra's BiteRank 340 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503107:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503107:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}]},{"rank":4,"spellId":503108,"level":28,"description":"Hydra's BiteRank 440 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503108:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503108:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}]},{"rank":5,"spellId":503109,"level":37,"description":"Hydra's BiteRank 540 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503109:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503109:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}]},{"rank":6,"spellId":503110,"level":45,"description":"Hydra's BiteRank 640 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503110:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503110:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}]},{"rank":7,"spellId":503111,"level":54,"description":"Hydra's BiteRank 740 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503111:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503111:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}]},{"rank":8,"spellId":503112,"level":63,"description":"Hydra's BiteRank 840 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503112:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503112:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}]},{"rank":9,"spellId":503113,"level":72,"description":"Hydra's BiteRank 940 Focus Instant40 sec cooldownRequires One-Handed Melee Weapon Delivers 4 quick weapon attacks over 1 sec to an enemy target, each dealing 85 Physical Damage. Each strike will consume 1 stack of Deepwood Poison from the target to deal an additional 400 Nature Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503113:effect:0:aura:23","name":"Hydra's Bite (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503113:proc:0:803105","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803105}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803105}]}]},{"id":"ranger-power-shot","classId":"ranger","dbcSpellId":501698,"name":"Power Shot","unlockLevel":12,"icon":"/assets/ui/spells/5_archerskill31_border.png","sigil":"PS","description":"Power ShotRank 220 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 44 to 55 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"damage","coefficient":1.1474073904531974,"basePoints":44,"dieSides":12,"pointsPerLevel":3.619999885559082,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":23},{"kind":"trigger-spell","spellId":804110},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:0:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:1:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:2:aura:42","name":"Power Shots (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804110:proc:2:805974","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805974}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805974}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":501698,"level":12,"description":"Power ShotRank 220 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 44 to 55 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"damage","coefficient":1.1474073904531974,"basePoints":44,"dieSides":12,"pointsPerLevel":3.619999885559082,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":23},{"kind":"trigger-spell","spellId":804110},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:0:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:1:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:2:aura:42","name":"Power Shots (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804110:proc:2:805974","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805974}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805974}]},{"rank":3,"spellId":501699,"level":24,"description":"Power ShotRank 320 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 98 to 120 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"damage","coefficient":2.006495679545606,"basePoints":98,"dieSides":23,"pointsPerLevel":5.239999771118164,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":804110},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:0:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:1:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:2:aura:42","name":"Power Shots (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804110:proc:2:805974","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805974}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805974}]},{"rank":4,"spellId":501700,"level":35,"description":"Power ShotRank 420 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 187 to 224 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"damage","coefficient":2.939166644414266,"basePoints":187,"dieSides":38,"pointsPerLevel":6.724999904632568,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":804110},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:0:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:1:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:2:aura:42","name":"Power Shots (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804110:proc:2:805974","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805974}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805974}]},{"rank":5,"spellId":501701,"level":47,"description":"Power ShotRank 520 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 343 to 401 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":343,"dieSides":59,"pointsPerLevel":8.345000267028809,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":57},{"kind":"trigger-spell","spellId":804110},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:0:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:1:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:2:aura:42","name":"Power Shots (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804110:proc:2:805974","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805974}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805974}]},{"rank":6,"spellId":501702,"level":58,"description":"Power ShotRank 620 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 574 to 656 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":574,"dieSides":83,"pointsPerLevel":9.829999923706055,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":69},{"kind":"trigger-spell","spellId":804110},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:0:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:1:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:2:aura:42","name":"Power Shots (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804110:proc:2:805974","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805974}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805974}]},{"rank":7,"spellId":501703,"level":70,"description":"Power ShotRank 720 Focus Instant40 sec cooldownRequires Bows, Crossbows Fire at an enemy, inflicting 960 to 1073 Physical damage and empowering your next 3 Quick Shots to deal 30% increased Damage and generate a bonus stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"focus","amount":20},"effects":[{"kind":"damage","coefficient":4,"basePoints":960,"dieSides":114,"pointsPerLevel":11.449999809265137,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":804110},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:0:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:1:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:2:aura:42","name":"Power Shots (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804110:proc:2:805974","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805974}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805974}]}]},{"id":"coa-21-snapseed-76-804027","classId":"ranger","dbcSpellId":804027,"name":"Snapseed","unlockLevel":14,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SN","description":"SnapseedRank 135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 27+0+RAP*.3 Physical damage and knocking them back.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":12,"pointsPerLevel":0.5166670083999634,"bonusPowerCoefficient":0.75,"sourceLevel":14,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:804027:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804027,"level":14,"description":"SnapseedRank 135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 27+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":12,"pointsPerLevel":0.5166670083999634,"bonusPowerCoefficient":0.75,"sourceLevel":14,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:804027:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":2,"spellId":503449,"level":22,"description":"SnapseedRank 235 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 57+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":0.6975975369547939,"basePoints":57,"dieSides":14,"pointsPerLevel":0.6333330273628235,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"apply-aura","aura":{"id":"coa:503449:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":3,"spellId":503450,"level":30,"description":"SnapseedRank 335 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 93+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":0.9240740687758834,"basePoints":93,"dieSides":18,"pointsPerLevel":0.7749999761581421,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"apply-aura","aura":{"id":"coa:503450:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":4,"spellId":503451,"level":38,"description":"SnapseedRank 435 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 136+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":1.1598531735018365,"basePoints":136,"dieSides":25,"pointsPerLevel":0.9583330154418945,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"apply-aura","aura":{"id":"coa:503451:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":5,"spellId":503452,"level":46,"description":"SnapseedRank 535 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 189+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":1.418305998942891,"basePoints":189,"dieSides":34,"pointsPerLevel":1.1749999523162842,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"apply-aura","aura":{"id":"coa:503452:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":6,"spellId":503453,"level":54,"description":"SnapseedRank 635 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 255+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":1.7094211440155471,"basePoints":255,"dieSides":43,"pointsPerLevel":1.4416699409484863,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503453:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":7,"spellId":503454,"level":62,"description":"SnapseedRank 735 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 335+0+RAP*.3 Physical damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":3.5085853188584895,"basePoints":335,"dieSides":55,"pointsPerLevel":7.23360013961792,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:503454:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":8,"spellId":503455,"level":48,"description":"SnapseedRank 835 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 177+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":3.1839069992146163,"basePoints":177,"dieSides":69,"pointsPerLevel":8.140800476074219,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"apply-aura","aura":{"id":"coa:503455:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":9,"spellId":503456,"level":54,"description":"SnapseedRank 935 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 197+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":3.4738820762449993,"basePoints":197,"dieSides":82,"pointsPerLevel":8.918399810791016,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503456:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":10,"spellId":503457,"level":61,"description":"SnapseedRank 1035 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 217+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":3.795445525855349,"basePoints":217,"dieSides":99,"pointsPerLevel":9.825599670410156,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":67},{"kind":"apply-aura","aura":{"id":"coa:503457:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":11,"spellId":503458,"level":68,"description":"SnapseedRank 1135 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 357+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":4,"basePoints":357,"dieSides":118,"pointsPerLevel":10.732799530029297,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":73},{"kind":"apply-aura","aura":{"id":"coa:503458:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]},{"rank":12,"spellId":503459,"level":74,"description":"SnapseedRank 1235 Focus Instant20 sec cooldownToss a snapseed at an enemy, dealing 400+0+RAP*.3 Physical Damage and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"focus","amount":35},"effects":[{"kind":"damage","coefficient":4,"basePoints":400,"dieSides":136,"pointsPerLevel":11.51039981842041,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:503459:effect:1:aura:271","name":"Snapseed (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807167},{"kind":"movement","movement":"knockback","toward":"away"}]}]},{"id":"coa-21-5forestwood-key-495-804759","classId":"ranger","dbcSpellId":804759,"name":"5Forestwood Key","unlockLevel":16,"icon":"/assets/ui/spells/_keygoldacid.png","sigil":"FK","description":"Forestwood KeyRank 13 sec castReagents: Crude Leather, Copper Bar, Coarse Thread, Forestwood Log Creates a temporary magical grove key to open locks that require up to 25 lockpicking skill.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":13000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"create-item","effectType":24,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804759,"level":16,"description":"Forestwood KeyRank 13 sec castReagents: Crude Leather, Copper Bar, Coarse Thread, Forestwood Log Creates a temporary magical grove key to open locks that require up to 25 lockpicking skill.","castMode":"cast","castTimeMs":13000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"create-item","effectType":24,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"ranger-serrated-shot","classId":"ranger","dbcSpellId":500073,"name":"Serrated Shot","unlockLevel":16,"icon":"/assets/ui/spells/ability_hunter_barbedshot.png","sigil":"SS","description":"Serrated ShotRank 125 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 36+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","target":"hostile","range":{"min":5,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500073:effect:0:aura:3","name":"Serrated Shot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.397132731253101,"basePoints":36,"dieSides":1,"pointsPerLevel":0.058334000408649445,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":1,"intervalMs":3000,"tag":"spell-500073"}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500073,"level":16,"description":"Serrated ShotRank 125 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 36+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500073:effect:0:aura:3","name":"Serrated Shot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.397132731253101,"basePoints":36,"dieSides":1,"pointsPerLevel":0.058334000408649445,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":1,"intervalMs":3000,"tag":"spell-500073"}]},{"rank":2,"spellId":501704,"level":24,"description":"Serrated ShotRank 225 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 52+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501704:effect:0:aura:3","name":"Serrated Shot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.47264957326090234,"basePoints":52,"dieSides":1,"pointsPerLevel":0.13750000298023224,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28,"ticks":1,"intervalMs":3000,"tag":"spell-501704"}]},{"rank":3,"spellId":501705,"level":30,"description":"Serrated ShotRank 325 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 77+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501705:effect:0:aura:3","name":"Serrated Shot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6018519244812153,"basePoints":77,"dieSides":1,"pointsPerLevel":0.14166699349880219,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36,"ticks":1,"intervalMs":3000,"tag":"spell-501705"}]},{"rank":4,"spellId":501706,"level":38,"description":"Serrated ShotRank 425 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 94+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501706:effect:0:aura:3","name":"Serrated Shot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6409854840182658,"basePoints":94,"dieSides":1,"pointsPerLevel":0.20833399891853333,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44,"ticks":1,"intervalMs":3000,"tag":"spell-501706"}]},{"rank":5,"spellId":501707,"level":46,"description":"Serrated ShotRank 525 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 117+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501707:effect:0:aura:3","name":"Serrated Shot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7650275771083728,"basePoints":117,"dieSides":1,"pointsPerLevel":0.5000010132789612,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52,"ticks":1,"intervalMs":3000,"tag":"spell-501707"}]},{"rank":6,"spellId":575836,"level":54,"description":"Serrated ShotRank 625 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 136+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:575836:effect:0:aura:3","name":"Serrated Shot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8135265762679242,"basePoints":136,"dieSides":1,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60,"ticks":1,"intervalMs":3000,"tag":"spell-575836"}]},{"rank":7,"spellId":575837,"level":62,"description":"Serrated ShotRank 725 Focus InstantRequires Bows, Crossbows Fire a serrated arrow at an enemy, causing them to bleed for 156+0+RAP*.25 Physical damage, repeating every 3 sec for 4 sec. Duration increased by 4 sec per stack of Advantage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":25},"effects":[{"kind":"apply-aura","aura":{"id":"coa:575837:effect:0:aura:3","name":"Serrated Shot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8095240814861281,"basePoints":156,"dieSides":1,"pointsPerLevel":0.5000010132789612,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":80,"ticks":1,"intervalMs":3000,"tag":"spell-575837"}]}]},{"id":"coa-21-assault-77-803108","classId":"ranger","dbcSpellId":803108,"name":"Assault","unlockLevel":17,"icon":"/assets/ui/spells/ability_rogue_ruthlessness.png","sigil":"AS","description":"AssaultRank 155 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 8+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":0.25,"basePoints":8,"dieSides":2,"pointsPerLevel":0.27000001072883606,"bonusPowerCoefficient":0.25,"sourceLevel":17,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":803109,"withValue":5},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:803109:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803108,"level":17,"description":"AssaultRank 155 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 8+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":0.25,"basePoints":8,"dieSides":2,"pointsPerLevel":0.27000001072883606,"bonusPowerCoefficient":0.25,"sourceLevel":17,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":803109,"withValue":5},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:803109:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":503099,"level":24,"description":"AssaultRank 255 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 32+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":0.3427350439577021,"basePoints":32,"dieSides":4,"pointsPerLevel":0.2750000059604645,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":582824,"withValue":7},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582824:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":503100,"level":32,"description":"AssaultRank 355 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 59+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":0.5118204820240643,"basePoints":59,"dieSides":6,"pointsPerLevel":0.3333339989185333,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":582825,"withValue":12},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582825:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":503101,"level":40,"description":"AssaultRank 455 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 92+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":0.6787878773429177,"basePoints":92,"dieSides":8,"pointsPerLevel":0.4124999940395355,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":582826,"withValue":18},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582826:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":503102,"level":48,"description":"AssaultRank 555 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 129+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":0.8380954025914429,"basePoints":129,"dieSides":11,"pointsPerLevel":0.5083339810371399,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"trigger-spell","spellId":582827,"withValue":29},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582827:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":503103,"level":56,"description":"AssaultRank 655 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 170+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":0.9953051643192489,"basePoints":170,"dieSides":15,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"trigger-spell","spellId":582828,"withValue":47},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582828:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":503104,"level":64,"description":"AssaultRank 755 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 224+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":1.1954994845490918,"basePoints":224,"dieSides":21,"pointsPerLevel":0.7708340287208557,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"trigger-spell","spellId":582829,"withValue":65},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582829:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}]},{"rank":8,"spellId":503105,"level":72,"description":"AssaultRank 855 Focus InstantRequires Melee Weapon Assault a low health enemy, dealing 100% Weapon Damage (175% with a dagger equipped) plus an additional 294+0+AP*1 Physical damage. If the target is bleeding, this deals 50% increased damage. Damage increased for each stack of Advantage. Only usable on enemies below 20% health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"focus","amount":55},"effects":[{"kind":"damage","coefficient":1.9771264394124348,"basePoints":294,"dieSides":28,"pointsPerLevel":2.896250009536743,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":582830,"withValue":84},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582830:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"damage","coefficient":1}]}]},{"id":"coa-tree-4429","classId":"ranger","dbcSpellId":680470,"name":"Sniper's Focus","unlockLevel":20,"icon":"/assets/ui/spells/inv_crossbow_2h_kultirasquest_b_01.png","sigil":"SS","description":"Consuming Advantage now has a 20% chance per Advantage spent to refund 20 Focus.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680470:effect:0:aura:42","name":"Sniper's Focus (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680470:proc:0:807318","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807318}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807318}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680470,"level":20,"description":"Consuming Advantage now has a 20% chance per Advantage spent to refund 20 Focus.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680470:effect:0:aura:42","name":"Sniper's Focus (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680470:proc:0:807318","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807318}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807318}]}],"talentEntryId":4429},{"id":"coa-tree-4430","classId":"ranger","dbcSpellId":301066,"name":"Nimble","unlockLevel":30,"icon":"/assets/ui/spells/inv_weapon_bow_02.png","sigil":"NI","description":"Level 30 Passive Increases your ranged haste by 20% of your Agility.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301066:effect:0:aura:220","name":"Nimble (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:262144","operation":"flat","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":262144,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301066:effect:1:aura:107","name":"Nimble (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301066,"level":30,"description":"Level 30 Passive Increases your ranged haste by 20% of your Agility.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301066:effect:0:aura:220","name":"Nimble (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:262144","operation":"flat","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":262144,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301066:effect:1:aura:107","name":"Nimble (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":4430},{"id":"coa-tree-4431","classId":"ranger","dbcSpellId":300460,"name":"Bleeding Edge","unlockLevel":40,"icon":"/assets/ui/spells/inv_misc_thornnecklace.png","sigil":"BE","description":"Level 40 Passive Allows the periodic damage dealt by Serrated Shot to critically strike.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300460:effect:0:aura:286","name":"Bleeding Edge (Aura 286)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":286,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300460,"level":40,"description":"Level 40 Passive Allows the periodic damage dealt by Serrated Shot to critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300460:effect:0:aura:286","name":"Bleeding Edge (Aura 286)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":286,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4431},{"id":"coa-tree-7952","classId":"ranger","dbcSpellId":582855,"name":"Sharpshooter","unlockLevel":50,"icon":"/assets/ui/spells/ability_trueshot.png","sigil":"SH","description":"Level 50 Passive Adds 25% to the bonuses that your stacks of Advantage provide.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:582855:effect:0:aura:107","name":"Sharpshooter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:582855:effect:1:aura:108","name":"Sharpshooter (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":45,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":582855,"level":50,"description":"Level 50 Passive Adds 25% to the bonuses that your stacks of Advantage provide.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:582855:effect:0:aura:107","name":"Sharpshooter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:582855:effect:1:aura:108","name":"Sharpshooter (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":45,"triggerSpellId":0}]}],"talentEntryId":7952}],"chronomancer":[{"id":"coa-tree-30277","classId":"chronomancer","dbcSpellId":800857,"name":"Accelerated Recovery","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_healingfocus.png","sigil":"AR","description":"Accelerated RecoveryRank 118% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(12+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800857:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.24070173263549804,"basePoints":12,"dieSides":1,"pointsPerLevel":0.6052629947662354,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:800857:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800857,"level":1,"description":"Accelerated RecoveryRank 118% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(12+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800857:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.24070173263549804,"basePoints":12,"dieSides":1,"pointsPerLevel":0.6052629947662354,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:800857:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30277},{"id":"coa-tree-4032","classId":"chronomancer","dbcSpellId":92119,"name":"Aeon of Resilience","unlockLevel":1,"icon":"/assets/ui/spells/inv_trinket_80_kultiras02a.png","sigil":"AO","description":"Level 10 Passive Teaches you Aeon of Resilience.Aeon of ResilienceReduces Epoch's cast time by -25% and it's mana cost by -10%, and healing done by it now reduces the target's damage taken by -5% for 6 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92119:effect:0:aura:4","name":"Aeon of Resilience (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92119,"level":1,"description":"Level 10 Passive Teaches you Aeon of Resilience.Aeon of ResilienceReduces Epoch's cast time by -25% and it's mana cost by -10%, and healing done by it now reduces the target's damage taken by -5% for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92119:effect:0:aura:4","name":"Aeon of Resilience (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4032},{"id":"coa-tree-6214","classId":"chronomancer","dbcSpellId":560948,"name":"Ahead of the Game","unlockLevel":1,"icon":"/assets/ui/spells/achievement_bg_win_av_x_times.png","sigil":"AO","description":"Every 10th instance of your damage dealt or healing now gives you 60 increased spell power for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560948:effect:0:aura:42","name":"Ahead of the Game (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560948:proc:0:592009","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":592009}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":592009}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560948,"level":1,"description":"Every 10th instance of your damage dealt or healing now gives you 60 increased spell power for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560948:effect:0:aura:42","name":"Ahead of the Game (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560948:proc:0:592009","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":592009}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":592009}]}],"talentEntryId":6214},{"id":"coa-22-balance-of-power-79-706108","classId":"chronomancer","dbcSpellId":706108,"name":"Balance of Power","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_spiresofarak.png","sigil":"BO","description":"Balance of PowerRank 1Increases the effectiveness of Chromatic Empowerment and Order Empowerment stacks by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706108:effect:0:aura:108","name":"Balance of Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706108,"level":1,"description":"Balance of PowerRank 1Increases the effectiveness of Chromatic Empowerment and Order Empowerment stacks by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706108:effect:0:aura:108","name":"Balance of Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}]},{"id":"coa-22-black-hole-79-706045","classId":"chronomancer","dbcSpellId":706045,"name":"Black Hole","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_mindtwisting.png","sigil":"BH","description":"Black HoleRank 2Instant castIncreases the damage of Chronurgy by 100% against enemies affected by Decomposition. Increases the critical strike damage bonus of your spells by 70%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706045:effect:0:aura:4","name":"Black Hole (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706045:effect:1:aura:4","name":"Black Hole (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706045:effect:2:aura:4","name":"Black Hole (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706045,"level":1,"description":"Black HoleRank 2Instant castIncreases the damage of Chronurgy by 100% against enemies affected by Decomposition. Increases the critical strike damage bonus of your spells by 70%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706045:effect:0:aura:4","name":"Black Hole (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706045:effect:1:aura:4","name":"Black Hole (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706045:effect:2:aura:4","name":"Black Hole (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-22-carbon-dating-81-706101","classId":"chronomancer","dbcSpellId":706101,"name":"Carbon Dating","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology.png","sigil":"CD","description":"Carbon DatingRank 1Sands of Time stacks boost the healing of Epoch by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706101:effect:0:aura:107","name":"Carbon Dating (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706101,"level":1,"description":"Carbon DatingRank 1Sands of Time stacks boost the healing of Epoch by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706101:effect:0:aura:107","name":"Carbon Dating (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}]},{"id":"coa-tree-6223","classId":"chronomancer","dbcSpellId":706063,"name":"Chaos Omen","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_starmetal.png","sigil":"CO","description":"Reduces the cooldown of your Gravity Bomb by -30 sec, and its explosion occurs -3 sec faster.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706063:effect:0:aura:107","name":"Chaos Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706063:effect:1:aura:107","name":"Chaos Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706063:effect:2:aura:107","name":"Chaos Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706063,"level":1,"description":"Reduces the cooldown of your Gravity Bomb by -30 sec, and its explosion occurs -3 sec faster.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706063:effect:0:aura:107","name":"Chaos Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706063:effect:1:aura:107","name":"Chaos Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706063:effect:2:aura:107","name":"Chaos Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6223},{"id":"coa-tree-6195","classId":"chronomancer","dbcSpellId":706100,"name":"Charm of Power","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_trinket_healer.png","sigil":"CO","description":"Increases the damage dealt by Gravity Bomb by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706100:effect:0:aura:108","name":"Charm of Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706100,"level":1,"description":"Increases the damage dealt by Gravity Bomb by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706100:effect:0:aura:108","name":"Charm of Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6195},{"id":"coa-22-chronicles-of-history-81-801288","classId":"chronomancer","dbcSpellId":801288,"name":"Chronicles of History","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_weaponscroll02.png","sigil":"CO","description":"Chronicles of HistoryRank 117% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801288:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801288,"level":1,"description":"Chronicles of HistoryRank 117% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801288:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501789,"level":11,"description":"Chronicles of HistoryRank 217% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501789:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501790,"level":21,"description":"Chronicles of HistoryRank 317% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501790:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501791,"level":31,"description":"Chronicles of HistoryRank 417% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501791:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501792,"level":41,"description":"Chronicles of HistoryRank 517% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501792:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501793,"level":51,"description":"Chronicles of HistoryRank 617% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501793:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501794,"level":61,"description":"Chronicles of HistoryRank 717% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501794:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501795,"level":71,"description":"Chronicles of HistoryRank 817% of base mana Instant cast1 min cooldownYou begin magically documenting the actions of an ally for 7 sec. At the end of the duration, they will recast all spells abilities that they cast during the documentation period upon their current target.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501795:effect:0:aura:4","name":"Chronicles of History (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-22-chrono-herald-81-706103","classId":"chronomancer","dbcSpellId":706103,"name":"Chrono Herald","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_mindvision.png","sigil":"CH","description":"Chrono HeraldRank 1Reduces the cooldown of Aeons by 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706103:effect:0:aura:107","name":"Chrono Herald (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706103:effect:1:aura:4","name":"Chrono Herald (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706103,"level":1,"description":"Chrono HeraldRank 1Reduces the cooldown of Aeons by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706103:effect:0:aura:107","name":"Chrono Herald (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706103:effect:1:aura:4","name":"Chrono Herald (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]},{"rank":2,"spellId":706104,"level":1,"description":"Chrono HeraldRank 2Instant castReduces the cooldown of Aeons by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706104:effect:0:aura:107","name":"Chrono Herald (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706104:effect:1:aura:4","name":"Chrono Herald (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-22-chrono-sorcery-79-706115","classId":"chronomancer","dbcSpellId":706115,"name":"Chrono Sorcery","unlockLevel":1,"icon":"/assets/ui/spells/_castercloak_arcanes.png","sigil":"CS","description":"Chrono SorceryRank 2Instant castIncreases maximum mana by 12% and spell damage by 15% of Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706115:effect:0:aura:132","name":"Chrono Sorcery (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.12}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706115:effect:1:aura:174","name":"Chrono Sorcery (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706115,"level":1,"description":"Chrono SorceryRank 2Instant castIncreases maximum mana by 12% and spell damage by 15% of Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706115:effect:0:aura:132","name":"Chrono Sorcery (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.12}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706115:effect:1:aura:174","name":"Chrono Sorcery (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0}]}]},{"id":"coa-tree-30249","classId":"chronomancer","dbcSpellId":805847,"name":"Clasp of Infinity","unlockLevel":1,"icon":"/assets/ui/spells/handbeamblackhand.png","sigil":"CO","description":"Conjure a magical binding upon an enemy that bounces to nearby enemies, rooting them in place for 4 seconds.","target":"hostile","range":{"min":0,"max":30},"castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805847:effect:0:aura:26","name":"Clasp of Infinity (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805847:effect:1:aura:271","name":"Clasp of Infinity (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805847:effect:2:aura:23","name":"Clasp of Infinity (Aura 23)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:805847:proc:2:525050","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525050}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":525050}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805847,"level":1,"description":"Conjure a magical binding upon an enemy that bounces to nearby enemies, rooting them in place for 4 seconds.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805847:effect:0:aura:26","name":"Clasp of Infinity (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805847:effect:1:aura:271","name":"Clasp of Infinity (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805847:effect:2:aura:23","name":"Clasp of Infinity (Aura 23)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:805847:proc:2:525050","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525050}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":525050}]}],"talentEntryId":30249},{"id":"coa-tree-30276","classId":"chronomancer","dbcSpellId":555729,"name":"Constant Recovery","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_purify.png","sigil":"CR","description":"Reduces the threat generated by your holy spells by -20% and healing done by Reverse Wound now increases all healing taken the target receives by 6% for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:555729:effect:0:aura:4","name":"Constant Recovery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:555729:effect:1:aura:42","name":"Constant Recovery (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:555729:proc:1:680843","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680843}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":680843}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":555729,"level":1,"description":"Reduces the threat generated by your holy spells by -20% and healing done by Reverse Wound now increases all healing taken the target receives by 6% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:555729:effect:0:aura:4","name":"Constant Recovery (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:555729:effect:1:aura:42","name":"Constant Recovery (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:555729:proc:1:680843","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680843}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":680843}]}],"talentEntryId":30276},{"id":"coa-tree-6696","classId":"chronomancer","dbcSpellId":561310,"name":"Desynchronization","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(11)_border.png","sigil":"DE","description":"Shift an enemy out of sync with the present, causing their grip to fail, disarming their melee and ranged weapons for 6 seconds. Upon removal, they are resynced, preventing them from regenerating their health for 6 seconds.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1250,"cooldownMs":90000,"gcdMs":1250,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561310:effect:0:aura:67","name":"Desynchronization (Aura 67)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":67,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561310:effect:1:aura:278","name":"Desynchronization (Aura 278)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":278,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561310:effect:2:aura:254","name":"Desynchronization (Aura 254)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":254,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":561310,"level":1,"description":"Shift an enemy out of sync with the present, causing their grip to fail, disarming their melee and ranged weapons for 6 seconds. Upon removal, they are resynced, preventing them from regenerating their health for 6 seconds.","castMode":"cast","castTimeMs":1250,"cooldownMs":90000,"gcdMs":1250,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561310:effect:0:aura:67","name":"Desynchronization (Aura 67)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":67,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561310:effect:1:aura:278","name":"Desynchronization (Aura 278)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":278,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561310:effect:2:aura:254","name":"Desynchronization (Aura 254)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":254,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6696},{"id":"coa-tree-29684","classId":"chronomancer","dbcSpellId":802790,"name":"Dimensional Divergence","unlockLevel":1,"icon":"/assets/ui/spells/ability_dragonriding_bronzerewind01.png","sigil":"DD","description":"Swap places with a target player. If they're an enemy, you steal -80% of their movement speed for 3 seconds.","target":"hostile","range":{"min":0,"max":40},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":8000},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"movement","movement":"teleport","toward":"target"}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802790,"level":1,"description":"Swap places with a target player. If they're an enemy, you steal -80% of their movement speed for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":8000},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"movement","movement":"teleport","toward":"target"}]}],"talentEntryId":29684},{"id":"chronomancer-discordant-blast","classId":"chronomancer","dbcSpellId":801290,"name":"Discordant Blast","unlockLevel":1,"icon":"/assets/ui/spells/inv_enchant_voidsphere.png","sigil":"DB","description":"Discordant BlastRank 110% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 13 to 16 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":13,"dieSides":4,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":1,"maxScalingLevel":11},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801290,"level":1,"description":"Discordant BlastRank 110% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 13 to 16 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":13,"dieSides":4,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":1,"maxScalingLevel":11},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501825,"level":12,"description":"Discordant BlastRank 210% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 26 to 30 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4902419720166995,"basePoints":26,"dieSides":5,"pointsPerLevel":0.9757999777793884,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":23},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501826,"level":24,"description":"Discordant BlastRank 310% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 49 to 56 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.741928198398688,"basePoints":49,"dieSides":8,"pointsPerLevel":1.4293999671936035,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":34},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501827,"level":35,"description":"Discordant BlastRank 410% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 76 to 87 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9738799866040547,"basePoints":76,"dieSides":12,"pointsPerLevel":1.8451999425888062,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":46},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501828,"level":47,"description":"Discordant BlastRank 510% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 132 to 148 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3335677398148404,"basePoints":132,"dieSides":17,"pointsPerLevel":2.298799991607666,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":57},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501829,"level":58,"description":"Discordant BlastRank 610% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 214 to 236 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7463324429237679,"basePoints":214,"dieSides":23,"pointsPerLevel":2.714600086212158,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":69},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501830,"level":70,"description":"Discordant BlastRank 710% of base mana 5 sec cast6 sec cooldownHurl a mass of chaotic magic an enemy target for 350 to 380 Time Damage. Time Damage is a combination of Frost and Arcane. Grants 1 Chromatic. While Chromatic Incarnate is active, this ability deals 100% increased damage.","castMode":"cast","castTimeMs":5000,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3180392209221337,"basePoints":350,"dieSides":31,"pointsPerLevel":3.2300000190734863,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-22-discs-upon-discs-80-706075","classId":"chronomancer","dbcSpellId":706075,"name":"Discs Upon Discs","unlockLevel":1,"icon":"/assets/ui/spells/inv_7_0raid_trinket_04a.png","sigil":"DU","description":"Discs Upon DiscsRank 2Reduces the cooldown of Disc of Legend by 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706075:effect:0:aura:107","name":"Discs Upon Discs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706075,"level":1,"description":"Discs Upon DiscsRank 2Reduces the cooldown of Disc of Legend by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706075:effect:0:aura:107","name":"Discs Upon Discs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-4033","classId":"chronomancer","dbcSpellId":92120,"name":"Echo Fragments","unlockLevel":1,"icon":"/assets/ui/spells/achievement_guildperk_workingovertime.png","sigil":"EF","description":"Level 10 Passive Wand of Time now generates an Echo Fragment, which can be used to unleash Distortion and Continuum spells. Decomposition is now a Distortion spell, dealing increased damage based on how many Echo Fragments you have.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92120:effect:0:aura:4","name":"Echo Fragments (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":32,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92120:effect:1:aura:107","name":"Echo Fragments (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":21,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92120,"level":1,"description":"Level 10 Passive Wand of Time now generates an Echo Fragment, which can be used to unleash Distortion and Continuum spells. Decomposition is now a Distortion spell, dealing increased damage based on how many Echo Fragments you have.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92120:effect:0:aura:4","name":"Echo Fragments (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":32,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92120:effect:1:aura:107","name":"Echo Fragments (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":21,"triggerSpellId":0}]}],"talentEntryId":4033},{"id":"coa-22-enchanted-collar-80-706066","classId":"chronomancer","dbcSpellId":706066,"name":"Enchanted Collar","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_cat_trinket07.png","sigil":"EC","description":"Enchanted CollarRank 2Instant castIncreases the damage dealt by your pet by 10% and reduces damage it takes by 10%.","target":"hostile","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706066:effect:0:aura:4","name":"Enchanted Collar (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706066:effect:1:aura:79","name":"Enchanted Collar (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706066:effect:2:aura:87","name":"Enchanted Collar (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706066,"level":1,"description":"Enchanted CollarRank 2Instant castIncreases the damage dealt by your pet by 10% and reduces damage it takes by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706066:effect:0:aura:4","name":"Enchanted Collar (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706066:effect:1:aura:79","name":"Enchanted Collar (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706066:effect:2:aura:87","name":"Enchanted Collar (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-tree-6199","classId":"chronomancer","dbcSpellId":520780,"name":"Entropy Reversal","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_spectralsight.png","sigil":"ER","description":"Reduces the duration of disease effects by -40%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520780:effect:0:aura:245","name":"Entropy Reversal (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520780,"level":1,"description":"Reduces the duration of disease effects by -40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520780:effect:0:aura:245","name":"Entropy Reversal (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6199},{"id":"coa-22-epoch-79-801275","classId":"chronomancer","dbcSpellId":801275,"name":"Epoch","unlockLevel":1,"icon":"/assets/ui/spells/ability_rewindtime.png","sigil":"EP","description":"EpochRank 120% of base mana Instant cast15 sec cooldownBlasts the target for 60 to 65 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":60,"dieSides":6,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":1,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801275,"level":1,"description":"EpochRank 120% of base mana Instant cast15 sec cooldownBlasts the target for 60 to 65 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":60,"dieSides":6,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":1,"maxScalingLevel":16}]},{"rank":2,"spellId":501785,"level":17,"description":"EpochRank 220% of base mana Instant cast15 sec cooldownBlasts the target for 54 to 61 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7757583285371462,"basePoints":54,"dieSides":8,"pointsPerLevel":0.9983999729156494,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32}]},{"rank":3,"spellId":501786,"level":33,"description":"EpochRank 320% of base mana Instant cast15 sec cooldownBlasts the target for 50 to 63 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7399611216452386,"basePoints":50,"dieSides":14,"pointsPerLevel":1.516800045967102,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48}]},{"rank":4,"spellId":501787,"level":49,"description":"EpochRank 420% of base mana Instant cast15 sec cooldownBlasts the target for 99 to 121 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0923166970411937,"basePoints":99,"dieSides":23,"pointsPerLevel":2.0352001190185547,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64}]},{"rank":5,"spellId":501788,"level":65,"description":"EpochRank 520% of base mana Instant cast15 sec cooldownBlasts the target for 189 to 223 Time Damage. Time Damage is a combination of Arcane and Frost. Grants 1 Order.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5499333530664443,"basePoints":189,"dieSides":35,"pointsPerLevel":2.5536000728607178,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80}]}]},{"id":"coa-tree-6213","classId":"chronomancer","dbcSpellId":706055,"name":"Expediting Time","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_ashestoashes.png","sigil":"ET","description":"Reduces the channel time of your Time Out! by -40%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706055:effect:0:aura:108","name":"Expediting Time (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706055:effect:1:aura:108","name":"Expediting Time (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706055,"level":1,"description":"Reduces the channel time of your Time Out! by -40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706055:effect:0:aura:108","name":"Expediting Time (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706055:effect:1:aura:108","name":"Expediting Time (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}]}],"talentEntryId":6213},{"id":"coa-tree-6228","classId":"chronomancer","dbcSpellId":804491,"name":"Fortify Timeline","unlockLevel":1,"icon":"/assets/ui/spells/achievement_guildperk_workingovertime_rank2.png","sigil":"FT","description":"Fortify the current timeline, instantly healing all party and raid members for 80 + 32% SP and extending the duration of Accelerated Recovery on them by 5 sec.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":1.3154826277778262,"basePoints":100,"dieSides":38,"pointsPerLevel":1.7500300407409668,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":800857,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804491,"level":1,"description":"Fortify the current timeline, instantly healing all party and raid members for 80 + 32% SP and extending the duration of Accelerated Recovery on them by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":1.3154826277778262,"basePoints":100,"dieSides":38,"pointsPerLevel":1.7500300407409668,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":800857,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":6228},{"id":"coa-tree-30257","classId":"chronomancer","dbcSpellId":801281,"name":"Gravity Bomb","unlockLevel":1,"icon":"/assets/ui/spells/skill_icon_skill42_border.png","sigil":"GB","description":"Place a gravity bomb on the target. After 6 seconds they explode for 979 + 120% SP + 30% ranged AP Chromatic Damage in a 10 yds radius. Directly before the explosion occurs, all enemies within 15 yds are teleported to the initial target.","target":"hostile","range":{"min":0,"max":40},"radius":10,"castMode":"cast","castTimeMs":1500,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801281:effect:0:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801281:proc:0:801282","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801282}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801282},{"kind":"apply-aura","aura":{"id":"coa:801281:effect:1:aura:4","name":"Gravity Bomb (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801281:effect:2:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801281:proc:2:801254","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801254}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801254}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801281,"level":1,"description":"Place a gravity bomb on the target. After 6 seconds they explode for 979 + 120% SP + 30% ranged AP Chromatic Damage in a 10 yds radius. Directly before the explosion occurs, all enemies within 15 yds are teleported to the initial target.","castMode":"cast","castTimeMs":1500,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801281:effect:0:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801281:proc:0:801282","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801282}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801282},{"kind":"apply-aura","aura":{"id":"coa:801281:effect:1:aura:4","name":"Gravity Bomb (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801281:effect:2:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801281:proc:2:801254","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801254}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801254}]}],"talentEntryId":30257},{"id":"coa-22-improved-past-self-81-706091","classId":"chronomancer","dbcSpellId":706091,"name":"Improved Past Self","unlockLevel":1,"icon":"/assets/ui/spells/spell_mage_overpowered.png","sigil":"IP","description":"Improved Past SelfRank 1Reduces the cooldown of Past Self by 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706091:effect:0:aura:107","name":"Improved Past Self (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706091,"level":1,"description":"Improved Past SelfRank 1Reduces the cooldown of Past Self by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706091:effect:0:aura:107","name":"Improved Past Self (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]},{"rank":2,"spellId":706092,"level":1,"description":"Improved Past SelfRank 2Reduces the cooldown of Past Self by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706092:effect:0:aura:107","name":"Improved Past Self (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-22-improved-reverse-wound-79-706052","classId":"chronomancer","dbcSpellId":706052,"name":"Improved Reverse Wound","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedrecovery.png","sigil":"IR","description":"Improved Reverse WoundRank 1Reduces the cast time of Reverse Wound by 0.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706052:effect:0:aura:107","name":"Improved Reverse Wound (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706052:effect:1:aura:4","name":"Improved Reverse Wound (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706052,"level":1,"description":"Improved Reverse WoundRank 1Reduces the cast time of Reverse Wound by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706052:effect:0:aura:107","name":"Improved Reverse Wound (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706052:effect:1:aura:4","name":"Improved Reverse Wound (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-6697","classId":"chronomancer","dbcSpellId":706053,"name":"Improved Reverse Wound","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedrecovery.png","sigil":"IR","description":"Reduces the cast time of Reverse Wound by -0.3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706053:effect:0:aura:107","name":"Improved Reverse Wound (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706053,"level":1,"description":"Reduces the cast time of Reverse Wound by -0.3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706053:effect:0:aura:107","name":"Improved Reverse Wound (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":6697},{"id":"coa-22-improved-time-stop-81-706088","classId":"chronomancer","dbcSpellId":706088,"name":"Improved Time Stop","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_stun.png","sigil":"IT","description":"Improved Time StopRank 1Reduces the cooldown of Mend Timeline by 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706088:effect:0:aura:107","name":"Improved Time Stop (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706088,"level":1,"description":"Improved Time StopRank 1Reduces the cooldown of Mend Timeline by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706088:effect:0:aura:107","name":"Improved Time Stop (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]},{"rank":2,"spellId":706089,"level":1,"description":"Improved Time StopRank 2InstantReduces the cooldown of Mend Timeline by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706089:effect:0:aura:107","name":"Improved Time Stop (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-4031","classId":"chronomancer","dbcSpellId":92118,"name":"Infinite Power","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_infinitecorruptor.png","sigil":"IP","description":"Level 10 Passive Casting damaging spells now reduces your damaging spell cooldowns by 10% of their remaining cooldown.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92118:effect:0:aura:42","name":"Infinite Power (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92118:proc:0:503946","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503946}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503946}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92118,"level":1,"description":"Level 10 Passive Casting damaging spells now reduces your damaging spell cooldowns by 10% of their remaining cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92118:effect:0:aura:42","name":"Infinite Power (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92118:proc:0:503946","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503946}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503946}]}],"talentEntryId":4031},{"id":"coa-tree-32547","classId":"chronomancer","dbcSpellId":500115,"name":"Infinite Sands","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_voidshift.png","sigil":"IS","description":"Reduces the cooldown of Infinite Clone by -60 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500115:effect:0:aura:107","name":"Infinite Sands (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":500115,"level":1,"description":"Reduces the cooldown of Infinite Clone by -60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500115:effect:0:aura:107","name":"Infinite Sands (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":32547},{"id":"coa-tree-7915","classId":"chronomancer","dbcSpellId":520457,"name":"Infinite Shield","unlockLevel":1,"icon":"/assets/ui/spells/sha_spell_fire_felfireward.png","sigil":"IS","description":"Shield an ally with 10 charges of Infinite Shield for 30 seconds. Each time they take damage, they will be healed for 190 + 25% SP and lose 1 charge. Can only occur once per sec and can only affect 1 target at a time.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520457:effect:0:aura:42","name":"Infinite Shield (Aura 42)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520457:proc:0:520458","triggers":["heal","damage-taken"],"chance":1,"charges":6,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520458}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520458},{"kind":"apply-aura","aura":{"id":"coa:520457:effect:1:aura:271","name":"Infinite Shield (Aura 271)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520457,"level":1,"description":"Shield an ally with 10 charges of Infinite Shield for 30 seconds. Each time they take damage, they will be healed for 190 + 25% SP and lose 1 charge. Can only occur once per sec and can only affect 1 target at a time.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520457:effect:0:aura:42","name":"Infinite Shield (Aura 42)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520457:proc:0:520458","triggers":["heal","damage-taken"],"chance":1,"charges":6,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520458}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520458},{"kind":"apply-aura","aura":{"id":"coa:520457:effect:1:aura:271","name":"Infinite Shield (Aura 271)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":7915},{"id":"coa-tree-31335","classId":"chronomancer","dbcSpellId":680808,"name":"Life Cycles","unlockLevel":1,"icon":"/assets/ui/spells/inv_pet_babymurlocs_white.png","sigil":"LC","description":"Reduces the cast time of your Babify by 0.25 sec and its mana cost by -15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680808:effect:0:aura:107","name":"Life Cycles (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-2.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680808:effect:1:aura:108","name":"Life Cycles (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680808,"level":1,"description":"Reduces the cast time of your Babify by 0.25 sec and its mana cost by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680808:effect:0:aura:107","name":"Life Cycles (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-2.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680808:effect:1:aura:108","name":"Life Cycles (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":31335},{"id":"coa-tree-11122","classId":"chronomancer","dbcSpellId":707656,"name":"Maker of Realities","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_haymaker.png","sigil":"MO","description":"Casting Hasten now also always reduces the cast time of your healing spells by an additional -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707656:effect:0:aura:42","name":"Maker of Realities (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707656:proc:0:712454","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712454}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":712454}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707656,"level":1,"description":"Casting Hasten now also always reduces the cast time of your healing spells by an additional -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707656:effect:0:aura:42","name":"Maker of Realities (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707656:proc:0:712454","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712454}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":712454}]}],"talentEntryId":11122},{"id":"coa-tree-6221","classId":"chronomancer","dbcSpellId":520855,"name":"Mass Babify","unlockLevel":1,"icon":"/assets/ui/spells/massbabify.png","sigil":"MB","description":"Instantly transform all enemies into a baby, preventing them from acting for 40 seconds (8 sec vs players), damage dealt will interrupt this effect. While babified, enemies will rapidly regenerate health. Scales with modifiers to Babify.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":32,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520855:effect:0:aura:12","name":"Mass Babify (Aura 12)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520855:effect:1:aura:56","name":"Mass Babify (Aura 56)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":26365,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520855:effect:2:aura:23","name":"Mass Babify (Aura 23)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520855:proc:2:801260","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801260}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801260}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520855,"level":1,"description":"Instantly transform all enemies into a baby, preventing them from acting for 40 seconds (8 sec vs players), damage dealt will interrupt this effect. While babified, enemies will rapidly regenerate health. Scales with modifiers to Babify.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":32,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520855:effect:0:aura:12","name":"Mass Babify (Aura 12)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520855:effect:1:aura:56","name":"Mass Babify (Aura 56)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":26365,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520855:effect:2:aura:23","name":"Mass Babify (Aura 23)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520855:proc:2:801260","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801260}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801260}]}],"talentEntryId":6221},{"id":"coa-22-master-of-chaos-79-706047","classId":"chronomancer","dbcSpellId":706047,"name":"Master of Chaos","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_charm.png","sigil":"MO","description":"Master of ChaosRank 2Instant castIncreases the damage dealt by Chromatic spells by 16%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706047:effect:0:aura:108","name":"Master of Chaos (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.16}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706047:effect:1:aura:108","name":"Master of Chaos (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706047,"level":1,"description":"Master of ChaosRank 2Instant castIncreases the damage dealt by Chromatic spells by 16%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706047:effect:0:aura:108","name":"Master of Chaos (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.16}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706047:effect:1:aura:108","name":"Master of Chaos (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}]},{"id":"coa-22-master-of-order-79-706050","classId":"chronomancer","dbcSpellId":706050,"name":"Master of Order","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_spiritualguidence.png","sigil":"MO","description":"Master of OrderRank 2Instant castIncreases the damage of Order spells by 16%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706050:effect:0:aura:108","name":"Master of Order (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.16}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706050:effect:1:aura:4","name":"Master of Order (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706050,"level":1,"description":"Master of OrderRank 2Instant castIncreases the damage of Order spells by 16%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706050:effect:0:aura:108","name":"Master of Order (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.16}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706050:effect:1:aura:4","name":"Master of Order (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-6226","classId":"chronomancer","dbcSpellId":520164,"name":"Perfect Timing","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_bronze.png","sigil":"PT","description":"Increases your haste by 4% and reduces your spell pushback suffered from damaging attacks by 35%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520164:effect:0:aura:216","name":"Perfect Timing (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520164:effect:1:aura:192","name":"Perfect Timing (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520164:effect:2:aura:149","name":"Perfect Timing (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520164,"level":1,"description":"Increases your haste by 4% and reduces your spell pushback suffered from damaging attacks by 35%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520164:effect:0:aura:216","name":"Perfect Timing (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520164:effect:1:aura:192","name":"Perfect Timing (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520164:effect:2:aura:149","name":"Perfect Timing (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":520874,"level":1,"description":"Increases your haste by 8% and reduces your spell pushback suffered from damaging attacks by 70%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520874:effect:0:aura:216","name":"Perfect Timing (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520874:effect:1:aura:192","name":"Perfect Timing (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520874:effect:2:aura:149","name":"Perfect Timing (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6226},{"id":"coa-22-plentiful-orbs-80-706069","classId":"chronomancer","dbcSpellId":706069,"name":"Plentiful Orbs","unlockLevel":1,"icon":"/assets/ui/spells/inv_7_0raid_trinket_06a.png","sigil":"PO","description":"Plentiful OrbsRank 1Allows Echo to stack 1 additional time.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706069:effect:0:aura:107","name":"Plentiful Orbs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706069:effect:1:aura:4","name":"Plentiful Orbs (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706069:effect:2:aura:4","name":"Plentiful Orbs (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706069,"level":1,"description":"Plentiful OrbsRank 1Allows Echo to stack 1 additional time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706069:effect:0:aura:107","name":"Plentiful Orbs (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706069:effect:1:aura:4","name":"Plentiful Orbs (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706069:effect:2:aura:4","name":"Plentiful Orbs (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-tree-12215","classId":"chronomancer","dbcSpellId":520854,"name":"Procrastination","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_brain_b_01.png","sigil":"PR","description":"Reduces the cooldown of Timeguard by -30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520854:effect:0:aura:107","name":"Procrastination (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520854,"level":1,"description":"Reduces the cooldown of Timeguard by -30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520854:effect:0:aura:107","name":"Procrastination (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":12215},{"id":"coa-22-protector-training-80-706073","classId":"chronomancer","dbcSpellId":706073,"name":"Protector Training","unlockLevel":1,"icon":"/assets/ui/spells/inv_7_0raid_trinket_05d.png","sigil":"PT","description":"Protector TrainingRank 2InstantReduces the cooldowns of your pet's spells and abilities by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706073:effect:0:aura:108","name":"Protector Training (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706073,"level":1,"description":"Protector TrainingRank 2InstantReduces the cooldowns of your pet's spells and abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706073:effect:0:aura:108","name":"Protector Training (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-22-quickcaster-81-706132","classId":"chronomancer","dbcSpellId":706132,"name":"Quickcaster","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_mentalquickness.png","sigil":"QU","description":"QuickcasterRank 2Instant castIncreases haste by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706132:effect:0:aura:216","name":"Quickcaster (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706132:effect:1:aura:218","name":"Quickcaster (Aura 218)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":218,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706132,"level":1,"description":"QuickcasterRank 2Instant castIncreases haste by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706132:effect:0:aura:216","name":"Quickcaster (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706132:effect:1:aura:218","name":"Quickcaster (Aura 218)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":218,"miscValue":0,"triggerSpellId":0}]}]},{"id":"chronomancer-reverse-wound","classId":"chronomancer","dbcSpellId":801303,"name":"Reverse Wound","unlockLevel":1,"icon":"/assets/ui/spells/ability_pvp_innerrenewal.png","sigil":"RW","description":"Reverse WoundRank 131% of base mana 1.5 sec castReverse an ally's wound, healing them for 47+0+Heal*0.9.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":1.0722347895304363,"basePoints":47,"dieSides":4,"pointsPerLevel":2.9672698974609375,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4},{"kind":"trigger-spell","spellId":804679}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801303,"level":1,"description":"Reverse WoundRank 131% of base mana 1.5 sec castReverse an ally's wound, healing them for 47+0+Heal*0.9.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":1.0722347895304363,"basePoints":47,"dieSides":4,"pointsPerLevel":2.9672698974609375,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4},{"kind":"trigger-spell","spellId":804679}]},{"rank":2,"spellId":501805,"level":6,"description":"Reverse WoundRank 231% of base mana 2 sec castReverse an ally's wound, healing them for 82+0+Heal*0.9.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":1.84551269289047,"basePoints":82,"dieSides":6,"pointsPerLevel":5.294549942016602,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":11},{"kind":"trigger-spell","spellId":804679}]},{"rank":3,"spellId":501806,"level":14,"description":"Reverse WoundRank 331% of base mana 2.5 sec castReverse an ally's wound, healing them for 180+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":3.2207991062909707,"basePoints":180,"dieSides":11,"pointsPerLevel":6.800680160522461,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":804679}]},{"rank":4,"spellId":501807,"level":22,"description":"Reverse WoundRank 431% of base mana 2.5 sec castReverse an ally's wound, healing them for 293+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":3.8903053730457753,"basePoints":293,"dieSides":24,"pointsPerLevel":5.787449836730957,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":804679}]},{"rank":5,"spellId":501808,"level":32,"description":"Reverse WoundRank 531% of base mana 2.5 sec castReverse an ally's wound, healing them for 428+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":428,"dieSides":36,"pointsPerLevel":9.100000381469727,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"trigger-spell","spellId":804679}]},{"rank":6,"spellId":501809,"level":38,"description":"Reverse WoundRank 631% of base mana 2.5 sec castReverse an ally's wound, healing them for 505+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":505,"dieSides":53,"pointsPerLevel":6.549099922180176,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":804679}]}]},{"id":"coa-tree-6162","classId":"chronomancer","dbcSpellId":806300,"name":"Rippling Power","unlockLevel":1,"icon":"/assets/ui/spells/ability_bossmagistrix_timewarp1.png","sigil":"RP","description":"Increases your Spirit by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806300:effect:0:aura:137","name":"Rippling Power (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806300:effect:1:aura:137","name":"Rippling Power (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spirit","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":4,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806300,"level":1,"description":"Increases your Spirit by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806300:effect:0:aura:137","name":"Rippling Power (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806300:effect:1:aura:137","name":"Rippling Power (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spirit","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":4,"triggerSpellId":0}]},{"rank":2,"spellId":807893,"level":1,"description":"Increases your Spirit by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807893:effect:0:aura:137","name":"Rippling Power (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807893:effect:1:aura:137","name":"Rippling Power (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spirit","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":4,"triggerSpellId":0}]}],"talentEntryId":6162},{"id":"chronomancer-rumble","classId":"chronomancer","dbcSpellId":805166,"name":"Rumble","unlockLevel":1,"icon":"/assets/ui/spells/ability_malkorok_blightofyshaarj_yellow.png","sigil":"RU","description":"Taunts all nearby enemies for $d, and increases your threat against them by $s2%.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805166:effect:0:aura:11","name":"Rumble (Aura 11)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":11,"miscValue":0,"triggerSpellId":0},{"kind":"taunt","durationMs":4000},{"kind":"threat","mode":"percent","amount":35}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":805166,"level":1,"description":"Taunts all nearby enemies for $d, and increases your threat against them by $s2%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805166:effect:0:aura:11","name":"Rumble (Aura 11)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":11,"miscValue":0,"triggerSpellId":0},{"kind":"taunt","durationMs":4000},{"kind":"threat","mode":"percent","amount":35}]}]},{"id":"coa-22-runed-rod-80-706068","classId":"chronomancer","dbcSpellId":706068,"name":"Runed Rod","unlockLevel":1,"icon":"/assets/ui/spells/inv_jewelry_trinket_02.png","sigil":"RR","description":"Runed RodRank 2Instant castIncreases wand attack speed by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706068:effect:0:aura:140","name":"Runed Rod (Aura 140)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":140,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706068:effect:1:aura:4","name":"Runed Rod (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706068:effect:2:aura:4","name":"Runed Rod (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706068,"level":1,"description":"Runed RodRank 2Instant castIncreases wand attack speed by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706068:effect:0:aura:140","name":"Runed Rod (Aura 140)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":140,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706068:effect:1:aura:4","name":"Runed Rod (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706068:effect:2:aura:4","name":"Runed Rod (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-tree-30260","classId":"chronomancer","dbcSpellId":806315,"name":"Temporal Anomaly","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(39)_border.png","sigil":"TA","description":"Augment reality for 10 seconds, causing 50% of the damage taken to be stored and converted into healing at the end of the duration.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806315:effect:0:aura:69","name":"Temporal Anomaly (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:806315:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806315,"level":1,"description":"Augment reality for 10 seconds, causing 50% of the damage taken to be stored and converted into healing at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806315:effect:0:aura:69","name":"Temporal Anomaly (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:806315:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":30260},{"id":"coa-tree-30251","classId":"chronomancer","dbcSpellId":520922,"name":"Temporal Dissonance","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_manaburn.png","sigil":"TD","description":"Chronostasis now slows your target's movement speed by an additional -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520922:effect:0:aura:107","name":"Temporal Dissonance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520922,"level":1,"description":"Chronostasis now slows your target's movement speed by an additional -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520922:effect:0:aura:107","name":"Temporal Dissonance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":30251},{"id":"coa-tree-6698","classId":"chronomancer","dbcSpellId":806165,"name":"Temporal Focus","unlockLevel":1,"icon":"/assets/ui/spells/_d3serenity.png","sigil":"TF","description":"You lock yourself into a perfect moment, removing and becoming immune to banish, silence, and interrupt effects for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806165:effect:0:aura:77","name":"Temporal Focus (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":9,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806165:effect:1:aura:77","name":"Temporal Focus (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":26,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806165:effect:2:aura:77","name":"Temporal Focus (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":18,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806165,"level":1,"description":"You lock yourself into a perfect moment, removing and becoming immune to banish, silence, and interrupt effects for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806165:effect:0:aura:77","name":"Temporal Focus (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":9,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806165:effect:1:aura:77","name":"Temporal Focus (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":26,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806165:effect:2:aura:77","name":"Temporal Focus (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":18,"triggerSpellId":0}]}],"talentEntryId":6698},{"id":"coa-tree-6194","classId":"chronomancer","dbcSpellId":706099,"name":"The Bieko Effect","unlockLevel":1,"icon":"/assets/ui/spells/inv_60pvp_trinket3b.png","sigil":"TB","description":"While Hasten is active the cooldowns of Dimensional Divergence, Temporal Anomaly, and Temporal Focus are reduced by 10% every 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706099:effect:0:aura:42","name":"The Bieko Effect (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706099:proc:0:712371","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712371}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":712371}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706099,"level":1,"description":"While Hasten is active the cooldowns of Dimensional Divergence, Temporal Anomaly, and Temporal Focus are reduced by 10% every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706099:effect:0:aura:42","name":"The Bieko Effect (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706099:proc:0:712371","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712371}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":712371}]}],"talentEntryId":6194},{"id":"coa-22-time-loop-81-801297","classId":"chronomancer","dbcSpellId":801297,"name":"Time Loop","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_timewarp.png","sigil":"TL","description":"Time LoopRank 117% of base mana Instant cast1 min cooldownYou place a Time Loop on an ally. The next spell or ability they use within 10 sec that has a cooldown of at least 8 seconds will incur no cooldown.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801297:effect:0:aura:4","name":"Time Loop (Aura 4)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801297,"level":1,"description":"Time LoopRank 117% of base mana Instant cast1 min cooldownYou place a Time Loop on an ally. The next spell or ability they use within 10 sec that has a cooldown of at least 8 seconds will incur no cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801297:effect:0:aura:4","name":"Time Loop (Aura 4)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501841,"level":28,"description":"Time LoopRank 217% of base mana Instant cast1 min cooldownYou place a Time Loop on an ally. The next spell or ability they use within 7 sec (that has a resource cost or a cast time) will instantly restore its resource cost and not incur a cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501841:effect:0:aura:4","name":"Time Loop (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501842,"level":54,"description":"Time LoopRank 317% of base mana Instant cast1 min cooldownYou place a Time Loop on an ally. The next spell or ability they use within 7 sec (that has a resource cost or a cast time) will instantly restore its resource cost and not incur a cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501842:effect:0:aura:4","name":"Time Loop (Aura 4)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30269","classId":"chronomancer","dbcSpellId":804441,"name":"Timeguard","unlockLevel":1,"icon":"/assets/ui/spells/inv_belt_armor_waistoftime_d_01.png","sigil":"TI","description":"Place a magical guard on an ally for 2 minutes, causing the next 3 instances of direct damage that would reduce the target below 35% health to deal 40% less damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804441:effect:0:aura:69","name":"Timeguard (Aura 69)","disposition":"buff","durationMs":120000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:804441:absorb:0","amount":2,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804441:effect:1:aura:4","name":"Timeguard (Aura 4)","disposition":"buff","durationMs":120000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804441:effect:2:aura:4","name":"Timeguard (Aura 4)","disposition":"buff","durationMs":120000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804441,"level":1,"description":"Place a magical guard on an ally for 2 minutes, causing the next 3 instances of direct damage that would reduce the target below 35% health to deal 40% less damage.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804441:effect:0:aura:69","name":"Timeguard (Aura 69)","disposition":"buff","durationMs":120000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:804441:absorb:0","amount":2,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804441:effect:1:aura:4","name":"Timeguard (Aura 4)","disposition":"buff","durationMs":120000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804441:effect:2:aura:4","name":"Timeguard (Aura 4)","disposition":"buff","durationMs":120000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30269},{"id":"coa-tree-6215","classId":"chronomancer","dbcSpellId":680845,"name":"Timekeeper","unlockLevel":1,"icon":"/assets/ui/spells/inv_eng_unstabletemporaltimeshifter.png","sigil":"TI","description":"Increases the effectiveness of Timeguard by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680845:effect:0:aura:108","name":"Timekeeper (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680845,"level":1,"description":"Increases the effectiveness of Timeguard by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680845:effect:0:aura:108","name":"Timekeeper (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6215},{"id":"coa-22-timemancy-81-706118","classId":"chronomancer","dbcSpellId":706118,"name":"Timemancy","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_dust.png","sigil":"TI","description":"TimemancyRank 1Increases the damage of Sandblast by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706118:effect:0:aura:108","name":"Timemancy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706118:effect:1:aura:108","name":"Timemancy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706118,"level":1,"description":"TimemancyRank 1Increases the damage of Sandblast by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706118:effect:0:aura:108","name":"Timemancy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706118:effect:1:aura:108","name":"Timemancy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]},{"rank":2,"spellId":706119,"level":1,"description":"TimemancyRank 2Increases the damage of Sandblast by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706119:effect:0:aura:108","name":"Timemancy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706119:effect:1:aura:108","name":"Timemancy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}]},{"id":"coa-tree-9547","classId":"chronomancer","dbcSpellId":572527,"name":"Timewalking","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_divineprovidence.png","sigil":"TI","description":"Reduces the cooldown of Waves of Time by -4 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572527:effect:0:aura:107","name":"Timewalking (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":572527,"level":1,"description":"Reduces the cooldown of Waves of Time by -4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572527:effect:0:aura:107","name":"Timewalking (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":9547},{"id":"coa-tree-30267","classId":"chronomancer","dbcSpellId":520173,"name":"Tripping the Rift","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_dizzy.png","sigil":"TT","description":"Casting Clasp of Infinity now reduces the cooldown of Backtrack by -10 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520173:effect:0:aura:42","name":"Tripping the Rift (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:520173:proc:0:521214","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":521214}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":521214}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520173,"level":1,"description":"Casting Clasp of Infinity now reduces the cooldown of Backtrack by -10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520173:effect:0:aura:42","name":"Tripping the Rift (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:520173:proc:0:521214","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":521214}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":521214}]}],"talentEntryId":30267},{"id":"coa-tree-30280","classId":"chronomancer","dbcSpellId":574309,"name":"Unearthed Pools","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(48)_border.png","sigil":"UP","description":"Reduces the cast time of Unmake by -15% and reduces the mana cost of your instant spells by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:574309:effect:0:aura:357","name":"Unearthed Pools (Aura 357)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":357,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:574309:effect:1:aura:108","name":"Unearthed Pools (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":574309,"level":1,"description":"Reduces the cast time of Unmake by -15% and reduces the mana cost of your instant spells by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:574309:effect:0:aura:357","name":"Unearthed Pools (Aura 357)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":357,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:574309:effect:1:aura:108","name":"Unearthed Pools (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":30280},{"id":"chronomancer-unmake","classId":"chronomancer","dbcSpellId":804418,"name":"Unmake","unlockLevel":1,"icon":"/assets/ui/spells/spell_animamaw_nova.png","sigil":"UN","description":"UnmakeRank 110% of base mana 1.5 sec castUnmake an enemy, dealing 5+0+SP*0.1+(1*1000/0.25)*(5+0+SP*0.1) Chromatic Damage over 1 sec.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804418:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1162499999627471,"basePoints":5,"dieSides":2,"pointsPerLevel":0.07999999821186066,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":5,"ticks":4,"intervalMs":250,"tag":"spell-804418"},{"kind":"apply-aura","aura":{"id":"coa:804418:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804418:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":804418,"level":1,"description":"UnmakeRank 110% of base mana 1.5 sec castUnmake an enemy, dealing 5+0+SP*0.1+(1*1000/0.25)*(5+0+SP*0.1) Chromatic Damage over 1 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804418:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1162499999627471,"basePoints":5,"dieSides":2,"pointsPerLevel":0.07999999821186066,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":5,"ticks":4,"intervalMs":250,"tag":"spell-804418"},{"kind":"apply-aura","aura":{"id":"coa:804418:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804418:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":503784,"level":6,"description":"UnmakeRank 212% of base mana 1.5 sec castUnmake an enemy, dealing 7+0+SP*0.12+(1*1000/0.25)*(7+0+SP*0.12) Chromatic Damage over 1 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503784:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":7,"dieSides":2,"pointsPerLevel":0.125,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":6,"maxScalingLevel":10,"ticks":4,"intervalMs":250,"tag":"spell-503784"},{"kind":"apply-aura","aura":{"id":"coa:503784:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503784:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503785,"level":12,"description":"UnmakeRank 312% of base mana 2 sec castUnmake an enemy, dealing 12+0+SP*0.12+(1.5*1000/0.25)*(12+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503785:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":12,"dieSides":2,"pointsPerLevel":0.11999999731779099,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":12,"maxScalingLevel":20,"ticks":6,"intervalMs":250,"tag":"spell-503785"},{"kind":"apply-aura","aura":{"id":"coa:503785:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503785:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503786,"level":18,"description":"UnmakeRank 412% of base mana 2 sec castUnmake an enemy, dealing 15+0+SP*0.12+(1.5*1000/0.25)*(15+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503786:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":15,"dieSides":2,"pointsPerLevel":0.14000000059604645,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":18,"maxScalingLevel":28,"ticks":6,"intervalMs":250,"tag":"spell-503786"},{"kind":"apply-aura","aura":{"id":"coa:503786:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503786:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503787,"level":24,"description":"UnmakeRank 512% of base mana 2 sec castUnmake an enemy, dealing 19+0+SP*0.12+(1.5*1000/0.25)*(19+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503787:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":19,"dieSides":2,"pointsPerLevel":0.12999999523162842,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":24,"maxScalingLevel":34,"ticks":6,"intervalMs":250,"tag":"spell-503787"},{"kind":"apply-aura","aura":{"id":"coa:503787:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503787:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503788,"level":30,"description":"UnmakeRank 612% of base mana 2 sec castUnmake an enemy, dealing 24+0+SP*0.12+(1.5*1000/0.25)*(24+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503788:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":24,"dieSides":3,"pointsPerLevel":0.15000000596046448,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":30,"maxScalingLevel":42,"ticks":6,"intervalMs":250,"tag":"spell-503788"},{"kind":"apply-aura","aura":{"id":"coa:503788:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503788:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503789,"level":36,"description":"UnmakeRank 712% of base mana 2 sec castUnmake an enemy, dealing 31+0+SP*0.12+(1.5*1000/0.25)*(31+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503789:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":31,"dieSides":3,"pointsPerLevel":0.13750000298023224,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":36,"maxScalingLevel":52,"ticks":6,"intervalMs":250,"tag":"spell-503789"},{"kind":"apply-aura","aura":{"id":"coa:503789:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503789:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503790,"level":44,"description":"UnmakeRank 812% of base mana 2 sec castUnmake an enemy, dealing 38+0+SP*0.12+(1.5*1000/0.25)*(38+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503790:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":38,"dieSides":4,"pointsPerLevel":0.20714299380779266,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":44,"maxScalingLevel":58,"ticks":6,"intervalMs":250,"tag":"spell-503790"},{"kind":"apply-aura","aura":{"id":"coa:503790:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503790:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":504574,"level":50,"description":"UnmakeRank 912% of base mana 2 sec castUnmake an enemy, dealing 47+0+SP*0.12+(1.5*1000/0.25)*(47+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504574:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":47,"dieSides":6,"pointsPerLevel":0.21176500618457794,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":50,"maxScalingLevel":67,"ticks":6,"intervalMs":250,"tag":"spell-504574"},{"kind":"apply-aura","aura":{"id":"coa:504574:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504574:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":574344,"level":56,"description":"UnmakeRank 1012% of base mana 2 sec castUnmake an enemy, dealing 56+0+SP*0.12+(1.5*1000/0.25)*(56+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:574344:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":56,"dieSides":6,"pointsPerLevel":0.2705880105495453,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":56,"maxScalingLevel":73,"ticks":6,"intervalMs":250,"tag":"spell-574344"},{"kind":"apply-aura","aura":{"id":"coa:574344:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:574344:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":11,"spellId":574345,"level":60,"description":"UnmakeRank 1112% of base mana 2 sec castUnmake an enemy, dealing 79+0+SP*0.12+(1.5*1000/0.25)*(79+0+SP*0.12) Chromatic Damage over 1.5 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:574345:effect:0:aura:3","name":"Unmake (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.06239999830722809,"basePoints":79,"dieSides":7,"pointsPerLevel":0.3222219944000244,"bonusPowerCoefficient":0.06239999830722809,"sourceLevel":60,"maxScalingLevel":78,"ticks":6,"intervalMs":250,"tag":"spell-574345"},{"kind":"apply-aura","aura":{"id":"coa:574345:effect:1:aura:4","name":"Unmake (Aura 4)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:574345:effect:2:aura:271","name":"Unmake (Aura 271)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-5122","classId":"chronomancer","dbcSpellId":706107,"name":"Unmaker of Realities","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_arakkoaspires.png","sigil":"UO","description":"While Hasten is active the ally now has a 25% chance when they deal damage to strike the target an additional time equal to 30% of the damage dealt.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706107:effect:0:aura:4","name":"Unmaker of Realities (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706107,"level":1,"description":"While Hasten is active the ally now has a 25% chance when they deal damage to strike the target an additional time equal to 30% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706107:effect:0:aura:4","name":"Unmaker of Realities (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":5122},{"id":"coa-tree-30855","classId":"chronomancer","dbcSpellId":801277,"name":"Waves of Time","unlockLevel":1,"icon":"/assets/ui/spells/5_healingwave_border.png","sigil":"WO","description":"Blast enemies in a frontal cone with time fractals, knocking them back slightly. The knockback repeats 1 additional time after 2 sec.","target":"self","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802600,"withValue":2000},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"trigger-spell","spellId":65633}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801277,"level":1,"description":"Blast enemies in a frontal cone with time fractals, knocking them back slightly. The knockback repeats 1 additional time after 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":802600,"withValue":2000},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"trigger-spell","spellId":65633}]}],"talentEntryId":30855},{"id":"coa-22-wisdom-80-706105","classId":"chronomancer","dbcSpellId":706105,"name":"Wisdom","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_divinespirit.png","sigil":"WI","description":"WisdomRank 1Increases Spirit by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706105:effect:0:aura:137","name":"Wisdom (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spirit","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706105:effect:1:aura:4","name":"Wisdom (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706105,"level":1,"description":"WisdomRank 1Increases Spirit by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706105:effect:0:aura:137","name":"Wisdom (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spirit","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706105:effect:1:aura:4","name":"Wisdom (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]},{"rank":2,"spellId":706106,"level":1,"description":"WisdomRank 2Increases Spirit by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706106:effect:0:aura:137","name":"Wisdom (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spirit","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706106:effect:1:aura:4","name":"Wisdom (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-22-timerend-79-801291","classId":"chronomancer","dbcSpellId":801291,"name":"Timerend","unlockLevel":4,"icon":"/assets/ui/spells/spell_animamaw_beam.png","sigil":"TI","description":"TimerendRank 117% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 30 Chromatic Damage over 6 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801291:effect:0:aura:3","name":"Timerend (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.10000000149011612,"basePoints":5,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":4,"maxScalingLevel":12,"ticks":6,"intervalMs":1000,"tag":"spell-801291"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801291,"level":4,"description":"TimerendRank 117% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 30 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801291:effect:0:aura:3","name":"Timerend (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.10000000149011612,"basePoints":5,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":4,"maxScalingLevel":12,"ticks":6,"intervalMs":1000,"tag":"spell-801291"}]},{"rank":2,"spellId":501831,"level":14,"description":"TimerendRank 217% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 96 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501831:effect:0:aura:3","name":"Timerend (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4413793141814484,"basePoints":16,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20,"ticks":6,"intervalMs":1000,"tag":"spell-501831"}]},{"rank":3,"spellId":501832,"level":22,"description":"TimerendRank 317% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 180 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501832:effect:0:aura:3","name":"Timerend (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.49357423481640517,"basePoints":30,"dieSides":1,"pointsPerLevel":1.126670002937317,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28,"ticks":6,"intervalMs":1000,"tag":"spell-501832"}]},{"rank":4,"spellId":501833,"level":30,"description":"TimerendRank 417% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 270 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501833:effect:0:aura:3","name":"Timerend (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6222222116258409,"basePoints":45,"dieSides":1,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36,"ticks":6,"intervalMs":1000,"tag":"spell-501833"}]},{"rank":5,"spellId":501834,"level":38,"description":"TimerendRank 517% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 354 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501834:effect:0:aura:3","name":"Timerend (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7646129521183997,"basePoints":59,"dieSides":1,"pointsPerLevel":1.6466699838638306,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44,"ticks":6,"intervalMs":1000,"tag":"spell-501834"}]},{"rank":6,"spellId":501835,"level":46,"description":"TimerendRank 617% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 474 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501835:effect:0:aura:3","name":"Timerend (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8841529934784103,"basePoints":79,"dieSides":1,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":6,"intervalMs":1000,"tag":"spell-501835"}]},{"rank":7,"spellId":572578,"level":52,"description":"TimerendRank 717% of base mana Instant cast20 sec cooldownRend the fabric of time, dealing 606 Chromatic Damage over 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572578:effect:0:aura:3","name":"Timerend (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.4735371034536788,"basePoints":101,"dieSides":1,"pointsPerLevel":3.7534799575805664,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":60,"ticks":6,"intervalMs":1000,"tag":"spell-572578"}]}]},{"id":"coa-22-discordance-79-503875","classId":"chronomancer","dbcSpellId":503875,"name":"Discordance","unlockLevel":8,"icon":"/assets/ui/spells/spell_animamaw_missile.png","sigil":"DI","description":"DiscordanceRank 122% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 40+0+SP*0.250505 Chromatic Damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8246376756308735,"basePoints":40,"dieSides":6,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":14}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":503875,"level":8,"description":"DiscordanceRank 122% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 40+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8246376756308735,"basePoints":40,"dieSides":6,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":14}]},{"rank":2,"spellId":503876,"level":16,"description":"DiscordanceRank 222% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 53+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8126658162763042,"basePoints":53,"dieSides":7,"pointsPerLevel":1.223620057106018,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20}]},{"rank":3,"spellId":503877,"level":22,"description":"DiscordanceRank 322% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 73+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9355450471242269,"basePoints":73,"dieSides":9,"pointsPerLevel":1.2202500104904175,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28}]},{"rank":4,"spellId":503878,"level":30,"description":"DiscordanceRank 422% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 123+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5833333439297146,"basePoints":123,"dieSides":13,"pointsPerLevel":2.825000047683716,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34}]},{"rank":5,"spellId":503879,"level":36,"description":"DiscordanceRank 522% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 164+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":2.0058373968585643,"basePoints":164,"dieSides":16,"pointsPerLevel":3.7609200477600098,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40}]},{"rank":6,"spellId":503880,"level":42,"description":"DiscordanceRank 622% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 210+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":2.463532330697043,"basePoints":210,"dieSides":19,"pointsPerLevel":4.815810203552246,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46}]},{"rank":7,"spellId":582758,"level":48,"description":"DiscordanceRank 722% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 262+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":2.972927032955109,"basePoints":262,"dieSides":23,"pointsPerLevel":6.018400192260742,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52}]},{"rank":8,"spellId":582759,"level":54,"description":"DiscordanceRank 822% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 323+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":3.5566810064269725,"basePoints":323,"dieSides":25,"pointsPerLevel":7.430240154266357,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58}]},{"rank":9,"spellId":582760,"level":60,"description":"DiscordanceRank 922% of base mana 1.5 sec cast10 sec cooldownBlast an enemy and up to 3 nearby enemies for 391+0+SP*0.250505 Chromatic Damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":391,"dieSides":26,"pointsPerLevel":9.013039588928223,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64}]}]},{"id":"coa-22-epoch-81-801270","classId":"chronomancer","dbcSpellId":801270,"name":"Epoch","unlockLevel":8,"icon":"/assets/ui/spells/_d3breathofheaven.png","sigil":"EP","description":"EpochRank 118% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 21+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":0.6285797063855157,"basePoints":21,"dieSides":6,"pointsPerLevel":2.4839999675750732,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801270,"level":8,"description":"EpochRank 118% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 21+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":0.6285797063855157,"basePoints":21,"dieSides":6,"pointsPerLevel":2.4839999675750732,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}]},{"rank":2,"spellId":501779,"level":18,"description":"EpochRank 218% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 107+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1.5640321066885283,"basePoints":107,"dieSides":9,"pointsPerLevel":2.4355099201202393,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}]},{"rank":3,"spellId":501780,"level":26,"description":"EpochRank 318% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 162+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1.6991839098736523,"basePoints":162,"dieSides":11,"pointsPerLevel":1.6153700351715088,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}]},{"rank":4,"spellId":501781,"level":36,"description":"EpochRank 418% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 225+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":2.21803894541622,"basePoints":225,"dieSides":14,"pointsPerLevel":2.996109962463379,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}]},{"rank":5,"spellId":501782,"level":44,"description":"EpochRank 518% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 292+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":2.6652156053963356,"basePoints":292,"dieSides":18,"pointsPerLevel":3.891890048980713,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}]},{"rank":6,"spellId":501783,"level":52,"description":"EpochRank 618% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 356+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":3.6823681029514295,"basePoints":356,"dieSides":28,"pointsPerLevel":7.127999782562256,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}]},{"rank":7,"spellId":501784,"level":58,"description":"EpochRank 718% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 839+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":3.9292237442922375,"basePoints":839,"dieSides":44,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}]},{"rank":8,"spellId":504575,"level":60,"description":"EpochRank 818% of base mana 2 sec castMend an ally with magic bestowed upon you by the Bronze Dragonflight, healing them for 832+0+SP*0.55 and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":832,"dieSides":44,"pointsPerLevel":2.627379894256592,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":76},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":804488,"durationMs":0}]}]},{"id":"coa-22-sandblast-485-501918","classId":"chronomancer","dbcSpellId":501918,"name":"Sandblast","unlockLevel":8,"icon":"/assets/ui/spells/spell_sandbolt.png","sigil":"SA","description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6124637714330701,"basePoints":27,"dieSides":2,"pointsPerLevel":1.8450000286102295,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501918,"level":8,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6124637714330701,"basePoints":27,"dieSides":2,"pointsPerLevel":1.8450000286102295,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501919,"level":16,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8619354822302377,"basePoints":45,"dieSides":3,"pointsPerLevel":2.134999990463257,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501920,"level":24,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0955555418617704,"basePoints":59,"dieSides":4,"pointsPerLevel":2.819999933242798,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501921,"level":25,"description":"SandblastRank 5255% of base mana 2 sec castFire a blast of enchanted sand at an enemy, dealing 66+0+ArcP*0.43+RAP*0.4 Arcane Damage and granting you Sands of Time. Sands of Time Reduces the cast time of Epoch by 20% for 10 sec, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8327083319425583,"basePoints":66,"dieSides":1,"pointsPerLevel":1.3569999933242798,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":31},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501922,"level":40,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7121211658824573,"basePoints":97,"dieSides":6,"pointsPerLevel":4.574999809265137,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501923,"level":48,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":2.422010552946222,"basePoints":179,"dieSides":7,"pointsPerLevel":5.744999885559082,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":56},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501924,"level":56,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":2.6784788140668554,"basePoints":208,"dieSides":8,"pointsPerLevel":6.410999774932861,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":64},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501925,"level":64,"description":"Fire a blast of enchanted sand at an enemy, dealing ${$m1+$ppl1+$SP*0.55+$RAP*0.485} Arcane Damage and granting Sands of Time.@s:804488:0@ $?s503811[This spell belongs to Order.][]","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":3.476286940433808,"basePoints":329,"dieSides":9,"pointsPerLevel":7.670000076293945,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"trigger-spell","spellId":804488,"withValue":1},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-22-do-over-485-800669","classId":"chronomancer","dbcSpellId":800669,"name":"Do Over","unlockLevel":10,"icon":"/assets/ui/spells/ability_crown_of_the_heavens_icon.png","sigil":"DO","description":"Do OverRank 136% of base mana 8 sec castRestores a dead ally to life with 70 health and 135 mana. Cannot be cast when in combat.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800669,"level":10,"description":"Do OverRank 136% of base mana 8 sec castRestores a dead ally to life with 70 health and 135 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]}]},{"id":"coa-22-chromies-wisdom-485-801523","classId":"chronomancer","dbcSpellId":801523,"name":"Chromie's Wisdom","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"Chromie's WisdomRank 130% of base mana Instant castShare Chromie's wisdom with an allied player, increasing their Spirit by 10. Lasts 30 min. Only one Wisdom per Chronomancer can be active.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801523:effect:0:aura:29","name":"Chromie's Wisdom (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"spirit","operation":"flat","value":10}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":4,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801523,"level":12,"description":"Chromie's WisdomRank 130% of base mana Instant castShare Chromie's wisdom with an allied player, increasing their Spirit by 10. Lasts 30 min. Only one Wisdom per Chronomancer can be active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801523:effect:0:aura:29","name":"Chromie's Wisdom (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"spirit","operation":"flat","value":10}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":4,"triggerSpellId":0}]},{"rank":5,"spellId":802830,"level":70,"description":"Chromie's WisdomRank 510% of base mana Instant castShare Chromie's wisdom with an allied player, increasing their Spirit by 50. Lasts 30 min. Only one Wisdom per Chronomancer can be active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802830:effect:0:aura:29","name":"Chromie's Wisdom (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"spirit","operation":"flat","value":50}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":4,"triggerSpellId":0}]}]},{"id":"coa-22-melt-reality-79-806335","classId":"chronomancer","dbcSpellId":806335,"name":"Melt Reality","unlockLevel":13,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MR","description":"Melt RealityRank 123% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 48+0+FroP*.23, 48+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806335:effect:0:aura:3","name":"Melt Reality (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8474897586164021,"basePoints":48,"dieSides":1,"pointsPerLevel":1.7837799787521362,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18,"ticks":10,"intervalMs":3000,"tag":"spell-806335"},{"kind":"apply-aura","aura":{"id":"coa:806335:effect:1:aura:23","name":"Melt Reality (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806335:proc:1:572851","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572851}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572851}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806335,"level":13,"description":"Melt RealityRank 123% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 48+0+FroP*.23, 48+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806335:effect:0:aura:3","name":"Melt Reality (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8474897586164021,"basePoints":48,"dieSides":1,"pointsPerLevel":1.7837799787521362,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18,"ticks":10,"intervalMs":3000,"tag":"spell-806335"},{"kind":"apply-aura","aura":{"id":"coa:806335:effect:1:aura:23","name":"Melt Reality (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806335:proc:1:572851","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572851}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572851}]},{"rank":2,"spellId":503895,"level":20,"description":"Melt RealityRank 223% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 63+0+FroP*.23, 63+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503895:effect:0:aura:3","name":"Melt Reality (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.785777709597633,"basePoints":63,"dieSides":1,"pointsPerLevel":0.9753329753875732,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":27,"ticks":10,"intervalMs":3000,"tag":"spell-503895"},{"kind":"apply-aura","aura":{"id":"coa:503895:effect:1:aura:23","name":"Melt Reality (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503895:proc:1:572851","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572851}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572851}]},{"rank":3,"spellId":503896,"level":28,"description":"Melt RealityRank 323% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 102+0+FroP*.23, 102+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503896:effect:0:aura:3","name":"Melt Reality (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1030062113621437,"basePoints":102,"dieSides":1,"pointsPerLevel":1.4388500452041626,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":10,"intervalMs":3000,"tag":"spell-503896"},{"kind":"apply-aura","aura":{"id":"coa:503896:effect:1:aura:23","name":"Melt Reality (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503896:proc:1:572851","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572851}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572851}]},{"rank":4,"spellId":503897,"level":34,"description":"Melt RealityRank 423% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 157+0+FroP*.23, 157+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503897:effect:0:aura:3","name":"Melt Reality (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.2701461031323387,"basePoints":157,"dieSides":1,"pointsPerLevel":0.8738669753074646,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":41,"ticks":10,"intervalMs":3000,"tag":"spell-503897"},{"kind":"apply-aura","aura":{"id":"coa:503897:effect:1:aura:23","name":"Melt Reality (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503897:proc:1:572851","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572851}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572851}]},{"rank":5,"spellId":503898,"level":42,"description":"Melt RealityRank 523% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 202+0+FroP*.23, 202+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503898:effect:0:aura:3","name":"Melt Reality (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.7395574140269854,"basePoints":202,"dieSides":1,"pointsPerLevel":2.2729599475860596,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":10,"intervalMs":3000,"tag":"spell-503898"},{"kind":"apply-aura","aura":{"id":"coa:503898:effect:1:aura:23","name":"Melt Reality (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503898:proc:1:572851","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572851}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572851}]},{"rank":6,"spellId":503899,"level":48,"description":"Melt RealityRank 623% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 290+0+FroP*.23, 290+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503899:effect:0:aura:3","name":"Melt Reality (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.8931978720205802,"basePoints":290,"dieSides":1,"pointsPerLevel":1.4127999544143677,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":55,"ticks":10,"intervalMs":3000,"tag":"spell-503899"},{"kind":"apply-aura","aura":{"id":"coa:503899:effect:1:aura:23","name":"Melt Reality (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503899:proc:1:572851","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572851}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572851}]},{"rank":7,"spellId":572835,"level":56,"description":"Melt RealityRank 723% of base mana 2.5 sec cast40 sec cooldownMelt the target's reality, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 336+0+FroP*.23, 336+0+ShaP*.23) Chromatic Damage every 3 sec for 30 sec. While active, periodic damage dealt to the target is replicated for 20% of the value to all enemies near them.","castMode":"cast","castTimeMs":2500,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572835:effect:0:aura:3","name":"Melt Reality (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.1560946540653427,"basePoints":336,"dieSides":1,"pointsPerLevel":2.200860023498535,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62,"ticks":10,"intervalMs":3000,"tag":"spell-572835"},{"kind":"apply-aura","aura":{"id":"coa:572835:effect:1:aura:23","name":"Melt Reality (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:572835:proc:1:572851","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572851}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572851}]}]},{"id":"coa-22-gravity-bomb-79-501820","classId":"chronomancer","dbcSpellId":501820,"name":"Gravity Bomb","unlockLevel":14,"icon":"/assets/ui/spells/spell_mage_supernova.png","sigil":"GB","description":"Gravity BombRank 236% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 74 to 85 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501820:effect:0:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501820:proc:0:801282","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801282}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801282},{"kind":"apply-aura","aura":{"id":"coa:501820:effect:1:aura:271","name":"Gravity Bomb (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":65633},{"kind":"apply-aura","aura":{"id":"coa:501820:effect:2:aura:3","name":"Gravity Bomb (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7700999975204468,"basePoints":74,"dieSides":12,"pointsPerLevel":2.3399999141693115,"bonusPowerCoefficient":0.7700999975204468,"sourceLevel":14,"maxScalingLevel":27,"ticks":1,"intervalMs":6000,"tag":"spell-501820"}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501820,"level":14,"description":"Gravity BombRank 236% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 74 to 85 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501820:effect:0:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501820:proc:0:801282","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801282}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801282},{"kind":"apply-aura","aura":{"id":"coa:501820:effect:1:aura:271","name":"Gravity Bomb (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":65633},{"kind":"apply-aura","aura":{"id":"coa:501820:effect:2:aura:3","name":"Gravity Bomb (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7700999975204468,"basePoints":74,"dieSides":12,"pointsPerLevel":2.3399999141693115,"bonusPowerCoefficient":0.7700999975204468,"sourceLevel":14,"maxScalingLevel":27,"ticks":1,"intervalMs":6000,"tag":"spell-501820"}]},{"rank":3,"spellId":501821,"level":28,"description":"Gravity BombRank 336% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 123 to 137 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501821:effect:0:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501821:proc:0:801282","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801282}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801282},{"kind":"apply-aura","aura":{"id":"coa:501821:effect:1:aura:271","name":"Gravity Bomb (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":65633},{"kind":"apply-aura","aura":{"id":"coa:501821:effect:2:aura:3","name":"Gravity Bomb (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.9728289842605591,"basePoints":123,"dieSides":15,"pointsPerLevel":3.4200000762939453,"bonusPowerCoefficient":0.9728289842605591,"sourceLevel":28,"maxScalingLevel":40,"ticks":1,"intervalMs":6000,"tag":"spell-501821"}]},{"rank":4,"spellId":501822,"level":41,"description":"Gravity BombRank 436% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 182 to 200 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501822:effect:0:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501822:proc:0:801282","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801282}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801282},{"kind":"apply-aura","aura":{"id":"coa:501822:effect:1:aura:271","name":"Gravity Bomb (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":65633},{"kind":"apply-aura","aura":{"id":"coa:501822:effect:2:aura:3","name":"Gravity Bomb (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.2092299461364746,"basePoints":182,"dieSides":19,"pointsPerLevel":5.039999961853027,"bonusPowerCoefficient":1.2092299461364746,"sourceLevel":41,"maxScalingLevel":53,"ticks":1,"intervalMs":6000,"tag":"spell-501822"}]},{"rank":5,"spellId":501823,"level":54,"description":"Gravity BombRank 536% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 295 to 317 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501823:effect:0:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501823:proc:0:801282","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801282}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801282},{"kind":"apply-aura","aura":{"id":"coa:501823:effect:1:aura:271","name":"Gravity Bomb (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":65633},{"kind":"apply-aura","aura":{"id":"coa:501823:effect:2:aura:3","name":"Gravity Bomb (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.4785799980163574,"basePoints":295,"dieSides":23,"pointsPerLevel":7.199999809265137,"bonusPowerCoefficient":1.4785799980163574,"sourceLevel":54,"maxScalingLevel":67,"ticks":1,"intervalMs":6000,"tag":"spell-501823"}]},{"rank":6,"spellId":501824,"level":68,"description":"Gravity BombRank 636% of base mana Instant cast1 min cooldownPlaces a gravity bomb on the target. After 6 sec, they explode for 447 to 474 Shadow damage and pull other nearby enemies toward their position. This spell belongs to Chromatic.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501824:effect:0:aura:23","name":"Gravity Bomb (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501824:proc:0:801282","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801282}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801282},{"kind":"apply-aura","aura":{"id":"coa:501824:effect:1:aura:271","name":"Gravity Bomb (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":65633},{"kind":"apply-aura","aura":{"id":"coa:501824:effect:2:aura:3","name":"Gravity Bomb (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.7779899835586548,"basePoints":447,"dieSides":28,"pointsPerLevel":9.899999618530273,"bonusPowerCoefficient":1.7779899835586548,"sourceLevel":68,"maxScalingLevel":80,"ticks":1,"intervalMs":6000,"tag":"spell-501824"}]}]},{"id":"coa-22-time-out-79-802229","classId":"chronomancer","dbcSpellId":802229,"name":"Time Out!","unlockLevel":14,"icon":"/assets/ui/spells/spell_nature_timestop.png","sigil":"TO","description":"Time Out!Rank 1Instant cast3 min cooldownEnter a stasis for 6 sec, instantly restoring 15% of your maximum mana and regenerating 5% of your maximum mana every 0 sec. While active, your damage taken is reduced by 50% but any direct damage taken may end the effect.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":802228,"withValue":-50},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:0:aura:87","name":"Time Out! (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:1:aura:12","name":"Time Out! (Aura 12)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802229:effect:1:aura:24","name":"Time Out! (Aura 24)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":60},{"kind":"resource","amount":15,"percentage":true}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802229,"level":14,"description":"Time Out!Rank 1Instant cast3 min cooldownEnter a stasis for 6 sec, instantly restoring 15% of your maximum mana and regenerating 5% of your maximum mana every 0 sec. While active, your damage taken is reduced by 50% but any direct damage taken may end the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":802228,"withValue":-50},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:0:aura:87","name":"Time Out! (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:1:aura:12","name":"Time Out! (Aura 12)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802229:effect:1:aura:24","name":"Time Out! (Aura 24)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":60},{"kind":"resource","amount":15,"percentage":true}]},{"rank":2,"spellId":803896,"level":24,"description":"Time Out!Rank 2Instant cast3 min cooldownEnter a stasis for 6 sec, instantly restoring 15% of your maximum mana and regenerating 5% of your maximum mana every 0 sec. While active, your damage taken is reduced by 75% but any direct damage taken may end the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":802228,"withValue":-75},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:0:aura:87","name":"Time Out! (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:1:aura:12","name":"Time Out! (Aura 12)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803896:effect:1:aura:24","name":"Time Out! (Aura 24)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":60},{"kind":"resource","amount":15,"percentage":true}]},{"rank":3,"spellId":803897,"level":34,"description":"Time Out!Rank 3Instant cast3 min cooldownEnter a stasis for 6 sec, instantly restoring 15% of your maximum mana and regenerating 5% of your maximum mana every 0 sec. While active, your damage taken is reduced by 90% but any direct damage taken may end the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":802228,"withValue":-90},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:0:aura:87","name":"Time Out! (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:1:aura:12","name":"Time Out! (Aura 12)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803897:effect:1:aura:24","name":"Time Out! (Aura 24)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":60},{"kind":"resource","amount":15,"percentage":true}]}]},{"id":"coa-22-correct-the-mistake-81-572352","classId":"chronomancer","dbcSpellId":572352,"name":"Correct the Mistake","unlockLevel":15,"icon":"/assets/ui/spells/5_heal_border.png","sigil":"CT","description":"Correct the MistakeRank 136% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 91+0+Heal*0.685704.","target":"friendly","range":{"min":0,"max":40},"radius":30,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":91,"dieSides":10,"pointsPerLevel":1.4716299772262573,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":15,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":572352,"level":15,"description":"Correct the MistakeRank 136% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 91+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":91,"dieSides":10,"pointsPerLevel":1.4716299772262573,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":15,"maxScalingLevel":22}]},{"rank":2,"spellId":572353,"level":24,"description":"Correct the MistakeRank 236% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 150+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":150,"dieSides":15,"pointsPerLevel":2.0412399768829346,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":3,"spellId":572354,"level":32,"description":"Correct the MistakeRank 336% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 203+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":203,"dieSides":24,"pointsPerLevel":2.7694098949432373,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":4,"spellId":572355,"level":40,"description":"Correct the MistakeRank 436% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 257+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":257,"dieSides":37,"pointsPerLevel":3.520250082015991,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":40,"maxScalingLevel":46}]},{"rank":5,"spellId":572356,"level":48,"description":"Correct the MistakeRank 536% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 302+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":302,"dieSides":57,"pointsPerLevel":3.137310028076172,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":48,"maxScalingLevel":56}]},{"rank":6,"spellId":572360,"level":58,"description":"Correct the MistakeRank 636% of base mana 2.5 sec castRetell the fate of party members within 30 yds, healing them for 350+0+Heal*0.685704.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5260000228881836,"basePoints":350,"dieSides":89,"pointsPerLevel":3.6969199180603027,"bonusPowerCoefficient":0.5260000228881836,"sourceLevel":58,"maxScalingLevel":66}]}]},{"id":"coa-22-sands-of-time-81-501843","classId":"chronomancer","dbcSpellId":501843,"name":"Sands of Time","unlockLevel":17,"icon":"/assets/ui/spells/inv_inscription_tarot_earthquakecard.png","sigil":"SO","description":"Sands of TimeRank 210% of base mana Instant cast20 sec cooldownInflicts 45 to 61 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","target":"hostile","range":{"min":0,"max":20},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.008427066107591,"basePoints":45,"dieSides":17,"pointsPerLevel":2.5769999027252197,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":65633},{"kind":"trigger-spell","spellId":801265},{"kind":"apply-aura","aura":{"id":"coa:801265:effect:2:aura:33","name":"Waves of Time (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501843,"level":17,"description":"Sands of TimeRank 210% of base mana Instant cast20 sec cooldownInflicts 45 to 61 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.008427066107591,"basePoints":45,"dieSides":17,"pointsPerLevel":2.5769999027252197,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":65633},{"kind":"trigger-spell","spellId":801265},{"kind":"apply-aura","aura":{"id":"coa:801265:effect:2:aura:33","name":"Waves of Time (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5}]},{"rank":3,"spellId":501844,"level":33,"description":"Sands of TimeRank 310% of base mana Instant cast20 sec cooldownInflicts 94 to 126 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.6514513674709532,"basePoints":94,"dieSides":33,"pointsPerLevel":3.872999906539917,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48},{"kind":"trigger-spell","spellId":65633},{"kind":"trigger-spell","spellId":801265},{"kind":"apply-aura","aura":{"id":"coa:801265:effect:2:aura:33","name":"Waves of Time (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5}]},{"rank":4,"spellId":501845,"level":49,"description":"Sands of TimeRank 410% of base mana Instant cast20 sec cooldownInflicts 199 to 255 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.5014635796348252,"basePoints":199,"dieSides":57,"pointsPerLevel":5.169000148773193,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":64},{"kind":"trigger-spell","spellId":65633},{"kind":"trigger-spell","spellId":801265},{"kind":"apply-aura","aura":{"id":"coa:801265:effect:2:aura:33","name":"Waves of Time (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5}]},{"rank":5,"spellId":501846,"level":65,"description":"Sands of TimeRank 510% of base mana Instant cast20 sec cooldownInflicts 390 to 478 Chromatic Damage to enemies in a 15 yd cone and reduces their movement speed by 50% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":3.5592708746592203,"basePoints":390,"dieSides":89,"pointsPerLevel":6.465000152587891,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":65633},{"kind":"trigger-spell","spellId":801265},{"kind":"apply-aura","aura":{"id":"coa:801265:effect:2:aura:33","name":"Waves of Time (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5}]}]},{"id":"coa-22-accelerated-recovery-485-501772","classId":"chronomancer","dbcSpellId":501772,"name":"Accelerated Recovery","unlockLevel":18,"icon":"/assets/ui/spells/spell_holy_healingfocus.png","sigil":"AR","description":"Accelerated RecoveryRank 218% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(26+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501772:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.37044862665311257,"basePoints":26,"dieSides":1,"pointsPerLevel":0.5930230021476746,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501772:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":804500,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501772,"level":18,"description":"Accelerated RecoveryRank 218% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(26+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501772:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.37044862665311257,"basePoints":26,"dieSides":1,"pointsPerLevel":0.5930230021476746,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501772:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":804500,"triggerSpellId":0}]},{"rank":3,"spellId":501773,"level":26,"description":"Accelerated RecoveryRank 318% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(40+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501773:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.4346444442020199,"basePoints":40,"dieSides":1,"pointsPerLevel":0.5177410244941711,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501773:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":804500,"triggerSpellId":0}]},{"rank":4,"spellId":501774,"level":34,"description":"Accelerated RecoveryRank 418% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(53+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501774:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5203465263859756,"basePoints":53,"dieSides":1,"pointsPerLevel":0.6909099817276001,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501774:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":804500,"triggerSpellId":0}]},{"rank":5,"spellId":501775,"level":42,"description":"Accelerated RecoveryRank 518% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(69+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501775:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.6255237261454264,"basePoints":69,"dieSides":1,"pointsPerLevel":0.9039180278778076,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501775:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":804500,"triggerSpellId":0}]},{"rank":6,"spellId":501776,"level":50,"description":"Accelerated RecoveryRank 618% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(82+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501776:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.6968794761559902,"basePoints":82,"dieSides":1,"pointsPerLevel":1.0778299570083618,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501776:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":804500,"triggerSpellId":0}]},{"rank":7,"spellId":501777,"level":58,"description":"Accelerated RecoveryRank 718% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(92+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501777:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.7410855848495275,"basePoints":92,"dieSides":1,"pointsPerLevel":1.212030053138733,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501777:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":804500,"triggerSpellId":0}]},{"rank":8,"spellId":501778,"level":66,"description":"Accelerated RecoveryRank 818% of base mana Instant castAccelerates the bodies natural healing process, healing the target for (15*1000/3)*(112+0+Heal*0.23) over 15 sec. Periodic healing done by this scales with your spell haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501778:effect:0:aura:8","name":"Accelerated Recovery (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.7558981881710728,"basePoints":112,"dieSides":1,"pointsPerLevel":1.08610999584198,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":74,"ticks":5,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501778:effect:1:aura:283","name":"Accelerated Recovery (Aura 283)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":283,"miscValue":804500,"triggerSpellId":0}]}]},{"id":"coa-22-fabric-of-time-81-806299","classId":"chronomancer","dbcSpellId":806299,"name":"Fabric of Time","unlockLevel":27,"icon":"/assets/ui/spells/spell_monk_diffusemagic.png","sigil":"FO","description":"Fabric of TimeRank 118% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 158+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706774},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":158,"dieSides":8,"pointsPerLevel":4.231500148773193,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":27,"maxScalingLevel":34}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806299,"level":27,"description":"Fabric of TimeRank 118% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 158+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706774},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":158,"dieSides":8,"pointsPerLevel":4.231500148773193,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":27,"maxScalingLevel":34}]},{"rank":2,"spellId":570177,"level":36,"description":"Fabric of TimeRank 218% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 218+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706774},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":218,"dieSides":11,"pointsPerLevel":3.1188700199127197,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":36,"maxScalingLevel":42}]},{"rank":3,"spellId":570178,"level":44,"description":"Fabric of TimeRank 318% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 264+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706774},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":264,"dieSides":15,"pointsPerLevel":3.4922900199890137,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":44,"maxScalingLevel":50}]},{"rank":4,"spellId":570179,"level":52,"description":"Fabric of TimeRank 418% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 288+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706774},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":288,"dieSides":21,"pointsPerLevel":3.826669931411743,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":52,"maxScalingLevel":58}]},{"rank":5,"spellId":572361,"level":60,"description":"Fabric of TimeRank 518% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 336+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706774},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":336,"dieSides":30,"pointsPerLevel":4.488999843597412,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":60,"maxScalingLevel":66}]},{"rank":6,"spellId":572362,"level":68,"description":"Fabric of TimeRank 618% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 417+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706774},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":417,"dieSides":43,"pointsPerLevel":5.575540065765381,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":68,"maxScalingLevel":74}]},{"rank":7,"spellId":572363,"level":76,"description":"Fabric of TimeRank 718% of base mana Instant cast15 sec cooldownAlter the fabric of time, healing an ally for 754+0+Heal*0.64. Your next Aeon used within 8 sec will trigger with no cooldown or cost.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706774},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"heal","coefficient":1.6100000143051147,"basePoints":754,"dieSides":60,"pointsPerLevel":14.87440013885498,"bonusPowerCoefficient":1.6100000143051147,"sourceLevel":76,"maxScalingLevel":80}]}]},{"id":"coa-22-reverse-wound-79-501810","classId":"chronomancer","dbcSpellId":501810,"name":"Reverse Wound","unlockLevel":46,"icon":"/assets/ui/spells/ability_pvp_innerrenewal.png","sigil":"RW","description":"Reverse WoundRank 731% of base mana 2.5 sec castReverse an ally's wound, healing them for 642+0+Heal*0.9.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":642,"dieSides":68,"pointsPerLevel":8.473320007324219,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":804679}],"passive":false,"source":"coa-progression","ranks":[{"rank":7,"spellId":501810,"level":46,"description":"Reverse WoundRank 731% of base mana 2.5 sec castReverse an ally's wound, healing them for 642+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":642,"dieSides":68,"pointsPerLevel":8.473320007324219,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":804679}]},{"rank":8,"spellId":501811,"level":54,"description":"Reverse WoundRank 831% of base mana 2.5 sec castReverse an ally's wound, healing them for 676+0+Heal*0.9.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":676,"dieSides":86,"pointsPerLevel":13.5,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":804679}]}]}],"necromancer":[{"id":"coa-tree-30600","classId":"necromancer","dbcSpellId":805428,"name":"Animate: Frost Wyrm","unlockLevel":1,"icon":"/assets/ui/spells/5_dragoncoldbreath_border.png","sigil":"AF","description":"Animate a Frost Wyrm that flies behind the Necromancer that blasts nearby enemies every 2 sec for 30 seconds, dealing 1500 + 14.88% frost SP + 14.88% Intellect Frost damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"summon","creatureId":50177,"coefficient":0.08,"durationMs":30000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805428,"level":1,"description":"Animate a Frost Wyrm that flies behind the Necromancer that blasts nearby enemies every 2 sec for 30 seconds, dealing 1500 + 14.88% frost SP + 14.88% Intellect Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"summon","creatureId":50177,"coefficient":0.08,"durationMs":30000}]}],"talentEntryId":30600},{"id":"coa-23-animate-zombies-84-504315","classId":"necromancer","dbcSpellId":504315,"name":"Animate: Zombies","unlockLevel":1,"icon":"/assets/ui/spells/zombiewc3.png","sigil":"AZ","description":"Animate: ZombiesRank 121% of base mana 3 sec cast15 sec cooldownAnimate 2 Zombies to aid you in combat for 15 sec. Every 3 sec, Zombies emit Zombie Plague, dealing 79+1.0 Points Per Level+SP*0.1 Plague Damage to nearby enemies.","target":"hostile","range":{"min":0,"max":0},"radius":3,"castMode":"cast","castTimeMs":3000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":525379,"withValue":2},{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":503031,"coefficient":0.08,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500991,"durationMs":100}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504315,"level":1,"description":"Animate: ZombiesRank 121% of base mana 3 sec cast15 sec cooldownAnimate 2 Zombies to aid you in combat for 15 sec. Every 3 sec, Zombies emit Zombie Plague, dealing 79+1.0 Points Per Level+SP*0.1 Plague Damage to nearby enemies.","castMode":"cast","castTimeMs":3000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":525379,"withValue":2},{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":503031,"coefficient":0.08,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500991,"durationMs":100}]},{"rank":2,"spellId":525378,"level":30,"description":"Animate: ZombiesRank 223% of base mana 3 sec cast15 sec cooldownAnimate 3 Zombies to aid you in combat for 15 sec. Every 3 sec, Zombies emit Zombie Plague, dealing 79+1.0 Points Per Level+SP*0.1 Plague Damage to nearby enemies.","castMode":"cast","castTimeMs":3000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":525379,"withValue":3},{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":503031,"coefficient":0.08,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500991,"durationMs":100}]},{"rank":3,"spellId":525381,"level":51,"description":"Animate: ZombiesRank 324% of base mana 3 sec cast15 sec cooldownAnimate 4 Zombies to aid you in combat for 10 sec. Every 3 sec, Zombies emit Zombie Plague, dealing 79+1.0 Points Per Level+SP*0.1 Plague Damage to nearby enemies.","castMode":"cast","castTimeMs":3000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":525379,"withValue":4},{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":503031,"coefficient":0.08,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500991,"durationMs":100}]}]},{"id":"coa-tree-29774","classId":"necromancer","dbcSpellId":802121,"name":"Bone Tithe","unlockLevel":1,"icon":"/assets/ui/spells/ossuary_bond.png","sigil":"BT","description":"Siphon life from your undead minions, sacrificing 40% of their health to grant yourself an absorb shield equal to half of the health stolen for 20 seconds. Usable while stunned.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":77,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802121,"level":1,"description":"Siphon life from your undead minions, sacrificing 40% of their health to grant yourself an absorb shield equal to half of the health stolen for 20 seconds. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":77,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":29774},{"id":"coa-tree-6555","classId":"necromancer","dbcSpellId":300945,"name":"Cobalt-Plated Armor","unlockLevel":1,"icon":"/assets/ui/spells/nhi_frost_knight_border.png","sigil":"CP","description":"Increases the Armor of your Undead minions by 1200, scaling with your level.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300945:effect:0:aura:22","name":"Cobalt-Plated Armor (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300945,"level":1,"description":"Increases the Armor of your Undead minions by 1200, scaling with your level.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300945:effect:0:aura:22","name":"Cobalt-Plated Armor (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":6555},{"id":"coa-tree-33764","classId":"necromancer","dbcSpellId":504050,"name":"Command: Blight","unlockLevel":1,"icon":"/assets/ui/spells/spell_necro_deathrift.png","sigil":"CB","description":"Command your Decaying Colossus to blight the ground in a 10 yd radius beneath it, reducing healing received by -60% for enemies inside for 20 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504050,"level":1,"description":"Command your Decaying Colossus to blight the ground in a 10 yd radius beneath it, reducing healing received by -60% for enemies inside for 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":33764},{"id":"coa-tree-5314","classId":"necromancer","dbcSpellId":504316,"name":"Command: Hook","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_hook_01.png","sigil":"CH","description":"Command your Abominations to hook an enemy to their location, slowing their movement speed to a halt for 2 seconds.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"pull","toward":"caster"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500991}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504316,"level":1,"description":"Command your Abominations to hook an enemy to their location, slowing their movement speed to a halt for 2 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"pull","toward":"caster"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500991}]}],"talentEntryId":5314},{"id":"coa-23-command-skeletal-warriors-475-504334","classId":"necromancer","dbcSpellId":504334,"name":"Command: Skeletal Warriors","unlockLevel":1,"icon":"/assets/ui/spells/spell_deathknight_festering_strike.png","sigil":"CS","description":"Command: Skeletal WarriorsRank 130 Runic Power Instant castCommand your Skeletal Warriors to strike up to 2 enemies in a frontal arc, dealing Weapon Damage plus 1+SP*.35+AP*0.35 Physical Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":500991,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504334,"level":1,"description":"Command: Skeletal WarriorsRank 130 Runic Power Instant castCommand your Skeletal Warriors to strike up to 2 enemies in a frontal arc, dealing Weapon Damage plus 1+SP*.35+AP*0.35 Physical Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":500991,"durationMs":0}]}]},{"id":"coa-tree-12381","classId":"necromancer","dbcSpellId":707739,"name":"Corpse Commander","unlockLevel":1,"icon":"/assets/ui/spells/icon_upgradestone_undead_rare.png","sigil":"CC","description":"Reduces the Runic Power cost of Corpse Explosion by -20.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707739:effect:0:aura:107","name":"Corpse Commander (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707739,"level":1,"description":"Reduces the Runic Power cost of Corpse Explosion by -20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707739:effect:0:aura:107","name":"Corpse Commander (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":12381},{"id":"coa-tree-34980","classId":"necromancer","dbcSpellId":803772,"name":"Create Frozen Reliquary","unlockLevel":1,"icon":"/assets/ui/spells/frozenurn.png","sigil":"CF","description":"Create 1 Frozen Reliquary that restores 30% of your missing mana. Allies may only use a Frozen Reliquary once per minute.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"utility","action":"create-item","effectType":24,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803772,"level":1,"description":"Create 1 Frozen Reliquary that restores 30% of your missing mana. Allies may only use a Frozen Reliquary once per minute.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"utility","action":"create-item","effectType":24,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}],"talentEntryId":34980},{"id":"coa-tree-4034","classId":"necromancer","dbcSpellId":92121,"name":"Crypt Plague","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_plaguecloud.png","sigil":"CP","description":"Level 10 Passive Damage dealt by Crypt Swarm now applies 1 stack of Crypt Plague and Lichfrost applies 2 stacks.Crypt Plague (Damage)Deals 2 + 6% SP Plague Damage every 2 sec for 10 seconds, stacking 10 times. Additional applications do not refresh duration.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92121:effect:0:aura:42","name":"Crypt Plague (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:92121:proc:0:570132","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":570132}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":570132},{"kind":"apply-aura","aura":{"id":"coa:92121:effect:1:aura:42","name":"Crypt Plague (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:92121:proc:1:573131","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573131}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":573131},{"kind":"apply-aura","aura":{"id":"coa:92121:effect:2:aura:286","name":"Crypt Plague (Aura 286)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":286,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92121,"level":1,"description":"Level 10 Passive Damage dealt by Crypt Swarm now applies 1 stack of Crypt Plague and Lichfrost applies 2 stacks.Crypt Plague (Damage)Deals 2 + 6% SP Plague Damage every 2 sec for 10 seconds, stacking 10 times. Additional applications do not refresh duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92121:effect:0:aura:42","name":"Crypt Plague (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:92121:proc:0:570132","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":570132}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":570132},{"kind":"apply-aura","aura":{"id":"coa:92121:effect:1:aura:42","name":"Crypt Plague (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:92121:proc:1:573131","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573131}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":573131},{"kind":"apply-aura","aura":{"id":"coa:92121:effect:2:aura:286","name":"Crypt Plague (Aura 286)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":286,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4034},{"id":"coa-tree-33751","classId":"necromancer","dbcSpellId":300233,"name":"Dead Man Walking","unlockLevel":1,"icon":"/assets/ui/spells/inv_plate_pvpdeathknight_g_01_boot.png","sigil":"DM","description":"Reduces the duration of root and slow effects against you by -25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300233:effect:0:aura:232","name":"Dead Man Walking (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300233:effect:1:aura:232","name":"Dead Man Walking (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300233,"level":1,"description":"Reduces the duration of root and slow effects against you by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300233:effect:0:aura:232","name":"Dead Man Walking (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300233:effect:1:aura:232","name":"Dead Man Walking (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":33751},{"id":"coa-tree-33740","classId":"necromancer","dbcSpellId":300580,"name":"Deadly Defense","unlockLevel":1,"icon":"/assets/ui/spells/custom_04_summon_skeleton_army_border.png","sigil":"DD","description":"Each of your summons now reduces your damage taken by 1%, up to a maximum of 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300580:effect:0:aura:87","name":"Deadly Defense (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300580:effect:1:aura:226","name":"Deadly Defense (Aura 226)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300580,"level":1,"description":"Each of your summons now reduces your damage taken by 1%, up to a maximum of 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300580:effect:0:aura:87","name":"Deadly Defense (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300580:effect:1:aura:226","name":"Deadly Defense (Aura 226)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":33740},{"id":"coa-tree-29788","classId":"necromancer","dbcSpellId":807796,"name":"Death's Due","unlockLevel":1,"icon":"/assets/ui/spells/nhi_deathpickaxe_border.png","sigil":"DS","description":"Force a target to accept the reality of death, removing any invulnerability or immunity effects from them and cursing them for 5 seconds. If the target's health is below 20% at the end of duration, they take 800 + 200% SP Shadowfrost Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1000,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"dispel-mechanic","mechanic":29,"maxCount":100},{"kind":"apply-aura","aura":{"id":"coa:807796:effect:1:aura:227","name":"Death's Due (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:807796:proc:1:808016","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":808016}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":808016},{"kind":"dispel-mechanic","mechanic":25,"maxCount":100}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":807796,"level":1,"description":"Force a target to accept the reality of death, removing any invulnerability or immunity effects from them and cursing them for 5 seconds. If the target's health is below 20% at the end of duration, they take 800 + 200% SP Shadowfrost Damage.","castMode":"cast","castTimeMs":1000,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"dispel-mechanic","mechanic":29,"maxCount":100},{"kind":"apply-aura","aura":{"id":"coa:807796:effect:1:aura:227","name":"Death's Due (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:807796:proc:1:808016","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":808016}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":808016},{"kind":"dispel-mechanic","mechanic":25,"maxCount":100}]}],"talentEntryId":29788},{"id":"coa-23-disciple-of-kelthuzad-none-560616","classId":"necromancer","dbcSpellId":560616,"name":"Disciple of Kel'thuzad","unlockLevel":1,"icon":"/assets/ui/spells/inv_belt_plate_raiddeathknightmythic_q_01.png","sigil":"DO","description":"Disciple of Kel'thuzadRank 2Increases your spell haste by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560616:effect:0:aura:216","name":"Disciple of Kel'thuzad (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560616,"level":1,"description":"Disciple of Kel'thuzadRank 2Increases your spell haste by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560616:effect:0:aura:216","name":"Disciple of Kel'thuzad (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-33784","classId":"necromancer","dbcSpellId":560615,"name":"Disciple of Kel'thuzad","unlockLevel":1,"icon":"/assets/ui/spells/inv_belt_plate_raiddeathknightmythic_q_01.png","sigil":"DO","description":"Disciple of Kel'thuzadRank 1Increases your spell haste by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560615:effect:0:aura:216","name":"Disciple of Kel'thuzad (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560615,"level":1,"description":"Disciple of Kel'thuzadRank 1Increases your spell haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560615:effect:0:aura:216","name":"Disciple of Kel'thuzad (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":560616,"level":1,"description":"Disciple of Kel'thuzadRank 2Increases your spell haste by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560616:effect:0:aura:216","name":"Disciple of Kel'thuzad (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":33784},{"id":"coa-tree-29244","classId":"necromancer","dbcSpellId":680388,"name":"Fetid Ward","unlockLevel":1,"icon":"/assets/ui/spells/inv_icon_shadowcouncilorb_green.png","sigil":"FW","description":"Activate a Fetid Ward on yourself and your Undead minions for 30 minutes. While active, 30% of your damage dealt heals you and your minions, split evenly amongst them, and healing received is increased by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680388:effect:0:aura:354","name":"Fetid Ward (Aura 354)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":681463},{"kind":"apply-aura","aura":{"id":"coa:680388:effect:1:aura:118","name":"Fetid Ward (Aura 118)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680388,"level":1,"description":"Activate a Fetid Ward on yourself and your Undead minions for 30 minutes. While active, 30% of your damage dealt heals you and your minions, split evenly amongst them, and healing received is increased by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680388:effect:0:aura:354","name":"Fetid Ward (Aura 354)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":681463},{"kind":"apply-aura","aura":{"id":"coa:680388:effect:1:aura:118","name":"Fetid Ward (Aura 118)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":29244},{"id":"coa-tree-33732","classId":"necromancer","dbcSpellId":804371,"name":"Foul Invocation","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_festergutrotface.png","sigil":"FI","description":"Transform into an undead monstrosity for 20 seconds, increasing your maximum health by 30%. While transformed you are immune to Fear, Sleep, Charm, and Disease effects.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804371:effect:0:aura:56","name":"Foul Invocation (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":444914,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804371:effect:1:aura:133","name":"Foul Invocation (Aura 133)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804371:effect:2:aura:79","name":"Foul Invocation (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804371,"level":1,"description":"Transform into an undead monstrosity for 20 seconds, increasing your maximum health by 30%. While transformed you are immune to Fear, Sleep, Charm, and Disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804371:effect:0:aura:56","name":"Foul Invocation (Aura 56)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":444914,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804371:effect:1:aura:133","name":"Foul Invocation (Aura 133)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804371:effect:2:aura:79","name":"Foul Invocation (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":33732},{"id":"coa-tree-29520","classId":"necromancer","dbcSpellId":301198,"name":"Game of Bones","unlockLevel":1,"icon":"/assets/ui/spells/icon_petfamily_undead.png","sigil":"GO","description":"Reduces the cooldown of your Champion spells by -60 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301198:effect:0:aura:107","name":"Game of Bones (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301198,"level":1,"description":"Reduces the cooldown of your Champion spells by -60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301198:effect:0:aura:107","name":"Game of Bones (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":29520},{"id":"coa-tree-29787","classId":"necromancer","dbcSpellId":805369,"name":"Glacial Tap","unlockLevel":1,"icon":"/assets/ui/spells/_skullcurse2_blue.png","sigil":"GT","description":"Tap into necrotic energies, instantly regenerating 30 Runic Power.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"resource","amount":300}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805369,"level":1,"description":"Tap into necrotic energies, instantly regenerating 30 Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"resource","amount":300}]}],"talentEntryId":29787},{"id":"coa-tree-29865","classId":"necromancer","dbcSpellId":704715,"name":"Gravedigger","unlockLevel":1,"icon":"/assets/ui/spells/achievement_bg_xkills_avgraveyard.png","sigil":"GR","description":"Reduces the cast time of Sacrifice Undead by -0.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704715:effect:0:aura:107","name":"Gravedigger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704715,"level":1,"description":"Reduces the cast time of Sacrifice Undead by -0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704715:effect:0:aura:107","name":"Gravedigger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":29865},{"id":"coa-tree-6885","classId":"necromancer","dbcSpellId":300748,"name":"Hulking Hordes","unlockLevel":1,"icon":"/assets/ui/spells/uico_unholy_spell_08_border.png","sigil":"HH","description":"Increases your maximum health and the maximum health of your summons by 5%.","target":"self","range":{"min":0,"max":0},"radius":50,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300748:effect:0:aura:133","name":"Hulking Hordes (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300748:effect:1:aura:133","name":"Hulking Hordes (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300748,"level":1,"description":"Increases your maximum health and the maximum health of your summons by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300748:effect:0:aura:133","name":"Hulking Hordes (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300748:effect:1:aura:133","name":"Hulking Hordes (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":301326,"level":1,"description":"Increases your maximum health and the maximum health of your summons by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301326:effect:0:aura:133","name":"Hulking Hordes (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301326:effect:1:aura:133","name":"Hulking Hordes (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.12}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6885},{"id":"coa-tree-5781","classId":"necromancer","dbcSpellId":704713,"name":"Lich Commander","unlockLevel":1,"icon":"/assets/ui/spells/inv_7af_deathknight_frostmournefragment.png","sigil":"LC","description":"Reduces the Runic Power cost of your Command spells by -5.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704713:effect:0:aura:107","name":"Lich Commander (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704713,"level":1,"description":"Reduces the Runic Power cost of your Command spells by -5.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704713:effect:0:aura:107","name":"Lich Commander (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":5781},{"id":"coa-23-lichfrost-83-801722","classId":"necromancer","dbcSpellId":801722,"name":"Lichfrost","unlockLevel":1,"icon":"/assets/ui/spells/artifactability_frostmage_ebonbolt.png","sigil":"LI","description":"LichfrostRank 113% of base mana 1.5 sec castUnleash a shard of frozen decay at an enemy, dealing 15+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 3 sec, and generating Runic Power.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6000000238418579,"basePoints":15,"dieSides":6,"pointsPerLevel":3.2823500633239746,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":4},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:801722:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":3000,"magnitude":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801722,"level":1,"description":"LichfrostRank 113% of base mana 1.5 sec castUnleash a shard of frozen decay at an enemy, dealing 15+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 3 sec, and generating Runic Power.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6000000238418579,"basePoints":15,"dieSides":6,"pointsPerLevel":3.2823500633239746,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":4},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:801722:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":3000,"magnitude":0.35}]},{"rank":2,"spellId":501969,"level":6,"description":"LichfrostRank 213% of base mana 1.8 sec castUnleash a shard of frozen decay at an enemy, dealing 35+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 3 sec, and generating Runic Power.","castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5671746011764284,"basePoints":28,"dieSides":6,"pointsPerLevel":0.871999979019165,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":10},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501969:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":3000,"magnitude":0.35}]},{"rank":3,"spellId":501970,"level":12,"description":"LichfrostRank 315% of base mana 2 sec castUnleash a shard of frozen decay at an enemy, dealing 66+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 4 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7269135816597644,"basePoints":45,"dieSides":5,"pointsPerLevel":0.9900000095367432,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501970:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.35}]},{"rank":4,"spellId":501971,"level":18,"description":"LichfrostRank 415% of base mana 2.3 sec castUnleash a shard of frozen decay at an enemy, dealing 102+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 4 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2300,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.1595959422564266,"basePoints":66,"dieSides":5,"pointsPerLevel":2.5999999046325684,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501971:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.35}]},{"rank":5,"spellId":501972,"level":24,"description":"LichfrostRank 515% of base mana 2.3 sec castUnleash a shard of frozen decay at an enemy, dealing 169+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 4 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2300,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3179487081674428,"basePoints":92,"dieSides":9,"pointsPerLevel":2.424999952316284,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501972:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.35}]},{"rank":6,"spellId":501973,"level":30,"description":"LichfrostRank 615% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 203+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8111111005147298,"basePoints":140,"dieSides":12,"pointsPerLevel":3.299999952316284,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501973:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.35}]},{"rank":7,"spellId":501974,"level":36,"description":"LichfrostRank 715% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 290+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.1653594659044852,"basePoints":183,"dieSides":15,"pointsPerLevel":3.924999952316284,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501974:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.35}]},{"rank":8,"spellId":501975,"level":42,"description":"LichfrostRank 815% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 346+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.673099462051838,"basePoints":237,"dieSides":17,"pointsPerLevel":5.050000190734863,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501975:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.35}]},{"rank":9,"spellId":501976,"level":48,"description":"LichfrostRank 915% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 402+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.1365079122876365,"basePoints":290,"dieSides":21,"pointsPerLevel":6.099999904632568,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501976:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.35}]},{"rank":10,"spellId":501977,"level":54,"description":"LichfrostRank 1015% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 490+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 5 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.6978261367134424,"basePoints":353,"dieSides":24,"pointsPerLevel":7.425000190734863,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501977:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.35}]},{"rank":11,"spellId":501978,"level":60,"description":"LichfrostRank 1115% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 569+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 6 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.7688880411783856,"basePoints":469,"dieSides":29,"pointsPerLevel":6.083330154418945,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501978:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.35}]},{"rank":12,"spellId":501979,"level":68,"description":"LichfrostRank 1215% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 623+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 6 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":515,"dieSides":30,"pointsPerLevel":7.516670227050781,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501979:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.35}]},{"rank":13,"spellId":501980,"level":76,"description":"LichfrostRank 1315% of base mana 2.5 sec castUnleash a shard of frozen decay at an enemy, dealing 702+0+FroP*.86989416 Frost damage, slowing their movement speed by 35% for 6 sec, and generating Runic Power.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":616,"dieSides":35,"pointsPerLevel":13.850000381469727,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":804112},{"kind":"resource","amount":62},{"kind":"apply-aura","aura":{"id":"coa:501980:effect:2:aura:33","name":"Lichfrost (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.35}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.35}]}]},{"id":"coa-tree-30833","classId":"necromancer","dbcSpellId":302888,"name":"Living Dead","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_deadwindpass.png","sigil":"LD","description":"Reduces the mana cost of Lichfrost and Crypt Swarm by -10%. Blight now refunds 25% of its base mana cost if it lasts the full duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:302888:effect:0:aura:108","name":"Living Dead (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:302888:effect:1:aura:107","name":"Living Dead (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.07}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":302888,"level":1,"description":"Reduces the mana cost of Lichfrost and Crypt Swarm by -10%. Blight now refunds 25% of its base mana cost if it lasts the full duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:302888:effect:0:aura:108","name":"Living Dead (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:302888:effect:1:aura:107","name":"Living Dead (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.07}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":302920,"level":1,"description":"Reduces the mana cost of Lichfrost and Crypt Swarm by -20%. Blight now refunds 25% of its base mana cost if it lasts the full duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:302920:effect:0:aura:108","name":"Living Dead (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:302920:effect:1:aura:107","name":"Living Dead (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.14}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":30833},{"id":"coa-tree-33778","classId":"necromancer","dbcSpellId":803741,"name":"Mass Grave","unlockLevel":1,"icon":"/assets/ui/spells/spell_necro_deathlyecho.png","sigil":"MG","description":"Transform up to 5 nearby enemies into a ghoul, fearing them for 40 seconds (8). Only affects Humanoids. While above 50 Runic Power this spell is instant cast.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803741:effect:0:aura:7","name":"Mass Grave (Aura 7)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803741:effect:1:aura:56","name":"Mass Grave (Aura 56)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":570,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803741,"level":1,"description":"Transform up to 5 nearby enemies into a ghoul, fearing them for 40 seconds (8). Only affects Humanoids. While above 50 Runic Power this spell is instant cast.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803741:effect:0:aura:7","name":"Mass Grave (Aura 7)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803741:effect:1:aura:56","name":"Mass Grave (Aura 56)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":570,"triggerSpellId":0}]}],"talentEntryId":33778},{"id":"coa-23-mortification-82-704709","classId":"necromancer","dbcSpellId":704709,"name":"Mortification","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_cripple.png","sigil":"MO","description":"MortificationRank 1Ray of Rot now increases the damage of your diseases against the target by 25% while channeling.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704709:effect:0:aura:107","name":"Mortification (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704709,"level":1,"description":"MortificationRank 1Ray of Rot now increases the damage of your diseases against the target by 25% while channeling.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704709:effect:0:aura:107","name":"Mortification (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]},{"rank":2,"spellId":704710,"level":1,"description":"MortificationRank 2Ray of Rot now increases the damage of your diseases against the target by 50% while channeling.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704710:effect:0:aura:107","name":"Mortification (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}]},{"id":"coa-tree-33780","classId":"necromancer","dbcSpellId":560622,"name":"Naxxramas Prodigy","unlockLevel":1,"icon":"/assets/ui/spells/inv_mummypet.png","sigil":"NP","description":"Increases your Shadow and Frost resistances by 0.5 per level.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560622:effect:0:aura:83","name":"Naxxramas Prodigy (Aura 83)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":83,"miscValue":48,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560622,"level":1,"description":"Increases your Shadow and Frost resistances by 0.5 per level.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560622:effect:0:aura:83","name":"Naxxramas Prodigy (Aura 83)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":83,"miscValue":48,"triggerSpellId":0}]}],"talentEntryId":33780},{"id":"coa-tree-31143","classId":"necromancer","dbcSpellId":704729,"name":"Ner'zhul's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/achievement_raid_torghast_shadowscourge_prisonofnerzhul.png","sigil":"NZ","description":"Increases your maximum Runic Power by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704729:effect:0:aura:132","name":"Ner'zhul's Blessing (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":6,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704729,"level":1,"description":"Increases your maximum Runic Power by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704729:effect:0:aura:132","name":"Ner'zhul's Blessing (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":6,"triggerSpellId":0}]}],"talentEntryId":31143},{"id":"coa-tree-6897","classId":"necromancer","dbcSpellId":531128,"name":"Overwhelming Force","unlockLevel":1,"icon":"/assets/ui/spells/nhi_raisedead_border.png","sigil":"OF","description":"Damage dealt by your Undead minions now has a 5% chance to restore 2 Runic Power and 2% of your maximum mana.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:531128:effect:0:aura:42","name":"Overwhelming Force (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:531128:proc:0:531131","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":531131}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":42,"miscValue":0,"triggerSpellId":531131}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":531128,"level":1,"description":"Damage dealt by your Undead minions now has a 5% chance to restore 2 Runic Power and 2% of your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:531128:effect:0:aura:42","name":"Overwhelming Force (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:531128:proc:0:531131","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":531131}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":42,"miscValue":0,"triggerSpellId":531131}]}],"talentEntryId":6897},{"id":"coa-23-plaguestorm-82-801939","classId":"necromancer","dbcSpellId":801939,"name":"Plaguestorm","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathknight_necroticaura.png","sigil":"PL","description":"PlaguestormRank 120% of base mana 2 sec cast2 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-801939-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801939,"level":1,"description":"PlaguestormRank 120% of base mana 2 sec cast2 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-801939-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":501909,"level":9,"description":"PlaguestormRank 220% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501909-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501910,"level":17,"description":"PlaguestormRank 320% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501910-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501911,"level":25,"description":"PlaguestormRank 420% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501911-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501912,"level":33,"description":"PlaguestormRank 520% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501912-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501913,"level":41,"description":"PlaguestormRank 620% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501913-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501914,"level":49,"description":"PlaguestormRank 720% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501914-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501915,"level":57,"description":"PlaguestormRank 820% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501915-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501916,"level":65,"description":"PlaguestormRank 920% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501916-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501917,"level":73,"description":"PlaguestormRank 1020% of base mana 2 sec cast5 min cooldownInstantly applies the Flesh to Worms, Harvest Plague, Spectral Decay and Black Death Diseases to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501917-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-6886","classId":"necromancer","dbcSpellId":560595,"name":"Putrid Summoner","unlockLevel":1,"icon":"/assets/ui/spells/_d3wallofzombies.png","sigil":"PS","description":"Each Undead Stance now provides an additional bonus: Undead: Assault: Increases your critical strike chance against Humanoids by 5%. Undead: Protect: Reduces your threat generated by -75%. Undead: Pacify: Reduces your damage taken by -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560595:effect:0:aura:107","name":"Putrid Summoner (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560595:effect:1:aura:107","name":"Putrid Summoner (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560595:effect:2:aura:107","name":"Putrid Summoner (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.75}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560595,"level":1,"description":"Each Undead Stance now provides an additional bonus: Undead: Assault: Increases your critical strike chance against Humanoids by 5%. Undead: Protect: Reduces your threat generated by -75%. Undead: Pacify: Reduces your damage taken by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560595:effect:0:aura:107","name":"Putrid Summoner (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560595:effect:1:aura:107","name":"Putrid Summoner (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560595:effect:2:aura:107","name":"Putrid Summoner (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.75}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":6886},{"id":"coa-tree-29364","classId":"necromancer","dbcSpellId":500335,"name":"Raise: Abomination","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_horde_abomination.png","sigil":"RA","description":"Raise an Abomination to aid you in combat, occupying 3 Life Force. It is surrounded by a disease cloud, dealing 9 + 25% SP Nature damage to enemies when they deal damage and reducing their attack speed by -20% for 15 seconds. Command: Instantly unleashes an empowered disease cloud around it.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":67,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":50068,"coefficient":0.08,"durationMs":1000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500335,"level":1,"description":"Raise an Abomination to aid you in combat, occupying 3 Life Force. It is surrounded by a disease cloud, dealing 9 + 25% SP Nature damage to enemies when they deal damage and reducing their attack speed by -20% for 15 seconds. Command: Instantly unleashes an empowered disease cloud around it.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":67,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":50068,"coefficient":0.08,"durationMs":1000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":29364},{"id":"coa-tree-33777","classId":"necromancer","dbcSpellId":504861,"name":"Raise: Banshee","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_horde_banshee.png","sigil":"RB","description":"Raise a Banshee to aid you in combat, occupying 2 Life Force. It will channel on your target, dealing damage and draining their mana over time. Command: Drains 10% of your target's mana (up to a maximum of 20% of their own maximum mana) and deals Frost damage equal to the mana drained.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":500650,"coefficient":0.08,"durationMs":1000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504861,"level":1,"description":"Raise a Banshee to aid you in combat, occupying 2 Life Force. It will channel on your target, dealing damage and draining their mana over time. Command: Drains 10% of your target's mana (up to a maximum of 20% of their own maximum mana) and deals Frost damage equal to the mana drained.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":500650,"coefficient":0.08,"durationMs":1000}]}],"talentEntryId":33777},{"id":"coa-tree-7348","classId":"necromancer","dbcSpellId":500989,"name":"Raise: Decaying Colossus","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_grimbatol_drahga_the_shadowburner.png","sigil":"RD","description":"Raise a Decaying Colossus to aid you in combat, occupying 3 Life Force. While active, 25% of all damage taken by the caster is taken by the Decaying Colossus. Command: Unleash a powerful attack dealing Weapon Damage plus 100 to all enemies in front of it.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":69,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":50115,"coefficient":0.08,"durationMs":1000},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500989,"level":1,"description":"Raise a Decaying Colossus to aid you in combat, occupying 3 Life Force. While active, 25% of all damage taken by the caster is taken by the Decaying Colossus. Command: Unleash a powerful attack dealing Weapon Damage plus 100 to all enemies in front of it.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":69,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":50115,"coefficient":0.08,"durationMs":1000},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":7348},{"id":"coa-tree-31048","classId":"necromancer","dbcSpellId":707670,"name":"Reclaimed Life","unlockLevel":1,"icon":"/assets/ui/spells/_calltoarms_forsaken_green.png","sigil":"RL","description":"Reduces the cast time of your Raise spells by -15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707670:effect:0:aura:108","name":"Reclaimed Life (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707670,"level":1,"description":"Reduces the cast time of your Raise spells by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707670:effect:0:aura:108","name":"Reclaimed Life (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":31048},{"id":"coa-tree-34981","classId":"necromancer","dbcSpellId":704721,"name":"Study of Death","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_book_06.png","sigil":"SO","description":"When you cast Unholy Frenzy you now summon 3 Greater Zombies to aid you in combat for 14 seconds. Damage dealt by your Undead minions now reduces the cooldown of Unholy Frenzy by -0.5 sec.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704721:effect:0:aura:42","name":"Study of Death (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","procs":[{"id":"coa:704721:proc:0:302597","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":302597}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":42,"miscValue":0,"triggerSpellId":302597},{"kind":"apply-aura","aura":{"id":"coa:704721:effect:1:aura:4","name":"Study of Death (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"enrage"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704721,"level":1,"description":"When you cast Unholy Frenzy you now summon 3 Greater Zombies to aid you in combat for 14 seconds. Damage dealt by your Undead minions now reduces the cooldown of Unholy Frenzy by -0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704721:effect:0:aura:42","name":"Study of Death (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","procs":[{"id":"coa:704721:proc:0:302597","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":302597}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":42,"miscValue":0,"triggerSpellId":302597},{"kind":"apply-aura","aura":{"id":"coa:704721:effect:1:aura:4","name":"Study of Death (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"enrage"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34981},{"id":"coa-tree-4036","classId":"necromancer","dbcSpellId":92123,"name":"Summoning Adept","unlockLevel":1,"icon":"/assets/ui/spells/_undead_03.png","sigil":"SA","description":"Level 10 Passive Increases your maximum Life Force by 1.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92123:effect:0:aura:107","name":"Summoning Adept (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92123,"level":1,"description":"Level 10 Passive Increases your maximum Life Force by 1.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92123:effect:0:aura:107","name":"Summoning Adept (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}]}],"talentEntryId":4036},{"id":"coa-tree-29196","classId":"necromancer","dbcSpellId":705752,"name":"Tears of Lordaeron","unlockLevel":1,"icon":"/assets/ui/spells/warlock_siphonlife.png","sigil":"TO","description":"Direct critical strikes regenerate 3% of your maximum mana and 9% of your maximum runic power. Periodic critical strikes regenerate 1% of your maximum mana.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705752:effect:0:aura:42","name":"Tears of Lordaeron (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705752:proc:0:705753","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705753}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":705753},{"kind":"apply-aura","aura":{"id":"coa:705752:effect:1:aura:107","name":"Tears of Lordaeron (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705752,"level":1,"description":"Direct critical strikes regenerate 3% of your maximum mana and 9% of your maximum runic power. Periodic critical strikes regenerate 1% of your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705752:effect:0:aura:42","name":"Tears of Lordaeron (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705752:proc:0:705753","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705753}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":705753},{"kind":"apply-aura","aura":{"id":"coa:705752:effect:1:aura:107","name":"Tears of Lordaeron (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":29196},{"id":"coa-tree-4035","classId":"necromancer","dbcSpellId":92122,"name":"Tundra Warriors","unlockLevel":1,"icon":"/assets/ui/spells/wc3lichoriginal.png","sigil":"TW","description":"Level 10 Passive Casting any spell now has a 25% chance to grant you Tundra Warriors.Tundra Warriors (Proc)For 10 seconds, the critical strike chance of your Undead minions is increased by 4%, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92122:effect:0:aura:42","name":"Tundra Warriors (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92122:proc:0:707421","triggers":["crit","cast"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707421}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707421}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92122,"level":1,"description":"Level 10 Passive Casting any spell now has a 25% chance to grant you Tundra Warriors.Tundra Warriors (Proc)For 10 seconds, the critical strike chance of your Undead minions is increased by 4%, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92122:effect:0:aura:42","name":"Tundra Warriors (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92122:proc:0:707421","triggers":["crit","cast"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707421}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707421}]}],"talentEntryId":4035},{"id":"coa-tree-6458","classId":"necromancer","dbcSpellId":300241,"name":"Vampiric Aura","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_vampiricaura.png","sigil":"VA","description":"While you are below 50% health, your Undead minions now heal you for 10% of their damage dealt.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300241:effect:0:aura:4","name":"Vampiric Aura (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300241:effect:1:aura:23","name":"Vampiric Aura (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300241:proc:1:560607","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560607}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":560607}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300241,"level":1,"description":"While you are below 50% health, your Undead minions now heal you for 10% of their damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300241:effect:0:aura:4","name":"Vampiric Aura (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300241:effect:1:aura:23","name":"Vampiric Aura (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300241:proc:1:560607","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560607}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":560607}]}],"talentEntryId":6458},{"id":"coa-tree-33733","classId":"necromancer","dbcSpellId":301333,"name":"Winds of Northrend","unlockLevel":1,"icon":"/assets/ui/spells/spell_ice_lament.png","sigil":"WO","description":"Increases the amount slowed by Lichfrost by -15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301333:effect:0:aura:107","name":"Winds of Northrend (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301333,"level":1,"description":"Increases the amount slowed by Lichfrost by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301333:effect:0:aura:107","name":"Winds of Northrend (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":33733},{"id":"necromancer-crypt-swarm","classId":"necromancer","dbcSpellId":500965,"name":"Crypt Swarm","unlockLevel":4,"icon":"/assets/ui/spells/spell_shadow_carrionswarm.png","sigil":"CS","description":"Crypt SwarmRank 117% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 24 Shadow damage and generating Runic Power over 3 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500965:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500965:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:500965:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500965:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500965:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500965,"level":4,"description":"Crypt SwarmRank 117% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 24 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500965:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500965:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:500965:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500965:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500965:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":2,"spellId":501880,"level":12,"description":"Crypt SwarmRank 217% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 40 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501880:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501880:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501880:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501880:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501880:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":3,"spellId":501881,"level":20,"description":"Crypt SwarmRank 317% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 75 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501881:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501881:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501881:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501881:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501881:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":4,"spellId":501882,"level":26,"description":"Crypt SwarmRank 417% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 114 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501882:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501882:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501882:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501882:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501882:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":5,"spellId":501883,"level":34,"description":"Crypt SwarmRank 517% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 150 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501883:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501883:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501883:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501883:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501883:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":6,"spellId":501884,"level":40,"description":"Crypt SwarmRank 617% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 192 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501884:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501884:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501884:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501884:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501884:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":7,"spellId":501885,"level":48,"description":"Crypt SwarmRank 717% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 276 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501885:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501885:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501885:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501885:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501885:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":8,"spellId":501886,"level":54,"description":"Crypt SwarmRank 817% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 342 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501886:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501886:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501886:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501886:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501886:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":9,"spellId":501887,"level":62,"description":"Crypt SwarmRank 917% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 390 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501887:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501887:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501887:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501887:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501887:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]},{"rank":10,"spellId":501888,"level":73,"description":"Crypt SwarmRank 1017% of base mana ChanneledChannel a swarm of locusts on an enemy, dealing 486 Shadow damage and generating Runic Power over 3 sec.","castMode":"channel","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501888:effect:0:aura:227","name":"Crypt Swarm (Aura 227)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501888:proc:0:800343","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800343}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800343},{"kind":"apply-aura","aura":{"id":"coa:501888:effect:1:aura:353","name":"Crypt Swarm (Aura 353)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501888:effect:2:aura:23","name":"Crypt Swarm (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501888:proc:2:800344","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800344}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800344}]}]},{"id":"necromancer-entomb","classId":"necromancer","dbcSpellId":500341,"name":"Entomb","unlockLevel":4,"icon":"/assets/ui/spells/ability_fiegndead.png","sigil":"EN","description":"Bury an enemy alive with necrotic energy, banishing them, preventing all actions and making them immune to damage for $d.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500341:effect:0:aura:12","name":"Entomb (Aura 12)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500341:effect:1:aura:118","name":"Entomb (Aura 118)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-1}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500341:effect:2:aura:39","name":"Entomb (Aura 39)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"holy","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":-1}]},"sourceEffectType":6,"sourceAuraType":39,"miscValue":127,"triggerSpellId":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":500341,"level":4,"description":"Bury an enemy alive with necrotic energy, banishing them, preventing all actions and making them immune to damage for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500341:effect:0:aura:12","name":"Entomb (Aura 12)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500341:effect:1:aura:118","name":"Entomb (Aura 118)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-1}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500341:effect:2:aura:39","name":"Entomb (Aura 39)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"holy","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":-1}]},"sourceEffectType":6,"sourceAuraType":39,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-23-sacrifice-undead-475-805027","classId":"necromancer","dbcSpellId":805027,"name":"Sacrifice Undead","unlockLevel":4,"icon":"/assets/ui/spells/_sacrificialdagger_unholy.png","sigil":"SU","description":"Sacrifice UndeadRank 120% of base mana 1.5 sec cast30 sec cooldownSacrifices your Undead, returning their Life Force to you, and restoring 49+SP*.3 health for each Undead minion destroyed.","target":"hostile","range":{"min":0,"max":50000},"radius":100,"castMode":"cast","castTimeMs":1500,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":805031,"withValue":49},{"kind":"execute","coefficient":1},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":4},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":525004},{"kind":"apply-aura","aura":{"id":"coa:525004:effect:0:aura:226","name":"Life Force (Aura 226)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525004:effect:1:aura:87","name":"Life Force (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525004:effect:2:aura:79","name":"Life Force (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805027,"level":4,"description":"Sacrifice UndeadRank 120% of base mana 1.5 sec cast30 sec cooldownSacrifices your Undead, returning their Life Force to you, and restoring 49+SP*.3 health for each Undead minion destroyed.","castMode":"cast","castTimeMs":1500,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":805031,"withValue":49},{"kind":"execute","coefficient":1},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":4},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":525004},{"kind":"apply-aura","aura":{"id":"coa:525004:effect:0:aura:226","name":"Life Force (Aura 226)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525004:effect:1:aura:87","name":"Life Force (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525004:effect:2:aura:79","name":"Life Force (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]}]},{"id":"necromancer-razorice","classId":"necromancer","dbcSpellId":500967,"name":"Razorice","unlockLevel":8,"icon":"/assets/ui/spells/spell_frost_frostarmor.png","sigil":"RA","description":"RazoriceRank 117% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 4 Frost damage to attackers when hit.","target":"hostile","range":{"min":0,"max":30},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500967:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500967:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":4,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500967:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500967:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":4,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500967:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500967,"level":8,"description":"RazoriceRank 117% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 4 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500967:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500967:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":4,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500967:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500967:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":4,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500967:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":2,"spellId":501960,"level":16,"description":"RazoriceRank 217% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 7 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501960:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501960:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":7,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501960:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501960:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":7,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501960:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":3,"spellId":501961,"level":26,"description":"RazoriceRank 317% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 10 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501961:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501961:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":10,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501961:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501961:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":10,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501961:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":4,"spellId":501962,"level":36,"description":"RazoriceRank 417% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 13 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501962:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501962:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":13,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501962:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501962:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":13,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501962:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":5,"spellId":501963,"level":46,"description":"RazoriceRank 517% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 16 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501963:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501963:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":16,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501963:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501963:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":16,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501963:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":6,"spellId":501964,"level":52,"description":"RazoriceRank 617% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 17 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501964:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501964:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":17,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501964:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501964:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":17,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501964:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":7,"spellId":501965,"level":58,"description":"RazoriceRank 717% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 21 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501965:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501965:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":21,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501965:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501965:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":21,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501965:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":8,"spellId":501966,"level":66,"description":"RazoriceRank 817% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 35 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501966:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501966:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":35,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501966:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501966:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":35,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501966:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":9,"spellId":501967,"level":70,"description":"RazoriceRank 917% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 54 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501967:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501967:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":54,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501967:effect:1:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501967:proc:1:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":54,"school":"frost","target":"event-other"}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501967:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]},{"rank":10,"spellId":501968,"level":76,"description":"RazoriceRank 1017% of base mana Instant castFrozen spikes erupt from the bodies of an ally and Raised minions for 30 min, causing 107 Frost damage to attackers when hit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501968:effect:0:aura:15","name":"Razorice (Aura 15)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501968:proc:0:damage","triggers":"damage-taken","chance":1,"action":{"kind":"damage","amount":107,"school":"frost","target":"event-other"}}]},"sourceEffectType":6,"sourceAuraType":15,"miscValue":16,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":16,"triggerSpellId":0,"durationMs":1800000},{"kind":"apply-aura","aura":{"id":"coa:501968:effect:2:aura:79","name":"Razorice (Aura 79)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]}]},{"id":"coa-23-virulency-82-501900","classId":"necromancer","dbcSpellId":501900,"name":"Virulency","unlockLevel":9,"icon":"/assets/ui/spells/_bloodplague_shadow.png","sigil":"VI","description":"VirulencyRank 210% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501900-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501900,"level":9,"description":"VirulencyRank 210% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501900-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":501901,"level":17,"description":"VirulencyRank 310% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501901-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":501902,"level":25,"description":"VirulencyRank 410% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501902-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":501903,"level":33,"description":"VirulencyRank 510% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501903-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":501904,"level":41,"description":"VirulencyRank 610% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501904-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":501905,"level":49,"description":"VirulencyRank 710% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501905-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":8,"spellId":501906,"level":57,"description":"VirulencyRank 810% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501906-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":9,"spellId":501907,"level":65,"description":"VirulencyRank 910% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501907-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":10,"spellId":501908,"level":73,"description":"VirulencyRank 1010% of base mana Instant cast1 min cooldownRefreshes all Necromancer diseases on the target enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dot","coefficient":0.25,"ticks":5,"intervalMs":2000,"tag":"spell-501908-disease"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-23-icequake-83-503908","classId":"necromancer","dbcSpellId":503908,"name":"Icequake","unlockLevel":10,"icon":"/assets/ui/spells/5_mageskill01_border.png","sigil":"IC","description":"IcequakeRank 130 Runic Power Instant castImpale up to 12 enemies within 30 yds affected by Deathchill for 65+0+FroP*0.45 Frost Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1.1133333365122478,"basePoints":65,"dieSides":6,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":503908,"level":10,"description":"IcequakeRank 130 Runic Power Instant castImpale up to 12 enemies within 30 yds affected by Deathchill for 65+0+FroP*0.45 Frost Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1.1133333365122478,"basePoints":65,"dieSides":6,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14}]},{"rank":2,"spellId":501946,"level":15,"description":"IcequakeRank 235 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 49+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":35},"effects":[{"kind":"trigger-spell","spellId":801751,"withValue":49},{"kind":"trigger-spell","spellId":801757,"withValue":0},{"kind":"damage","coefficient":0.6499999761581421,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"bonusPowerCoefficient":0.6499999761581421,"sourceLevel":1},{"kind":"trigger-spell","spellId":801727}]},{"rank":3,"spellId":501947,"level":24,"description":"IcequakeRank 335 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 66+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":35},"effects":[{"kind":"trigger-spell","spellId":801751,"withValue":66},{"kind":"trigger-spell","spellId":801757,"withValue":0},{"kind":"damage","coefficient":0.6499999761581421,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"bonusPowerCoefficient":0.6499999761581421,"sourceLevel":1},{"kind":"trigger-spell","spellId":801727}]},{"rank":4,"spellId":501948,"level":35,"description":"IcequakeRank 435 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 114+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":35},"effects":[{"kind":"trigger-spell","spellId":801751,"withValue":114},{"kind":"trigger-spell","spellId":801757,"withValue":0},{"kind":"damage","coefficient":0.6499999761581421,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"bonusPowerCoefficient":0.6499999761581421,"sourceLevel":1},{"kind":"trigger-spell","spellId":801727}]},{"rank":5,"spellId":501949,"level":47,"description":"IcequakeRank 535 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 203+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":35},"effects":[{"kind":"trigger-spell","spellId":801751,"withValue":203},{"kind":"trigger-spell","spellId":801757,"withValue":0},{"kind":"damage","coefficient":0.6499999761581421,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"bonusPowerCoefficient":0.6499999761581421,"sourceLevel":1},{"kind":"trigger-spell","spellId":801727}]},{"rank":6,"spellId":501950,"level":58,"description":"IcequakeRank 635 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 334+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":35},"effects":[{"kind":"trigger-spell","spellId":801751,"withValue":334},{"kind":"trigger-spell","spellId":801757,"withValue":0},{"kind":"damage","coefficient":0.6499999761581421,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"bonusPowerCoefficient":0.6499999761581421,"sourceLevel":1},{"kind":"trigger-spell","spellId":801727}]},{"rank":7,"spellId":501951,"level":70,"description":"IcequakeRank 735 Runic Power Instant castImpales all enemies within $ryd affected by Deathchill for 552+(PL*1.2-15*1.2) Frost Damage and consumes a Deathchill stack from them.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":35},"effects":[{"kind":"trigger-spell","spellId":801751,"withValue":552},{"kind":"trigger-spell","spellId":801757,"withValue":0},{"kind":"damage","coefficient":0.6499999761581421,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"bonusPowerCoefficient":0.6499999761581421,"sourceLevel":1},{"kind":"trigger-spell","spellId":801727}]},{"rank":8,"spellId":574157,"level":52,"description":"IcequakeRank 830 Runic Power Instant castImpale up to 12 enemies within 30 yds affected by Deathchill for 314+0+FroP*0.45 Frost Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":3.6611939805064035,"basePoints":314,"dieSides":31,"pointsPerLevel":7.824999809265137,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56}]},{"rank":9,"spellId":574158,"level":58,"description":"IcequakeRank 930 Runic Power Instant castImpale up to 12 enemies within 30 yds affected by Deathchill for 502+0+FroP*0.45 Frost Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":4,"basePoints":502,"dieSides":38,"pointsPerLevel":6.25,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64}]}]},{"id":"coa-23-ray-of-rot-82-804535","classId":"necromancer","dbcSpellId":804535,"name":"Ray of Rot","unlockLevel":10,"icon":"/assets/ui/spells/5_warlock43_border.png","sigil":"RO","description":"Ray of RotRank 130 Runic Power ChanneledChannel a putrid beam, causing 12 Plague damage every 0.5 sec for 2.5 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804535:effect:0:aura:53","name":"Ray of Rot (Aura 53)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.22888880173365275,"basePoints":12,"dieSides":2,"pointsPerLevel":0.46666601300239563,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":26,"ticks":5,"intervalMs":500,"tag":"spell-804535"},{"kind":"hot","coefficient":0.22888880173365275,"basePoints":12,"dieSides":2,"pointsPerLevel":0.46666601300239563,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":26,"ticks":5,"intervalMs":500},{"kind":"apply-aura","aura":{"id":"coa:804535:effect:1:aura:271","name":"Ray of Rot (Aura 271)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804535:effect:2:aura:23","name":"Ray of Rot (Aura 23)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:804535:proc:2:804536","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804536}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804536}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804535,"level":10,"description":"Ray of RotRank 130 Runic Power ChanneledChannel a putrid beam, causing 12 Plague damage every 0.5 sec for 2.5 sec.","castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804535:effect:0:aura:53","name":"Ray of Rot (Aura 53)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.22888880173365275,"basePoints":12,"dieSides":2,"pointsPerLevel":0.46666601300239563,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":26,"ticks":5,"intervalMs":500,"tag":"spell-804535"},{"kind":"hot","coefficient":0.22888880173365275,"basePoints":12,"dieSides":2,"pointsPerLevel":0.46666601300239563,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":26,"ticks":5,"intervalMs":500},{"kind":"apply-aura","aura":{"id":"coa:804535:effect:1:aura:271","name":"Ray of Rot (Aura 271)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804535:effect:2:aura:23","name":"Ray of Rot (Aura 23)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:804535:proc:2:804536","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804536}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804536}]},{"rank":2,"spellId":504507,"level":28,"description":"Ray of RotRank 230 Runic Power ChanneledChannel a putrid beam, causing 32 Plague damage every 0.5 sec for 2.5 sec.","castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504507:effect:0:aura:53","name":"Ray of Rot (Aura 53)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.37432558222334517,"basePoints":32,"dieSides":3,"pointsPerLevel":0.5460000038146973,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":5,"intervalMs":500,"tag":"spell-504507"},{"kind":"hot","coefficient":0.37432558222334517,"basePoints":32,"dieSides":3,"pointsPerLevel":0.5460000038146973,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":5,"intervalMs":500},{"kind":"apply-aura","aura":{"id":"coa:504507:effect:1:aura:271","name":"Ray of Rot (Aura 271)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504507:effect:2:aura:23","name":"Ray of Rot (Aura 23)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:504507:proc:2:804536","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804536}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804536}]},{"rank":3,"spellId":504508,"level":38,"description":"Ray of RotRank 330 Runic Power ChanneledChannel a putrid beam, causing 49 Plague damage every 0.5 sec for 2.5 sec.","castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504508:effect:0:aura:53","name":"Ray of Rot (Aura 53)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4729559691447132,"basePoints":49,"dieSides":4,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46,"ticks":5,"intervalMs":500,"tag":"spell-504508"},{"kind":"hot","coefficient":0.4729559691447132,"basePoints":49,"dieSides":4,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46,"ticks":5,"intervalMs":500},{"kind":"apply-aura","aura":{"id":"coa:504508:effect:1:aura:271","name":"Ray of Rot (Aura 271)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504508:effect:2:aura:23","name":"Ray of Rot (Aura 23)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:504508:proc:2:804536","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804536}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804536}]},{"rank":4,"spellId":504509,"level":48,"description":"Ray of RotRank 430 Runic Power ChanneledChannel a putrid beam, causing 70 Plague damage every 0.5 sec for 2.5 sec.","castMode":"channel","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504509:effect:0:aura:53","name":"Ray of Rot (Aura 53)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5333333393884083,"basePoints":70,"dieSides":5,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":60,"ticks":5,"intervalMs":500,"tag":"spell-504509"},{"kind":"hot","coefficient":0.5333333393884083,"basePoints":70,"dieSides":5,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":60,"ticks":5,"intervalMs":500},{"kind":"apply-aura","aura":{"id":"coa:504509:effect:1:aura:271","name":"Ray of Rot (Aura 271)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504509:effect:2:aura:23","name":"Ray of Rot (Aura 23)","disposition":"debuff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:504509:proc:2:804536","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804536}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804536}]}]},{"id":"necromancer-ice-barrage","classId":"necromancer","dbcSpellId":801760,"name":"Ice Barrage","unlockLevel":11,"icon":"/assets/ui/spells/uico_frost_spell_09_border.png","sigil":"IB","description":"Ice BarrageRank 130 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 26+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801760:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801760:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:801760:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801760:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":801760,"level":11,"description":"Ice BarrageRank 130 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 26+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801760:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801760:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:801760:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801760:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]},{"rank":2,"spellId":501992,"level":20,"description":"Ice BarrageRank 230 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 58+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501992:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501992:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:501992:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501992:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]},{"rank":3,"spellId":501993,"level":28,"description":"Ice BarrageRank 330 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 96+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501993:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501993:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:501993:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501993:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]},{"rank":4,"spellId":501994,"level":36,"description":"Ice BarrageRank 430 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 133+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501994:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501994:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:501994:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501994:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]},{"rank":5,"spellId":501995,"level":44,"description":"Ice BarrageRank 530 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 190+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501995:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501995:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:501995:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501995:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]},{"rank":6,"spellId":501996,"level":52,"description":"Ice BarrageRank 630 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 241+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501996:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501996:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:501996:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501996:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]},{"rank":7,"spellId":501997,"level":60,"description":"Ice BarrageRank 730 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 311+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501997:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501997:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:501997:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501997:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]},{"rank":8,"spellId":501998,"level":68,"description":"Ice BarrageRank 830 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 390+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501998:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501998:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:501998:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501998:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]},{"rank":9,"spellId":501999,"level":76,"description":"Ice BarrageRank 930 Runic Power 2 sec cast10 sec cooldownUnleash a relentless volley of glacial shards, dealing 451+0+SP*.5971 Frost damage every 0.25 sec for 1 sec. At the end of the duration, you entomb your target in ice, freezing them for 4 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501999:effect:0:aura:227","name":"Ice Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501999:proc:0:803779","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803779}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803779},{"kind":"apply-aura","aura":{"id":"coa:501999:effect:1:aura:23","name":"Ice Barrage (Aura 23)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501999:proc:1:804328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804328}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804328}]}]},{"id":"coa-23-foul-mandate-475-800199","classId":"necromancer","dbcSpellId":800199,"name":"Foul Mandate","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FM","description":"Foul MandateRank 127% of base mana Instant castEmpowers an ally with a dark Mandate, increasing Stamina by 8 for 30 min.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800199:effect:0:aura:29","name":"Foul Mandate (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"stamina","operation":"flat","value":8}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":2,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800199,"level":12,"description":"Foul MandateRank 127% of base mana Instant castEmpowers an ally with a dark Mandate, increasing Stamina by 8 for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800199:effect:0:aura:29","name":"Foul Mandate (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"stamina","operation":"flat","value":8}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":2,"triggerSpellId":0}]}]},{"id":"coa-23-noxious-corpserot-82-802129","classId":"necromancer","dbcSpellId":802129,"name":"Noxious Corpserot","unlockLevel":13,"icon":"/assets/ui/spells/spell_deathknight_necroticplague.png","sigil":"NC","description":"Noxious CorpserotRank 130 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 11+0+SP*0.14 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 40+0+SP*0.38 Plague damage to all enemies within 10 yards.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802129:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:802129:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:802129:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5,"basePoints":11,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0.5,"sourceLevel":13,"maxScalingLevel":15,"ticks":5,"intervalMs":1000,"tag":"spell-802129"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802129,"level":13,"description":"Noxious CorpserotRank 130 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 11+0+SP*0.14 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 40+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802129:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:802129:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:802129:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5,"basePoints":11,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0.5,"sourceLevel":13,"maxScalingLevel":15,"ticks":5,"intervalMs":1000,"tag":"spell-802129"}]},{"rank":2,"spellId":501943,"level":17,"description":"Noxious CorpserotRank 230 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 15+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 69+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501943:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501943:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:501943:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24479166666666666,"basePoints":15,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":5,"intervalMs":1000,"tag":"spell-501943"}]},{"rank":3,"spellId":501944,"level":24,"description":"Noxious CorpserotRank 330 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 19+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 90+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501944:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501944:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:501944:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3234188087985047,"basePoints":19,"dieSides":1,"pointsPerLevel":0.7850000262260437,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29,"ticks":5,"intervalMs":1000,"tag":"spell-501944"}]},{"rank":4,"spellId":501945,"level":31,"description":"Noxious CorpserotRank 430 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 22+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 116+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501945:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501945:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:501945:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.40009711186091107,"basePoints":22,"dieSides":1,"pointsPerLevel":1.0714000463485718,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":38,"ticks":5,"intervalMs":1000,"tag":"spell-501945"}]},{"rank":5,"spellId":503094,"level":45,"description":"Noxious CorpserotRank 530 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 32+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 151+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503094:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:503094:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:503094:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.49920276867018804,"basePoints":32,"dieSides":1,"pointsPerLevel":1.2856999635696411,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":45,"ticks":5,"intervalMs":1000,"tag":"spell-503094"}]},{"rank":6,"spellId":503325,"level":45,"description":"Noxious CorpserotRank 630 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 44+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 196+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503325:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:503325:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:503325:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7264444377687242,"basePoints":44,"dieSides":1,"pointsPerLevel":1.9279999732971191,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":50,"ticks":5,"intervalMs":1000,"tag":"spell-503325"}]},{"rank":7,"spellId":504621,"level":52,"description":"Noxious CorpserotRank 730 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 61+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 255+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504621:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:504621:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802748,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:504621:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.9686169410819438,"basePoints":61,"dieSides":1,"pointsPerLevel":2.571000099182129,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":57,"ticks":5,"intervalMs":1000,"tag":"spell-504621"}]},{"rank":8,"spellId":504624,"level":59,"description":"Noxious CorpserotRank 830 Runic Power Instant cast5 sec cooldownDisease an enemy, dealing 85+0+SP*0.12 Plague Damage every 1 sec for 5 sec. After 5 sec, the target explodes, dealing 332+0+SP*0.38 Plague damage to all enemies within 10 yards.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504624:effect:0:aura:227","name":"Noxious Corpserot (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:504624:proc:0:802128","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802128}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":524287,"triggerSpellId":802128},{"kind":"apply-aura","aura":{"id":"coa:504624:effect:1:aura:271","name":"Noxious Corpserot (Aura 271)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":0,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504624:effect:2:aura:3","name":"Noxious Corpserot (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.2200450703904435,"basePoints":85,"dieSides":1,"pointsPerLevel":3.1500000953674316,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":66,"ticks":5,"intervalMs":1000,"tag":"spell-504624"}]}]},{"id":"coa-23-bonefreeze-83-500326","classId":"necromancer","dbcSpellId":500326,"name":"Bonefreeze","unlockLevel":15,"icon":"/assets/ui/spells/spell_shadow_darkritual.png","sigil":"BO","description":"BonefreezeRank 16% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 63+0+FroP*0.95, 63+0+ShaP*0.825) Shadowfrost Damage, reduced by 25% per target.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":6,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.1720000058412552,"basePoints":63,"dieSides":1,"pointsPerLevel":1.440000057220459,"bonusPowerCoefficient":0.1720000058412552,"sourceLevel":15,"maxScalingLevel":20}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500326,"level":15,"description":"BonefreezeRank 16% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 63+0+FroP*0.95, 63+0+ShaP*0.825) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":6,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.1720000058412552,"basePoints":63,"dieSides":1,"pointsPerLevel":1.440000057220459,"bonusPowerCoefficient":0.1720000058412552,"sourceLevel":15,"maxScalingLevel":20}]},{"rank":2,"spellId":501952,"level":22,"description":"BonefreezeRank 26% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 94+0+FroP*0.95, 94+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501952:effect:0:aura:4","name":"Bonefreeze (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":1.3199135204693218,"basePoints":94,"dieSides":17,"pointsPerLevel":2.023200035095215,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":27}]},{"rank":3,"spellId":501953,"level":29,"description":"BonefreezeRank 36% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 129+0+FroP*0.95, 129+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501953:effect:0:aura:4","name":"Bonefreeze (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":1.6972878792069175,"basePoints":129,"dieSides":23,"pointsPerLevel":2.8980000019073486,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34}]},{"rank":4,"spellId":501954,"level":36,"description":"BonefreezeRank 46% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 163+0+FroP*0.95, 163+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501954:effect:0:aura:4","name":"Bonefreeze (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":2.0543843063653684,"basePoints":163,"dieSides":32,"pointsPerLevel":3.7727999687194824,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":41}]},{"rank":5,"spellId":501955,"level":43,"description":"BonefreezeRank 56% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 228+0+FroP*0.95, 228+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501955:effect:0:aura:4","name":"Bonefreeze (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":2.585326479769301,"basePoints":228,"dieSides":45,"pointsPerLevel":4.647600173950195,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":48}]},{"rank":6,"spellId":501956,"level":50,"description":"BonefreezeRank 66% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 319+0+FroP*0.95, 319+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501956:effect:0:aura:4","name":"Bonefreeze (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":3.428205162439591,"basePoints":319,"dieSides":64,"pointsPerLevel":6.360000133514404,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":55}]},{"rank":7,"spellId":501957,"level":57,"description":"BonefreezeRank 76% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 446+0+FroP*0.95, 446+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501957:effect:0:aura:4","name":"Bonefreeze (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":4,"basePoints":446,"dieSides":89,"pointsPerLevel":8.899999618530273,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":62}]},{"rank":8,"spellId":501958,"level":64,"description":"BonefreezeRank 86% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 566+0+FroP*0.95, 566+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501958:effect:0:aura:4","name":"Bonefreeze (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":4,"basePoints":566,"dieSides":57,"pointsPerLevel":11.300000190734863,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":69}]},{"rank":9,"spellId":501959,"level":71,"description":"BonefreezeRank 96% of base mana Instant cast20 sec cooldownChill the bones of an enemy and up to 2 nearby enemies, dealing a, b, c) a ? b : c\" class=\"w\">COND(a, b) a > b\" class=\"w\">GT(FroP, ShaP), 978+0+FroP*0.95, 978+0+ShaP*0.95) Shadowfrost Damage, reduced by 25% per target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501959:effect:0:aura:4","name":"Bonefreeze (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":4,"basePoints":978,"dieSides":66,"pointsPerLevel":8.049599647521973,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80}]}]},{"id":"coa-23-harvest-plague-82-500968","classId":"necromancer","dbcSpellId":500968,"name":"Harvest Plague","unlockLevel":16,"icon":"/assets/ui/spells/spell_misc_zandalari_council_soulswap.png","sigil":"HP","description":"Harvest PlagueRank 120 Runic Power Instant castDisease an enemy, siphoning 29+0+SP*0.15 health every 3 sec for 18 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500968:effect:0:aura:53","name":"Harvest Plague (Aura 53)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.46594994042509347,"basePoints":29,"dieSides":3,"pointsPerLevel":0.8333340287208557,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":6,"intervalMs":3000,"tag":"spell-500968"},{"kind":"hot","coefficient":0.46594994042509347,"basePoints":29,"dieSides":3,"pointsPerLevel":0.8333340287208557,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:500968:effect:1:aura:271","name":"Harvest Plague (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500968,"level":16,"description":"Harvest PlagueRank 120 Runic Power Instant castDisease an enemy, siphoning 29+0+SP*0.15 health every 3 sec for 18 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500968:effect:0:aura:53","name":"Harvest Plague (Aura 53)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.46594994042509347,"basePoints":29,"dieSides":3,"pointsPerLevel":0.8333340287208557,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":6,"intervalMs":3000,"tag":"spell-500968"},{"kind":"hot","coefficient":0.46594994042509347,"basePoints":29,"dieSides":3,"pointsPerLevel":0.8333340287208557,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:500968:effect:1:aura:271","name":"Harvest Plague (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501890,"level":24,"description":"Harvest PlagueRank 220 Runic Power Instant castDisease an enemy, siphoning 47+0+SP*0.15 health every 3 sec for 18 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501890:effect:0:aura:53","name":"Harvest Plague (Aura 53)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5521572634705112,"basePoints":47,"dieSides":8,"pointsPerLevel":0.5875999927520752,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30,"ticks":6,"intervalMs":3000,"tag":"spell-501890"},{"kind":"hot","coefficient":0.5521572634705112,"basePoints":47,"dieSides":8,"pointsPerLevel":0.5875999927520752,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501890:effect:1:aura:271","name":"Harvest Plague (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501891,"level":32,"description":"Harvest PlagueRank 320 Runic Power Instant castDisease an enemy, siphoning 71+0+SP*0.15 health every 3 sec for 21 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501891:effect:0:aura:53","name":"Harvest Plague (Aura 53)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7528605900757702,"basePoints":71,"dieSides":20,"pointsPerLevel":0.8016669750213623,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"ticks":7,"intervalMs":3000,"tag":"spell-501891"},{"kind":"hot","coefficient":0.7528605900757702,"basePoints":71,"dieSides":20,"pointsPerLevel":0.8016669750213623,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"ticks":7,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501891:effect:1:aura:271","name":"Harvest Plague (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501892,"level":40,"description":"Harvest PlagueRank 420 Runic Power Instant castDisease an enemy, siphoning 94+0+SP*0.15 health every 3 sec for 21 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501892:effect:0:aura:53","name":"Harvest Plague (Aura 53)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7006060600280761,"basePoints":94,"dieSides":39,"pointsPerLevel":0.06499999761581421,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":50,"ticks":7,"intervalMs":3000,"tag":"spell-501892"},{"kind":"hot","coefficient":0.7006060600280761,"basePoints":94,"dieSides":39,"pointsPerLevel":0.06499999761581421,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":50,"ticks":7,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:501892:effect:1:aura:271","name":"Harvest Plague (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":583255,"level":48,"description":"Harvest PlagueRank 520 Runic Power Instant castDisease the enemy, siphoning 131+0+SP*0.15 health every 3 sec for 24 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:583255:effect:0:aura:53","name":"Harvest Plague (Aura 53)","disposition":"debuff","durationMs":24000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8393650811816019,"basePoints":131,"dieSides":39,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":59,"ticks":8,"intervalMs":3000,"tag":"spell-583255"},{"kind":"hot","coefficient":0.8393650811816019,"basePoints":131,"dieSides":39,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":59,"ticks":8,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:583255:effect:1:aura:271","name":"Harvest Plague (Aura 271)","disposition":"debuff","durationMs":24000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":583256,"level":56,"description":"Harvest PlagueRank 620 Runic Power Instant castDisease the enemy, siphoning 172+0+SP*0.15 health every 3 sec for 24 sec, healing you for a portion of the damage dealt. The plague intensifies and siphons increased health based on how close to death your target is.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"apply-aura","aura":{"id":"coa:583256:effect:0:aura:53","name":"Harvest Plague (Aura 53)","disposition":"buff","durationMs":24000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0912676081411157,"basePoints":172,"dieSides":39,"pointsPerLevel":0.7400000095367432,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":68,"ticks":8,"intervalMs":3000,"tag":"spell-583256"},{"kind":"hot","coefficient":1.0912676081411157,"basePoints":172,"dieSides":39,"pointsPerLevel":0.7400000095367432,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":68,"ticks":8,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:583256:effect:1:aura:271","name":"Harvest Plague (Aura 271)","disposition":"debuff","durationMs":24000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-23-lich-bolt-82-801942","classId":"necromancer","dbcSpellId":801942,"name":"Lich Bolt","unlockLevel":17,"icon":"/assets/ui/spells/_d3spiritbarrage.png","sigil":"LB","description":"Lich BoltRank 140 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 64+0+ShaP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":0.14000000059604645,"basePoints":64,"dieSides":6,"pointsPerLevel":2,"bonusPowerCoefficient":0.14000000059604645,"sourceLevel":17,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801942,"level":17,"description":"Lich BoltRank 140 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 64+0+ShaP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":0.14000000059604645,"basePoints":64,"dieSides":6,"pointsPerLevel":2,"bonusPowerCoefficient":0.14000000059604645,"sourceLevel":17,"maxScalingLevel":22}]},{"rank":2,"spellId":501926,"level":24,"description":"Lich BoltRank 240 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 98+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":1.2697436014811199,"basePoints":98,"dieSides":9,"pointsPerLevel":1.940000057220459,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29}]},{"rank":3,"spellId":501927,"level":31,"description":"Lich BoltRank 340 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 139+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":1.6743478239446445,"basePoints":139,"dieSides":14,"pointsPerLevel":2.759999990463257,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":36}]},{"rank":4,"spellId":501928,"level":38,"description":"Lich BoltRank 440 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 194+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":2.19924525794743,"basePoints":194,"dieSides":19,"pointsPerLevel":3.859999895095825,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43}]},{"rank":5,"spellId":501929,"level":45,"description":"Lich BoltRank 540 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 252+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":2.721666661898295,"basePoints":252,"dieSides":25,"pointsPerLevel":5.019999980926514,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":50}]},{"rank":6,"spellId":501930,"level":52,"description":"Lich BoltRank 69% of base runic power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 327+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":3.393233825911337,"basePoints":327,"dieSides":33,"pointsPerLevel":6.519999980926514,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":57}]},{"rank":7,"spellId":501931,"level":59,"description":"Lich BoltRank 740 Runic Power Instant cast10 sec cooldownFire a Lich Bolt at an enemy, dealing 440+0+SP*.785 Shadow Damage, dealing 50% more damage and applying Crypt Plague for each disease you have active on them.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":3.6841047411566383,"basePoints":440,"dieSides":42,"pointsPerLevel":6.057139873504639,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":66}]}]},{"id":"coa-23-plague-of-undeath-82-801945","classId":"necromancer","dbcSpellId":801945,"name":"Plague of Undeath","unlockLevel":17,"icon":"/assets/ui/spells/epic_rpg_icon_pack_death_icon_0000s_0000_spirits_border.png","sigil":"PO","description":"Plague of UndeathRank 130 Runic Power 1.5 sec castDisease an enemy dealing 32+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 40% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801945:effect:0:aura:3","name":"Plague of Undeath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.44312500084439915,"basePoints":32,"dieSides":1,"pointsPerLevel":0.6200000047683716,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":8,"intervalMs":2500,"tag":"spell-801945"},{"kind":"apply-aura","aura":{"id":"coa:801945:effect:1:aura:271","name":"Plague of Undeath (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801945:effect:2:aura:118","name":"Plague of Undeath (Aura 118)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801945,"level":17,"description":"Plague of UndeathRank 130 Runic Power 1.5 sec castDisease an enemy dealing 32+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 40% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801945:effect:0:aura:3","name":"Plague of Undeath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.44312500084439915,"basePoints":32,"dieSides":1,"pointsPerLevel":0.6200000047683716,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22,"ticks":8,"intervalMs":2500,"tag":"spell-801945"},{"kind":"apply-aura","aura":{"id":"coa:801945:effect:1:aura:271","name":"Plague of Undeath (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801945:effect:2:aura:118","name":"Plague of Undeath (Aura 118)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0}]},{"rank":2,"spellId":501940,"level":24,"description":"Plague of UndeathRank 230 Runic Power 1.5 sec castDisease an enemy dealing 52+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501940:effect:0:aura:3","name":"Plague of Undeath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5528692669338651,"basePoints":52,"dieSides":1,"pointsPerLevel":0.5285710096359253,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":31,"ticks":8,"intervalMs":2500,"tag":"spell-501940"},{"kind":"apply-aura","aura":{"id":"coa:501940:effect:1:aura:271","name":"Plague of Undeath (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501940:effect:2:aura:118","name":"Plague of Undeath (Aura 118)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0}]},{"rank":3,"spellId":501941,"level":32,"description":"Plague of UndeathRank 330 Runic Power 1.5 sec castDisease an enemy dealing 96+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501941:effect:0:aura:3","name":"Plague of Undeath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8105370812382259,"basePoints":96,"dieSides":1,"pointsPerLevel":0.5714290142059326,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":39,"ticks":8,"intervalMs":2500,"tag":"spell-501941"},{"kind":"apply-aura","aura":{"id":"coa:501941:effect:1:aura:271","name":"Plague of Undeath (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501941:effect:2:aura:118","name":"Plague of Undeath (Aura 118)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0}]},{"rank":4,"spellId":501942,"level":40,"description":"Plague of UndeathRank 430 Runic Power 1.5 sec castDisease an enemy dealing 131+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:501942:effect:0:aura:3","name":"Plague of Undeath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.9636363607464414,"basePoints":131,"dieSides":1,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":47,"ticks":8,"intervalMs":2500,"tag":"spell-501942"},{"kind":"apply-aura","aura":{"id":"coa:501942:effect:1:aura:271","name":"Plague of Undeath (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501942:effect:2:aura:118","name":"Plague of Undeath (Aura 118)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0}]},{"rank":5,"spellId":503095,"level":48,"description":"Plague of UndeathRank 530 Runic Power 1.5 sec castDisease an enemy dealing 196+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503095:effect:0:aura:3","name":"Plague of Undeath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.254724144304871,"basePoints":196,"dieSides":1,"pointsPerLevel":0.857142984867096,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":55,"ticks":8,"intervalMs":2500,"tag":"spell-503095"},{"kind":"apply-aura","aura":{"id":"coa:503095:effect:1:aura:271","name":"Plague of Undeath (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503095:effect:2:aura:118","name":"Plague of Undeath (Aura 118)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0}]},{"rank":6,"spellId":503640,"level":56,"description":"Plague of UndeathRank 630 Runic Power 1.5 sec castDisease an enemy dealing 252+0+ShaP*0.25 Plague damage every 2.5 sec and reduces the targets Holy healing received by 50% for 20 sec. If Plague of Undeath is dispelled, the enemy takes 80+9.0 Points Per Level+ShaP*1.25 Plague damage and is stunned for 5 sec. Periodic damage dealt by this benefits from your spell haste.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503640:effect:0:aura:3","name":"Plague of Undeath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.4610321107604693,"basePoints":252,"dieSides":1,"pointsPerLevel":1.0571399927139282,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":63,"ticks":8,"intervalMs":2500,"tag":"spell-503640"},{"kind":"apply-aura","aura":{"id":"coa:503640:effect:1:aura:271","name":"Plague of Undeath (Aura 271)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503640:effect:2:aura:118","name":"Plague of Undeath (Aura 118)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":2,"triggerSpellId":0}]}]},{"id":"coa-tree-4236","classId":"necromancer","dbcSpellId":704724,"name":"Deadly Bond","unlockLevel":20,"icon":"/assets/ui/spells/inv_qirajidol_death.png","sigil":"DB","description":"Level 20 Passive Casting Command spells now has a 30% chance to cause their next use within 6 seconds to be free of cost.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704724:effect:0:aura:4","name":"Deadly Bond (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704724,"level":20,"description":"Level 20 Passive Casting Command spells now has a 30% chance to cause their next use within 6 seconds to be free of cost.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704724:effect:0:aura:4","name":"Deadly Bond (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4236},{"id":"coa-23-flesh-to-worms-475-501855","classId":"necromancer","dbcSpellId":501855,"name":"Flesh to Worms","unlockLevel":20,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FT","description":"Flesh to WormsRank 212% of base mana Instant castDisease an enemy, dealing 25+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501855:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3295238074802217,"basePoints":25,"dieSides":1,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":27,"ticks":6,"intervalMs":3000,"tag":"spell-501855"},{"kind":"apply-aura","aura":{"id":"coa:501855:effect:1:aura:271","name":"Flesh to Worms (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":501855,"level":20,"description":"Flesh to WormsRank 212% of base mana Instant castDisease an enemy, dealing 25+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501855:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3295238074802217,"basePoints":25,"dieSides":1,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":27,"ticks":6,"intervalMs":3000,"tag":"spell-501855"},{"kind":"apply-aura","aura":{"id":"coa:501855:effect:1:aura:271","name":"Flesh to Worms (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501856,"level":26,"description":"Flesh to WormsRank 312% of base mana Instant castDisease an enemy, dealing 34+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501856:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.34285720189412433,"basePoints":34,"dieSides":1,"pointsPerLevel":0.3142859935760498,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":33,"ticks":6,"intervalMs":3000,"tag":"spell-501856"},{"kind":"apply-aura","aura":{"id":"coa:501856:effect:1:aura:271","name":"Flesh to Worms (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501857,"level":32,"description":"Flesh to WormsRank 412% of base mana Instant castDisease an enemy, dealing 43+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501857:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3925024668375651,"basePoints":43,"dieSides":1,"pointsPerLevel":0.38571399450302124,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":39,"ticks":6,"intervalMs":3000,"tag":"spell-501857"},{"kind":"apply-aura","aura":{"id":"coa:501857:effect:1:aura:271","name":"Flesh to Worms (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501858,"level":38,"description":"Flesh to WormsRank 512% of base mana Instant castDisease an enemy, dealing 55+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501858:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.46540880503144655,"basePoints":55,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":45,"ticks":6,"intervalMs":3000,"tag":"spell-501858"},{"kind":"apply-aura","aura":{"id":"coa:501858:effect:1:aura:271","name":"Flesh to Worms (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501859,"level":44,"description":"Flesh to WormsRank 612% of base mana Instant castDisease an enemy, dealing 69+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501859:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5460854398328706,"basePoints":69,"dieSides":1,"pointsPerLevel":0.6285709738731384,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":51,"ticks":6,"intervalMs":3000,"tag":"spell-501859"},{"kind":"apply-aura","aura":{"id":"coa:501859:effect:1:aura:271","name":"Flesh to Worms (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501860,"level":50,"description":"Flesh to WormsRank 712% of base mana Instant castDisease an enemy, dealing 84+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501860:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6285715390474368,"basePoints":84,"dieSides":1,"pointsPerLevel":0.7714290022850037,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":57,"ticks":6,"intervalMs":3000,"tag":"spell-501860"},{"kind":"apply-aura","aura":{"id":"coa:501860:effect:1:aura:271","name":"Flesh to Worms (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501861,"level":56,"description":"Flesh to WormsRank 812% of base mana Instant castDisease an enemy, dealing 102+0+ShaP*0.11055 Plague damage and generating Runic Power every 3 sec for 18 sec. Periodic damage dealt by this can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501861:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7267605329343411,"basePoints":102,"dieSides":1,"pointsPerLevel":0.942857027053833,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":63,"ticks":6,"intervalMs":3000,"tag":"spell-501861"},{"kind":"apply-aura","aura":{"id":"coa:501861:effect:1:aura:271","name":"Flesh to Worms (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":3,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501862,"level":54,"description":"Disease an enemy, dealing ${$m1+$ppl1+$SP*0.088} Shadow Damage$?s560599[ and generating $/10;804272s2 Runic Power][] every $t1 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501862:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5615942028985508,"basePoints":69,"dieSides":1,"pointsPerLevel":0.875,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60,"ticks":6,"intervalMs":2000,"tag":"spell-501862"}]},{"rank":10,"spellId":501863,"level":60,"description":"Disease an enemy, dealing ${$m1+$ppl1+$SP*0.088} Shadow Damage$?s560599[ and generating $/10;804272s2 Runic Power][] every $t1 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501863:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6407555569542779,"basePoints":86,"dieSides":1,"pointsPerLevel":0.9695000052452087,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":67,"ticks":6,"intervalMs":2000,"tag":"spell-501863"}]},{"rank":11,"spellId":501864,"level":68,"description":"Disease an enemy, dealing ${$m1+$ppl1+$SP*0.088} Shadow Damage$?s560599[ and generating $/10;804272s2 Runic Power][] every $t1 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501864:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7162730952343309,"basePoints":106,"dieSides":1,"pointsPerLevel":1.0640000104904175,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":73,"ticks":6,"intervalMs":2000,"tag":"spell-501864"}]},{"rank":12,"spellId":501865,"level":74,"description":"Disease an enemy, dealing ${$m1+$ppl1+$SP*0.088} Shadow Damage$?s560599[ and generating $/10;804272s2 Runic Power][] every $t1 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:501865:effect:0:aura:3","name":"Flesh to Worms (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8641572980845019,"basePoints":146,"dieSides":1,"pointsPerLevel":1.1449999809265137,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80,"ticks":6,"intervalMs":2000,"tag":"spell-501865"}]}]},{"id":"coa-tree-4436","classId":"necromancer","dbcSpellId":560045,"name":"Ice Mastery","unlockLevel":20,"icon":"/assets/ui/spells/_auracloak_ice.png","sigil":"IM","description":"Level 20 Passive Increases your spell power by 30% of your Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560045:effect:0:aura:220","name":"Ice Mastery (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:1024","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":1024,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560045:effect:1:aura:333","name":"Ice Mastery (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560045:effect:2:aura:174","name":"Ice Mastery (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560045,"level":20,"description":"Level 20 Passive Increases your spell power by 30% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560045:effect:0:aura:220","name":"Ice Mastery (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:1024","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":1024,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560045:effect:1:aura:333","name":"Ice Mastery (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560045:effect:2:aura:174","name":"Ice Mastery (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":4436},{"id":"coa-23-frigid-ward-83-801735","classId":"necromancer","dbcSpellId":801735,"name":"Frigid Ward","unlockLevel":25,"icon":"/assets/ui/spells/spell_mage_temporalshield.png","sigil":"FW","description":"Frigid WardRank 1255% of base mana Instant cast30 sec cooldownShield an ally with a glacial ward, absorbing 230+0+SP*0.33 damage for up to 20 sec. Damage taken applies Deathchill to attackers and reduces their movement speed by 30% for 2 sec.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":20000},{"kind":"apply-aura","aura":{"id":"coa:801735:effect:0:aura:69","name":"Frigid Ward (Aura 69)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:801735:absorb:0","amount":230,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801735:effect:1:aura:42","name":"Frigid Ward (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801735:proc:1:801727","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801727}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801735:effect:2:aura:42","name":"Frigid Ward (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801735:proc:2:560624","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560624}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560624}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801735,"level":25,"description":"Frigid WardRank 1255% of base mana Instant cast30 sec cooldownShield an ally with a glacial ward, absorbing 230+0+SP*0.33 damage for up to 20 sec. Damage taken applies Deathchill to attackers and reduces their movement speed by 30% for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":255,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":20000},{"kind":"apply-aura","aura":{"id":"coa:801735:effect:0:aura:69","name":"Frigid Ward (Aura 69)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:801735:absorb:0","amount":230,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801735:effect:1:aura:42","name":"Frigid Ward (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801735:proc:1:801727","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801727}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801735:effect:2:aura:42","name":"Frigid Ward (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801735:proc:2:560624","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560624}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560624}]},{"rank":2,"spellId":501981,"level":28,"description":"Frigid WardRank 211% of base mana Instant cast30 sec cooldownShield an ally with a glacial ward, absorbing 600+0+SP*0.33 damage for up to 20 sec. Damage taken applies Deathchill to attackers and reduces their movement speed by 30% for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":20000},{"kind":"apply-aura","aura":{"id":"coa:501981:effect:0:aura:69","name":"Frigid Ward (Aura 69)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:501981:absorb:0","amount":600,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:501981:effect:1:aura:42","name":"Frigid Ward (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501981:proc:1:801727","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801727}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801727},{"kind":"apply-aura","aura":{"id":"coa:501981:effect:2:aura:42","name":"Frigid Ward (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:501981:proc:2:560624","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560624}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560624}]}]},{"id":"coa-23-black-ice-83-801746","classId":"necromancer","dbcSpellId":801746,"name":"Black Ice","unlockLevel":27,"icon":"/assets/ui/spells/spell_hunter_blackicetrap.png","sigil":"BI","description":"Black IceRank 110% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","target":"hostile","range":{"min":0,"max":30},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:801746:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801746,"level":27,"description":"Black IceRank 110% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:801746:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":501983,"level":32,"description":"Black IceRank 210% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501983:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":501984,"level":37,"description":"Black IceRank 310% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501984:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":501985,"level":42,"description":"Black IceRank 410% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501985:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":501986,"level":47,"description":"Black IceRank 510% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501986:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":501987,"level":52,"description":"Black IceRank 610% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501987:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":501988,"level":57,"description":"Black IceRank 710% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501988:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":501989,"level":62,"description":"Black IceRank 810% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501989:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":501990,"level":67,"description":"Black IceRank 910% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501990:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":501991,"level":72,"description":"Black IceRank 1010% of base mana Instant cast30 sec cooldownA ring of ice erupts from the target, rooting enemies around them in ice for 8 sec, and applying Deathchill. Damage caused may interrupt the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20},{"kind":"apply-aura","aura":{"id":"coa:501991:effect:1:aura:26","name":"Black Ice (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":801747},{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-23-plaguebomb-82-500340","classId":"necromancer","dbcSpellId":500340,"name":"Plaguebomb","unlockLevel":27,"icon":"/assets/ui/spells/ability_vehicle_plaguebarrel.png","sigil":"PL","description":"PlaguebombRank 1999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 134+0+SP*0.3 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","target":"hostile","range":{"min":0,"max":40},"radius":8,"castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":1.6573016056938776,"basePoints":134,"dieSides":7,"pointsPerLevel":2.6600000858306885,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:500340:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:500340:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500340,"level":27,"description":"PlaguebombRank 1999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 134+0+SP*0.3 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":1.6573016056938776,"basePoints":134,"dieSides":7,"pointsPerLevel":2.6600000858306885,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:500340:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:500340:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}]},{"rank":2,"spellId":501866,"level":34,"description":"PlaguebombRank 2999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 169+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":1.9642176628112793,"basePoints":169,"dieSides":12,"pointsPerLevel":3.359999895095825,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39},{"kind":"apply-aura","aura":{"id":"coa:501866:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501866:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}]},{"rank":3,"spellId":501867,"level":41,"description":"PlaguebombRank 3999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 219+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":2.4092857468695867,"basePoints":219,"dieSides":15,"pointsPerLevel":4.360000133514404,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":46},{"kind":"apply-aura","aura":{"id":"coa:501867:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501867:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}]},{"rank":4,"spellId":501868,"level":48,"description":"PlaguebombRank 4999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 284+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":2.99037033161789,"basePoints":284,"dieSides":20,"pointsPerLevel":5.659999847412109,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53},{"kind":"apply-aura","aura":{"id":"coa:501868:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501868:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}]},{"rank":5,"spellId":501869,"level":55,"description":"PlaguebombRank 5999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 370+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":3.7542857442583357,"basePoints":370,"dieSides":26,"pointsPerLevel":7.380000114440918,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":60},{"kind":"apply-aura","aura":{"id":"coa:501869:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501869:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}]},{"rank":6,"spellId":501870,"level":62,"description":"PlaguebombRank 6999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 506+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":4,"basePoints":506,"dieSides":32,"pointsPerLevel":6.842860221862793,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":69},{"kind":"apply-aura","aura":{"id":"coa:501870:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501870:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}]},{"rank":7,"spellId":501871,"level":76,"description":"PlaguebombRank 7999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 811+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":4,"basePoints":811,"dieSides":58,"pointsPerLevel":20.25,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:501871:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501871:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}]},{"rank":8,"spellId":501872,"level":71,"description":"PlaguebombRank 8999.9 Runic Power 1.5 sec cast15 sec cooldownThrow a plague bomb at the target location, dealing 2358+0+SP*0.35 Plague Damage to up to 8 enemies. Enemies in the area incur a stack of Crypt Plague every 1.5 sec for 15 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":999.9},"effects":[{"kind":"damage","coefficient":4,"basePoints":2358,"dieSides":40,"pointsPerLevel":6.922220230102539,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:501872:effect:1:aura:23","name":"Plaguebomb (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","procs":[{"id":"coa:501872:proc:1:500516","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500516}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500516}]}]},{"id":"coa-tree-4437","classId":"necromancer","dbcSpellId":704669,"name":"Frigidness","unlockLevel":30,"icon":"/assets/ui/spells/achievement_boss_forgemaster.png","sigil":"FR","description":"Level 30 Passive Increases your critical damage by 100% against Frozen targets.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704669:effect:0:aura:112","name":"Frigidness (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20001,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704669,"level":30,"description":"Level 30 Passive Increases your critical damage by 100% against Frozen targets.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704669:effect:0:aura:112","name":"Frigidness (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20001,"triggerSpellId":0}]}],"talentEntryId":4437},{"id":"coa-tree-4237","classId":"necromancer","dbcSpellId":807494,"name":"Summoning Expert","unlockLevel":30,"icon":"/assets/ui/spells/_beasttaming_undead.png","sigil":"SE","description":"Level 30 Passive Increases your maximum Life Force by 1 and your Undead minion's Stamina by 10%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807494:effect:0:aura:107","name":"Summoning Expert (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807494:effect:1:aura:137","name":"Summoning Expert (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807494,"level":30,"description":"Level 30 Passive Increases your maximum Life Force by 1 and your Undead minion's Stamina by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807494:effect:0:aura:107","name":"Summoning Expert (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807494:effect:1:aura:137","name":"Summoning Expert (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0}]}],"talentEntryId":4237},{"id":"coa-tree-4235","classId":"necromancer","dbcSpellId":704723,"name":"Diabolical","unlockLevel":40,"icon":"/assets/ui/spells/spell_necro_inevitableend.png","sigil":"DI","description":"Level 40 Passive Casting spells now grants you 1 stack of Diabolical, stacking up to 15 times, for 20 seconds. Damage dealt by your Crypt Swarm will consume a stack to deal 10% increased damage per stack.","target":"hostile","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704723:effect:0:aura:42","name":"Diabolical (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704723:proc:0:707133","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707133}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707133}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704723,"level":40,"description":"Level 40 Passive Casting spells now grants you 1 stack of Diabolical, stacking up to 15 times, for 20 seconds. Damage dealt by your Crypt Swarm will consume a stack to deal 10% increased damage per stack.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704723:effect:0:aura:42","name":"Diabolical (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704723:proc:0:707133","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707133}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707133}]}],"talentEntryId":4235},{"id":"coa-tree-4438","classId":"necromancer","dbcSpellId":500981,"name":"Lich Form","unlockLevel":40,"icon":"/assets/ui/spells/achievement_boss_amnennar_the_coldbringer.png","sigil":"LF","description":"Transform into a Lich, becoming Undead increasing your Frost damage dealt by 10%. While active you generate 3 Runic Power every 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500981:effect:0:aura:24","name":"Lich Form (Aura 24)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":6,"triggerSpellId":0},{"kind":"resource","amount":30},{"kind":"apply-aura","aura":{"id":"coa:500981:effect:1:aura:79","name":"Lich Form (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500981,"level":40,"description":"Transform into a Lich, becoming Undead increasing your Frost damage dealt by 10%. While active you generate 3 Runic Power every 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500981:effect:0:aura:24","name":"Lich Form (Aura 24)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":6,"triggerSpellId":0},{"kind":"resource","amount":30},{"kind":"apply-aura","aura":{"id":"coa:500981:effect:1:aura:79","name":"Lich Form (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"frost","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":16,"triggerSpellId":0}]}],"talentEntryId":4438},{"id":"coa-tree-11438","classId":"necromancer","dbcSpellId":704681,"name":"Champion of Kel'thuzad","unlockLevel":50,"icon":"/assets/ui/spells/_manaburn_frost.png","sigil":"CO","description":"Level 50 Passive Gives your spells a 15% chance to grant you the Permafrost, which treats your next 2 spells cast as if the target were Frozen. Lasts 12 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704681:effect:0:aura:42","name":"Permafrost (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704681:proc:0:801747","triggers":["cast"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801747}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801747}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704681,"level":50,"description":"Level 50 Passive Gives your spells a 15% chance to grant you the Permafrost, which treats your next 2 spells cast as if the target were Frozen. Lasts 12 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704681:effect:0:aura:42","name":"Permafrost (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704681:proc:0:801747","triggers":["cast"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801747}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801747}]}],"talentEntryId":11438},{"id":"coa-tree-9934","classId":"necromancer","dbcSpellId":504439,"name":"Grave Mastery","unlockLevel":50,"icon":"/assets/ui/spells/nhi_deathscythe_border.png","sigil":"GM","description":"Level 50 Passive Reduces the cost of all Animates, Raises, and Command spells by -20%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504439:effect:0:aura:108","name":"Grave Mastery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504439:effect:1:aura:192","name":"Grave Mastery (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504439:effect:2:aura:216","name":"Grave Mastery (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504439,"level":50,"description":"Level 50 Passive Reduces the cost of all Animates, Raises, and Command spells by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504439:effect:0:aura:108","name":"Grave Mastery (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504439:effect:1:aura:192","name":"Grave Mastery (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504439:effect:2:aura:216","name":"Grave Mastery (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":9934}],"pyromancer":[{"id":"coa-tree-33843","classId":"pyromancer","dbcSpellId":300921,"name":"Al Dente","unlockLevel":1,"icon":"/assets/ui/spells/achievement_cooking_masteroftheoven.png","sigil":"AD","description":"Targets affected by Gaze of Ysera now take 15% increased Fire damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300921:effect:0:aura:107","name":"Al Dente (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300921,"level":1,"description":"Targets affected by Gaze of Ysera now take 15% increased Fire damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300921:effect:0:aura:107","name":"Al Dente (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":33843},{"id":"coa-tree-33882","classId":"pyromancer","dbcSpellId":504397,"name":"Blessing of the Firelands","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fire_soul_border.png","sigil":"BO","description":"Each stack of Heat now increases the damage dealt by Dragon Leap by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504397:effect:0:aura:107","name":"Blessing of the Firelands (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504397:effect:1:aura:107","name":"Blessing of the Firelands (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504397,"level":1,"description":"Each stack of Heat now increases the damage dealt by Dragon Leap by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504397:effect:0:aura:107","name":"Blessing of the Firelands (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504397:effect:1:aura:107","name":"Blessing of the Firelands (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":33882},{"id":"coa-tree-32499","classId":"pyromancer","dbcSpellId":300759,"name":"Bright Flames","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_fireresistancetotem.png","sigil":"BF","description":"Increases the amount absorbed by Inferno Barrier by 10% and the damage it deals by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300759:effect:0:aura:317","name":"Bright Flames (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300759:effect:1:aura:108","name":"Bright Flames (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300759,"level":1,"description":"Increases the amount absorbed by Inferno Barrier by 10% and the damage it deals by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300759:effect:0:aura:317","name":"Bright Flames (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300759:effect:1:aura:108","name":"Bright Flames (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":301351,"level":1,"description":"Increases the amount absorbed by Inferno Barrier by 20% and the damage it deals by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301351:effect:0:aura:317","name":"Bright Flames (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301351:effect:1:aura:108","name":"Bright Flames (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":32499},{"id":"coa-24-burning-brand-87-800809","classId":"pyromancer","dbcSpellId":800809,"name":"Burning Brand","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firerune_(2)_border.png","sigil":"BB","description":"Burning BrandRank 117% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 10 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800809:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800809:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800809,"level":1,"description":"Burning BrandRank 117% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 10 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800809:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800809:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]},{"rank":2,"spellId":502077,"level":10,"description":"Burning BrandRank 217% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 21 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502077:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502077:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]},{"rank":3,"spellId":502078,"level":19,"description":"Burning BrandRank 317% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 26 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502078:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502078:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]},{"rank":4,"spellId":502079,"level":28,"description":"Burning BrandRank 417% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 31 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502079:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502079:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]},{"rank":5,"spellId":502080,"level":37,"description":"Burning BrandRank 517% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 36 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502080:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502080:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]},{"rank":6,"spellId":502081,"level":45,"description":"Burning BrandRank 617% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 46 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502081:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502081:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]},{"rank":7,"spellId":502082,"level":54,"description":"Burning BrandRank 717% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 56 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502082:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502082:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]},{"rank":8,"spellId":502083,"level":63,"description":"Burning BrandRank 817% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 66 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502083:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502083:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]},{"rank":9,"spellId":502084,"level":72,"description":"Burning BrandRank 917% of base mana 1.5 sec castBrands an enemy for 5 sec. After the duration expires they explode, dealing 76 Fire Damage to them and 8 nearby enemies, plus additional Fire Damage over 12 sec. Overheat: Instant cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502084:effect:0:aura:227","name":"Burning Brand (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502084:proc:0:800810","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800810}}}]},"sourceEffectType":0,"sourceAuraType":227,"miscValue":0,"triggerSpellId":800810}]}]},{"id":"coa-24-cataclysm-none-706887","classId":"pyromancer","dbcSpellId":706887,"name":"Cataclysm","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_destructivesoul.png","sigil":"CA","description":"CataclysmRank 1Firefall increases the damage affected enemies take from your Melt by 5% for 8 sec, stacking 3 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706887:effect:0:aura:107","name":"Cataclysm (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":80}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706887:effect:1:aura:107","name":"Cataclysm (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706887,"level":1,"description":"CataclysmRank 1Firefall increases the damage affected enemies take from your Melt by 5% for 8 sec, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706887:effect:0:aura:107","name":"Cataclysm (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":80}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706887:effect:1:aura:107","name":"Cataclysm (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}]},{"id":"coa-tree-29940","classId":"pyromancer","dbcSpellId":520218,"name":"Cataclysm","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_cataclysm.png","sigil":"CA","description":"Launch into the air, dealing 11 Fire damage, knocking back enemies within 6 yds and dazing them for 6 sec. Upon landing, deal -5 Fire damage, knock back enemies within 6 yds and daze them for 6 sec.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520218:effect:0:aura:23","name":"Cataclysm (Aura 23)","disposition":"buff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520218:proc:0:520219","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520219}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":520219},{"kind":"movement","movement":"leap","toward":"away"},{"kind":"trigger-spell","spellId":520220},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"trigger-spell","spellId":520868},{"kind":"trigger-spell","spellId":1604},{"kind":"damage","coefficient":0.28888888888888886,"basePoints":11,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520218,"level":1,"description":"Launch into the air, dealing 11 Fire damage, knocking back enemies within 6 yds and dazing them for 6 sec. Upon landing, deal -5 Fire damage, knock back enemies within 6 yds and daze them for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520218:effect:0:aura:23","name":"Cataclysm (Aura 23)","disposition":"buff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520218:proc:0:520219","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520219}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":520219},{"kind":"movement","movement":"leap","toward":"away"},{"kind":"trigger-spell","spellId":520220},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"trigger-spell","spellId":520868},{"kind":"trigger-spell","spellId":1604},{"kind":"damage","coefficient":0.28888888888888886,"basePoints":11,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":1}]}],"talentEntryId":29940},{"id":"coa-tree-33905","classId":"pyromancer","dbcSpellId":706862,"name":"Chains of Fire","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(37)_border.png","sigil":"CO","description":"Reduces the cast time of Cindergrip by 0.25 sec and increases its range by 10 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706862:effect:0:aura:107","name":"Chains of Fire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-2.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706862:effect:1:aura:107","name":"Chains of Fire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706862,"level":1,"description":"Reduces the cast time of Cindergrip by 0.25 sec and increases its range by 10 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706862:effect:0:aura:107","name":"Chains of Fire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-2.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706862:effect:1:aura:107","name":"Chains of Fire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":33905},{"id":"coa-tree-7819","classId":"pyromancer","dbcSpellId":800807,"name":"Circle of Fire","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firerune_(2)_border.png","sigil":"CO","description":"Creates a circle of fire at the target location for 10 seconds, dealing 223 + 31% fire SP Fire damage and disorienting all enemies inside for 6 seconds.","target":"hostile","range":{"min":0,"max":30},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800807:effect:0:aura:23","name":"Circle of Fire (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800807:proc:0:680842","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680842}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":680842}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800807,"level":1,"description":"Creates a circle of fire at the target location for 10 seconds, dealing 223 + 31% fire SP Fire damage and disorienting all enemies inside for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800807:effect:0:aura:23","name":"Circle of Fire (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800807:proc:0:680842","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680842}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":680842}]}],"talentEntryId":7819},{"id":"coa-24-demolisher-none-706890","classId":"pyromancer","dbcSpellId":706890,"name":"Demolisher","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firerain_border.png","sigil":"DE","description":"DemolisherRank 2Increases the damage of Slag Barrage by 40% and Flare Bolt by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706890:effect:0:aura:108","name":"Demolisher (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706890:effect:1:aura:108","name":"Demolisher (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706890,"level":1,"description":"DemolisherRank 2Increases the damage of Slag Barrage by 40% and Flare Bolt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706890:effect:0:aura:108","name":"Demolisher (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706890:effect:1:aura:108","name":"Demolisher (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29858","classId":"pyromancer","dbcSpellId":806611,"name":"Dragon Leap","unlockLevel":1,"icon":"/assets/ui/spells/nhi_dragonwing_border.png","sigil":"DL","description":"Leap to a target location and come crashing down, dealing 29 + 30% fire SP Fire damage to up to 10 nearby enemies.","target":"hostile","range":{"min":0,"max":35},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"damage","coefficient":0.46275866746902466,"basePoints":29,"dieSides":6,"pointsPerLevel":0.32069000601768494,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"movement","movement":"leap","toward":"destination"},{"kind":"trigger-spell","spellId":806612},{"kind":"apply-aura","aura":{"id":"coa:806612:effect:0:aura:33","name":"Dragon Leap (Aura 33)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.25}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806611,"level":1,"description":"Leap to a target location and come crashing down, dealing 29 + 30% fire SP Fire damage to up to 10 nearby enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"damage","coefficient":0.46275866746902466,"basePoints":29,"dieSides":6,"pointsPerLevel":0.32069000601768494,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"movement","movement":"leap","toward":"destination"},{"kind":"trigger-spell","spellId":806612},{"kind":"apply-aura","aura":{"id":"coa:806612:effect:0:aura:33","name":"Dragon Leap (Aura 33)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.25}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29858},{"id":"coa-tree-30976","classId":"pyromancer","dbcSpellId":706877,"name":"Dragon's Bane","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_blue.png","sigil":"DS","description":"Increases the critical strike chance of Lava Shard and Cinderheart by 6% against Burning targets.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706877:effect:0:aura:112","name":"Dragon's Bane (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20000,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706877,"level":1,"description":"Increases the critical strike chance of Lava Shard and Cinderheart by 6% against Burning targets.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706877:effect:0:aura:112","name":"Dragon's Bane (Aura 112)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":112,"miscValue":20000,"triggerSpellId":0}]}],"talentEntryId":30976},{"id":"coa-tree-4039","classId":"pyromancer","dbcSpellId":300755,"name":"Dragon's Edge","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_nexus.png","sigil":"DS","description":"Level 10 Passive Direct critical strikes now generate an additional 20 Heat.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300755:effect:0:aura:42","name":"Dragon's Edge (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300755:proc:0:807391","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807391}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807391}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300755,"level":1,"description":"Level 10 Passive Direct critical strikes now generate an additional 20 Heat.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300755:effect:0:aura:42","name":"Dragon's Edge (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300755:proc:0:807391","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807391}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807391}]}],"talentEntryId":4039},{"id":"coa-24-dragonfire-87-500129","classId":"pyromancer","dbcSpellId":500129,"name":"Dragonfire","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_firebreath_border.png","sigil":"DR","description":"DragonfireRank 1Instant cast8 sec cooldownDeals 9 to 10 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5,"basePoints":9,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0.5,"sourceLevel":1,"maxScalingLevel":13},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500129,"level":1,"description":"DragonfireRank 1Instant cast8 sec cooldownDeals 9 to 10 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5,"basePoints":9,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0.5,"sourceLevel":1,"maxScalingLevel":13},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":2,"spellId":502072,"level":14,"description":"DragonfireRank 2Instant cast8 sec cooldownDeals 26 to 30 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.6348275946474623,"basePoints":26,"dieSides":5,"pointsPerLevel":1.9450000524520874,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":3,"spellId":502073,"level":28,"description":"DragonfireRank 3Instant cast8 sec cooldownDeals 64 to 74 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.1621705654055574,"basePoints":64,"dieSides":11,"pointsPerLevel":2.890000104904175,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":40},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":4,"spellId":502074,"level":41,"description":"DragonfireRank 4Instant cast8 sec cooldownDeals 119 to 138 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.6843303385235013,"basePoints":119,"dieSides":20,"pointsPerLevel":3.7674999237060547,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":53},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":5,"spellId":502075,"level":54,"description":"DragonfireRank 5Instant cast8 sec cooldownDeals 225 to 256 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.373574874251361,"basePoints":225,"dieSides":32,"pointsPerLevel":4.644999980926514,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":67},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]},{"rank":6,"spellId":502076,"level":68,"description":"DragonfireRank 6Instant cast8 sec cooldownDeals 412 to 459 Fire Damage to an enemy target, and restores 6% of your maximum Mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.2755823709878578,"basePoints":412,"dieSides":48,"pointsPerLevel":5.590000152587891,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":800604,"durationMs":100},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100}]}]},{"id":"coa-tree-6554","classId":"pyromancer","dbcSpellId":524818,"name":"Dragonscales","unlockLevel":1,"icon":"/assets/ui/spells/inv_artifact_dragonscales.png","sigil":"DR","description":"When you are stunned, damage taken is reduced by -20% for 3 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524818:effect:0:aura:42","name":"Dragonscales (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:524818:proc:0:524819","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524819}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524819}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524818,"level":1,"description":"When you are stunned, damage taken is reduced by -20% for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524818:effect:0:aura:42","name":"Dragonscales (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:524818:proc:0:524819","triggers":["damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524819}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":524819}]}],"talentEntryId":6554},{"id":"coa-tree-30206","classId":"pyromancer","dbcSpellId":800818,"name":"Ember Touch","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firehands_border.png","sigil":"ET","description":"Ember TouchRank 120% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 83+0+SP*0.45+Spi*1, additonally scaling with your Spirit.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":2.75,"basePoints":83,"dieSides":7,"pointsPerLevel":1.6563199758529663,"bonusPowerCoefficient":2.75,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800818,"level":1,"description":"Ember TouchRank 120% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 83+0+SP*0.45+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":2.75,"basePoints":83,"dieSides":7,"pointsPerLevel":1.6563199758529663,"bonusPowerCoefficient":2.75,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}],"talentEntryId":30206},{"id":"coa-tree-30639","classId":"pyromancer","dbcSpellId":802120,"name":"Essence of Malygos","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_petdragonwhelptarecgosa.png","sigil":"EO","description":"Imbue an ally with the essence of Malygos, restoring 4% of their maximum mana every 1 sec for 6 seconds. If used on yourself this effect is doubled.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802120:effect:0:aura:24","name":"Essence of Malygos (Aura 24)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":24}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":802120,"level":1,"description":"Imbue an ally with the essence of Malygos, restoring 4% of their maximum mana every 1 sec for 6 seconds. If used on yourself this effect is doubled.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802120:effect:0:aura:24","name":"Essence of Malygos (Aura 24)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":24}]}],"talentEntryId":30639},{"id":"coa-24-explode-85-800792","classId":"pyromancer","dbcSpellId":800792,"name":"Explode","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_felflamering_red.png","sigil":"EX","description":"ExplodeRank 110% of base mana 1.5 sec castBlast an enemy, dealing 35+0+FireP*1.13 Fire damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.20399999618530273,"basePoints":35,"dieSides":8,"pointsPerLevel":0.42033201456069946,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":1,"maxScalingLevel":2}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800792,"level":1,"description":"ExplodeRank 110% of base mana 1.5 sec castBlast an enemy, dealing 35+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.20399999618530273,"basePoints":35,"dieSides":8,"pointsPerLevel":0.42033201456069946,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":1,"maxScalingLevel":2}]},{"rank":2,"spellId":502057,"level":4,"description":"ExplodeRank 210% of base mana 2 sec castBlast an enemy, dealing 52+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.1484442091824716,"basePoints":52,"dieSides":10,"pointsPerLevel":2.2403299808502197,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":10}]},{"rank":3,"spellId":502058,"level":12,"description":"ExplodeRank 310% of base mana 2.5 sec castBlast an enemy, dealing 94+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4615876468611353,"basePoints":94,"dieSides":12,"pointsPerLevel":1.574049949645996,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":24}]},{"rank":4,"spellId":502059,"level":18,"description":"ExplodeRank 410% of base mana 2.5 sec castBlast an enemy, dealing 140+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.902681620434077,"basePoints":140,"dieSides":14,"pointsPerLevel":2.325860023498535,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":34}]},{"rank":5,"spellId":502060,"level":26,"description":"ExplodeRank 510% of base mana 2.5 sec castBlast an enemy, dealing 202+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3251068146248173,"basePoints":202,"dieSides":18,"pointsPerLevel":2.9033899307250977,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":42}]},{"rank":6,"spellId":502061,"level":36,"description":"ExplodeRank 610% of base mana 2.5 sec castBlast an enemy, dealing 352+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":3.3495986664217283,"basePoints":352,"dieSides":22,"pointsPerLevel":4.1663498878479,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":48}]},{"rank":7,"spellId":502062,"level":46,"description":"ExplodeRank 710% of base mana 2.5 sec castBlast an enemy, dealing 522+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":3.0985499933117726,"basePoints":522,"dieSides":26,"pointsPerLevel":0.7072749733924866,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52}]},{"rank":8,"spellId":502063,"level":54,"description":"ExplodeRank 810% of base mana 2.5 sec castBlast an enemy, dealing 672+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":672,"dieSides":32,"pointsPerLevel":3.763430118560791,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58}]},{"rank":9,"spellId":570750,"level":60,"description":"ExplodeRank 910% of base mana 2.5 sec castBlast an enemy, dealing 839+0+FireP*1.13 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":839,"dieSides":43,"pointsPerLevel":4.5022101402282715,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":65}]}]},{"id":"coa-tree-29554","classId":"pyromancer","dbcSpellId":525059,"name":"Fiery Demeanor","unlockLevel":1,"icon":"/assets/ui/spells/_castercloak_fire.png","sigil":"FD","description":"Reduces spell pushback suffered from damaging attacks by 50% and increases the pushback resistance provided by Ascension of Thaurissan by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525059:effect:0:aura:149","name":"Fiery Demeanor (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525059:effect:1:aura:107","name":"Fiery Demeanor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525059,"level":1,"description":"Reduces spell pushback suffered from damaging attacks by 50% and increases the pushback resistance provided by Ascension of Thaurissan by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525059:effect:0:aura:149","name":"Fiery Demeanor (Aura 149)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525059:effect:1:aura:107","name":"Fiery Demeanor (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":29554},{"id":"coa-tree-33904","classId":"pyromancer","dbcSpellId":300970,"name":"Fire Safety","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firehands_border.png","sigil":"FS","description":"Increases your Fire damage and healing by 2% and reduces your threat generated by -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300970:effect:0:aura:79","name":"Fire Safety (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"fire","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300970:effect:1:aura:10","name":"Fire Safety (Aura 10)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":10,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300970:effect:2:aura:136","name":"Fire Safety (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":4,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300970,"level":1,"description":"Increases your Fire damage and healing by 2% and reduces your threat generated by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300970:effect:0:aura:79","name":"Fire Safety (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"fire","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300970:effect:1:aura:10","name":"Fire Safety (Aura 10)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":10,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300970:effect:2:aura:136","name":"Fire Safety (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":4,"triggerSpellId":0}]},{"rank":2,"spellId":301350,"level":1,"description":"Increases your Fire damage and healing by 4% and reduces your threat generated by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:301350:effect:0:aura:79","name":"Fire Safety (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"fire","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301350:effect:1:aura:10","name":"Fire Safety (Aura 10)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":10,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301350:effect:2:aura:136","name":"Fire Safety (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":4,"triggerSpellId":0}]}],"talentEntryId":33904},{"id":"coa-tree-6461","classId":"pyromancer","dbcSpellId":804300,"name":"Flamecasting","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_playingwithfire.png","sigil":"FL","description":"Generating Heat now has a 25% chance to grant Flamecasting.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804300:effect:0:aura:42","name":"Flamecasting (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804300:proc:0:804301","triggers":["hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804301}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:804300:effect:1:aura:4","name":"Flamecasting (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":4,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804300,"level":1,"description":"Generating Heat now has a 25% chance to grant Flamecasting.FlamecastingIncreases your spell haste by 5% for 15 seconds. Stacks 5 times. Additional applications do not refresh duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804300:effect:0:aura:42","name":"Flamecasting (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804300:proc:0:804301","triggers":["hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804301}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:804300:effect:1:aura:4","name":"Flamecasting (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":4,"triggerSpellId":0}]}],"talentEntryId":6461},{"id":"coa-tree-33906","classId":"pyromancer","dbcSpellId":680836,"name":"Flamer","unlockLevel":1,"icon":"/assets/ui/spells/inv_elemental_mote_fire01.png","sigil":"FL","description":"Increases your spell haste by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680836:effect:0:aura:216","name":"Flamer (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680836,"level":1,"description":"Increases your spell haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680836:effect:0:aura:216","name":"Flamer (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":520546,"level":1,"description":"Increases your spell haste by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520546:effect:0:aura:216","name":"Flamer (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":33906},{"id":"coa-tree-32368","classId":"pyromancer","dbcSpellId":706878,"name":"Flaming Finesse","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fire_explosion_border.png","sigil":"FF","description":"Increases the effectiveness of your Seal spells by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706878:effect:0:aura:103","name":"Flaming Finesse (Aura 103)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":103,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706878:effect:1:aura:108","name":"Flaming Finesse (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706878,"level":1,"description":"Increases the effectiveness of your Seal spells by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706878:effect:0:aura:103","name":"Flaming Finesse (Aura 103)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":103,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706878:effect:1:aura:108","name":"Flaming Finesse (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":32368},{"id":"coa-tree-11882","classId":"pyromancer","dbcSpellId":504754,"name":"Heated","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_fireball02.png","sigil":"HE","description":"Damage dealt by Dragon Leap now generates 10 Heat.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504754:effect:0:aura:42","name":"Heated (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504754:proc:0:807394","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807394}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807394}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504754,"level":1,"description":"Damage dealt by Dragon Leap now generates 10 Heat.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504754:effect:0:aura:42","name":"Heated (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504754:proc:0:807394","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807394}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807394}]}],"talentEntryId":11882},{"id":"coa-tree-7479","classId":"pyromancer","dbcSpellId":680369,"name":"Ignis Ultimatus","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_firestarter.png","sigil":"IU","description":"Channel for 2 seconds, gathering a surge of fiery power before unleashing it in a 50 yd line, dealing 1094 + 100% fire SP Fire damage to enemies while also healing allies for 814 + 200% healing. Ignores invulnerabilities, immunities, and resistances. Consumes Flamecasting stacks to increase this spell's damage and healing by 15% per stack.","target":"hostile","range":{"min":0,"max":50},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680369:effect:0:aura:23","name":"Ignis Ultimatus (Aura 23)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:680369:proc:0:680372","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680372}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":680372},{"kind":"apply-aura","aura":{"id":"coa:680369:effect:1:aura:26","name":"Ignis Ultimatus (Aura 26)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680369,"level":1,"description":"Channel for 2 seconds, gathering a surge of fiery power before unleashing it in a 50 yd line, dealing 1094 + 100% fire SP Fire damage to enemies while also healing allies for 814 + 200% healing. Ignores invulnerabilities, immunities, and resistances. Consumes Flamecasting stacks to increase this spell's damage and healing by 15% per stack.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680369:effect:0:aura:23","name":"Ignis Ultimatus (Aura 23)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:680369:proc:0:680372","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680372}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":680372},{"kind":"apply-aura","aura":{"id":"coa:680369:effect:1:aura:26","name":"Ignis Ultimatus (Aura 26)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":7479},{"id":"coa-24-improved-dragon-breaths-87-704811","classId":"pyromancer","dbcSpellId":704811,"name":"Improved Dragon Breaths","unlockLevel":1,"icon":"/assets/ui/spells/ability_monk_breathoffire.png","sigil":"ID","description":"Improved Dragon BreathsRank 2Increases the damage dealt by your Breaths by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704811:effect:0:aura:108","name":"Improved Dragon Breaths (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704811:effect:1:aura:108","name":"Improved Dragon Breaths (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704811,"level":1,"description":"Improved Dragon BreathsRank 2Increases the damage dealt by your Breaths by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704811:effect:0:aura:108","name":"Improved Dragon Breaths (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704811:effect:1:aura:108","name":"Improved Dragon Breaths (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}]},{"id":"coa-24-improved-petrifying-visage-87-704808","classId":"pyromancer","dbcSpellId":704808,"name":"Improved Petrifying Visage","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_windsofwoe.png","sigil":"IP","description":"Improved Petrifying VisageRank 2Reduces the cooldown of Petrifying Visage by 10 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704808:effect:0:aura:107","name":"Improved Petrifying Visage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704808,"level":1,"description":"Improved Petrifying VisageRank 2Reduces the cooldown of Petrifying Visage by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704808:effect:0:aura:107","name":"Improved Petrifying Visage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-30832","classId":"pyromancer","dbcSpellId":504380,"name":"Inferno Barrier","unlockLevel":1,"icon":"/assets/ui/spells/ability_rhyolith_magmaflow_wave.png","sigil":"IB","description":"Inferno BarrierRank 123% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+84+0 damage. While active, attackers take 4+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504380:effect:0:aura:69","name":"Inferno Barrier (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:504380:absorb:0","amount":84,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504380:effect:1:aura:43","name":"Inferno Barrier (Aura 43)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504380,"level":1,"description":"Inferno BarrierRank 123% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+84+0 damage. While active, attackers take 4+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504380:effect:0:aura:69","name":"Inferno Barrier (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:504380:absorb:0","amount":84,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504380:effect:1:aura:43","name":"Inferno Barrier (Aura 43)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30832},{"id":"coa-tree-4037","classId":"pyromancer","dbcSpellId":92124,"name":"Infernus","unlockLevel":1,"icon":"/assets/ui/spells/nhi_corruptionfire_border.png","sigil":"IN","description":"Damage dealt by Lava Shard now applies Infernus, causing enemies to Burn, dealing an additional 1122 + 120% SP Fire damage over 18 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92124:effect:0:aura:42","name":"Infernus (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92124:proc:0:706874","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706874}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706874}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92124,"level":1,"description":"Damage dealt by Lava Shard now applies Infernus, causing enemies to Burn, dealing an additional 1122 + 120% SP Fire damage over 18 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92124:effect:0:aura:42","name":"Infernus (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92124:proc:0:706874","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706874}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706874}]}],"talentEntryId":4037},{"id":"coa-tree-7760","classId":"pyromancer","dbcSpellId":706650,"name":"Lava-Drenched","unlockLevel":1,"icon":"/assets/ui/spells/novart_physical_ability_(52)_border.png","sigil":"LD","description":"Reduces the chance for your helpful spells to be dispelled by -30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706650:effect:0:aura:235","name":"Lava-Drenched (Aura 235)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":235,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706650,"level":1,"description":"Reduces the chance for your helpful spells to be dispelled by -30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706650:effect:0:aura:235","name":"Lava-Drenched (Aura 235)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":235,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":7760},{"id":"coa-tree-30634","classId":"pyromancer","dbcSpellId":706872,"name":"Magma Guardian","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_pvp410_c_01.png","sigil":"MG","description":"Increases the effectiveness of your Skin spells by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706872:effect:0:aura:108","name":"Magma Guardian (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706872,"level":1,"description":"Increases the effectiveness of your Skin spells by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706872:effect:0:aura:108","name":"Magma Guardian (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":30634},{"id":"coa-tree-30651","classId":"pyromancer","dbcSpellId":500135,"name":"Meteor","unlockLevel":1,"icon":"/assets/ui/spells/_d3meteor.png","sigil":"ME","description":"MeteorRank 115% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 122+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":122},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500135,"level":1,"description":"MeteorRank 115% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 122+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":122},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]}],"talentEntryId":30651},{"id":"coa-24-molten-rapacity-86-704843","classId":"pyromancer","dbcSpellId":704843,"name":"Molten Rapacity","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_windsofwoe.png","sigil":"MR","description":"Molten RapacityRank 2Reduces the cooldown of Flame Step by 30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704843:effect:0:aura:107","name":"Molten Rapacity (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704843,"level":1,"description":"Molten RapacityRank 2Reduces the cooldown of Flame Step by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704843:effect:0:aura:107","name":"Molten Rapacity (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-29548","classId":"pyromancer","dbcSpellId":805483,"name":"Molten Storm","unlockLevel":1,"icon":"/assets/ui/spells/inv_offhand_1h_artifactdoomhammer_d_01.png","sigil":"MS","description":"Increases the critical strike chance and damage of Lava Shard by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805483:effect:0:aura:107","name":"Molten Storm (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805483:effect:1:aura:108","name":"Molten Storm (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805483,"level":1,"description":"Increases the critical strike chance and damage of Lava Shard by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805483:effect:0:aura:107","name":"Molten Storm (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805483:effect:1:aura:108","name":"Molten Storm (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29548},{"id":"coa-tree-7817","classId":"pyromancer","dbcSpellId":706894,"name":"Obliteration","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fire_rune_border.png","sigil":"OB","description":"Eruption now also increases spell haste and movement speed by 20% for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706894:effect:0:aura:107","name":"Obliteration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706894:effect:1:aura:42","name":"Obliteration (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706894:proc:1:706895","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706895}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706895}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706894,"level":1,"description":"Eruption now also increases spell haste and movement speed by 20% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706894:effect:0:aura:107","name":"Obliteration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706894:effect:1:aura:42","name":"Obliteration (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706894:proc:1:706895","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706895}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706895}]}],"talentEntryId":7817},{"id":"coa-24-petrifying-visage-87-801908","classId":"pyromancer","dbcSpellId":801908,"name":"Petrifying Visage","unlockLevel":1,"icon":"/assets/ui/spells/achievment_boss_madnessofdeathwing.png","sigil":"PV","description":"Petrifying VisageRank 115% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 9+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801908:effect:0:aura:12","name":"Petrifying Visage (Aura 12)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.10000000149011612,"basePoints":9,"dieSides":2,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":1,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:801908:effect:2:aura:271","name":"Petrifying Visage (Aura 271)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801908,"level":1,"description":"Petrifying VisageRank 115% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 9+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801908:effect:0:aura:12","name":"Petrifying Visage (Aura 12)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.10000000149011612,"basePoints":9,"dieSides":2,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":1,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:801908:effect:2:aura:271","name":"Petrifying Visage (Aura 271)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0}]},{"rank":2,"spellId":502088,"level":21,"description":"Petrifying VisageRank 215% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 30+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502088:effect:0:aura:12","name":"Petrifying Visage (Aura 12)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.6769814844484683,"basePoints":30,"dieSides":6,"pointsPerLevel":1.934000015258789,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:502088:effect:2:aura:271","name":"Petrifying Visage (Aura 271)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0}]},{"rank":3,"spellId":502089,"level":41,"description":"Petrifying VisageRank 315% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 80+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502089:effect:0:aura:12","name":"Petrifying Visage (Aura 12)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":1.253416651771182,"basePoints":80,"dieSides":15,"pointsPerLevel":3.0139999389648438,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":60},{"kind":"apply-aura","aura":{"id":"coa:502089:effect:2:aura:271","name":"Petrifying Visage (Aura 271)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0}]},{"rank":4,"spellId":502090,"level":61,"description":"Petrifying VisageRank 415% of base mana Instant cast2 min cooldownYou produce a terrible image of a draconic maw, dealing 196+(PL*0.8) Fire damage to an enemy, and causing them to tremble in horror for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502090:effect:0:aura:12","name":"Petrifying Visage (Aura 12)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":2.0185701386970387,"basePoints":196,"dieSides":30,"pointsPerLevel":4.093999862670898,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502090:effect:2:aura:271","name":"Petrifying Visage (Aura 271)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0}]}]},{"id":"coa-24-phoenix-handler-86-704866","classId":"pyromancer","dbcSpellId":704866,"name":"Phoenix Handler","unlockLevel":1,"icon":"/assets/ui/spells/inv_6_2raid_trinket_1c.png","sigil":"PH","description":"Phoenix HandlerRank 2Gives Lava Shard a 100% chance to cause your Phoenix to heal allies within $706856a1yd of it for 20.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704866:effect:0:aura:42","name":"Phoenix Handler (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704866:proc:0:704865","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704865}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704865}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704866,"level":1,"description":"Phoenix HandlerRank 2Gives Lava Shard a 100% chance to cause your Phoenix to heal allies within $706856a1yd of it for 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704866:effect:0:aura:42","name":"Phoenix Handler (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704866:proc:0:704865","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704865}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704865}]}]},{"id":"coa-24-quickburn-none-704826","classId":"pyromancer","dbcSpellId":704826,"name":"Quickburn","unlockLevel":1,"icon":"/assets/ui/spells/spell_burningbladeshaman_blazing_radiance.png","sigil":"QU","description":"QuickburnRank 2Increases the tick rate of Ignite, Blaze and Scalding Brand by 30% but reduces their durations by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704826:effect:0:aura:108","name":"Quickburn (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704826:effect:1:aura:108","name":"Quickburn (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704826,"level":1,"description":"QuickburnRank 2Increases the tick rate of Ignite, Blaze and Scalding Brand by 30% but reduces their durations by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704826:effect:0:aura:108","name":"Quickburn (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704826:effect:1:aura:108","name":"Quickburn (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-24-realm-of-fire-86-704838","classId":"pyromancer","dbcSpellId":704838,"name":"Realm of Fire","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_firelandsraid.png","sigil":"RO","description":"Realm of FireRank 2Reduces the cooldown of Meteor and Erupting by 30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704838:effect:0:aura:107","name":"Realm of Fire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704838,"level":1,"description":"Realm of FireRank 2Reduces the cooldown of Meteor and Erupting by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704838:effect:0:aura:107","name":"Realm of Fire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-24-scorching-sermon-86-704858","classId":"pyromancer","dbcSpellId":704858,"name":"Scorching Sermon","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_redemption.png","sigil":"SS","description":"Scorching SermonRank 2Damage done by Flare Bolt reduces the remaining cooldown of Cauterize Wounds by 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704858:effect:0:aura:231","name":"Scorching Sermon (Aura 231)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704858:proc:0:704857","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704857}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704857}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704858,"level":1,"description":"Scorching SermonRank 2Damage done by Flare Bolt reduces the remaining cooldown of Cauterize Wounds by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704858:effect:0:aura:231","name":"Scorching Sermon (Aura 231)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704858:proc:0:704857","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704857}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704857}]}]},{"id":"coa-24-seal-of-alysrazor-476-800196","classId":"pyromancer","dbcSpellId":800196,"name":"Seal of Alysrazor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SO","description":"Seal of AlysrazorRank 125% of base mana Instant castEmpowers an ally with the power of the eternal phoenix, increasing their Intellect by 2 for 30 min.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800196:effect:0:aura:29","name":"Seal of Alysrazor (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"intellect","operation":"flat","value":2}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800196,"level":1,"description":"Seal of AlysrazorRank 125% of base mana Instant castEmpowers an ally with the power of the eternal phoenix, increasing their Intellect by 2 for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800196:effect:0:aura:29","name":"Seal of Alysrazor (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"intellect","operation":"flat","value":2}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-tree-29752","classId":"pyromancer","dbcSpellId":807126,"name":"Shazzrah's Boon","unlockLevel":1,"icon":"/assets/ui/spells/achievement_mc_shazzrah.png","sigil":"SS","description":"Consuming an Ember now regenerates 2% of your maximum mana.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807126:effect:0:aura:42","name":"Shazzrah's Boon (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807126:proc:0:807220","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807220}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807220}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807126,"level":1,"description":"Consuming an Ember now regenerates 2% of your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807126:effect:0:aura:42","name":"Shazzrah's Boon (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807126:proc:0:807220","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807220}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807220}]}],"talentEntryId":29752},{"id":"coa-tree-4038","classId":"pyromancer","dbcSpellId":92126,"name":"Spirit of the Phoenix","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_phoenix_border.png","sigil":"SO","description":"Level 10 Passive Upon taking damage that would otherwise kill you, you are instead transformed into the Spirit of the Phoenix for 15 seconds. While transformed, your spells have no mana cost and your Spirit is increased by 100%. At the end of the duration, you will be reborn. Can only occur once every 10 min.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92126:effect:0:aura:69","name":"Spirit of the Phoenix (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:92126:absorb:0","amount":1,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":573220}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92126,"level":1,"description":"Level 10 Passive Upon taking damage that would otherwise kill you, you are instead transformed into the Spirit of the Phoenix for 15 seconds. While transformed, your spells have no mana cost and your Spirit is increased by 100%. At the end of the duration, you will be reborn. Can only occur once every 10 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92126:effect:0:aura:69","name":"Spirit of the Phoenix (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:92126:absorb:0","amount":1,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":573220}]}],"talentEntryId":4038},{"id":"coa-24-touched-by-fire-86-704848","classId":"pyromancer","dbcSpellId":704848,"name":"Touched by Fire","unlockLevel":1,"icon":"/assets/ui/spells/nhi_fire_phoenix_border.png","sigil":"TB","description":"Touched by FireRank 1Your Cinderheart, Ember Touch, and Kindle now gains an additional 15% of your bonus healing spell power.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704848:effect:0:aura:107","name":"Touched by Fire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":24,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704848,"level":1,"description":"Touched by FireRank 1Your Cinderheart, Ember Touch, and Kindle now gains an additional 15% of your bonus healing spell power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704848:effect:0:aura:107","name":"Touched by Fire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":24,"triggerSpellId":0}]},{"rank":2,"spellId":704853,"level":1,"description":"Touched by FireRank 2Your Cinderheart, Ember Touch, and Kindle now gains an additional 30% of your bonus healing spell power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704853:effect:0:aura:108","name":"Touched by Fire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":24,"triggerSpellId":0}]}]},{"id":"coa-tree-7481","classId":"pyromancer","dbcSpellId":805477,"name":"Volcanic Shell","unlockLevel":1,"icon":"/assets/ui/spells/nhi_firestone_border.png","sigil":"VS","description":"Generates 50 Heat Conjure a shield of magma and fire around you, absorbing 500 + 200% fire SP damage. Lasts 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:805477:effect:0:aura:69","name":"Volcanic Shell (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:805477:absorb:0","amount":500,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805477:effect:1:aura:149","name":"Volcanic Shell (Aura 149)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805477,"level":1,"description":"Generates 50 Heat Conjure a shield of magma and fire around you, absorbing 500 + 200% fire SP damage. Lasts 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:805477:effect:0:aura:69","name":"Volcanic Shell (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:805477:absorb:0","amount":500,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805477:effect:1:aura:149","name":"Volcanic Shell (Aura 149)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":7481},{"id":"coa-tree-3843","classId":"pyromancer","dbcSpellId":704820,"name":"Ysera's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_dragon_green.png","sigil":"YS","description":"Reduces the cast time of Gaze of Ysera by -0.5 sec and causes it to have a -10% reduced chance to break from damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704820:effect:0:aura:107","name":"Ysera's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704820:effect:1:aura:107","name":"Ysera's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704820,"level":1,"description":"Reduces the cast time of Gaze of Ysera by -0.5 sec and causes it to have a -10% reduced chance to break from damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704820:effect:0:aura:107","name":"Ysera's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704820:effect:1:aura:107","name":"Ysera's Blessing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}],"talentEntryId":3843},{"id":"pyromancer-melt","classId":"pyromancer","dbcSpellId":503227,"name":"Melt","unlockLevel":4,"icon":"/assets/ui/spells/nhi_firelungs_border.png","sigil":"ME","description":"Deals $s1 Fire Damage.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":451267},{"kind":"damage","coefficient":0.2808888929861563,"basePoints":6,"dieSides":1,"pointsPerLevel":1.3960000276565552,"bonusPowerCoefficient":0,"sourceLevel":12},{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":800791,"triggerSpellId":0,"durationMs":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":503227,"level":4,"description":"Deals $s1 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":451267},{"kind":"damage","coefficient":0.2808888929861563,"basePoints":6,"dieSides":1,"pointsPerLevel":1.3960000276565552,"bonusPowerCoefficient":0,"sourceLevel":12},{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":800791,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-24-cindergrip-86-805476","classId":"pyromancer","dbcSpellId":805476,"name":"Cindergrip","unlockLevel":6,"icon":"/assets/ui/spells/ability_rhyolith_lavapool.png","sigil":"CI","description":"CindergripRank 119% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 4 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805476:effect:0:aura:271","name":"Cindergrip (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805476:effect:1:aura:3","name":"Cindergrip (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09206349319881862,"basePoints":4,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":20,"ticks":4,"intervalMs":3000,"tag":"spell-805476"},{"kind":"apply-aura","aura":{"id":"coa:805476:effect:2:aura:26","name":"Cindergrip (Aura 26)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805476,"level":6,"description":"CindergripRank 119% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 4 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805476:effect:0:aura:271","name":"Cindergrip (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805476:effect:1:aura:3","name":"Cindergrip (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09206349319881862,"basePoints":4,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":20,"ticks":4,"intervalMs":3000,"tag":"spell-805476"},{"kind":"apply-aura","aura":{"id":"coa:805476:effect:2:aura:26","name":"Cindergrip (Aura 26)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":535505,"level":22,"description":"CindergripRank 219% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 10 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:535505:effect:0:aura:271","name":"Cindergrip (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:535505:effect:1:aura:3","name":"Cindergrip (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1540540564167607,"basePoints":10,"dieSides":2,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":30,"ticks":4,"intervalMs":3000,"tag":"spell-535505"},{"kind":"apply-aura","aura":{"id":"coa:535505:effect:2:aura:26","name":"Cindergrip (Aura 26)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":535506,"level":32,"description":"CindergripRank 319% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 15 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:535506:effect:0:aura:271","name":"Cindergrip (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:535506:effect:1:aura:3","name":"Cindergrip (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.18156028639340233,"basePoints":15,"dieSides":3,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":40,"ticks":4,"intervalMs":3000,"tag":"spell-535506"},{"kind":"apply-aura","aura":{"id":"coa:535506:effect:2:aura:26","name":"Cindergrip (Aura 26)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":535507,"level":42,"description":"CindergripRank 419% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 20 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:535507:effect:0:aura:271","name":"Cindergrip (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:535507:effect:1:aura:3","name":"Cindergrip (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.20233918421449718,"basePoints":20,"dieSides":5,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":52,"ticks":4,"intervalMs":3000,"tag":"spell-535507"},{"kind":"apply-aura","aura":{"id":"coa:535507:effect:2:aura:26","name":"Cindergrip (Aura 26)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":535508,"level":54,"description":"CindergripRank 519% of base mana 1.5 sec castRaise a lava crag from beneath an enemy, rooting them in place, dealing 30 Fire damage every 3 sec for 12 sec (8 sec vs players). Damage caused may interrupt the effect. Only 1 enemy may be affected at a time.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:535508:effect:0:aura:271","name":"Cindergrip (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:535508:effect:1:aura:3","name":"Cindergrip (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.23526570359289933,"basePoints":30,"dieSides":6,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":64,"ticks":4,"intervalMs":3000,"tag":"spell-535508"},{"kind":"apply-aura","aura":{"id":"coa:535508:effect:2:aura:26","name":"Cindergrip (Aura 26)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}]}]},{"id":"pyromancer-flare-bolt","classId":"pyromancer","dbcSpellId":502011,"name":"Flare Bolt","unlockLevel":6,"icon":"/assets/ui/spells/custom_t_fireball_border.png","sigil":"FB","description":"Flare BoltRank 211% of base mana 2 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 40+0+FireP*.571 Fire damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7244182881854829,"basePoints":40,"dieSides":5,"pointsPerLevel":0.6063920259475708,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502011,"level":6,"description":"Flare BoltRank 211% of base mana 2 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 40+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7244182881854829,"basePoints":40,"dieSides":5,"pointsPerLevel":0.6063920259475708,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":3,"spellId":502012,"level":14,"description":"Flare BoltRank 311% of base mana 2 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 56+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8064847389856974,"basePoints":56,"dieSides":10,"pointsPerLevel":0.6902980208396912,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":4,"spellId":502013,"level":22,"description":"Flare BoltRank 411% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 104+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.2534792831352166,"basePoints":104,"dieSides":12,"pointsPerLevel":1.347100019454956,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":5,"spellId":502014,"level":30,"description":"Flare BoltRank 511% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 164+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.6778962947704175,"basePoints":164,"dieSides":20,"pointsPerLevel":1.767199993133545,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":6,"spellId":502015,"level":38,"description":"Flare BoltRank 611% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 226+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9635484143623017,"basePoints":226,"dieSides":24,"pointsPerLevel":1.96589994430542,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":7,"spellId":502016,"level":46,"description":"Flare BoltRank 711% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 301+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7814350958730354,"basePoints":301,"dieSides":28,"pointsPerLevel":0.25005701184272766,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":8,"spellId":502017,"level":54,"description":"Flare BoltRank 811% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 384+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9516908212560387,"basePoints":384,"dieSides":41,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":9,"spellId":502018,"level":60,"description":"Flare BoltRank 911% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 479+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":2.2466666666666666,"basePoints":479,"dieSides":54,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]},{"rank":10,"spellId":502019,"level":68,"description":"Flare BoltRank 1011% of base mana 2.5 sec castGenerates 20 Heat Invoke flames upon an enemy, dealing 572+0+FireP*.571 Fire damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":3.1658351852233153,"basePoints":572,"dieSides":55,"pointsPerLevel":2.783720016479492,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":802074,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":807202,"durationMs":0}]}]},{"id":"pyromancer-slag-barrage","classId":"pyromancer","dbcSpellId":502032,"name":"Slag Barrage","unlockLevel":7,"icon":"/assets/ui/spells/ability_ironmaidens_rapidfire.png","sigil":"SB","description":"Slag BarrageRank 216% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502032:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502032:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502032,"level":7,"description":"Slag BarrageRank 216% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502032:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502032:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":3,"spellId":502033,"level":13,"description":"Slag BarrageRank 316% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502033:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502033:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":4,"spellId":502034,"level":19,"description":"Slag BarrageRank 416% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502034:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502034:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":5,"spellId":502035,"level":26,"description":"Slag BarrageRank 516% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502035:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502035:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":6,"spellId":502036,"level":32,"description":"Slag BarrageRank 616% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502036:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502036:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":7,"spellId":502037,"level":38,"description":"Slag BarrageRank 716% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502037:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502037:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":8,"spellId":502038,"level":44,"description":"Slag BarrageRank 816% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502038:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502038:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":9,"spellId":502039,"level":50,"description":"Slag BarrageRank 916% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502039:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502039:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":10,"spellId":502040,"level":56,"description":"Slag BarrageRank 1016% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502040:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502040:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":11,"spellId":502041,"level":63,"description":"Slag BarrageRank 1116% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502041:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502041:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":12,"spellId":502042,"level":69,"description":"Slag BarrageRank 1216% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502042:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502042:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]},{"rank":13,"spellId":502043,"level":75,"description":"Slag BarrageRank 1316% of base mana 4 sec cast30 sec cooldownConsumes Flames of Focus Hurl spheres of molten slag at an enemy target for each stack consumed. Each sphere causes 20+(PL*2.2) Fire damage and slows their movement speed by 0% for 5 sec. Stacks 6 times.","castMode":"cast","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502043:effect:0:aura:23","name":"Slag Barrage (Aura 23)","disposition":"debuff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502043:proc:0:805601","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805601}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805601}]}]},{"id":"coa-24-blaze-85-805500","classId":"pyromancer","dbcSpellId":805500,"name":"Blaze","unlockLevel":8,"icon":"/assets/ui/spells/spell_fire_lavaspawn.png","sigil":"BL","description":"BlazeRank 112% of base mana Instant castConsumes 1 Ember Burn an enemy for 21+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09000000357627869,"basePoints":21,"dieSides":1,"pointsPerLevel":0.685259997844696,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":8,"maxScalingLevel":10,"ticks":5,"intervalMs":3000,"tag":"spell-805500"},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805500,"level":8,"description":"BlazeRank 112% of base mana Instant castConsumes 1 Ember Burn an enemy for 21+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09000000357627869,"basePoints":21,"dieSides":1,"pointsPerLevel":0.685259997844696,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":8,"maxScalingLevel":10,"ticks":5,"intervalMs":3000,"tag":"spell-805500"},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":534600,"level":14,"description":"BlazeRank 212% of base mana Instant castConsumes 1 Ember Burn an enemy for 46+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:534600:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6818908014516721,"basePoints":46,"dieSides":1,"pointsPerLevel":0.9517499804496765,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":18,"ticks":5,"intervalMs":3000,"tag":"spell-534600"},{"kind":"apply-aura","aura":{"id":"coa:534600:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:534600:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":534601,"level":22,"description":"BlazeRank 312% of base mana Instant castConsumes 1 Ember Burn an enemy for 66+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:534601:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.934137842676661,"basePoints":66,"dieSides":1,"pointsPerLevel":1.7131500244140625,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":5,"intervalMs":3000,"tag":"spell-534601"},{"kind":"apply-aura","aura":{"id":"coa:534601:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:534601:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":534602,"level":28,"description":"BlazeRank 412% of base mana Instant castConsumes 1 Ember Burn an enemy for 90+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:534602:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1292000112607496,"basePoints":90,"dieSides":1,"pointsPerLevel":1.9881000518798828,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":5,"intervalMs":3000,"tag":"spell-534602"},{"kind":"apply-aura","aura":{"id":"coa:534602:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:534602:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":534603,"level":34,"description":"BlazeRank 512% of base mana Instant castConsumes 1 Ember Burn an enemy for 106+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:534603:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.2102721110493146,"basePoints":106,"dieSides":1,"pointsPerLevel":2.115000009536743,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":5,"intervalMs":3000,"tag":"spell-534603"},{"kind":"apply-aura","aura":{"id":"coa:534603:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:534603:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":534604,"level":42,"description":"BlazeRank 612% of base mana Instant castConsumes 1 Ember Burn an enemy for 139+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:534604:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.3434212890981931,"basePoints":139,"dieSides":1,"pointsPerLevel":2.1601200103759766,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":48,"ticks":5,"intervalMs":3000,"tag":"spell-534604"},{"kind":"apply-aura","aura":{"id":"coa:534604:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:534604:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":572159,"level":50,"description":"BlazeRank 712% of base mana Instant castConsumes 1 Ember Burn an enemy for 181+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:572159:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1509128246551905,"basePoints":181,"dieSides":1,"pointsPerLevel":0.8685600161552429,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56,"ticks":5,"intervalMs":3000,"tag":"spell-572159"},{"kind":"apply-aura","aura":{"id":"coa:572159:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:572159:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":572160,"level":58,"description":"BlazeRank 812% of base mana Instant castConsumes 1 Ember Burn an enemy for 222+SP*0.235 Fire Damage every 3 sec and reduce their healing received by 40% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:572160:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0136986301369864,"basePoints":222,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66,"ticks":5,"intervalMs":3000,"tag":"spell-572160"},{"kind":"apply-aura","aura":{"id":"coa:572160:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:572160:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-24-cinderheart-476-502044","classId":"pyromancer","dbcSpellId":502044,"name":"Cinderheart","unlockLevel":8,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CI","description":"CinderheartRank 230% of base mana 2.5 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 102+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":102,"dieSides":16,"pointsPerLevel":1.5470999479293823,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":8,"maxScalingLevel":12}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502044,"level":8,"description":"CinderheartRank 230% of base mana 2.5 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 102+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":102,"dieSides":16,"pointsPerLevel":1.5470999479293823,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":8,"maxScalingLevel":12}]},{"rank":3,"spellId":502045,"level":14,"description":"CinderheartRank 330% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 192+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":192,"dieSides":21,"pointsPerLevel":2.983920097351074,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":14,"maxScalingLevel":18}]},{"rank":4,"spellId":502046,"level":20,"description":"CinderheartRank 430% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 301+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":301,"dieSides":30,"pointsPerLevel":4.111269950866699,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":20,"maxScalingLevel":24}]},{"rank":5,"spellId":502047,"level":26,"description":"CinderheartRank 530% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 415+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":415,"dieSides":39,"pointsPerLevel":6.076670169830322,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":26,"maxScalingLevel":30}]},{"rank":6,"spellId":502048,"level":32,"description":"CinderheartRank 630% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 528+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":528,"dieSides":53,"pointsPerLevel":4.945069789886475,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":7,"spellId":502049,"level":40,"description":"CinderheartRank 730% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 698+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":698,"dieSides":69,"pointsPerLevel":6.6911301612854,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":40,"maxScalingLevel":46}]},{"rank":8,"spellId":502050,"level":48,"description":"CinderheartRank 830% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 873+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":873,"dieSides":101,"pointsPerLevel":9.292510032653809,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":9,"spellId":502051,"level":56,"description":"CinderheartRank 930% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 965+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":965,"dieSides":110,"pointsPerLevel":29.046300888061523,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":10,"spellId":502052,"level":60,"description":"CinderheartRank 1030% of base mana 3 sec castGenerates 30 Heat Mend an ally with healing flames, healing for 1027+0+SP*0.65+Spi*1, additionally scaling with your Spirit.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.20399999618530273,"basePoints":1027,"dieSides":122,"pointsPerLevel":7.797130107879639,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":60,"maxScalingLevel":65}]}]},{"id":"coa-24-ember-touch-86-800818","classId":"pyromancer","dbcSpellId":800818,"name":"Ember Touch","unlockLevel":10,"icon":"/assets/ui/spells/nhi_firehands_border.png","sigil":"ET","description":"Ember TouchRank 120% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 83+0+SP*0.45+Spi*1, additonally scaling with your Spirit.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":2.75,"basePoints":83,"dieSides":7,"pointsPerLevel":1.6563199758529663,"bonusPowerCoefficient":2.75,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800818,"level":10,"description":"Ember TouchRank 120% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 83+0+SP*0.45+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":2.75,"basePoints":83,"dieSides":7,"pointsPerLevel":1.6563199758529663,"bonusPowerCoefficient":2.75,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":2,"spellId":502085,"level":16,"description":"Ember TouchRank 220% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 128+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1.8568017200757099,"basePoints":128,"dieSides":9,"pointsPerLevel":2.5426599979400635,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":3,"spellId":502086,"level":22,"description":"Ember TouchRank 320% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 181+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":2.3864064689155096,"basePoints":181,"dieSides":11,"pointsPerLevel":3.5859599113464355,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":4,"spellId":502087,"level":28,"description":"Ember TouchRank 420% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 234+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":2.8684145313824794,"basePoints":234,"dieSides":14,"pointsPerLevel":4.625909805297852,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":5,"spellId":520320,"level":34,"description":"Ember TouchRank 520% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 288+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":3.3349499864643124,"basePoints":288,"dieSides":19,"pointsPerLevel":5.683460235595703,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":6,"spellId":520751,"level":40,"description":"Consumes 1 Ember Warm an ally with everliving flames, healing them for ${$m1+0+$SP*0.176111+$SPI*1}, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":3.168581806529652,"basePoints":349,"dieSides":24,"pointsPerLevel":4.0578999519348145,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":7,"spellId":572892,"level":48,"description":"Ember TouchRank 720% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 398+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":398,"dieSides":31,"pointsPerLevel":7.858349800109863,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":8,"spellId":572893,"level":54,"description":"Ember TouchRank 820% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 426+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":426,"dieSides":41,"pointsPerLevel":8.45048999786377,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":9,"spellId":572894,"level":60,"description":"Ember TouchRank 920% of base mana Instant castConsumes 1 Ember Warm an ally with everliving flames, healing them for 474+0+SP*0.176111+Spi*1, additonally scaling with your Spirit.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":3.631894259982639,"basePoints":474,"dieSides":53,"pointsPerLevel":5.2862701416015625,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"trigger-spell","spellId":807536},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}]},{"id":"coa-24-lava-shard-476-503231","classId":"pyromancer","dbcSpellId":503231,"name":"Lava Shard","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LS","description":"Lava ShardRank 220% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 45+0+SP*0.95 Physical damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7928039995829265,"basePoints":45,"dieSides":8,"pointsPerLevel":1.0960299968719482,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503231,"level":10,"description":"Lava ShardRank 220% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 45+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7928039995829265,"basePoints":45,"dieSides":8,"pointsPerLevel":1.0960299968719482,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":503232,"level":16,"description":"Lava ShardRank 320% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 73+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0762683909426454,"basePoints":73,"dieSides":10,"pointsPerLevel":1.412060022354126,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":503233,"level":24,"description":"Lava ShardRank 420% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 112+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4734434307130992,"basePoints":112,"dieSides":13,"pointsPerLevel":2.2663700580596924,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":503234,"level":32,"description":"Lava ShardRank 520% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 175+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":2.0517775623510914,"basePoints":175,"dieSides":16,"pointsPerLevel":3.337519884109497,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":503235,"level":40,"description":"Lava ShardRank 620% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 248+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":2.566574559067235,"basePoints":248,"dieSides":20,"pointsPerLevel":4.149620056152344,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":503236,"level":48,"description":"Lava ShardRank 720% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 334+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":2.9760389378461887,"basePoints":334,"dieSides":25,"pointsPerLevel":4.509819984436035,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":503237,"level":56,"description":"Lava ShardRank 820% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 432+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":3.3162366482013828,"basePoints":432,"dieSides":31,"pointsPerLevel":4.631400108337402,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":9,"spellId":503238,"level":64,"description":"Lava ShardRank 920% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 544+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":3.6028165535584784,"basePoints":544,"dieSides":37,"pointsPerLevel":4.56043004989624,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":10,"spellId":503239,"level":72,"description":"Lava ShardRank 1020% of base mana Instant cast10 sec cooldownGenerates 1 Ember Hurl a molten rock, smashing into an enemy dealing 668+0+SP*0.95 Physical damage.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":3.7391307582343676,"basePoints":668,"dieSides":44,"pointsPerLevel":3.9779601097106934,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":572806},{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-24-meteor-85-500135","classId":"pyromancer","dbcSpellId":500135,"name":"Meteor","unlockLevel":10,"icon":"/assets/ui/spells/_d3meteor.png","sigil":"ME","description":"MeteorRank 115% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 122+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":122},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500135,"level":10,"description":"MeteorRank 115% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 122+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":122},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":2,"spellId":500649,"level":18,"description":"MeteorRank 215% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 160+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":160},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":3,"spellId":500650,"level":26,"description":"MeteorRank 315% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 254+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":254},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":4,"spellId":500651,"level":34,"description":"MeteorRank 415% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 375+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":375},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":5,"spellId":500652,"level":40,"description":"MeteorRank 515% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 468+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":468},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":6,"spellId":502055,"level":46,"description":"MeteorRank 615% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 583+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":583},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":7,"spellId":502056,"level":54,"description":"MeteorRank 715% of base mana Instant cast30 sec cooldownGenerates 50 Heat Call down a meteor in an 8 yd area, dealing 749+0+FireP*1.25 Fire damage to 8 enemies and disorienting them for 4 sec. Direct damage dealt will break the effect.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":804076,"withValue":749},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]}]},{"id":"coa-24-phoenix-rebirth-86-706867","classId":"pyromancer","dbcSpellId":706867,"name":"Phoenix Rebirth","unlockLevel":10,"icon":"/assets/ui/spells/ability_racial_foregedinflames.png","sigil":"PR","description":"Phoenix RebirthRank 160% of base mana 10 sec castBrings a dead ally back to life with 70 health and 135 mana. Cannot be cast when in combat.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706867,"level":10,"description":"Phoenix RebirthRank 160% of base mana 10 sec castBrings a dead ally back to life with 70 health and 135 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":2,"spellId":707641,"level":20,"description":"Phoenix RebirthRank 260% of base mana 10 sec castBrings a dead ally back to life with 145 health and 273 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":3,"spellId":707642,"level":30,"description":"Phoenix RebirthRank 360% of base mana 10 sec castBrings a dead ally back to life with 253 health and 447 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":4,"spellId":707643,"level":40,"description":"Phoenix RebirthRank 460% of base mana 10 sec castBrings a dead ally back to life with 400 health and 635 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":5,"spellId":707644,"level":50,"description":"Phoenix RebirthRank 560% of base mana 10 sec castBrings a dead ally back to life with 583 health and 833 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":6,"spellId":707645,"level":60,"description":"Phoenix RebirthRank 660% of base mana 10 sec castBrings a dead ally back to life with 820 health and 1030 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":7,"spellId":707646,"level":70,"description":"Phoenix RebirthRank 760% of base mana 10 sec castBrings a dead ally back to life with 1320 health and 1250 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":8,"spellId":707647,"level":80,"description":"Phoenix RebirthRank 860% of base mana 10 sec castBrings a dead ally back to life with 2420 health and 1750 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]}]},{"id":"coa-24-echo-of-nozdormu-87-802174","classId":"pyromancer","dbcSpellId":802174,"name":"Echo of Nozdormu","unlockLevel":11,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EO","description":"Echo of NozdormuRank 115% of base mana 2.5 sec castObliterate an enemy, dealing 120+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3026550121796436,"basePoints":120,"dieSides":20,"pointsPerLevel":4.555190086364746,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":803464,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802174,"level":11,"description":"Echo of NozdormuRank 115% of base mana 2.5 sec castObliterate an enemy, dealing 120+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3026550121796436,"basePoints":120,"dieSides":20,"pointsPerLevel":4.555190086364746,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":803464,"durationMs":0}]},{"rank":2,"spellId":803407,"level":18,"description":"Echo of NozdormuRank 215% of base mana 2.5 sec castObliterate an enemy, dealing 165+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.8592438167995877,"basePoints":165,"dieSides":26,"pointsPerLevel":5.864729881286621,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":3,"spellId":803408,"level":24,"description":"Echo of NozdormuRank 315% of base mana 2.5 sec castObliterate an enemy, dealing 248+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.7911364237467446,"basePoints":248,"dieSides":36,"pointsPerLevel":7.419290065765381,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":4,"spellId":803409,"level":30,"description":"Echo of NozdormuRank 415% of base mana 2.5 sec castObliterate an enemy, dealing 376+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":376,"dieSides":49,"pointsPerLevel":10.361000061035156,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":5,"spellId":803410,"level":34,"description":"Echo of NozdormuRank 515% of base mana 2.5 sec castObliterate an enemy, dealing 504+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":504,"dieSides":67,"pointsPerLevel":12.721799850463867,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":6,"spellId":578307,"level":40,"description":"Echo of NozdormuRank 615% of base mana 2.5 sec castObliterate an enemy, dealing 661+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":661,"dieSides":81,"pointsPerLevel":14.540900230407715,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":7,"spellId":578308,"level":44,"description":"Echo of NozdormuRank 715% of base mana 2.5 sec castObliterate an enemy, dealing 820+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":820,"dieSides":97,"pointsPerLevel":14.477299690246582,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":8,"spellId":578309,"level":50,"description":"Echo of NozdormuRank 815% of base mana 2.5 sec castObliterate an enemy, dealing 931+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":931,"dieSides":115,"pointsPerLevel":5.334280014038086,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":9,"spellId":567589,"level":56,"description":"Echo of NozdormuRank 915% of base mana 2.5 sec castObliterate an enemy, dealing 998+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":998,"dieSides":135,"pointsPerLevel":5.457970142364502,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]},{"rank":10,"spellId":567590,"level":60,"description":"Echo of NozdormuRank 1015% of base mana 2.5 sec castObliterate an enemy, dealing 1081+0+SP*1.05 Chromatic Damage and reducing all spell and ability cooldowns by 5%.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1081,"dieSides":155,"pointsPerLevel":5.071320056915283,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64},{"kind":"trigger-spell","spellId":802804},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":803464,"durationMs":0}]}]},{"id":"coa-24-flames-of-neltharion-87-801915","classId":"pyromancer","dbcSpellId":801915,"name":"Flames of Neltharion","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FO","description":"Flames of NeltharionRank 112% of base mana 2 sec castUnleash draconic flames, dealing 74+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","target":"hostile","range":{"min":0,"max":35},"radius":5,"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9382716049382716,"basePoints":74,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":12}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801915,"level":12,"description":"Flames of NeltharionRank 112% of base mana 2 sec castUnleash draconic flames, dealing 74+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9382716049382716,"basePoints":74,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":12}]},{"rank":2,"spellId":535509,"level":18,"description":"Flames of NeltharionRank 212% of base mana 2 sec castUnleash draconic flames, dealing 92+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0544152693314985,"basePoints":92,"dieSides":6,"pointsPerLevel":0.5492839813232422,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24}]},{"rank":3,"spellId":535510,"level":26,"description":"Flames of NeltharionRank 312% of base mana 2 sec castUnleash draconic flames, dealing 152+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.0673336788890806,"basePoints":152,"dieSides":7,"pointsPerLevel":3.818540096282959,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30}]},{"rank":4,"spellId":535511,"level":32,"description":"Flames of NeltharionRank 412% of base mana 2 sec castUnleash draconic flames, dealing 220+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.680481173467974,"basePoints":220,"dieSides":9,"pointsPerLevel":4.810870170593262,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36}]},{"rank":5,"spellId":535512,"level":38,"description":"Flames of NeltharionRank 512% of base mana 2 sec castUnleash draconic flames, dealing 286+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.9710155762966326,"basePoints":286,"dieSides":11,"pointsPerLevel":4.7734599113464355,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42}]},{"rank":6,"spellId":572618,"level":44,"description":"Flames of NeltharionRank 612% of base mana 2 sec castUnleash draconic flames, dealing 365+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.825051269962289,"basePoints":365,"dieSides":13,"pointsPerLevel":6.955319881439209,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":46}]},{"rank":7,"spellId":572619,"level":48,"description":"Flames of NeltharionRank 712% of base mana 2 sec castUnleash draconic flames, dealing 421+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.901809046508143,"basePoints":421,"dieSides":16,"pointsPerLevel":6.4362897872924805,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":50}]},{"rank":8,"spellId":572620,"level":52,"description":"Flames of NeltharionRank 812% of base mana 2 sec castUnleash draconic flames, dealing 484+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":484,"dieSides":19,"pointsPerLevel":6.585350036621094,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":54}]},{"rank":9,"spellId":572621,"level":56,"description":"Flames of NeltharionRank 912% of base mana 2 sec castUnleash draconic flames, dealing 547+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":547,"dieSides":23,"pointsPerLevel":6.430220127105713,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":10,"spellId":572622,"level":60,"description":"Flames of NeltharionRank 1012% of base mana 2 sec castUnleash draconic flames, dealing 621+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.8133333333333335,"basePoints":621,"dieSides":25,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60}]},{"rank":11,"spellId":572623,"level":76,"description":"Flames of NeltharionRank 1112% of base mana 2 sec castUnleash draconic flames, dealing 975+0+FireP*0.48 Fire damage to an enemy and up to 2 additional nearby enemies.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.6172161172161172,"basePoints":975,"dieSides":26,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":76}]}]},{"id":"coa-24-destroyers-maw-87-802107","classId":"pyromancer","dbcSpellId":802107,"name":"Destroyer's Maw","unlockLevel":17,"icon":"/assets/ui/spells/ability_deathwing_cataclysm.png","sigil":"DS","description":"Destroyer's MawRank 19% of base mana 2 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 103+0+FireP*1 Fire damage that cannot be resisted.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":103,"dieSides":10,"pointsPerLevel":6.593400001525879,"bonusPowerCoefficient":1,"sourceLevel":17,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802107,"level":17,"description":"Destroyer's MawRank 19% of base mana 2 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 103+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":103,"dieSides":10,"pointsPerLevel":6.593400001525879,"bonusPowerCoefficient":1,"sourceLevel":17,"maxScalingLevel":22}]},{"rank":2,"spellId":502107,"level":24,"description":"Destroyer's MawRank 29% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 191+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":3.1334461309970956,"basePoints":191,"dieSides":12,"pointsPerLevel":7.08804988861084,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":3,"spellId":502108,"level":32,"description":"Destroyer's MawRank 39% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 292+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":3.714621253047429,"basePoints":292,"dieSides":15,"pointsPerLevel":7.023799896240234,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":4,"spellId":502109,"level":40,"description":"Destroyer's MawRank 49% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 398+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":398,"dieSides":24,"pointsPerLevel":6.872429847717285,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46}]},{"rank":5,"spellId":502110,"level":48,"description":"Destroyer's MawRank 59% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 524+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":524,"dieSides":32,"pointsPerLevel":7.511360168457031,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":6,"spellId":502111,"level":56,"description":"Destroyer's MawRank 69% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 670+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":3.3106621240785983,"basePoints":670,"dieSides":38,"pointsPerLevel":0.2976970076560974,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":7,"spellId":502112,"level":60,"description":"Destroyer's MawRank 79% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 760+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":3.5229567109213935,"basePoints":760,"dieSides":55,"pointsPerLevel":0.09442099928855896,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66}]},{"rank":8,"spellId":502113,"level":68,"description":"Destroyer's MawRank 89% of base mana 2.5 sec cast15 sec cooldownGenerates 30 Heat Unleash a vicious draconic maw on an enemy, dealing 896+0+FireP*1 Fire damage that cannot be resisted.","castMode":"cast","castTimeMs":2500,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":896,"dieSides":71,"pointsPerLevel":14.44159984588623,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76}]}]},{"id":"pyromancer-ignite","classId":"pyromancer","dbcSpellId":502020,"name":"Ignite","unlockLevel":18,"icon":"/assets/ui/spells/ability_mage_fierypayback.png","sigil":"IG","description":"IgniteRank 212% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 161 to 175 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502020:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24242424242424243,"basePoints":23,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":20,"ticks":7,"intervalMs":3000,"tag":"spell-502020"},{"kind":"apply-aura","aura":{"id":"coa:502020:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502020,"level":18,"description":"IgniteRank 212% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 161 to 175 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502020:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24242424242424243,"basePoints":23,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":20,"ticks":7,"intervalMs":3000,"tag":"spell-502020"},{"kind":"apply-aura","aura":{"id":"coa:502020:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502021,"level":22,"description":"IgniteRank 312% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 189 to 224 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502021:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.26576576576576577,"basePoints":27,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":7,"intervalMs":3000,"tag":"spell-502021"},{"kind":"apply-aura","aura":{"id":"coa:502021:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502022,"level":28,"description":"IgniteRank 412% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 266 to 322 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502022:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.32558139534883723,"basePoints":38,"dieSides":9,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":30,"ticks":7,"intervalMs":3000,"tag":"spell-502022"},{"kind":"apply-aura","aura":{"id":"coa:502022:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502023,"level":32,"description":"IgniteRank 512% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 315 to 364 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502023:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.34397163120567376,"basePoints":45,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36,"ticks":7,"intervalMs":3000,"tag":"spell-502023"},{"kind":"apply-aura","aura":{"id":"coa:502023:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502024,"level":38,"description":"IgniteRank 612% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 385 to 497 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502024:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.39622641509433965,"basePoints":55,"dieSides":17,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":40,"ticks":7,"intervalMs":3000,"tag":"spell-502024"},{"kind":"apply-aura","aura":{"id":"coa:502024:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502025,"level":42,"description":"IgniteRank 712% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 448 to 595 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502025:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.43567251461988304,"basePoints":64,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":7,"intervalMs":3000,"tag":"spell-502025"},{"kind":"apply-aura","aura":{"id":"coa:502025:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502026,"level":48,"description":"IgniteRank 812% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 546 to 735 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502026:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.48412698412698413,"basePoints":78,"dieSides":28,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":50,"ticks":7,"intervalMs":3000,"tag":"spell-502026"},{"kind":"apply-aura","aura":{"id":"coa:502026:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":502027,"level":52,"description":"IgniteRank 912% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 609 to 840 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502027:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5149253731343284,"basePoints":87,"dieSides":34,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":7,"intervalMs":3000,"tag":"spell-502027"},{"kind":"apply-aura","aura":{"id":"coa:502027:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":502028,"level":58,"description":"IgniteRank 1012% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 784 to 1015 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502028:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.58675799086758,"basePoints":112,"dieSides":34,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58,"ticks":7,"intervalMs":3000,"tag":"spell-502028"},{"kind":"apply-aura","aura":{"id":"coa:502028:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":11,"spellId":502029,"level":60,"description":"IgniteRank 1112% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 791 to 1134 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502029:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6111111111111112,"basePoints":113,"dieSides":50,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":74,"ticks":7,"intervalMs":3000,"tag":"spell-502029"},{"kind":"apply-aura","aura":{"id":"coa:502029:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":12,"spellId":502030,"level":76,"description":"IgniteRank 1212% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 1120 to 1526 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502030:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6923076923076923,"basePoints":160,"dieSides":59,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78,"ticks":7,"intervalMs":3000,"tag":"spell-502030"},{"kind":"apply-aura","aura":{"id":"coa:502030:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":13,"spellId":502031,"level":80,"description":"IgniteRank 1312% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 1106 to 1575 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502031:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8416656828763193,"basePoints":158,"dieSides":68,"pointsPerLevel":0.6046839952468872,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":7,"intervalMs":3000,"tag":"spell-502031"},{"kind":"apply-aura","aura":{"id":"coa:502031:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-24-pillar-of-flame-85-805496","classId":"pyromancer","dbcSpellId":805496,"name":"Pillar of Flame","unlockLevel":18,"icon":"/assets/ui/spells/nhi_fireblow_border.png","sigil":"PO","description":"Pillar of FlameRank 119% of base mana 1.5 sec cast20 sec cooldownGenerates 20 Heat Per Target Create a pillar of lava beneath an enemy, dealing 36+0+FireP*0.3124 Fire damage. Deals an additional 92+0+FireP*0.34364 Fire damage to enemies near the primary target.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":0.31028141266119386,"basePoints":36,"dieSides":6,"pointsPerLevel":0.022053999826312065,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"damage","coefficient":0.7943787141037839,"basePoints":92,"dieSides":15,"pointsPerLevel":0.04043399915099144,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805496,"level":27,"description":"Pillar of FlameRank 119% of base mana 1.5 sec cast20 sec cooldownGenerates 20 Heat Per Target Create a pillar of lava beneath an enemy, dealing 36+0+FireP*0.3124 Fire damage. Deals an additional 92+0+FireP*0.34364 Fire damage to enemies near the primary target.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":0.31028141266119386,"basePoints":36,"dieSides":6,"pointsPerLevel":0.022053999826312065,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32},{"kind":"damage","coefficient":0.7943787141037839,"basePoints":92,"dieSides":15,"pointsPerLevel":0.04043399915099144,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32}]},{"rank":2,"spellId":502053,"level":18,"description":"Pillar of FlameRank 219% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 111 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5357575705557158,"basePoints":111,"dieSides":1,"pointsPerLevel":2.2799999713897705,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":25}]},{"rank":3,"spellId":502054,"level":25,"description":"Pillar of FlameRank 319% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 148 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8583333333333334,"basePoints":148,"dieSides":1,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32}]},{"rank":4,"spellId":570730,"level":32,"description":"Pillar of FlameRank 419% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 178 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":2.2024397613308953,"basePoints":178,"dieSides":1,"pointsPerLevel":4.142000198364258,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":39}]},{"rank":5,"spellId":570731,"level":39,"description":"Pillar of FlameRank 519% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 241 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":2.8288210115315002,"basePoints":241,"dieSides":1,"pointsPerLevel":5.571000099182129,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":46}]},{"rank":6,"spellId":570732,"level":46,"description":"Pillar of FlameRank 619% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 325 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":3.66120218579235,"basePoints":325,"dieSides":1,"pointsPerLevel":7.5,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":53}]},{"rank":7,"spellId":570733,"level":53,"description":"Pillar of FlameRank 719% of base mana 2 sec cast15 sec cooldownCall down a pillar of fire on an enemy dealing 438 Fire Damage, and an additional 50% of the initial damage over 10 sec. Overheat: Guaranteed to critically strike.","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":438,"dieSides":1,"pointsPerLevel":10.140000343322754,"bonusPowerCoefficient":0,"sourceLevel":53,"maxScalingLevel":60}]}]},{"id":"coa-24-inferno-barrier-85-535650","classId":"pyromancer","dbcSpellId":535650,"name":"Inferno Barrier","unlockLevel":20,"icon":"/assets/ui/spells/ability_rhyolith_magmaflow_wave.png","sigil":"IB","description":"Inferno BarrierRank 223% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+150+0 damage. While active, attackers take 7+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:535650:effect:0:aura:69","name":"Inferno Barrier (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:535650:absorb:0","amount":150,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:535650:effect:1:aura:43","name":"Inferno Barrier (Aura 43)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":535650,"level":20,"description":"Inferno BarrierRank 223% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+150+0 damage. While active, attackers take 7+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:535650:effect:0:aura:69","name":"Inferno Barrier (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:535650:absorb:0","amount":150,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:535650:effect:1:aura:43","name":"Inferno Barrier (Aura 43)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":535651,"level":30,"description":"Inferno BarrierRank 323% of base mana Instant cast20 sec cooldownGenerates 30 Heat Shield an ally with molten lava, absorbing FireP*0.55+239+0 damage. While active, attackers take 10+0+Spi*0.1 Fire damage each time they deal damage to them. Lasts 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:535651:effect:0:aura:69","name":"Inferno Barrier (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:535651:absorb:0","amount":239,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:535651:effect:1:aura:43","name":"Inferno Barrier (Aura 43)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":43,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-24-firefall-85-556833","classId":"pyromancer","dbcSpellId":556833,"name":"Firefall","unlockLevel":26,"icon":"/assets/ui/spells/ability_ironmaidens_grapeshotblast.png","sigil":"FI","description":"FirefallRank 212% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 207+0+FireP*0.3124 Fire damage.","target":"hostile","range":{"min":0,"max":35},"radius":15,"castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7317073170731707,"basePoints":207,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":556833,"level":26,"description":"FirefallRank 212% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 207+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7317073170731707,"basePoints":207,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30}]},{"rank":3,"spellId":556834,"level":32,"description":"FirefallRank 312% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 288+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.095744680851064,"basePoints":288,"dieSides":16,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36}]},{"rank":4,"spellId":556835,"level":38,"description":"FirefallRank 412% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 378+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.4339622641509435,"basePoints":378,"dieSides":19,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42}]},{"rank":5,"spellId":556836,"level":44,"description":"FirefallRank 512% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 476+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.7570621468926553,"basePoints":476,"dieSides":25,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48}]},{"rank":6,"spellId":556837,"level":50,"description":"FirefallRank 612% of base mana 2 sec cast8 sec cooldownGenerates 10 Heat Per Target Call down streaks of fire upon an enemy and up to 8 enemies within 15 yds of them, dealing 582+0+FireP*0.3124 Fire damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.066666666666667,"basePoints":582,"dieSides":33,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54}]}]},{"id":"coa-24-flame-swell-85-502065","classId":"pyromancer","dbcSpellId":502065,"name":"Flame Swell","unlockLevel":33,"icon":"/assets/ui/spells/spell_burningsoul.png","sigil":"FS","description":"Flame SwellRank 321% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":45}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":502065,"level":39,"description":"Flame SwellRank 321% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":45}]},{"rank":4,"spellId":502066,"level":45,"description":"Flame SwellRank 421% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":51}]},{"rank":5,"spellId":502067,"level":51,"description":"Flame SwellRank 521% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":56}]},{"rank":6,"spellId":502068,"level":57,"description":"Flame SwellRank 621% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":63}]},{"rank":7,"spellId":502069,"level":63,"description":"Flame SwellRank 721% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":69},{"kind":"apply-aura","aura":{"id":"coa:502069:effect:1:aura:271","name":"Flame Swell (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502070,"level":69,"description":"Flame SwellRank 821% of base mana Instant cast12 sec cooldownTHIS SPELL DOES NOT WORK, YOU SHOULD NOT HAVE IT.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":75}]},{"rank":9,"spellId":502064,"level":33,"description":"Flame SwellRank 9Instant castDeals 0 Fire Damage and an additional 8+(PL*0.24) damage every 0 sec for 9 sec to all targets affected by your Ignite.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800791},{"kind":"apply-aura","aura":{"id":"coa:800791:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09000000357627869,"basePoints":16,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":13,"maxScalingLevel":16,"ticks":7,"intervalMs":3000,"tag":"spell-800791"},{"kind":"apply-aura","aura":{"id":"coa:800791:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":805500},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:0:aura:3","name":"Blaze (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09000000357627869,"basePoints":21,"dieSides":1,"pointsPerLevel":0.685259997844696,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":8,"maxScalingLevel":10,"ticks":5,"intervalMs":3000,"tag":"spell-805500"},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:1:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805500:effect:2:aura:271","name":"Blaze (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]}],"cultist":[{"id":"coa-25-abyssal-decay-89-500705","classId":"cultist","dbcSpellId":500705,"name":"Abyssal Decay","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_void_blast.png","sigil":"AD","description":"Abyssal DecayRank 19% of base mana Instant castApplies an Eldritch curse to an enemy, causing 9+(PL*0.6) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500705:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24166666716337204,"basePoints":9,"dieSides":5,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":6,"intervalMs":3000,"tag":"spell-500705"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500705,"level":1,"description":"Abyssal DecayRank 19% of base mana Instant castApplies an Eldritch curse to an enemy, causing 9+(PL*0.6) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500705:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24166666716337204,"basePoints":9,"dieSides":5,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":6,"intervalMs":3000,"tag":"spell-500705"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]},{"rank":2,"spellId":502144,"level":10,"description":"Abyssal DecayRank 29% of base mana Instant castApplies an Eldritch curse to an enemy, causing 17+(PL*1-10*1) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502144:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.36066666603088376,"basePoints":17,"dieSides":1,"pointsPerLevel":1.0049999952316284,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":6,"intervalMs":3000,"tag":"spell-502144"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]},{"rank":3,"spellId":502145,"level":19,"description":"Abyssal DecayRank 39% of base mana Instant castApplies an Eldritch curse to an enemy, causing 31+(PL*1.4-19*1.4) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502145:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5590245174426659,"basePoints":31,"dieSides":1,"pointsPerLevel":1.3695000410079956,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27,"ticks":6,"intervalMs":3000,"tag":"spell-502145"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]},{"rank":4,"spellId":502146,"level":28,"description":"Abyssal DecayRank 49% of base mana Instant castApplies an Eldritch curse to an enemy, causing 55+(PL*1.7-28*1.7) Shadow damage every 3 sec for18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502146:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8027286751325741,"basePoints":55,"dieSides":1,"pointsPerLevel":1.7339999675750732,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":6,"intervalMs":3000,"tag":"spell-502146"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]},{"rank":5,"spellId":502147,"level":37,"description":"Abyssal DecayRank 59% of base mana Instant castApplies an Eldritch curse to an enemy, causing 85+(PL*2.1-38*2.1) Shadow damage every 3 sec for18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502147:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0425929518846364,"basePoints":85,"dieSides":1,"pointsPerLevel":2.0985000133514404,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44,"ticks":6,"intervalMs":3000,"tag":"spell-502147"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]},{"rank":6,"spellId":502148,"level":45,"description":"Abyssal DecayRank 69% of base mana Instant castApplies an Eldritch curse to an enemy, causing 137+(PL*2.4-45*2.4) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502148:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.3667360848850674,"basePoints":137,"dieSides":1,"pointsPerLevel":2.422499895095825,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53,"ticks":6,"intervalMs":3000,"tag":"spell-502148"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]},{"rank":7,"spellId":502149,"level":54,"description":"Abyssal DecayRank 79% of base mana Instant castApplies an Eldritch curse to an enemy, causing 225+(PL*2.8-54*2.8) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502149:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.8139999845753545,"basePoints":225,"dieSides":1,"pointsPerLevel":2.7869999408721924,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62,"ticks":6,"intervalMs":3000,"tag":"spell-502149"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]},{"rank":8,"spellId":502150,"level":63,"description":"Abyssal DecayRank 89% of base mana Instant castApplies an Eldritch curse to an enemy, causing 361+(PL*3.1-63*3.1) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502150:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.6634080939822726,"basePoints":361,"dieSides":1,"pointsPerLevel":4.162499904632568,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71,"ticks":6,"intervalMs":3000,"tag":"spell-502150"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]},{"rank":9,"spellId":502151,"level":72,"description":"Abyssal DecayRank 99% of base mana Instant castApplies an Eldritch curse to an enemy, causing 572+(PL*3.5-72*3.5) Shadow damage every 3 sec for 18 sec. Generates 5 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502151:effect:0:aura:3","name":"Abyssal Decay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":4,"basePoints":572,"dieSides":1,"pointsPerLevel":6.612500190734863,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":6,"intervalMs":3000,"tag":"spell-502151"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120640,"triggerSpellId":0,"durationMs":18000}]}]},{"id":"coa-tree-7608","classId":"cultist","dbcSpellId":804670,"name":"Abyssal Ward","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_shadoworbs.png","sigil":"AW","description":"Coalesce an Abyssal Ward reducing your damage taken by 50% for 10 seconds or 5 attacks. For the duration, each attack received will decrease the value by -10%. Usable while stunned.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804670:effect:0:aura:42","name":"Abyssal Ward (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:804670:proc:0:807692","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807692}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807692},{"kind":"apply-aura","aura":{"id":"coa:804670:effect:1:aura:87","name":"Abyssal Ward (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":176,"auraType":0,"miscValue":804670,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804670,"level":1,"description":"Coalesce an Abyssal Ward reducing your damage taken by 50% for 10 seconds or 5 attacks. For the duration, each attack received will decrease the value by -10%. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804670:effect:0:aura:42","name":"Abyssal Ward (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:804670:proc:0:807692","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807692}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807692},{"kind":"apply-aura","aura":{"id":"coa:804670:effect:1:aura:87","name":"Abyssal Ward (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":176,"auraType":0,"miscValue":804670,"triggerSpellId":0,"durationMs":10000}]}],"talentEntryId":7608},{"id":"coa-25-beamsplitter-none-706929","classId":"cultist","dbcSpellId":706929,"name":"Beamsplitter","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_voidshift.png","sigil":"BE","description":"BeamsplitterRank 2Allows Gaze of C'Thun to strike 4 enemies and increases its critical strike chance by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706929:effect:0:aura:107","name":"Beamsplitter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706929:effect:1:aura:107","name":"Beamsplitter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706929,"level":1,"description":"BeamsplitterRank 2Allows Gaze of C'Thun to strike 4 enemies and increases its critical strike chance by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706929:effect:0:aura:107","name":"Beamsplitter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706929:effect:1:aura:107","name":"Beamsplitter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}]},{"id":"coa-tree-33951","classId":"cultist","dbcSpellId":805110,"name":"Black Prayer","unlockLevel":1,"icon":"/assets/ui/spells/forbidding_void_dust.png","sigil":"BP","description":"All direct damage dealt now has a 5% chance to unleash a Black Prayer on all enemies near the target for 9 seconds.Black PrayerDeals 136 + 12% shadow SP + 0.5% AP Shadow Damage every 3 sec and reduces attack speed by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805110:effect:0:aura:42","name":"Black Prayer (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805110:proc:0:806039","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806039}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":524287,"triggerSpellId":806039}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805110,"level":1,"description":"All direct damage dealt now has a 5% chance to unleash a Black Prayer on all enemies near the target for 9 seconds.Black PrayerDeals 136 + 12% shadow SP + 0.5% AP Shadow Damage every 3 sec and reduces attack speed by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805110:effect:0:aura:42","name":"Black Prayer (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805110:proc:0:806039","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806039}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":524287,"triggerSpellId":806039}]}],"talentEntryId":33951},{"id":"cultist-blade-of-the-empire","classId":"cultist","dbcSpellId":500720,"name":"Blade of the Empire","unlockLevel":1,"icon":"/assets/ui/spells/inv_knife_1h_artifactcthun_d_01.png","sigil":"BO","description":"Blade of the EmpireRank 112% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 22+0+ShaP*.15+AP*.25 Shadow damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.47756410390138626,"basePoints":22,"dieSides":2,"pointsPerLevel":0.4230769872665405,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500720,"level":1,"description":"Blade of the EmpireRank 112% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 22+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.47756410390138626,"basePoints":22,"dieSides":2,"pointsPerLevel":0.4230769872665405,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4}]},{"rank":2,"spellId":502114,"level":6,"description":"Blade of the EmpireRank 212% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 31+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5158730158730159,"basePoints":31,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12},{"kind":"trigger-spell","spellId":804114}]},{"rank":3,"spellId":502115,"level":14,"description":"Blade of the EmpireRank 312% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 47+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5632183908045977,"basePoints":47,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":804114}]},{"rank":4,"spellId":502116,"level":22,"description":"Blade of the EmpireRank 412% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 66+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6216216216216216,"basePoints":66,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28},{"kind":"trigger-spell","spellId":804114}]},{"rank":5,"spellId":502117,"level":30,"description":"Blade of the EmpireRank 512% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 87+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.674074074074074,"basePoints":87,"dieSides":9,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36},{"kind":"trigger-spell","spellId":804114}]},{"rank":6,"spellId":502118,"level":38,"description":"Blade of the EmpireRank 612% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 121+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7861635220125787,"basePoints":121,"dieSides":9,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42},{"kind":"trigger-spell","spellId":804114}]},{"rank":7,"spellId":502119,"level":44,"description":"Blade of the EmpireRank 712% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 144+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.847457627118644,"basePoints":144,"dieSides":13,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48},{"kind":"trigger-spell","spellId":804114}]},{"rank":8,"spellId":502120,"level":50,"description":"Blade of the EmpireRank 812% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 176+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9487179487179487,"basePoints":176,"dieSides":19,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54},{"kind":"trigger-spell","spellId":804114}]},{"rank":9,"spellId":502121,"level":56,"description":"Blade of the EmpireRank 912% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 206+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.028169014084507,"basePoints":206,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":10,"spellId":502122,"level":60,"description":"Blade of the EmpireRank 1012% of base mana InstantRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 225+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0777777777777777,"basePoints":225,"dieSides":36,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"trigger-spell","spellId":804114}]},{"rank":11,"spellId":502123,"level":68,"description":"Blade of the EmpireRank 1112% of base mana Instant6 sec cooldownRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 266+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.1586345381526104,"basePoints":266,"dieSides":46,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74},{"kind":"trigger-spell","spellId":804114}]},{"rank":12,"spellId":502124,"level":76,"description":"Blade of the EmpireRank 1212% of base mana Instant6 sec cooldownRequires Melee Weapon 3 Charge, 6 sec recharge Generates 20 Insanity Strike an enemy, dealing 427+0+ShaP*.15+AP*.25 Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.6721611721611722,"basePoints":427,"dieSides":60,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":804114}]}]},{"id":"coa-tree-29470","classId":"cultist","dbcSpellId":560109,"name":"Corrupt Mind","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_clarityofpower.png","sigil":"CM","description":"Generates 10 Insanity Corrupt the mind of an enemy and spread madness, fearing them in place for 40 seconds (8 sec vs players), bouncing to up to 2 nearby enemies. Damage dealt may end this effect.","target":"hostile","range":{"min":0,"max":30},"radius":8,"castMode":"cast","castTimeMs":1500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560109:effect:0:aura:26","name":"Corrupt Mind (Aura 26)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560109:effect:1:aura:7","name":"Corrupt Mind (Aura 7)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560109,"level":1,"description":"Generates 10 Insanity Corrupt the mind of an enemy and spread madness, fearing them in place for 40 seconds (8 sec vs players), bouncing to up to 2 nearby enemies. Damage dealt may end this effect.","castMode":"cast","castTimeMs":1500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560109:effect:0:aura:26","name":"Corrupt Mind (Aura 26)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560109:effect:1:aura:7","name":"Corrupt Mind (Aura 7)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"fear"},"sourceEffectType":6,"sourceAuraType":7,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29470},{"id":"coa-tree-30205","classId":"cultist","dbcSpellId":525060,"name":"Crystalline Reflection","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_prayerofshadowprotection.png","sigil":"CR","description":"Increases the chance for Void Shield to resist dispel effects on allies by -50% and it now also reflects 50% of the damage absorbed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525060:effect:0:aura:4","name":"Crystalline Reflection (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":525062,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525060:effect:1:aura:42","name":"Crystalline Reflection (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:525060:proc:1:525067","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525067}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":525067}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525060,"level":1,"description":"Increases the chance for Void Shield to resist dispel effects on allies by -50% and it now also reflects 50% of the damage absorbed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525060:effect:0:aura:4","name":"Crystalline Reflection (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":525062,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525060:effect:1:aura:42","name":"Crystalline Reflection (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:525060:proc:1:525067","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525067}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":525067}]}],"talentEntryId":30205},{"id":"coa-25-dark-revelation-89-706246","classId":"cultist","dbcSpellId":706246,"name":"Dark Revelation","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_summonvoidwalker.png","sigil":"DR","description":"Dark RevelationRank 2Causes Herald of C'thun to give Horrorbolt and Eldritch Blast a 15% chance to reset Gaze of C'thun.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706246:effect:0:aura:4","name":"Dark Revelation (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706246:effect:2:aura:107","name":"Dark Revelation (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":706246,"level":1,"description":"Dark RevelationRank 2Causes Herald of C'thun to give Horrorbolt and Eldritch Blast a 15% chance to reset Gaze of C'thun.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706246:effect:0:aura:4","name":"Dark Revelation (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706246:effect:2:aura:107","name":"Dark Revelation (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}]},{"id":"coa-25-darkward-88-706180","classId":"cultist","dbcSpellId":706180,"name":"Darkward","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_mindsooth.png","sigil":"DA","description":"DarkwardRank 1Increases the effectiveness of your damage absorption effects by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706180:effect:0:aura:317","name":"Darkward (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706180:effect:1:aura:108","name":"Darkward (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706180:effect:2:aura:4","name":"Darkward (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706180,"level":1,"description":"DarkwardRank 1Increases the effectiveness of your damage absorption effects by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706180:effect:0:aura:317","name":"Darkward (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706180:effect:1:aura:108","name":"Darkward (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706180:effect:2:aura:4","name":"Darkward (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}]},{"rank":2,"spellId":706181,"level":1,"description":"DarkwardRank 2Increases the effectiveness of your damage absorption effects by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706181:effect:0:aura:317","name":"Darkward (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706181:effect:1:aura:108","name":"Darkward (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706181:effect:2:aura:4","name":"Darkward (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-tree-31123","classId":"cultist","dbcSpellId":300265,"name":"Devourer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_eye_03.png","sigil":"DE","description":"Your Devour Magic now dispels 1 additional magic effect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300265:effect:0:aura:107","name":"Devourer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300265,"level":1,"description":"Your Devour Magic now dispels 1 additional magic effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300265:effect:0:aura:107","name":"Devourer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":31123},{"id":"coa-tree-12444","classId":"cultist","dbcSpellId":707747,"name":"Disdain","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_drowsy.png","sigil":"DI","description":"Removes the cooldown of Grasp of Zek'voz, but increases its mana cost by 25%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707747:effect:0:aura:107","name":"Disdain (Aura 107)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-60}]},"sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707747:effect:1:aura:108","name":"Disdain (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707747,"level":1,"description":"Removes the cooldown of Grasp of Zek'voz, but increases its mana cost by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707747:effect:0:aura:107","name":"Disdain (Aura 107)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-60}]},"sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707747:effect:1:aura:108","name":"Disdain (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":12444},{"id":"coa-tree-6278","classId":"cultist","dbcSpellId":704885,"name":"Dismay","unlockLevel":1,"icon":"/assets/ui/spells/5_assassinskill07_border.png","sigil":"DI","description":"Increases the movement speed slowed by Grasp of Zek'voz by -20%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704885:effect:0:aura:107","name":"Dismay (Aura 107)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704885,"level":1,"description":"Increases the movement speed slowed by Grasp of Zek'voz by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704885:effect:0:aura:107","name":"Dismay (Aura 107)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6278},{"id":"coa-tree-6281","classId":"cultist","dbcSpellId":704880,"name":"Doomsayer","unlockLevel":1,"icon":"/assets/ui/spells/achievement_boss_heraldofnzoth.png","sigil":"DO","description":"Reduces the mana cost of your Presences by -50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704880:effect:0:aura:108","name":"Doomsayer (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704880,"level":1,"description":"Reduces the mana cost of your Presences by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704880:effect:0:aura:108","name":"Doomsayer (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":6281},{"id":"coa-tree-7512","classId":"cultist","dbcSpellId":680750,"name":"Dreadnought","unlockLevel":1,"icon":"/assets/ui/spells/yshaarjicon.png","sigil":"DR","description":"Level 10 Passive Reaching 100 Insanity no longer causes Total Madness. Teaches you Dreadnought.DreadnoughtAbsorbs 150 + 300% Stamina + 300% Intellect damage, scaling with Intellect and Stamina. Protects movement speed from going below 80% of normal speed. Lasts 20 seconds. Depletes all Insanity upon expiration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680750:effect:0:aura:72","name":"Dreadnought (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680750,"level":1,"description":"Level 10 Passive Reaching 100 Insanity no longer causes Total Madness. Teaches you Dreadnought.DreadnoughtAbsorbs 150 + 300% Stamina + 300% Intellect damage, scaling with Intellect and Stamina. Protects movement speed from going below 80% of normal speed. Lasts 20 seconds. Depletes all Insanity upon expiration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680750:effect:0:aura:72","name":"Dreadnought (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":7512},{"id":"coa-tree-33968","classId":"cultist","dbcSpellId":302015,"name":"Eldritch Command","unlockLevel":1,"icon":"/assets/ui/spells/uico_shadow_spell_02_border.png","sigil":"EC","description":"Casting Gaze of C'thun now has a 30% chance to cause your Tentacles to blast the enemy with eldritch energy, dealing 81 + 22.5% shadow SP + 10% AP Shadow damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:302015:effect:0:aura:42","name":"Eldritch Command (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:302015:proc:0:802729","triggers":["cast"],"chance":0.3,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802729}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":802729}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":302015,"level":1,"description":"Casting Gaze of C'thun now has a 30% chance to cause your Tentacles to blast the enemy with eldritch energy, dealing 81 + 22.5% shadow SP + 10% AP Shadow damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:302015:effect:0:aura:42","name":"Eldritch Command (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:302015:proc:0:802729","triggers":["cast"],"chance":0.3,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802729}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":802729}]}],"talentEntryId":33968},{"id":"coa-tree-11892","classId":"cultist","dbcSpellId":525049,"name":"Eldritch Screams","unlockLevel":1,"icon":"/assets/ui/spells/impotent_void_effigy.png","sigil":"ES","description":"Your Corrupt Mind now also applies Mind Rot to nearby enemies.Mind Rot (Trigger)Increases the chance for allies to hit with all spells against the afflicted enemy by 3% for 10 seconds. If this effect is dispelled, your critical strike chance is increased by 30% for 5 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525049:effect:0:aura:42","name":"Eldritch Screams (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:525049:proc:0:560943","triggers":["crit","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560943}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560943}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525049,"level":1,"description":"Your Corrupt Mind now also applies Mind Rot to nearby enemies.Mind Rot (Trigger)Increases the chance for allies to hit with all spells against the afflicted enemy by 3% for 10 seconds. If this effect is dispelled, your critical strike chance is increased by 30% for 5 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525049:effect:0:aura:42","name":"Eldritch Screams (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:525049:proc:0:560943","triggers":["crit","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560943}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560943}]}],"talentEntryId":11892},{"id":"coa-25-eldritch-swiftness-88-706186","classId":"cultist","dbcSpellId":706186,"name":"Eldritch Swiftness","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_2h_grimbatolraid_d_01.png","sigil":"ES","description":"Eldritch SwiftnessRank 2InstantReduces the cooldown of Eldritch Strike by 1 sec and causes Entropic Slam to drain 20 insanity.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706186:effect:0:aura:107","name":"Eldritch Swiftness (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706186:effect:1:aura:42","name":"Eldritch Swiftness (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706186:proc:1:503695","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503695}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":1,"triggerSpellId":503695},{"kind":"apply-aura","aura":{"id":"coa:706186:effect:2:aura:4","name":"Eldritch Swiftness (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706186,"level":1,"description":"Eldritch SwiftnessRank 2InstantReduces the cooldown of Eldritch Strike by 1 sec and causes Entropic Slam to drain 20 insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706186:effect:0:aura:107","name":"Eldritch Swiftness (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706186:effect:1:aura:42","name":"Eldritch Swiftness (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706186:proc:1:503695","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503695}}}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":42,"miscValue":1,"triggerSpellId":503695},{"kind":"apply-aura","aura":{"id":"coa:706186:effect:2:aura:4","name":"Eldritch Swiftness (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-tree-33969","classId":"cultist","dbcSpellId":803283,"name":"Embodied Presences","unlockLevel":1,"icon":"/assets/ui/spells/warlock_houroftwilight.png","sigil":"EP","description":"Increases the chance to trigger your Presences by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803283:effect:0:aura:107","name":"Embodied Presences (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":803283,"level":1,"description":"Increases the chance to trigger your Presences by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803283:effect:0:aura:107","name":"Embodied Presences (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}],"talentEntryId":33969},{"id":"coa-tree-29263","classId":"cultist","dbcSpellId":704887,"name":"Empire Commander","unlockLevel":1,"icon":"/assets/ui/spells/nhi_shadowasphyxiation_border.png","sigil":"EC","description":"Increases all primary attributes by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704887:effect:0:aura:137","name":"Empire Commander (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704887,"level":1,"description":"Increases all primary attributes by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704887:effect:0:aura:137","name":"Empire Commander (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}]},{"rank":2,"spellId":707781,"level":1,"description":"Increases all primary attributes by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707781:effect:0:aura:137","name":"Empire Commander (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}]},{"rank":3,"spellId":712470,"level":1,"description":"Increases all primary attributes by 12%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712470:effect:0:aura:137","name":"Empire Commander (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0.12}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}]}],"talentEntryId":29263},{"id":"coa-tree-6276","classId":"cultist","dbcSpellId":704878,"name":"Eternal Grasp","unlockLevel":1,"icon":"/assets/ui/spells/achievement_nzothraid_carapace.png","sigil":"EG","description":"Eternal GraspRank 1Increases the duration of your Tentacles by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704878:effect:0:aura:108","name":"Eternal Grasp (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704878,"level":1,"description":"Eternal GraspRank 1Increases the duration of your Tentacles by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704878:effect:0:aura:108","name":"Eternal Grasp (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":704879,"level":1,"description":"Eternal GraspRank 2Increases the duration of your Tentacles by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704879:effect:0:aura:108","name":"Eternal Grasp (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":6276},{"id":"coa-tree-6280","classId":"cultist","dbcSpellId":573028,"name":"Grasp of Zek'voz","unlockLevel":1,"icon":"/assets/ui/spells/achievement_nazmir_boss_zekvoz.png","sigil":"GO","description":"Hinder an enemies momentum with void chains, slowing their movement speed by -30% for 10 seconds.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573028:effect:0:aura:33","name":"Grasp of Zek'voz (Aura 33)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.3}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":573028,"level":1,"description":"Hinder an enemies momentum with void chains, slowing their movement speed by -30% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573028:effect:0:aura:33","name":"Grasp of Zek'voz (Aura 33)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.3}]}],"talentEntryId":6280},{"id":"coa-tree-6382","classId":"cultist","dbcSpellId":560301,"name":"Hallucination","unlockLevel":1,"icon":"/assets/ui/spells/5_warlock28_border.png","sigil":"HA","description":"Create 3 copies of yourself that run in a random direction for 3 seconds and may briefly trick enemies into ignoring you. Significantly reduces your threat and removes all movement impairing effects from you.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706932},{"kind":"apply-aura","aura":{"id":"coa:706932:effect:0:aura:4","name":"Hallucination (Aura 4)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":422,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706932:effect:1:aura:4","name":"Hallucination (Aura 4)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"summon","creatureId":840000,"coefficient":0.08,"durationMs":3000},{"kind":"apply-aura","aura":{"id":"coa:560301:effect:1:aura:4","name":"Hallucination (Aura 4)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560301:effect:2:aura:147","name":"Hallucination (Aura 147)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":147,"miscValue":65,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560301,"level":1,"description":"Create 3 copies of yourself that run in a random direction for 3 seconds and may briefly trick enemies into ignoring you. Significantly reduces your threat and removes all movement impairing effects from you.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":706932},{"kind":"apply-aura","aura":{"id":"coa:706932:effect:0:aura:4","name":"Hallucination (Aura 4)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":422,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706932:effect:1:aura:4","name":"Hallucination (Aura 4)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"summon","creatureId":840000,"coefficient":0.08,"durationMs":3000},{"kind":"apply-aura","aura":{"id":"coa:560301:effect:1:aura:4","name":"Hallucination (Aura 4)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560301:effect:2:aura:147","name":"Hallucination (Aura 147)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":147,"miscValue":65,"triggerSpellId":0}]}],"talentEntryId":6382},{"id":"coa-tree-4042","classId":"cultist","dbcSpellId":92131,"name":"Herald of the Depths","unlockLevel":1,"icon":"/assets/ui/spells/yogg-saronicon.png","sigil":"HO","description":"Level 10 Passive Reaching 100 Insanity no longer causes Total Madness. Teaches you Herald of the Depths.Herald of the DepthsTransform into a Herald of the Depths for 20 seconds, increasing damage and healing done by 15% and the base duration of absorption and healing over time effects by 100%. At the end of the duration, your Insanity is reduced to 0.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92131:effect:0:aura:4","name":"Herald of the Depths (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92131:effect:1:aura:316","name":"Herald of the Depths (Aura 316)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":316,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92131:effect:2:aura:107","name":"Herald of the Depths (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92131,"level":1,"description":"Level 10 Passive Reaching 100 Insanity no longer causes Total Madness. Teaches you Herald of the Depths.Herald of the DepthsTransform into a Herald of the Depths for 20 seconds, increasing damage and healing done by 15% and the base duration of absorption and healing over time effects by 100%. At the end of the duration, your Insanity is reduced to 0.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92131:effect:0:aura:4","name":"Herald of the Depths (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92131:effect:1:aura:316","name":"Herald of the Depths (Aura 316)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":316,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92131:effect:2:aura:107","name":"Herald of the Depths (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":4042},{"id":"coa-tree-33967","classId":"cultist","dbcSpellId":706177,"name":"Improved Sermon of Dread","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_soulleech_3.png","sigil":"IS","description":"Increases the effectiveness of Sermon of Dread by 40%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706177:effect:0:aura:108","name":"Improved Sermon of Dread (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706177,"level":1,"description":"Increases the effectiveness of Sermon of Dread by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706177:effect:0:aura:108","name":"Improved Sermon of Dread (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":33967},{"id":"coa-tree-33965","classId":"cultist","dbcSpellId":704881,"name":"Lost in the Void","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcanemask_border.png","sigil":"LI","description":"Increases the duration of Embrace the Void by 4 sec and it now heals you for an additional 50% of the damage taken while active and its cooldown is reduced by -60 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704881:effect:0:aura:107","name":"Lost in the Void (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704881:effect:1:aura:107","name":"Lost in the Void (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704881:effect:2:aura:107","name":"Lost in the Void (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704881,"level":1,"description":"Increases the duration of Embrace the Void by 4 sec and it now heals you for an additional 50% of the damage taken while active and its cooldown is reduced by -60 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704881:effect:0:aura:107","name":"Lost in the Void (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704881:effect:1:aura:107","name":"Lost in the Void (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-600}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704881:effect:2:aura:107","name":"Lost in the Void (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":33965},{"id":"coa-tree-29880","classId":"cultist","dbcSpellId":300270,"name":"Mind Leak","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_mindrot.png","sigil":"ML","description":"While above 60 Insanity, you gain -5% reduced damage taken.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300270:effect:0:aura:4","name":"Mind Leak (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300270,"level":1,"description":"While above 60 Insanity, you gain -5% reduced damage taken.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300270:effect:0:aura:4","name":"Mind Leak (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29880},{"id":"coa-tree-4040","classId":"cultist","dbcSpellId":92129,"name":"Obliteration","unlockLevel":1,"icon":"/assets/ui/spells/nzothicon.png","sigil":"OB","description":"Level 10 Passive Your Gaze of C'Thun now gains an additional 15 base damage and healing.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92129:effect:0:aura:107","name":"Obliteration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92129,"level":1,"description":"Level 10 Passive Your Gaze of C'Thun now gains an additional 15 base damage and healing.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92129:effect:0:aura:107","name":"Obliteration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":4040},{"id":"coa-25-pious-magic-none-706724","classId":"cultist","dbcSpellId":706724,"name":"Pious Magic","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(23)_border.png","sigil":"PM","description":"Pious MagicRank 1Increases spell power by 10% of Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706724:effect:0:aura:174","name":"Pious Magic (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706724:effect:1:aura:4","name":"Pious Magic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706724,"level":1,"description":"Pious MagicRank 1Increases spell power by 10% of Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706724:effect:0:aura:174","name":"Pious Magic (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706724:effect:1:aura:4","name":"Pious Magic (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-25-protection-from-light-90-804065","classId":"cultist","dbcSpellId":804065,"name":"Protection From Light","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_twilightimmolation.png","sigil":"PF","description":"Protection From LightRank 13% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 4 to 5 every 2 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804065:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804065:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.10555555555555556,"basePoints":4,"dieSides":2,"pointsPerLevel":0.25,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":5,"intervalMs":2000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804065,"level":1,"description":"Protection From LightRank 13% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 4 to 5 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804065:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804065:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.10555555555555556,"basePoints":4,"dieSides":2,"pointsPerLevel":0.25,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":5,"intervalMs":2000}]},{"rank":2,"spellId":503432,"level":10,"description":"Protection From LightRank 23% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 7 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503432:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503432:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.14916666507720946,"basePoints":7,"dieSides":1,"pointsPerLevel":0.41874998807907104,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":5,"intervalMs":2000}]},{"rank":3,"spellId":503433,"level":19,"description":"Protection From LightRank 33% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 12 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503433:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503433:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.22393995231273128,"basePoints":12,"dieSides":1,"pointsPerLevel":0.5706250071525574,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27,"ticks":5,"intervalMs":2000}]},{"rank":4,"spellId":503434,"level":28,"description":"Protection From LightRank 43% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 21 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503434:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503434:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3196124087932498,"basePoints":21,"dieSides":1,"pointsPerLevel":0.7225000262260437,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":5,"intervalMs":2000}]},{"rank":5,"spellId":503435,"level":37,"description":"Protection From LightRank 53% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 36 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503435:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503435:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.4381530414789151,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8743749856948853,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44,"ticks":5,"intervalMs":2000}]},{"rank":6,"spellId":503436,"level":45,"description":"Protection From LightRank 63% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 57 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503436:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503436:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5690091590086619,"basePoints":57,"dieSides":1,"pointsPerLevel":1.009369969367981,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53,"ticks":5,"intervalMs":2000}]},{"rank":7,"spellId":503437,"level":54,"description":"Protection From LightRank 73% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 93 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503437:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503437:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.7522101436836132,"basePoints":93,"dieSides":1,"pointsPerLevel":1.1612499952316284,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62,"ticks":5,"intervalMs":2000}]},{"rank":8,"spellId":503438,"level":63,"description":"Protection From LightRank 83% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 149 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503438:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503438:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.0352136803488445,"basePoints":149,"dieSides":1,"pointsPerLevel":1.4800000190734863,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71,"ticks":5,"intervalMs":2000}]},{"rank":9,"spellId":503439,"level":72,"description":"Protection From LightRank 93% of base mana Instant cast30 sec cooldownReduces all Holy Damage and Fire Damage taken by an ally by 40% for 10 sec. While active, the ally is Healed for 236 every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503439:effect:0:aura:87","name":"Protection From Light (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":6,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503439:effect:1:aura:8","name":"Protection From Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.5524903951476816,"basePoints":236,"dieSides":1,"pointsPerLevel":2.3499999046325684,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":5,"intervalMs":2000}]}]},{"id":"coa-tree-11880","classId":"cultist","dbcSpellId":301181,"name":"Rapid Incantations","unlockLevel":1,"icon":"/assets/ui/spells/uico_shadow_spell_08_nobg_border.png","sigil":"RI","description":"While above 60 Insanity, you gain 5% increased haste.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301181:effect:0:aura:4","name":"Rapid Incantations (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301181,"level":1,"description":"While above 60 Insanity, you gain 5% increased haste.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301181:effect:0:aura:4","name":"Rapid Incantations (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":11880},{"id":"coa-tree-29268","classId":"cultist","dbcSpellId":706928,"name":"Shadow Words","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_voidshift.png","sigil":"SW","description":"Increases the effectiveness of your Whispers by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706928:effect:0:aura:108","name":"Shadow Words (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706928,"level":1,"description":"Increases the effectiveness of your Whispers by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706928:effect:0:aura:108","name":"Shadow Words (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":29268},{"id":"coa-tree-29455","classId":"cultist","dbcSpellId":805126,"name":"Shroud of Pride","unlockLevel":1,"icon":"/assets/ui/spells/sha_spell_fire_felfireward.png","sigil":"SO","description":"Your Abyssal Ward now stacks 3 additional times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805126:effect:0:aura:107","name":"Shroud of Pride (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805126:effect:1:aura:42","name":"Shroud of Pride (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805126:proc:1:807693","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807693}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807693}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805126,"level":1,"description":"Your Abyssal Ward now stacks 3 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805126:effect:0:aura:107","name":"Shroud of Pride (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805126:effect:1:aura:42","name":"Shroud of Pride (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805126:proc:1:807693","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807693}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807693}]}],"talentEntryId":29455},{"id":"coa-tree-29920","classId":"cultist","dbcSpellId":572064,"name":"Split Mind","unlockLevel":1,"icon":"/assets/ui/spells/inv_soulbarrier.png","sigil":"SM","description":"Void Shield now applies to an additional nearby ally but its duration is reduced by -30%. Killing an opponent that yields experience or honor removes Wracked Mind from you.","target":"friendly","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572064:effect:0:aura:42","name":"Split Mind (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:572064:proc:0:572065","triggers":["kill"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572065}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":572065},{"kind":"apply-aura","aura":{"id":"coa:572064:effect:1:aura:107","name":"Split Mind (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:572064:effect:2:aura:108","name":"Split Mind (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":572064,"level":1,"description":"Void Shield now applies to an additional nearby ally but its duration is reduced by -30%. Killing an opponent that yields experience or honor removes Wracked Mind from you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572064:effect:0:aura:42","name":"Split Mind (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:572064:proc:0:572065","triggers":["kill"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572065}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":572065},{"kind":"apply-aura","aura":{"id":"coa:572064:effect:1:aura:107","name":"Split Mind (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:572064:effect:2:aura:108","name":"Split Mind (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29920},{"id":"coa-tree-33892","classId":"cultist","dbcSpellId":525019,"name":"Stare Into The Abyss","unlockLevel":1,"icon":"/assets/ui/spells/_soulsdevourer_purple.png","sigil":"SI","description":"Removes the cast time of your Corrupt Mind.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525019:effect:0:aura:108","name":"Stare Into The Abyss (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":525019,"level":1,"description":"Removes the cast time of your Corrupt Mind.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525019:effect:0:aura:108","name":"Stare Into The Abyss (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":33892},{"id":"coa-tree-7940","classId":"cultist","dbcSpellId":525065,"name":"Twisted Seal","unlockLevel":1,"icon":"/assets/ui/spells/inv_peacockmount_dark.png","sigil":"TS","description":"Create a warped sigil that bends hostile force away from you, deflecting all spells for 5 seconds, but making you unable to attack or cast spells. Casters whose magic is deflected are silenced for 3 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525065:effect:0:aura:287","name":"Twisted Seal (Aura 287)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":287,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525065:effect:1:aura:42","name":"Twisted Seal (Aura 42)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:525065:proc:1:525066","triggers":["cast","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525066}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":525066},{"kind":"apply-aura","aura":{"id":"coa:525065:effect:2:aura:60","name":"Twisted Seal (Aura 60)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":60,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":525065,"level":1,"description":"Create a warped sigil that bends hostile force away from you, deflecting all spells for 5 seconds, but making you unable to attack or cast spells. Casters whose magic is deflected are silenced for 3 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525065:effect:0:aura:287","name":"Twisted Seal (Aura 287)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":287,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525065:effect:1:aura:42","name":"Twisted Seal (Aura 42)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:525065:proc:1:525066","triggers":["cast","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":525066}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":525066},{"kind":"apply-aura","aura":{"id":"coa:525065:effect:2:aura:60","name":"Twisted Seal (Aura 60)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":60,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":7940},{"id":"coa-tree-29479","classId":"cultist","dbcSpellId":301241,"name":"Ungodly Blessing","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_shadowmeld.png","sigil":"UB","description":"Reduces the duration of curse effects on you by -40%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301241:effect:0:aura:245","name":"Ungodly Blessing (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":301241,"level":1,"description":"Reduces the duration of curse effects on you by -40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301241:effect:0:aura:245","name":"Ungodly Blessing (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0}]}],"talentEntryId":29479},{"id":"coa-tree-29275","classId":"cultist","dbcSpellId":520388,"name":"Vision of Doom","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_twilightcano.png","sigil":"VO","description":"Behold a vision of doom, causing direct damage or healing done to apply Vision of Doom to nearby targets for 3 seconds. Can only occur once every 3 sec. At the end of the duration, they are damaged or healed for 100% of the damage or healing that doomed them. Lasts for 1 minute or 5 instances of damage or healing. Doomed enemies are unable to be healed and the damage or healing done by this effect can critically strike.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520388:effect:0:aura:354","name":"Vision of Doom (Aura 354)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":520450}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520388,"level":1,"description":"Behold a vision of doom, causing direct damage or healing done to apply Vision of Doom to nearby targets for 3 seconds. Can only occur once every 3 sec. At the end of the duration, they are damaged or healed for 100% of the damage or healing that doomed them. Lasts for 1 minute or 5 instances of damage or healing. Doomed enemies are unable to be healed and the damage or healing done by this effect can critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520388:effect:0:aura:354","name":"Vision of Doom (Aura 354)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":520450}]}],"talentEntryId":29275},{"id":"coa-tree-33952","classId":"cultist","dbcSpellId":524879,"name":"Void Hunger","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_surgeofdarkness.png","sigil":"VH","description":"Satiate now also regenerates an additional 1% mana per tick and no longer increases damage taken during the channel.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524879:effect:0:aura:107","name":"Void Hunger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:524879:effect:1:aura:107","name":"Void Hunger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:524879:effect:2:aura:107","name":"Void Hunger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":524879,"level":1,"description":"Satiate now also regenerates an additional 1% mana per tick and no longer increases damage taken during the channel.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524879:effect:0:aura:107","name":"Void Hunger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:524879:effect:1:aura:107","name":"Void Hunger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:524879:effect:2:aura:107","name":"Void Hunger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":33952},{"id":"coa-tree-29265","classId":"cultist","dbcSpellId":500715,"name":"Void Shield","unlockLevel":1,"icon":"/assets/ui/spells/_d3energyarmor.png","sigil":"VS","description":"Void ShieldRank 126% of base mana Instant castShields an ally, absorbing 195+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","target":"friendly","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:500715:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500715:absorb:0","amount":195,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500715:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500715,"level":1,"description":"Void ShieldRank 126% of base mana Instant castShields an ally, absorbing 195+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:500715:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500715:absorb:0","amount":195,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500715:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29265},{"id":"coa-tree-6279","classId":"cultist","dbcSpellId":804633,"name":"Void-Enchanted Armor","unlockLevel":1,"icon":"/assets/ui/spells/pure_void_metal.png","sigil":"VE","description":"Increases your chance to resist dispel effects by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804633:effect:0:aura:235","name":"Void-Enchanted Armor (Aura 235)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":235,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804633,"level":1,"description":"Increases your chance to resist dispel effects by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804633:effect:0:aura:235","name":"Void-Enchanted Armor (Aura 235)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":235,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6279},{"id":"coa-tree-30323","classId":"cultist","dbcSpellId":706190,"name":"Wicked Thoughts","unlockLevel":1,"icon":"/assets/ui/spells/_ldaeye.png","sigil":"WT","description":"Increases your maximum mana, your movement speed, and mounted movement speed by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706190:effect:0:aura:31","name":"Wicked Thoughts (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706190:effect:1:aura:172","name":"Wicked Thoughts (Aura 172)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":172,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706190:effect:2:aura:132","name":"Wicked Thoughts (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706190,"level":1,"description":"Increases your maximum mana, your movement speed, and mounted movement speed by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706190:effect:0:aura:31","name":"Wicked Thoughts (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706190:effect:1:aura:172","name":"Wicked Thoughts (Aura 172)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":172,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706190:effect:2:aura:132","name":"Wicked Thoughts (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30323},{"id":"coa-25-wrath-of-the-black-empire-89-800413","classId":"cultist","dbcSpellId":800413,"name":"Wrath of the Black Empire","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WO","description":"Wrath of the Black EmpireRank 12 sec castBlast an enemy with overwhelming void power, dealing 27+0+SP*1 Shadow damage and draining 20 Insanity.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":5,"pointsPerLevel":0.3006590008735657,"bonusPowerCoefficient":0.75,"sourceLevel":1,"maxScalingLevel":8},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800413,"level":1,"description":"Wrath of the Black EmpireRank 12 sec castBlast an enemy with overwhelming void power, dealing 27+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":27,"dieSides":5,"pointsPerLevel":0.3006590008735657,"bonusPowerCoefficient":0.75,"sourceLevel":1,"maxScalingLevel":8},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":2,"spellId":502166,"level":6,"description":"Wrath of the Black EmpireRank 22.5 sec castBlast an enemy with overwhelming void power, dealing 56+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.0670199053628104,"basePoints":56,"dieSides":12,"pointsPerLevel":0.9537090063095093,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":3,"spellId":502167,"level":12,"description":"Wrath of the Black EmpireRank 32.5 sec castBlast an enemy with overwhelming void power, dealing 100+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.4456790141117426,"basePoints":100,"dieSides":16,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":4,"spellId":502168,"level":20,"description":"Wrath of the Black EmpireRank 43 sec castBlast an enemy with overwhelming void power, dealing 193+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.3682533173334033,"basePoints":193,"dieSides":24,"pointsPerLevel":2.208329916000366,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":5,"spellId":502169,"level":32,"description":"Wrath of the Black EmpireRank 53 sec castBlast an enemy with overwhelming void power, dealing 302+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.8945486731563053,"basePoints":302,"dieSides":40,"pointsPerLevel":2.7072300910949707,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":6,"spellId":502170,"level":40,"description":"Wrath of the Black EmpireRank 63 sec castBlast an enemy with overwhelming void power, dealing 417+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.602072744658499,"basePoints":417,"dieSides":67,"pointsPerLevel":3.6085500717163086,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":7,"spellId":502171,"level":48,"description":"Wrath of the Black EmpireRank 73 sec castBlast an enemy with overwhelming void power, dealing 547+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":547,"dieSides":96,"pointsPerLevel":5.341010093688965,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":8,"spellId":502172,"level":56,"description":"Wrath of the Black EmpireRank 83 sec castBlast an enemy with overwhelming void power, dealing 720+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":720,"dieSides":120,"pointsPerLevel":25.49650001525879,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":9,"spellId":504904,"level":60,"description":"Wrath of the Black EmpireRank 93 sec castBlast an enemy with overwhelming void power, dealing 818+0+SP*1 Shadow damage and draining 20 Insanity.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":818,"dieSides":148,"pointsPerLevel":4.86290979385376,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"trigger-spell","spellId":503695},{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]}]},{"id":"coa-25-wrath-of-the-black-empire-89-500724","classId":"cultist","dbcSpellId":500724,"name":"Wrath of The Black Empire","unlockLevel":1,"icon":"/assets/ui/spells/_soulfire_shadow.png","sigil":"WO","description":"Wrath of The Black EmpireRank 12.5 sec cast1 min cooldownConsumes All Void Runes Crush an enemy with overwhelming void power, dealing 19 Shadow damage plus 7 every 0.5 sec for 6 sec and generates 20 Insanity. Scales with Void Runes consumed. When used with at least 2, this always critically strikes. Cannot be reflected or redirected, and pierces immunity effects. Herald of C'Thun: Strikes up to 20 enemies.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":19,"dieSides":8,"pointsPerLevel":1.399999976158142,"bonusPowerCoefficient":0.75,"sourceLevel":1,"maxScalingLevel":27},{"kind":"apply-aura","aura":{"id":"coa:500724:effect:1:aura:3","name":"Wrath of The Black Empire (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.17916666716337204,"basePoints":7,"dieSides":2,"pointsPerLevel":1.100000023841858,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":27,"ticks":12,"intervalMs":500,"tag":"spell-500724"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500724,"level":1,"description":"Wrath of The Black EmpireRank 12.5 sec cast1 min cooldownConsumes All Void Runes Crush an enemy with overwhelming void power, dealing 19 Shadow damage plus 7 every 0.5 sec for 6 sec and generates 20 Insanity. Scales with Void Runes consumed. When used with at least 2, this always critically strikes. Cannot be reflected or redirected, and pierces immunity effects. Herald of C'Thun: Strikes up to 20 enemies.","castMode":"cast","castTimeMs":2500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.75,"basePoints":19,"dieSides":8,"pointsPerLevel":1.399999976158142,"bonusPowerCoefficient":0.75,"sourceLevel":1,"maxScalingLevel":27},{"kind":"apply-aura","aura":{"id":"coa:500724:effect:1:aura:3","name":"Wrath of The Black Empire (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.17916666716337204,"basePoints":7,"dieSides":2,"pointsPerLevel":1.100000023841858,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":27,"ticks":12,"intervalMs":500,"tag":"spell-500724"}]},{"rank":2,"spellId":502156,"level":28,"description":"Wrath of The Black EmpireRank 22.5 sec cast1 min cooldownConsumes All Void Runes Crush an enemy with overwhelming void power, dealing 73 Shadow damage plus 44 every 0.5 sec for 6 sec and generates 20 Insanity. Scales with Void Runes consumed. When used with at least 2, this always critically strikes. Cannot be reflected or redirected, and pierces immunity effects. Herald of C'Thun: Strikes up to 20 enemies.","castMode":"cast","castTimeMs":2500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.5216124039287715,"basePoints":73,"dieSides":21,"pointsPerLevel":4.046000003814697,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53},{"kind":"apply-aura","aura":{"id":"coa:502156:effect:1:aura:3","name":"Wrath of The Black Empire (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0311007536658945,"basePoints":44,"dieSides":1,"pointsPerLevel":3.178999900817871,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53,"ticks":12,"intervalMs":500,"tag":"spell-502156"}]},{"rank":3,"spellId":502157,"level":54,"description":"Wrath of The Black EmpireRank 32.5 sec cast1 min cooldownConsumes All Void Runes Crush an enemy with overwhelming void power, dealing 217 Shadow damage plus 163 every 0.5 sec for 6 sec and generates 20 Insanity. Scales with Void Runes consumed. When used with at least 2, this always critically strikes. Cannot be reflected or redirected, and pierces immunity effects. Herald of C'Thun: Strikes up to 20 enemies.","castMode":"cast","castTimeMs":2500,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.877594146175661,"basePoints":217,"dieSides":56,"pointsPerLevel":6.502999782562256,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502157:effect:1:aura:3","name":"Wrath of The Black Empire (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.1203526390923395,"basePoints":163,"dieSides":1,"pointsPerLevel":5.109499931335449,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":80,"ticks":12,"intervalMs":500,"tag":"spell-502157"}]}]},{"id":"coa-25-wrathful-slam-88-706192","classId":"cultist","dbcSpellId":706192,"name":"Wrathful Slam","unlockLevel":1,"icon":"/assets/ui/spells/inv_mace_1h_stratholme_d_02.png","sigil":"WS","description":"Wrathful SlamRank 2Increases the damage of Entropic Slam by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706192:effect:0:aura:108","name":"Wrathful Slam (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706192:effect:1:aura:107","name":"Wrathful Slam (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706192:effect:2:aura:4","name":"Wrathful Slam (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706192,"level":1,"description":"Wrathful SlamRank 2Increases the damage of Entropic Slam by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706192:effect:0:aura:108","name":"Wrathful Slam (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706192:effect:1:aura:107","name":"Wrathful Slam (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706192:effect:2:aura:4","name":"Wrathful Slam (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}]}]},{"id":"cultist-eldritch-mending","classId":"cultist","dbcSpellId":500711,"name":"Eldritch Mending","unlockLevel":2,"icon":"/assets/ui/spells/nhi_voidwhirl_border.png","sigil":"EM","description":"Eldritch MendingRank 120% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 41+0+Heal*.56+AP*.12.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":0.9090400022618911,"basePoints":41,"dieSides":7,"pointsPerLevel":1.1805200576782227,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":6}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500711,"level":2,"description":"Eldritch MendingRank 120% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 41+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":0.9090400022618911,"basePoints":41,"dieSides":7,"pointsPerLevel":1.1805200576782227,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":6}]},{"rank":2,"spellId":502226,"level":8,"description":"Eldritch MendingRank 220% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 80+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1.482348981110946,"basePoints":80,"dieSides":11,"pointsPerLevel":2.160259962081909,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":10}]},{"rank":3,"spellId":502227,"level":12,"description":"Eldritch MendingRank 320% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 112+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1.8990849506707839,"basePoints":112,"dieSides":16,"pointsPerLevel":2.860490083694458,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":17}]},{"rank":4,"spellId":502228,"level":18,"description":"Eldritch MendingRank 420% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 200+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":3.104515383941959,"basePoints":200,"dieSides":22,"pointsPerLevel":5.380390167236328,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":23}]},{"rank":5,"spellId":502229,"level":24,"description":"Eldritch MendingRank 520% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 282+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":3.7538441389034958,"basePoints":282,"dieSides":28,"pointsPerLevel":5.987490177154541,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29}]},{"rank":6,"spellId":502230,"level":30,"description":"Eldritch MendingRank 620% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 362+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":362,"dieSides":40,"pointsPerLevel":8.345370292663574,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":35}]},{"rank":7,"spellId":502231,"level":36,"description":"Eldritch MendingRank 720% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 450+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":450,"dieSides":51,"pointsPerLevel":8.902359962463379,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":41}]},{"rank":8,"spellId":502232,"level":42,"description":"Eldritch MendingRank 820% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 548+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":548,"dieSides":64,"pointsPerLevel":5.391520023345947,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":47}]},{"rank":9,"spellId":502233,"level":48,"description":"Eldritch MendingRank 920% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 643+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":643,"dieSides":76,"pointsPerLevel":6.353429794311523,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53}]},{"rank":10,"spellId":502234,"level":54,"description":"Eldritch MendingRank 1020% of base mana 2 sec castEnvelop an ally in eldritch magic, healing for 696+0+Heal*.56+AP*.12.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1,"basePoints":696,"dieSides":82,"pointsPerLevel":7.40939998626709,"bonusPowerCoefficient":1,"sourceLevel":54,"maxScalingLevel":59}]}]},{"id":"cultist-horrorbolt","classId":"cultist","dbcSpellId":800416,"name":"Horrorbolt","unlockLevel":2,"icon":"/assets/ui/spells/uico_shadow_spell_01_border.png","sigil":"HO","description":"HorrorboltRank 112% of base mana 1.5 sec castGenerates 10 Insanity Inflicts 22+0+ShaP*0.71 Shadow damage to an enemy.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.3199999928474426,"basePoints":22,"dieSides":4,"pointsPerLevel":0.3449999988079071,"bonusPowerCoefficient":0.3199999928474426,"sourceLevel":2,"maxScalingLevel":6}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800416,"level":2,"description":"HorrorboltRank 112% of base mana 1.5 sec castGenerates 10 Insanity Inflicts 22+0+ShaP*0.71 Shadow damage to an enemy.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.3199999928474426,"basePoints":22,"dieSides":4,"pointsPerLevel":0.3449999988079071,"bonusPowerCoefficient":0.3199999928474426,"sourceLevel":2,"maxScalingLevel":6}]},{"rank":2,"spellId":502173,"level":8,"description":"HorrorboltRank 212% of base mana 2 sec castGenerates 10 Insanity Inflicts 43+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7390293314837028,"basePoints":43,"dieSides":8,"pointsPerLevel":0.561627984046936,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":12}]},{"rank":3,"spellId":502174,"level":14,"description":"HorrorboltRank 312% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 74+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0461206915734829,"basePoints":74,"dieSides":10,"pointsPerLevel":0.893750011920929,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20}]},{"rank":4,"spellId":502175,"level":22,"description":"HorrorboltRank 412% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 124+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.6533933115435075,"basePoints":124,"dieSides":13,"pointsPerLevel":2.433029890060425,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26}]},{"rank":5,"spellId":502176,"level":28,"description":"HorrorboltRank 512% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 179+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.9993779973466266,"basePoints":179,"dieSides":13,"pointsPerLevel":7.211420059204102,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":30}]},{"rank":6,"spellId":502177,"level":32,"description":"HorrorboltRank 612% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 213+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.2245015354021223,"basePoints":213,"dieSides":23,"pointsPerLevel":2.8017098903656006,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36}]},{"rank":7,"spellId":502178,"level":38,"description":"HorrorboltRank 712% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 275+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.7493628765801965,"basePoints":275,"dieSides":29,"pointsPerLevel":3.8986499309539795,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42}]},{"rank":8,"spellId":502179,"level":44,"description":"HorrorboltRank 812% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 346+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.339480620993059,"basePoints":346,"dieSides":35,"pointsPerLevel":5.183819770812988,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48}]},{"rank":9,"spellId":502180,"level":50,"description":"HorrorboltRank 912% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 419+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":419,"dieSides":43,"pointsPerLevel":6.955560207366943,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54}]},{"rank":10,"spellId":502181,"level":56,"description":"HorrorboltRank 1012% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 519+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":519,"dieSides":49,"pointsPerLevel":19.66860008239746,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":11,"spellId":502182,"level":60,"description":"HorrorboltRank 1112% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 587+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.6643404303656686,"basePoints":587,"dieSides":71,"pointsPerLevel":3.37460994720459,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66}]},{"rank":12,"spellId":502183,"level":68,"description":"HorrorboltRank 1212% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 648+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.961400671656352,"basePoints":648,"dieSides":81,"pointsPerLevel":4.388070106506348,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74}]},{"rank":13,"spellId":502184,"level":76,"description":"HorrorboltRank 1312% of base mana 2.5 sec castGenerates 10 Insanity Inflicts 775+0+ShaP*0.714 Shadow damage to an enemy.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":775,"dieSides":85,"pointsPerLevel":7.940219879150391,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80}]}]},{"id":"coa-25-hammer-of-twilight-88-805116","classId":"cultist","dbcSpellId":805116,"name":"Hammer of Twilight","unlockLevel":6,"icon":"/assets/ui/spells/inv_mace_1h_hammeroftwilight_d_01.png","sigil":"HO","description":"Hammer of TwilightRank 1InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 14 Shadow damage, ignoring absorption effects and draining 40 Insanity.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805116,"level":6,"description":"Hammer of TwilightRank 1InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 14 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":806498,"level":14,"description":"Smash an enemy for $s1% Weapon Damage plus ${$m2+0} Shadow damage, ignoring absorption effects and draining 40 Insanity.$?s704869[ Refreshes a charge of Blade of the Empire.][]","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":806499,"level":22,"description":"Smash an enemy for $s1% Weapon Damage plus ${$m2+0} Shadow damage, ignoring absorption effects and draining 40 Insanity.$?s704869[ Refreshes a charge of Blade of the Empire.][]","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":806831,"level":30,"description":"Hammer of TwilightRank 4InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 73 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":806832,"level":38,"description":"Hammer of TwilightRank 5InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 99 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":806833,"level":46,"description":"Hammer of TwilightRank 6InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 118 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":806829,"level":54,"description":"Hammer of TwilightRank 7InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 139 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}]},{"rank":8,"spellId":806830,"level":60,"description":"Hammer of TwilightRank 8InstantRequires Melee Weapon Smash an enemy for 195% Weapon Damage plus 169 Shadow damage, ignoring absorption effects and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.95},{"kind":"damage","coefficient":1}]}]},{"id":"cultist-gaze-of-cthun","classId":"cultist","dbcSpellId":500110,"name":"Gaze of C'Thun","unlockLevel":8,"icon":"/assets/ui/spells/achievement_boss_cthun.png","sigil":"GO","description":"Gaze of C'ThunRank 115% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 1 additional nearby target, dealing 21+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 21+0+Heal*0.665+AP*0.1.","target":"any","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":21},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":21},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:500110:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500110,"level":8,"description":"Gaze of C'ThunRank 115% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 1 additional nearby target, dealing 21+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 21+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":21},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":21},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:500110:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502135,"level":14,"description":"Gaze of C'ThunRank 215% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 1 additional nearby target, dealing 38+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 38+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":38},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":38},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502135:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502136,"level":20,"description":"Gaze of C'ThunRank 315% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 1 additional nearby target, dealing 54+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 54+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":54},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":54},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502136:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502137,"level":28,"description":"Gaze of C'ThunRank 415% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 2 additional nearby targets, dealing 82+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 82+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":82},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":82},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502137:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502138,"level":36,"description":"Gaze of C'ThunRank 515% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 2 additional nearby targets, dealing 110+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 110+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":110},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":110},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502138:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502139,"level":44,"description":"Gaze of C'ThunRank 615% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 2 additional nearby targets, dealing 141+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 141+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":141},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":141},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502139:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502140,"level":52,"description":"Gaze of C'ThunRank 715% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 2 additional nearby targets, dealing 181+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 181+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":181},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":181},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502140:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502141,"level":58,"description":"Gaze of C'ThunRank 815% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 3 additional nearby targets, dealing 236+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 236+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":236},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":236},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502141:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":502142,"level":66,"description":"Gaze of C'ThunRank 915% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 3 additional nearby targets, dealing 353+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 353+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":353},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":353},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502142:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":502143,"level":74,"description":"Gaze of C'ThunRank 1015% of base mana Instant cast10 sec cooldownSet C’thun’s Gaze upon an enemy or ally, jumping to 3 additional nearby targets, dealing 408+0+ShaP*0.5+AP*0.2 Shadow damage to enemies or healing allies for 408+0+Heal*0.665+AP*0.1.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":520334,"withValue":408},{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":520335,"withValue":408},{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"trigger-spell","spellId":807344},{"kind":"apply-aura","aura":{"id":"coa:502143:effect:2:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-25-cthuns-blade-89-500735","classId":"cultist","dbcSpellId":500735,"name":"C'Thun's Blade","unlockLevel":10,"icon":"/assets/ui/spells/custom_t_shadowbeam_border.png","sigil":"CT","description":"C'Thun's BladeRank 18% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 38+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9733333460489909,"basePoints":38,"dieSides":3,"pointsPerLevel":3.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":11}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500735,"level":10,"description":"C'Thun's BladeRank 18% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 38+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9733333460489909,"basePoints":38,"dieSides":3,"pointsPerLevel":3.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":11}]},{"rank":2,"spellId":555707,"level":13,"description":"C'Thun's BladeRank 28% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 72+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0625,"basePoints":72,"dieSides":3,"pointsPerLevel":1.25,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":17}]},{"rank":3,"spellId":555708,"level":19,"description":"C'Thun's BladeRank 38% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 71+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0467647138763876,"basePoints":71,"dieSides":3,"pointsPerLevel":1.8300000429153442,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":23}]},{"rank":4,"spellId":555709,"level":25,"description":"C'Thun's BladeRank 48% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 94+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1.2937500178813934,"basePoints":94,"dieSides":3,"pointsPerLevel":2.4100000858306885,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":29}]},{"rank":5,"spellId":555710,"level":31,"description":"C'Thun's BladeRank 58% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 115+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1.6065942221793577,"basePoints":115,"dieSides":3,"pointsPerLevel":3.4100000858306885,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":35}]},{"rank":6,"spellId":555711,"level":37,"description":"C'Thun's BladeRank 68% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 160+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":2.1586538461538463,"basePoints":160,"dieSides":3,"pointsPerLevel":4.75,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":41}]},{"rank":7,"spellId":555712,"level":43,"description":"C'Thun's BladeRank 78% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 221+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":2.9026954475490525,"basePoints":221,"dieSides":3,"pointsPerLevel":6.583000183105469,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":47}]},{"rank":8,"spellId":555713,"level":49,"description":"C'Thun's BladeRank 88% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 307+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":3.922224005063375,"basePoints":307,"dieSides":3,"pointsPerLevel":9.083000183105469,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":53}]},{"rank":9,"spellId":555714,"level":55,"description":"C'Thun's BladeRank 98% of base mana Instant cast8 sec cooldownSmite an enemy, dealing 424+0+ShaP*0.685 Shadow Damage. Generates 10 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":424,"dieSides":3,"pointsPerLevel":12.399999618530273,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":61}]}]},{"id":"coa-tree-4041","classId":"cultist","dbcSpellId":92130,"name":"Corrupting Whispers","unlockLevel":10,"icon":"/assets/ui/spells/cthunicon.png","sigil":"CW","description":"Damage dealt has a 15% chance to grant you Corrupting Whispers. Corrupting Whispers (Aura)Increases your Magic Damage dealt by 20% and reduces your mana costs by -30% for 8 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92130:effect:0:aura:23","name":"Corrupting Whispers (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92130:proc:0:803094","triggers":["periodic"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803094}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803094},{"kind":"apply-aura","aura":{"id":"coa:92130:effect:1:aura:286","name":"Corrupting Whispers (Aura 286)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":286,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92130,"level":10,"description":"Damage dealt has a 15% chance to grant you Corrupting Whispers. Corrupting Whispers (Aura)Increases your Magic Damage dealt by 20% and reduces your mana costs by -30% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92130:effect:0:aura:23","name":"Corrupting Whispers (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92130:proc:0:803094","triggers":["periodic"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803094}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803094},{"kind":"apply-aura","aura":{"id":"coa:92130:effect:1:aura:286","name":"Corrupting Whispers (Aura 286)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":286,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4041},{"id":"coa-25-eldritch-smite-of-cthun-89-502125","classId":"cultist","dbcSpellId":502125,"name":"Eldritch Smite of C'thun","unlockLevel":10,"icon":"/assets/ui/spells/sha_spell_warlock_demonsoul_nightmare.png","sigil":"ES","description":"Eldritch Smite of C'thunRank 29% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 20+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502125:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502125:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502125:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502125,"level":10,"description":"Eldritch Smite of C'thunRank 29% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 20+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502125:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502125:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502125:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":3,"spellId":502126,"level":19,"description":"Eldritch Smite of C'thunRank 39% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 36+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502126:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502126:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502126:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":4,"spellId":502127,"level":28,"description":"Eldritch Smite of C'thunRank 49% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 62+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502127:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502127:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502127:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":5,"spellId":502128,"level":37,"description":"Eldritch Smite of C'thunRank 59% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 102+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502128:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502128:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502128:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":6,"spellId":502129,"level":45,"description":"Eldritch Smite of C'thunRank 69% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 154+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502129:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502129:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502129:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":7,"spellId":502130,"level":54,"description":"Eldritch Smite of C'thunRank 79% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 236+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502130:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502130:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502130:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":8,"spellId":502131,"level":63,"description":"Eldritch Smite of C'thunRank 89% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 354+(PL*1.5) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502131:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502131:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502131:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]},{"rank":9,"spellId":502132,"level":72,"description":"Eldritch Smite of C'thunRank 99% of base mana Instant8 sec cooldownRequires Weapon Causes your next Blade of the Empire to deal an additional 521+ppl1) Shadow Damage, and increases the range by 30 yds. Damage increased by 1% for each stack of Insanity. If your Insanity is greater than 60, reset the cooldown of Gaze of C'Thun.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502132:effect:0:aura:231","name":"Eldritch Smite of C'thun (Aura 231)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502132:proc:0:806251","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806251}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":806251},{"kind":"apply-aura","aura":{"id":"coa:502132:effect:1:aura:107","name":"Eldritch Smite of C'thun (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":20000}]}]},{"id":"coa-25-ritual-of-awakening-477-801791","classId":"cultist","dbcSpellId":801791,"name":"Ritual of Awakening","unlockLevel":10,"icon":"/assets/ui/spells/_demonhand_priest.png","sigil":"RO","description":"Ritual of AwakeningRank 160% of base mana 8 sec castBrings a dead player back to life with 70 health and 135 mana. Cannot be cast when in combat.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801791,"level":10,"description":"Ritual of AwakeningRank 160% of base mana 8 sec castBrings a dead player back to life with 70 health and 135 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]}]},{"id":"coa-25-void-shield-90-500715","classId":"cultist","dbcSpellId":500715,"name":"Void Shield","unlockLevel":10,"icon":"/assets/ui/spells/_d3energyarmor.png","sigil":"VS","description":"Void ShieldRank 126% of base mana Instant castShields an ally, absorbing 195+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","target":"friendly","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:500715:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500715:absorb:0","amount":195,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500715:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500715,"level":10,"description":"Void ShieldRank 126% of base mana Instant castShields an ally, absorbing 195+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:500715:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500715:absorb:0","amount":195,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500715:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502244,"level":20,"description":"Void ShieldRank 226% of base mana Instant castShields an ally, absorbing 241+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:502244:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502244:absorb:0","amount":241,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502244:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502245,"level":26,"description":"Void ShieldRank 326% of base mana Instant castShields an ally, absorbing 299+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:502245:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502245:absorb:0","amount":299,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502245:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502246,"level":32,"description":"Void ShieldRank 426% of base mana Instant castShields an ally, absorbing 404+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:502246:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502246:absorb:0","amount":404,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502246:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502247,"level":40,"description":"Void ShieldRank 526% of base mana Instant castShields an ally, absorbing 446+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:502247:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502247:absorb:0","amount":446,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502247:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":806745,"level":46,"description":"Shields an ally, absorbing ${$m1+$SP*0.6} damage for $d and applying Wracked Mind. @s:805801:0@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:806745:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:806745:absorb:0","amount":545,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806745:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":578114,"level":54,"description":"Void ShieldRank 726% of base mana Instant castShields an ally, absorbing 656+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:578114:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:578114:absorb:0","amount":656,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:578114:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":578115,"level":60,"description":"Void ShieldRank 826% of base mana Instant castShields an ally, absorbing 776+SP*0.6 damage for 30 sec and applying Wracked Mind. Wracked Mind Cannot be affected by Void Shield. Lasts for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1251,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:578115:effect:0:aura:69","name":"Void Shield (Aura 69)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:578115:absorb:0","amount":776,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:578115:effect:1:aura:4","name":"Void Shield (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805801},{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-25-malevolence-90-500714","classId":"cultist","dbcSpellId":500714,"name":"Malevolence","unlockLevel":11,"icon":"/assets/ui/spells/inv_mace_1h_orgrimmarraid_d_03.png","sigil":"MA","description":"MalevolenceRank 19% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 40+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 25+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","target":"hostile","range":{"min":0,"max":5},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7999999523162842,"basePoints":40,"dieSides":4,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":11,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":804153,"withValue":25},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500714,"level":11,"description":"MalevolenceRank 19% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 40+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 25+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7999999523162842,"basePoints":40,"dieSides":4,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":11,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":804153,"withValue":25},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":2,"spellId":502235,"level":18,"description":"MalevolenceRank 29% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 52+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 36+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6636363593014803,"basePoints":52,"dieSides":5,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":804153,"withValue":36},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":3,"spellId":502236,"level":26,"description":"MalevolenceRank 39% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 69+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 53+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7186991819521276,"basePoints":69,"dieSides":6,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":26},{"kind":"trigger-spell","spellId":804153,"withValue":53},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":4,"spellId":502237,"level":34,"description":"MalevolenceRank 49% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 93+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 67+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8068027155739921,"basePoints":93,"dieSides":8,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":804153,"withValue":67},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":5,"spellId":502238,"level":42,"description":"MalevolenceRank 59% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 124+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 82+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9140350818634033,"basePoints":124,"dieSides":11,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":42},{"kind":"trigger-spell","spellId":804153,"withValue":82},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":6,"spellId":502239,"level":50,"description":"MalevolenceRank 69% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 167+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 99+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1.058974352861062,"basePoints":167,"dieSides":15,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":804153,"withValue":99},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":7,"spellId":502240,"level":58,"description":"MalevolenceRank 79% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 225+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 115+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1.2452054731377729,"basePoints":225,"dieSides":21,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":804153,"withValue":115},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":8,"spellId":502241,"level":60,"description":"MalevolenceRank 89% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 302+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 136+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1.575555549197727,"basePoints":302,"dieSides":28,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":60},{"kind":"trigger-spell","spellId":804153,"withValue":136},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":9,"spellId":502242,"level":68,"description":"MalevolenceRank 99% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 406+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 157+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9566264995130669,"basePoints":406,"dieSides":75,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":68},{"kind":"trigger-spell","spellId":804153,"withValue":157},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]},{"rank":10,"spellId":502243,"level":76,"description":"MalevolenceRank 109% of base mana 1.5 sec castRequires Melee Weapon Generates 10 Insanity Smash an enemy with eldritch force, dealing 550+0+AP*0.1+SP*.52 Shadow damage and applying Black Blood to 5 nearby allies, healing them for 191+0+AP*0.1, repeating every 3 sec for 15 sec. Usable while moving. Additional applications of Black Blood do not refresh the duration.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":2.378754572117285,"basePoints":550,"dieSides":101,"pointsPerLevel":0.6499999761581421,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":804153,"withValue":191},{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}]}]},{"id":"coa-25-twilight-shieldtoss-497-524876","classId":"cultist","dbcSpellId":524876,"name":"Twilight Shieldtoss","unlockLevel":11,"icon":"/assets/ui/spells/inv_shield_1h_artifactstormfist_d_05.png","sigil":"TS","description":"Twilight ShieldtossRank 115% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 40 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":40,"dieSides":4,"pointsPerLevel":1,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":524876,"level":11,"description":"Twilight ShieldtossRank 115% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 40 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":40,"dieSides":4,"pointsPerLevel":1,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":11,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":2,"spellId":804208,"level":18,"description":"Twilight ShieldtossRank 215% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 70 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":70,"dieSides":6,"pointsPerLevel":1.25,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":18,"maxScalingLevel":24},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":3,"spellId":503487,"level":26,"description":"Twilight ShieldtossRank 315% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 103 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":103,"dieSides":19,"pointsPerLevel":1.5,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":26,"maxScalingLevel":32},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":4,"spellId":503488,"level":34,"description":"Twilight ShieldtossRank 415% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 148 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":148,"dieSides":27,"pointsPerLevel":1.75,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":34,"maxScalingLevel":40},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":5,"spellId":572715,"level":42,"description":"Twilight ShieldtossRank 515% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 213 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":213,"dieSides":39,"pointsPerLevel":2,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":42,"maxScalingLevel":48},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":6,"spellId":572140,"level":50,"description":"Twilight ShieldtossRank 615% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 322 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":322,"dieSides":57,"pointsPerLevel":2.25,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":50,"maxScalingLevel":56},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]},{"rank":7,"spellId":572141,"level":58,"description":"Twilight ShieldtossRank 715% of base mana Instant8 sec cooldownRequires Shields Hurl a cursed shield, dealing 464 Shadow damage to up to 3 enemies, reduced by 20% with each jump. Damage increased by 1% for each stack of Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.09099999815225601,"basePoints":464,"dieSides":82,"pointsPerLevel":2.5,"bonusPowerCoefficient":0.09099999815225601,"sourceLevel":58,"maxScalingLevel":66},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":524880,"durationMs":0}]}]},{"id":"coa-25-psychic-leech-89-800452","classId":"cultist","dbcSpellId":800452,"name":"Psychic Leech","unlockLevel":12,"icon":"/assets/ui/spells/spell_priest_voidshift.png","sigil":"PL","description":"Psychic LeechRank 1Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, dealing 33+0+SP*.5 Eldritch damage plus an additional 13+0+SP*.285 Eldritch damage and leeching 30% of it's damage dealt every 1 sec for 14 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800452:effect:0:aura:53","name":"Psychic Leech (Aura 53)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07900000363588333,"basePoints":13,"dieSides":7,"pointsPerLevel":1,"bonusPowerCoefficient":0.07900000363588333,"sourceLevel":12,"maxScalingLevel":20,"ticks":14,"intervalMs":1000,"tag":"spell-800452"},{"kind":"hot","coefficient":0.07900000363588333,"basePoints":13,"dieSides":7,"pointsPerLevel":1,"bonusPowerCoefficient":0.07900000363588333,"sourceLevel":12,"maxScalingLevel":20,"ticks":14,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800452:effect:1:aura:4","name":"Psychic Leech (Aura 4)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":0.5555555555555556,"basePoints":33,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":20},{"kind":"heal","coefficient":0.5555555555555556,"basePoints":33,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":20}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800452,"level":12,"description":"Psychic LeechRank 1Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, dealing 33+0+SP*.5 Eldritch damage plus an additional 13+0+SP*.285 Eldritch damage and leeching 30% of it's damage dealt every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800452:effect:0:aura:53","name":"Psychic Leech (Aura 53)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07900000363588333,"basePoints":13,"dieSides":7,"pointsPerLevel":1,"bonusPowerCoefficient":0.07900000363588333,"sourceLevel":12,"maxScalingLevel":20,"ticks":14,"intervalMs":1000,"tag":"spell-800452"},{"kind":"hot","coefficient":0.07900000363588333,"basePoints":13,"dieSides":7,"pointsPerLevel":1,"bonusPowerCoefficient":0.07900000363588333,"sourceLevel":12,"maxScalingLevel":20,"ticks":14,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800452:effect:1:aura:4","name":"Psychic Leech (Aura 4)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"damage","coefficient":0.5555555555555556,"basePoints":33,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":20},{"kind":"heal","coefficient":0.5555555555555556,"basePoints":33,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":20}]},{"rank":2,"spellId":502221,"level":64,"description":"Psychic LeechRank 27% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 69+(PL*0.4-14*0.4) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502221:effect:0:aura:53","name":"Psychic Leech (Aura 53)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.429535813472442,"basePoints":69,"dieSides":3,"pointsPerLevel":4.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":69,"ticks":14,"intervalMs":1000,"tag":"spell-502221"},{"kind":"hot","coefficient":1.429535813472442,"basePoints":69,"dieSides":3,"pointsPerLevel":4.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":69,"ticks":14,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502221:effect:1:aura:4","name":"Psychic Leech (Aura 4)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502222,"level":69,"description":"Psychic LeechRank 37% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 86+(PL*0.6-28*0.6) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502222:effect:0:aura:53","name":"Psychic Leech (Aura 53)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.6087301326176477,"basePoints":86,"dieSides":5,"pointsPerLevel":4.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74,"ticks":14,"intervalMs":1000,"tag":"spell-502222"},{"kind":"hot","coefficient":1.6087301326176477,"basePoints":86,"dieSides":5,"pointsPerLevel":4.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74,"ticks":14,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502222:effect:1:aura:4","name":"Psychic Leech (Aura 4)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":502223,"level":41,"description":"Psychic LeechRank 47% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 106+(PL*0.75-41*0.75) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502223:effect:0:aura:53","name":"Psychic Leech (Aura 53)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.8720238095238095,"basePoints":106,"dieSides":8,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":53,"ticks":14,"intervalMs":1000,"tag":"spell-502223"},{"kind":"hot","coefficient":1.8720238095238095,"basePoints":106,"dieSides":8,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":53,"ticks":14,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502223:effect:1:aura:4","name":"Psychic Leech (Aura 4)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":502224,"level":54,"description":"Psychic LeechRank 57% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 126+(PL*0.9-54*0.9) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502224:effect:0:aura:53","name":"Psychic Leech (Aura 53)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.0439613775354655,"basePoints":126,"dieSides":12,"pointsPerLevel":5.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":67,"ticks":14,"intervalMs":1000,"tag":"spell-502224"},{"kind":"hot","coefficient":2.0439613775354655,"basePoints":126,"dieSides":12,"pointsPerLevel":5.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":67,"ticks":14,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502224:effect:1:aura:4","name":"Psychic Leech (Aura 4)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":502225,"level":68,"description":"Psychic LeechRank 67% of base mana Instant castConsumes 2 Void Runes Applies a dark curse to an enemy, stealing 146+(PL*1.1-68*1.1) health from them and restoring it to the caster every 1 sec for 14 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502225:effect:0:aura:53","name":"Psychic Leech (Aura 53)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.2044177227709665,"basePoints":146,"dieSides":18,"pointsPerLevel":5.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80,"ticks":14,"intervalMs":1000,"tag":"spell-502225"},{"kind":"hot","coefficient":2.2044177227709665,"basePoints":146,"dieSides":18,"pointsPerLevel":5.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80,"ticks":14,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502225:effect:1:aura:4","name":"Psychic Leech (Aura 4)","disposition":"debuff","durationMs":14000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-25-darkwither-89-800446","classId":"cultist","dbcSpellId":800446,"name":"Darkwither","unlockLevel":13,"icon":"/assets/ui/spells/spell_shadow_unstableaffliction_3_purple.png","sigil":"DA","description":"DarkwitherRank 117% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 125 to 130 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800446:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4717914220832643,"basePoints":25,"dieSides":2,"pointsPerLevel":1.086959958076477,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":16,"ticks":5,"intervalMs":3000,"tag":"spell-800446"},{"kind":"apply-aura","aura":{"id":"coa:800446:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800446:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800446:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800446,"level":13,"description":"DarkwitherRank 117% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 125 to 130 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800446:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4717914220832643,"basePoints":25,"dieSides":2,"pointsPerLevel":1.086959958076477,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":16,"ticks":5,"intervalMs":3000,"tag":"spell-800446"},{"kind":"apply-aura","aura":{"id":"coa:800446:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800446:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800446:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]},{"rank":2,"spellId":502213,"level":18,"description":"DarkwitherRank 217% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 190 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502213:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4859731101026439,"basePoints":38,"dieSides":1,"pointsPerLevel":0.5617409944534302,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22,"ticks":5,"intervalMs":3000,"tag":"spell-502213"},{"kind":"apply-aura","aura":{"id":"coa:502213:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":121633,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502213:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502213:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]},{"rank":3,"spellId":502214,"level":24,"description":"DarkwitherRank 317% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 275 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502214:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5751917260324854,"basePoints":55,"dieSides":1,"pointsPerLevel":0.5123929977416992,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28,"ticks":5,"intervalMs":3000,"tag":"spell-502214"},{"kind":"apply-aura","aura":{"id":"coa:502214:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":121633,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502214:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502214:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]},{"rank":4,"spellId":502215,"level":30,"description":"DarkwitherRank 417% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 355 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502215:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6943481480633771,"basePoints":71,"dieSides":1,"pointsPerLevel":0.7578999996185303,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34,"ticks":5,"intervalMs":3000,"tag":"spell-502215"},{"kind":"apply-aura","aura":{"id":"coa:502215:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":121633,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502215:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502215:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]},{"rank":5,"spellId":502216,"level":36,"description":"DarkwitherRank 517% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 445 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502216:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8394122996361427,"basePoints":89,"dieSides":1,"pointsPerLevel":1.0952800512313843,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40,"ticks":5,"intervalMs":3000,"tag":"spell-502216"},{"kind":"apply-aura","aura":{"id":"coa:502216:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":121633,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502216:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502216:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]},{"rank":6,"spellId":502217,"level":42,"description":"DarkwitherRank 617% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 565 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502217:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0493825806511774,"basePoints":113,"dieSides":1,"pointsPerLevel":1.58201003074646,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":5,"intervalMs":3000,"tag":"spell-502217"},{"kind":"apply-aura","aura":{"id":"coa:502217:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":121633,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502217:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502217:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]},{"rank":7,"spellId":502218,"level":48,"description":"DarkwitherRank 717% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 695 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502218:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.265275763456153,"basePoints":139,"dieSides":1,"pointsPerLevel":2.0861899852752686,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52,"ticks":5,"intervalMs":3000,"tag":"spell-502218"},{"kind":"apply-aura","aura":{"id":"coa:502218:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":121633,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502218:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502218:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]},{"rank":8,"spellId":502219,"level":54,"description":"DarkwitherRank 817% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 830 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502219:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.5511706508876044,"basePoints":166,"dieSides":1,"pointsPerLevel":2.872080087661743,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58,"ticks":5,"intervalMs":3000,"tag":"spell-502219"},{"kind":"apply-aura","aura":{"id":"coa:502219:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":121633,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502219:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502219:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]},{"rank":9,"spellId":502220,"level":60,"description":"DarkwitherRank 917% of base mana Instant castGenerates 10 Insanity Wither an enemy, dealing 1025 Shadow damage over 15 sec. Each instance of damage reduces their periodic healing taken by 5%, stacking up to 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502220:effect:0:aura:3","name":"Darkwither (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.8892577913072375,"basePoints":205,"dieSides":1,"pointsPerLevel":3.6680500507354736,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68,"ticks":5,"intervalMs":3000,"tag":"spell-502220"},{"kind":"apply-aura","aura":{"id":"coa:502220:effect:1:aura:271","name":"Darkwither (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":121633,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502220:effect:2:aura:23","name":"Darkwither (Aura 23)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502220:proc:2:706913","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706913}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706913}]}]},{"id":"coa-25-forbidden-ritual-90-800105","classId":"cultist","dbcSpellId":800105,"name":"Forbidden Ritual","unlockLevel":17,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FR","description":"Forbidden RitualRank 130% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 225+0+Heal*.5 damage for 10 sec.","target":"hostile","range":{"min":0,"max":0},"radius":30,"castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800105:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800105:absorb:0","amount":225,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800105,"level":17,"description":"Forbidden RitualRank 130% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 225+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800105:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800105:absorb:0","amount":225,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":502267,"level":24,"description":"Forbidden RitualRank 230% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 308+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502267:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502267:absorb:0","amount":308,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502268,"level":28,"description":"Forbidden RitualRank 330% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 396+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502268:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502268:absorb:0","amount":396,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":502269,"level":34,"description":"Forbidden RitualRank 430% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 488+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502269:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502269:absorb:0","amount":488,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":502270,"level":40,"description":"Forbidden RitualRank 530% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 556+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502270:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502270:absorb:0","amount":556,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":502271,"level":46,"description":"Forbidden RitualRank 630% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 679+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502271:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502271:absorb:0","amount":679,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":502272,"level":52,"description":"Forbidden RitualRank 730% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 790+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502272:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502272:absorb:0","amount":790,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":502273,"level":58,"description":"Forbidden RitualRank 830% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 938+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502273:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502273:absorb:0","amount":938,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":9,"spellId":502274,"level":64,"description":"Forbidden RitualRank 930% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 1219+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502274:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502274:absorb:0","amount":1219,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":10,"spellId":502275,"level":70,"description":"Forbidden RitualRank 1030% of base mana 3 sec cast1 min cooldownChant a forbidden ritual that places a shield on all nearby party and raid members that absorbs 1585+0+Heal*.5 damage for 10 sec.","castMode":"cast","castTimeMs":3000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502275:effect:0:aura:69","name":"Forbidden Ritual (Aura 69)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502275:absorb:0","amount":1585,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-25-shatter-void-rune-89-502193","classId":"cultist","dbcSpellId":502193,"name":"Shatter Void Rune","unlockLevel":19,"icon":"/assets/ui/spells/_warlock_brise_amev2.png","sigil":"SV","description":"Shatter Void RuneRank 2Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 344 Shadow Damage to all enemies within 10 yards and knocking them back.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.3773927556143866,"basePoints":344,"dieSides":10,"pointsPerLevel":3.298569917678833,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":69},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502193:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502193,"level":63,"description":"Shatter Void RuneRank 2Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 344 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.3773927556143866,"basePoints":344,"dieSides":10,"pointsPerLevel":3.298569917678833,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":69},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502193:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":3,"spellId":502194,"level":69,"description":"Shatter Void RuneRank 3Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 446 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.7644872864087424,"basePoints":446,"dieSides":12,"pointsPerLevel":3.552910089492798,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":75},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502194:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":4,"spellId":502195,"level":19,"description":"Shatter Void RuneRank 4Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 47 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7915175580510906,"basePoints":47,"dieSides":14,"pointsPerLevel":1.4334100484848022,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":25},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502195:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":5,"spellId":502196,"level":26,"description":"Shatter Void RuneRank 5Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 67 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.979541782441178,"basePoints":67,"dieSides":18,"pointsPerLevel":1.730139970779419,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":31},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502196:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":6,"spellId":502197,"level":32,"description":"Shatter Void RuneRank 6Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 82 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.1064068138176668,"basePoints":82,"dieSides":22,"pointsPerLevel":1.9844800233840942,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502197:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":7,"spellId":502198,"level":38,"description":"Shatter Void RuneRank 7Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 110 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.3055041691042342,"basePoints":110,"dieSides":26,"pointsPerLevel":2.2388200759887695,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502198:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":8,"spellId":502199,"level":44,"description":"Shatter Void RuneRank 8Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 147 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.5350228271915414,"basePoints":147,"dieSides":31,"pointsPerLevel":2.4931600093841553,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":49},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502199:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":9,"spellId":502200,"level":50,"description":"Shatter Void RuneRank 9Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 194 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.7916666519947542,"basePoints":194,"dieSides":37,"pointsPerLevel":2.747499942779541,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":55},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502200:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":10,"spellId":502201,"level":56,"description":"Shatter Void RuneRank 10Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 255 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.0849908282499356,"basePoints":255,"dieSides":43,"pointsPerLevel":3.001840114593506,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502201:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":11,"spellId":502202,"level":63,"description":"Shatter Void RuneRank 11Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 344 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.4649995932212243,"basePoints":344,"dieSides":51,"pointsPerLevel":3.298569917678833,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":68},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502202:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":12,"spellId":502203,"level":69,"description":"Shatter Void RuneRank 12Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 446 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.8577412546627103,"basePoints":446,"dieSides":59,"pointsPerLevel":3.552910089492798,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502203:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]},{"rank":13,"spellId":502204,"level":75,"description":"Shatter Void RuneRank 13Instant cast35 sec cooldownConsumes 1 Void Rune You shatter a Void Rune, dealing 576 Shadow Damage to all enemies within 10 yards and knocking them back.","castMode":"instant","castTimeMs":0,"cooldownMs":35000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.313125006357829,"basePoints":576,"dieSides":67,"pointsPerLevel":3.8072500228881836,"bonusPowerCoefficient":0,"sourceLevel":75,"maxScalingLevel":80},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:502204:effect:2:aura:33","name":"Shatter Void Rune (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.5}]}]},{"id":"coa-25-entropic-slam-88-555351","classId":"cultist","dbcSpellId":555351,"name":"Entropic Slam","unlockLevel":20,"icon":"/assets/ui/spells/inv_axe_2h_grimbatolraid_d_01.png","sigil":"ES","description":"Entropic SlamRank 2InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 22 as Shadow damage and draining 40 Insanity.","target":"hostile","range":{"min":0,"max":5},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.3}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":555351,"level":20,"description":"Entropic SlamRank 2InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 22 as Shadow damage and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.3}]},{"rank":3,"spellId":555352,"level":28,"description":"Entropic SlamRank 3InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 34 as Shadow damage and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.3}]},{"rank":4,"spellId":555353,"level":36,"description":"Entropic SlamRank 4InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 53 as Shadow damage and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.3}]},{"rank":5,"spellId":555354,"level":42,"description":"Entropic SlamRank 5InstantRequires Melee Weapon Crush enemies in front of you, dealing 130% Weapon Damage plus 68 as Shadow damage and draining 40 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.3}]}]},{"id":"coa-25-void-blessing-477-560289","classId":"cultist","dbcSpellId":560289,"name":"Void Blessing","unlockLevel":24,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VB","description":"Void BlessingRank 25% of base mana Instant castEmpower an ally with a blessing from the void, restoring 15 mana every 5 seconds for 30 min.","target":"friendly","range":{"min":0,"max":40},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560289:effect:0:aura:85","name":"Void Blessing (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":15}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":560289,"level":24,"description":"Void BlessingRank 25% of base mana Instant castEmpower an ally with a blessing from the void, restoring 15 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560289:effect:0:aura:85","name":"Void Blessing (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":15}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]},{"rank":3,"spellId":560290,"level":34,"description":"Void BlessingRank 35% of base mana Instant castEmpower an ally with a blessing from the void, restoring 20 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560290:effect:0:aura:85","name":"Void Blessing (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":20}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]},{"rank":4,"spellId":560291,"level":44,"description":"Void BlessingRank 45% of base mana Instant castEmpower an ally with a blessing from the void, restoring 25 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560291:effect:0:aura:85","name":"Void Blessing (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":25}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]},{"rank":5,"spellId":560292,"level":54,"description":"Void BlessingRank 55% of base mana Instant castEmpower an ally with a blessing from the void, restoring 30 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560292:effect:0:aura:85","name":"Void Blessing (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":30}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]},{"rank":6,"spellId":560293,"level":60,"description":"Void BlessingRank 65% of base mana Instant castEmpower an ally with a blessing from the void, restoring 33 mana every 5 seconds for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560293:effect:0:aura:85","name":"Void Blessing (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":33}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117151,"triggerSpellId":0,"durationMs":1800000}]}]},{"id":"coa-25-void-embrace-90-800367","classId":"cultist","dbcSpellId":800367,"name":"Void Embrace","unlockLevel":29,"icon":"/assets/ui/spells/ability_priest_voidentropy.png","sigil":"VE","description":"Void EmbraceRank 120% of base mana Instant cast45 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(30+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","target":"friendly","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800367:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.34256969753539923,"basePoints":30,"dieSides":1,"pointsPerLevel":0.5248000025749207,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":32,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:800367:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800367:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:800367:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800367:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800367,"level":29,"description":"Void EmbraceRank 120% of base mana Instant cast45 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(30+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800367:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.34256969753539923,"basePoints":30,"dieSides":1,"pointsPerLevel":0.5248000025749207,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":32,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:800367:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800367:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:800367:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800367:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]},{"rank":2,"spellId":502276,"level":34,"description":"Void EmbraceRank 222% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(40+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502276:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.40987776655729125,"basePoints":40,"dieSides":1,"pointsPerLevel":0.5956479907035828,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":37,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502276:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502276:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:502276:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502276:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]},{"rank":3,"spellId":502277,"level":39,"description":"Void EmbraceRank 324% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(51+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502277:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5349635548061795,"basePoints":51,"dieSides":1,"pointsPerLevel":0.914463996887207,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":42,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502277:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502277:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:502277:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502277:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]},{"rank":4,"spellId":502278,"level":44,"description":"Void EmbraceRank 426% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(73+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502278:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.7190074435735153,"basePoints":73,"dieSides":1,"pointsPerLevel":1.2332799434661865,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":47,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502278:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502278:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:502278:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502278:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]},{"rank":5,"spellId":502279,"level":49,"description":"Void EmbraceRank 528% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(90+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502279:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.864858839660883,"basePoints":90,"dieSides":1,"pointsPerLevel":1.5520999431610107,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":52,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502279:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502279:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:502279:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502279:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]},{"rank":6,"spellId":502280,"level":54,"description":"Void EmbraceRank 630% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(100+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502280:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9619152626553595,"basePoints":100,"dieSides":1,"pointsPerLevel":1.8354899883270264,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":57,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502280:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502280:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:502280:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502280:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]},{"rank":7,"spellId":502281,"level":59,"description":"Void EmbraceRank 732% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(113+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":32,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502281:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.0815481914056313,"basePoints":113,"dieSides":1,"pointsPerLevel":2.1542999744415283,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":62,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502281:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502281:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:502281:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502281:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]},{"rank":8,"spellId":502282,"level":64,"description":"Void EmbraceRank 834% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(133+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":34,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502282:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.2290281786697324,"basePoints":133,"dieSides":1,"pointsPerLevel":2.4731199741363525,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":67,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502282:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502282:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:502282:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502282:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]},{"rank":9,"spellId":502283,"level":69,"description":"Void EmbraceRank 936% of base mana Instant cast30 sec cooldownConsumes 60 Insanity Emanate an aura for up to 12 sec, healing up to 10 allies within 40 yds for (12*1000/3)*(156+0+SP*0.11467) over 12 sec and applying Void-Touched with each tick. Void-Touched Marks the ally for 30 sec, stacking 10 times. When you cast Gaze of C'Thun, all stacks are consumed to heal all allies affected by Void-Touched for 100+5.8 Points Per Level+Heal*0.35, increased based on how many stacks were on them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":36,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502283:effect:0:aura:8","name":"Void Embrace (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":128,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.383507373787108,"basePoints":156,"dieSides":1,"pointsPerLevel":2.7919399738311768,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74,"ticks":4,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502283:effect:1:aura:42","name":"Void Embrace (Aura 42)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502283:proc:1:520774","triggers":["cast","heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520774}}}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520774},{"kind":"apply-aura","aura":{"id":"coa:502283:effect:2:aura:23","name":"Void Embrace (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502283:proc:2:301982","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301982}}}]},"recipient":"caster","sourceEffectType":128,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301982}]}]},{"id":"coa-25-eternal-grasp-89-704878","classId":"cultist","dbcSpellId":704878,"name":"Eternal Grasp","unlockLevel":30,"icon":"/assets/ui/spells/achievement_nzothraid_carapace.png","sigil":"EG","description":"Eternal GraspRank 1Increases the duration of your Tentacles by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704878:effect:0:aura:108","name":"Eternal Grasp (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704878,"level":30,"description":"Eternal GraspRank 1Increases the duration of your Tentacles by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704878:effect:0:aura:108","name":"Eternal Grasp (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":704879,"level":30,"description":"Eternal GraspRank 2Increases the duration of your Tentacles by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704879:effect:0:aura:108","name":"Eternal Grasp (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-25-instill-despair-90-500718","classId":"cultist","dbcSpellId":500718,"name":"Instill Despair","unlockLevel":45,"icon":"/assets/ui/spells/ability_rogue_nightblade.png","sigil":"ID","description":"Instill DespairRank 19% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 16+(PL*0.5)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500718:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500718:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:500718:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500718:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500718,"level":57,"description":"Instill DespairRank 19% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 16+(PL*0.5)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500718:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500718:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:500718:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500718:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":502257,"level":60,"description":"Instill DespairRank 29% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 26+(PL*0.77-8*0.77)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502257:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502257:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502257:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502257:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502258,"level":63,"description":"Instill DespairRank 39% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 36+(PL*1-16*1)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502258:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502258:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502258:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502258:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":502259,"level":68,"description":"Instill DespairRank 49% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 46+(PL*1.3-23*1.3)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502259:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502259:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502259:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502259:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":502260,"level":73,"description":"Instill DespairRank 59% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 56+(PL*1.5-30*1.5)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502260:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502260:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502260:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502260:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":502261,"level":78,"description":"Instill DespairRank 69% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 66+(PL*1.7-37*1.7)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502261:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502261:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502261:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502261:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":502262,"level":45,"description":"Instill DespairRank 79% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 76+(PL*2-45*2)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502262:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502262:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502262:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502262:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":502263,"level":52,"description":"Instill DespairRank 89% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 86+(PL*2.2-52*2.2)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502263:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502263:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502263:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502263:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":9,"spellId":502264,"level":59,"description":"Instill DespairRank 99% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 157+(PL*2.5-59*2.5)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502264:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502264:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502264:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502264:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":10,"spellId":502265,"level":66,"description":"Instill DespairRank 109% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 216+(PL*2.72-66*2.72)+SP*0.226 health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502265:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502265:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502265:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502265:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]},{"rank":11,"spellId":502266,"level":74,"description":"Instill DespairRank 119% of base mana 1.5 sec cast10 sec cooldownDefile an ally's weapon for 30 sec, granting 5% increased haste and giving them a 15% chance to steal 305+(PL*3-74*3) health from enemies they damage, healing for half of the amount stolen.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502266:effect:0:aura:231","name":"Instill Despair (Aura 231)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502266:proc:0:704301","triggers":["heal"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704301}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":704301},{"kind":"apply-aura","aura":{"id":"coa:502266:effect:1:aura:192","name":"Instill Despair (Aura 192)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502266:effect:2:aura:216","name":"Instill Despair (Aura 216)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-25-doomcloak-497-502134","classId":"cultist","dbcSpellId":502134,"name":"Doomcloak","unlockLevel":53,"icon":"/assets/ui/spells/sha_spell_shadow_shadesofdarkness.png","sigil":"DO","description":"DoomcloakRank 315% of base mana Instant cast15 sec cooldownRequires Shields Shield yourself in a magical barrier that absorbs 600+0+Sta*0.35 damage. Lasts 12 sec. While active, Magic Damage taken is reduced by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:502134:effect:0:aura:69","name":"Doomcloak (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502134:absorb:0","amount":600,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502134:effect:1:aura:87","name":"Doomcloak (Aura 87)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":-1,"triggerSpellId":800431,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":502134,"level":53,"description":"DoomcloakRank 315% of base mana Instant cast15 sec cooldownRequires Shields Shield yourself in a magical barrier that absorbs 600+0+Sta*0.35 damage. Lasts 12 sec. While active, Magic Damage taken is reduced by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:502134:effect:0:aura:69","name":"Doomcloak (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:502134:absorb:0","amount":600,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502134:effect:1:aura:87","name":"Doomcloak (Aura 87)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":-1,"triggerSpellId":800431,"durationMs":12000}]}]},{"id":"coa-25-ancient-curse-89-502152","classId":"cultist","dbcSpellId":502152,"name":"Ancient Curse","unlockLevel":62,"icon":"/assets/ui/spells/inv_jewelry_ring_62.png","sigil":"AC","description":"Ancient CurseRank 219% of base mana Instant cast1 min cooldownInstantly inflicts 309+(PL*2.7-17*2.7) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":3.9134199134199132,"basePoints":309,"dieSides":13,"pointsPerLevel":9.5,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":65},{"kind":"apply-aura","aura":{"id":"coa:502152:effect:1:aura:271","name":"Ancient Curse (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":0.25}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":32,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502152,"level":62,"description":"Ancient CurseRank 219% of base mana Instant cast1 min cooldownInstantly inflicts 309+(PL*2.7-17*2.7) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":3.9134199134199132,"basePoints":309,"dieSides":13,"pointsPerLevel":9.5,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":65},{"kind":"apply-aura","aura":{"id":"coa:502152:effect:1:aura:271","name":"Ancient Curse (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":0.25}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":32,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}]},{"rank":3,"spellId":502153,"level":67,"description":"Ancient CurseRank 319% of base mana Instant cast1 min cooldownInstantly inflicts 403+(PL*4-33*4) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":403,"dieSides":23,"pointsPerLevel":12.399999618530273,"bonusPowerCoefficient":0,"sourceLevel":67,"maxScalingLevel":70},{"kind":"apply-aura","aura":{"id":"coa:502153:effect:1:aura:271","name":"Ancient Curse (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":0.25}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":32,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}]},{"rank":4,"spellId":502154,"level":72,"description":"Ancient CurseRank 419% of base mana Instant cast1 min cooldownInstantly inflicts 1071+(PL*5.4-49*5.4) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1071,"dieSides":39,"pointsPerLevel":6.125,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502154:effect:1:aura:271","name":"Ancient Curse (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":0.25}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":32,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}]},{"rank":5,"spellId":502155,"level":65,"description":"Ancient CurseRank 519% of base mana Instant cast1 min cooldownInstantly inflicts 1370+(PL*6.7-65*6.7) Shadow damage to an enemy and increases all Shadow damage they take from you by 25% for 12 sec. Generates 20 Insanity.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1370,"dieSides":60,"pointsPerLevel":6.734379768371582,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502155:effect:1:aura:271","name":"Ancient Curse (Aura 271)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":0.25}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":32,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":121300,"triggerSpellId":0,"durationMs":12000}]}]}],"starcaller":[{"id":"coa-26-arrows-of-starlight-93-704733","classId":"starcaller","dbcSpellId":704733,"name":"Arrows of Starlight","unlockLevel":1,"icon":"/assets/ui/spells/ability_ironmaidens_ironshot.png","sigil":"AO","description":"Arrows of StarlightRank 1Increases the damage of Moon Arrow by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704733:effect:0:aura:108","name":"Arrows of Starlight (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704733,"level":1,"description":"Arrows of StarlightRank 1Increases the damage of Moon Arrow by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704733:effect:0:aura:108","name":"Arrows of Starlight (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30838","classId":"starcaller","dbcSpellId":806155,"name":"Astral Aegis","unlockLevel":1,"icon":"/assets/ui/spells/ability_bastion_monk.png","sigil":"AA","description":"Drains 30% Maximum Mana For 10 seconds, direct Magic damage taken will silence the attacker for 1 seconds and deal 57 + 18% arcane SP Arcane damage to them.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806155:effect:0:aura:87","name":"Astral Aegis (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806155:effect:1:aura:42","name":"Astral Aegis (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806155:proc:1:806453","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806453}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806453}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806155,"level":1,"description":"Drains 30% Maximum Mana For 10 seconds, direct Magic damage taken will silence the attacker for 1 seconds and deal 57 + 18% arcane SP Arcane damage to them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806155:effect:0:aura:87","name":"Astral Aegis (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806155:effect:1:aura:42","name":"Astral Aegis (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806155:proc:1:806453","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806453}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806453}]}],"talentEntryId":30838},{"id":"starcaller-astral-flare","classId":"starcaller","dbcSpellId":800499,"name":"Astral Flare","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_manaburn.png","sigil":"AF","description":"Astral FlareRank 12 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":10},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800499,"level":1,"description":"Astral FlareRank 12 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":10},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}]},{"rank":2,"spellId":502318,"level":11,"description":"Astral FlareRank 22 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":20},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}]},{"rank":3,"spellId":502319,"level":21,"description":"Astral FlareRank 32 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":38},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}]},{"rank":4,"spellId":502320,"level":31,"description":"Astral FlareRank 42 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":67},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}]},{"rank":5,"spellId":502321,"level":41,"description":"Astral FlareRank 52 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":113},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}]},{"rank":6,"spellId":502322,"level":51,"description":"Astral FlareRank 62 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":183},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}]},{"rank":7,"spellId":502323,"level":61,"description":"Astral FlareRank 72 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":287},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}]},{"rank":8,"spellId":502324,"level":71,"description":"Astral FlareRank 82 sec castYou call an Astral Flare down from the sky, dealing 1 Arcane Damage to an enemy and regenerating 5% of your Maximum Mana.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800507,"withValue":440},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":804096,"withValue":5},{"kind":"resource","amount":2,"percentage":true}]}]},{"id":"coa-26-bright-moon-none-704779","classId":"starcaller","dbcSpellId":704779,"name":"Bright Moon","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_teleport.png","sigil":"BM","description":"Bright MoonRank 2Allows Lunar Phase to stack 4 additional times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704779:effect:0:aura:107","name":"Bright Moon (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704779,"level":1,"description":"Bright MoonRank 2Allows Lunar Phase to stack 4 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704779:effect:0:aura:107","name":"Bright Moon (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}]}]},{"id":"coa-tree-6659","classId":"starcaller","dbcSpellId":801226,"name":"Bright Moon","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_teleport.png","sigil":"BM","description":"Bright MoonPassiveInstantAllows Lunar Phase to stack 4 additional times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801226:effect:0:aura:107","name":"Bright Moon (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801226,"level":1,"description":"Bright MoonPassiveInstantAllows Lunar Phase to stack 4 additional times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801226:effect:0:aura:107","name":"Bright Moon (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}]}],"talentEntryId":6659},{"id":"coa-tree-33832","classId":"starcaller","dbcSpellId":300259,"name":"Constellation Barrier","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_arcaneweapons_border.png","sigil":"CB","description":"Reduces all Magic damage taken by -5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300259:effect:0:aura:87","name":"Constellation Barrier (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300259,"level":1,"description":"Reduces all Magic damage taken by -5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300259:effect:0:aura:87","name":"Constellation Barrier (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":33832},{"id":"coa-tree-29493","classId":"starcaller","dbcSpellId":503584,"name":"Continual Starfall","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_starfall.png","sigil":"CS","description":"Astral Flares called down by Aspect of the Stars now increase your haste by 3% for 5 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503584:effect:0:aura:4","name":"Continual Starfall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503584,"level":1,"description":"Astral Flares called down by Aspect of the Stars now increase your haste by 3% for 5 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503584:effect:0:aura:4","name":"Continual Starfall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29493},{"id":"coa-tree-9834","classId":"starcaller","dbcSpellId":504628,"name":"Cosmic Duality","unlockLevel":1,"icon":"/assets/ui/spells/talentspec_druid_balance.png","sigil":"CD","description":"Dealing damage grants you Cosmic Harmony, increasing the healing of your next ability within 6 seconds by 5%. Effective healing grants you Cosmic Wrath, increasing the damage of your next ability within 6 seconds by 5%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504628:effect:0:aura:42","name":"Cosmic Duality (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504628:proc:0:504631","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504631}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504631}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504628,"level":1,"description":"Dealing damage grants you Cosmic Harmony, increasing the healing of your next ability within 6 seconds by 5%. Effective healing grants you Cosmic Wrath, increasing the damage of your next ability within 6 seconds by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504628:effect:0:aura:42","name":"Cosmic Duality (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504628:proc:0:504631","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504631}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504631}]}],"talentEntryId":9834},{"id":"coa-tree-7698","classId":"starcaller","dbcSpellId":680774,"name":"Elune's Presence","unlockLevel":1,"icon":"/assets/ui/spells/ability_ardenweald_paladin_summer.png","sigil":"ES","description":"Gain the blessing of a goddess, granting all party or raid members within 40 yds 20% temporary maximum health for 10 seconds.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680774:effect:0:aura:133","name":"Elune's Presence (Aura 133)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":133,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680774,"level":1,"description":"Gain the blessing of a goddess, granting all party or raid members within 40 yds 20% temporary maximum health for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680774:effect:0:aura:133","name":"Elune's Presence (Aura 133)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":133,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":7698},{"id":"coa-26-fury-of-the-stars-91-704603","classId":"starcaller","dbcSpellId":704603,"name":"Fury of the Stars","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_156.png","sigil":"FO","description":"Fury of the StarsRank 1Increases the damage of Astral Blade by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704603:effect:0:aura:108","name":"Fury of the Stars (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704603,"level":1,"description":"Fury of the StarsRank 1Increases the damage of Astral Blade by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704603:effect:0:aura:108","name":"Fury of the Stars (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":704605,"level":1,"description":"Fury of the StarsRank 2Increases the damage of Astral Blade by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704605:effect:0:aura:108","name":"Fury of the Stars (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-26-huntress-of-elune-93-704769","classId":"starcaller","dbcSpellId":704769,"name":"Huntress of Elune","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_piercingshots.png","sigil":"HO","description":"Huntress of EluneRank 1Increases your damage dealt by 5% on enemies further than 30 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704769:effect:0:aura:79","name":"Huntress of Elune (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704769:effect:1:aura:226","name":"Huntress of Elune (Aura 226)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"]},"sourceEffectType":6,"sourceAuraType":226,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704769,"level":1,"description":"Huntress of EluneRank 1Increases your damage dealt by 5% on enemies further than 30 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704769:effect:0:aura:79","name":"Huntress of Elune (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704769:effect:1:aura:226","name":"Huntress of Elune (Aura 226)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"]},"sourceEffectType":6,"sourceAuraType":226,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":704770,"level":1,"description":"Huntress of EluneRank 2InstantIncreases your damage dealt by 10% on enemies further than 30 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704770:effect:0:aura:79","name":"Huntress of Elune (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704770:effect:1:aura:226","name":"Huntress of Elune (Aura 226)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"]},"sourceEffectType":6,"sourceAuraType":226,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-4044","classId":"starcaller","dbcSpellId":92133,"name":"Huntress Training","unlockLevel":1,"icon":"/assets/ui/spells/_diablo3_arrowrain_mage.png","sigil":"HT","description":"Level 10 Passive Increases your haste rating by 8% of your Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92133:effect:0:aura:220","name":"Huntress Training (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:917504","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":917504,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92133,"level":1,"description":"Level 10 Passive Increases your haste rating by 8% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92133:effect:0:aura:220","name":"Huntress Training (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:917504","operation":"flat","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":917504,"triggerSpellId":0}]}],"talentEntryId":4044},{"id":"coa-26-improved-torrent-92-704746","classId":"starcaller","dbcSpellId":704746,"name":"Improved Torrent","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_frostblast.png","sigil":"IT","description":"Improved TorrentRank 2Increases the healing of Torrent and damage dealt by Shark Attack by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704746:effect:0:aura:108","name":"Improved Torrent (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704746,"level":1,"description":"Improved TorrentRank 2Increases the healing of Torrent and damage dealt by Shark Attack by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704746:effect:0:aura:108","name":"Improved Torrent (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29642","classId":"starcaller","dbcSpellId":704777,"name":"Infused Aegis","unlockLevel":1,"icon":"/assets/ui/spells/ability_nightfae_soulshape.png","sigil":"IA","description":"Drains 30% Maximum Mana Instantly counterattack any enemy that strikes you from the front in melee for Arcane damage, lasting 10 seconds. Can only occur once per sec per enemy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704777:effect:0:aura:354","name":"Infused Aegis (Aura 354)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":707759}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":704777,"level":1,"description":"Drains 30% Maximum Mana Instantly counterattack any enemy that strikes you from the front in melee for Arcane damage, lasting 10 seconds. Can only occur once per sec per enemy.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704777:effect:0:aura:354","name":"Infused Aegis (Aura 354)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":707759}]}],"talentEntryId":29642},{"id":"coa-tree-13828","classId":"starcaller","dbcSpellId":300989,"name":"Lunar Anomaly","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_blueflamestrike.png","sigil":"LA","description":"Increases the damage of Lunar Lance by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300989:effect:0:aura:108","name":"Lunar Anomaly (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300989,"level":1,"description":"Increases the damage of Lunar Lance by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300989:effect:0:aura:108","name":"Lunar Anomaly (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":13828},{"id":"coa-26-lunar-storm-93-800511","classId":"starcaller","dbcSpellId":800511,"name":"Lunar Storm","unlockLevel":1,"icon":"/assets/ui/spells/achievement_worldevent_lunar.png","sigil":"LS","description":"Lunar StormRank 112% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 5 to 6 Arcane Damage to enemies in the area every 2 sec for 10 sec.","target":"hostile","range":{"min":0,"max":30},"radius":18,"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800511:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6000000238418579,"basePoints":5,"dieSides":2,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":9,"ticks":5,"intervalMs":2000,"tag":"spell-800511"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800511,"level":1,"description":"Lunar StormRank 112% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 5 to 6 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800511:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6000000238418579,"basePoints":5,"dieSides":2,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":9,"ticks":5,"intervalMs":2000,"tag":"spell-800511"}]},{"rank":2,"spellId":502325,"level":10,"description":"Lunar StormRank 212% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 10 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502325:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2003333330154419,"basePoints":10,"dieSides":1,"pointsPerLevel":0.5024999976158142,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":5,"intervalMs":2000,"tag":"spell-502325"}]},{"rank":3,"spellId":502326,"level":19,"description":"Lunar StormRank 312% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 18 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502326:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.30402206264290155,"basePoints":18,"dieSides":1,"pointsPerLevel":0.6847500205039978,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27,"ticks":5,"intervalMs":2000,"tag":"spell-502326"}]},{"rank":4,"spellId":502327,"level":28,"description":"Lunar StormRank 412% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 31 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502327:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.42849612051202346,"basePoints":31,"dieSides":1,"pointsPerLevel":0.8669999837875366,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":5,"intervalMs":2000,"tag":"spell-502327"}]},{"rank":5,"spellId":502328,"level":37,"description":"Lunar StormRank 512% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 48 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502328:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5565528861987286,"basePoints":48,"dieSides":1,"pointsPerLevel":1.0492500066757202,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44,"ticks":5,"intervalMs":2000,"tag":"spell-502328"}]},{"rank":6,"spellId":502329,"level":45,"description":"Lunar StormRank 612% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 77 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502329:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.730590264664756,"basePoints":77,"dieSides":1,"pointsPerLevel":1.2112499475479126,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53,"ticks":5,"intervalMs":2000,"tag":"spell-502329"}]},{"rank":7,"spellId":502330,"level":54,"description":"Lunar StormRank 712% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 126 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502330:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.9722173835920251,"basePoints":126,"dieSides":1,"pointsPerLevel":1.3934999704360962,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62,"ticks":5,"intervalMs":2000,"tag":"spell-502330"}]},{"rank":8,"spellId":502331,"level":63,"description":"Lunar StormRank 812% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 202 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502331:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.2874882460659385,"basePoints":202,"dieSides":1,"pointsPerLevel":1.5757499933242798,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71,"ticks":5,"intervalMs":2000,"tag":"spell-502331"}]},{"rank":9,"spellId":502332,"level":72,"description":"Lunar StormRank 912% of base mana Instant cast40 sec cooldownBlast an enemy target with a pillar of magic, calling down a Lunar Storm over the their location that inflicts 320 Arcane Damage to enemies in the area every 2 sec for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502332:effect:0:aura:3","name":"Lunar Storm (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.7110191615605264,"basePoints":320,"dieSides":1,"pointsPerLevel":1.7580000162124634,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":5,"intervalMs":2000,"tag":"spell-502332"}]}]},{"id":"coa-tree-4043","classId":"starcaller","dbcSpellId":92132,"name":"Moon Guard","unlockLevel":1,"icon":"/assets/ui/spells/artifactability_balancedruid_newmoon.png","sigil":"MG","description":"Level 10 Passive You now gain Intellect equal to your Strength.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92132:effect:0:aura:327","name":"Moon Guard (Aura 327)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":327,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92132:effect:1:aura:107","name":"Moon Guard (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92132,"level":1,"description":"Level 10 Passive You now gain Intellect equal to your Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92132:effect:0:aura:327","name":"Moon Guard (Aura 327)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":327,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92132:effect:1:aura:107","name":"Moon Guard (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":4043},{"id":"coa-tree-4045","classId":"starcaller","dbcSpellId":92134,"name":"Moon Priest","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicmoonbuff_border.png","sigil":"MP","description":"Level 10 Passive Your Huntress Shot now has a Lunar Eclipse effect. Huntress Shot: Applies 2 additional Scattered Stars.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92134:effect:0:aura:4","name":"Moon Priest (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92134:effect:1:aura:107","name":"Moon Priest (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92134,"level":1,"description":"Level 10 Passive Your Huntress Shot now has a Lunar Eclipse effect. Huntress Shot: Applies 2 additional Scattered Stars.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92134:effect:0:aura:4","name":"Moon Priest (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92134:effect:1:aura:107","name":"Moon Priest (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":4045},{"id":"coa-26-moonblessed-aspects-93-706231","classId":"starcaller","dbcSpellId":706231,"name":"Moonblessed Aspects","unlockLevel":1,"icon":"/assets/ui/spells/inv_shoulder_leather_raiddruid_q_01.png","sigil":"MA","description":"Moonblessed AspectsRank 1Increases the effectiveness by 4% and chance to trigger your Aspects by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706231:effect:0:aura:108","name":"Moonblessed Aspects (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706231:effect:1:aura:108","name":"Moonblessed Aspects (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706231:effect:2:aura:107","name":"Moonblessed Aspects (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706231,"level":1,"description":"Moonblessed AspectsRank 1Increases the effectiveness by 4% and chance to trigger your Aspects by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706231:effect:0:aura:108","name":"Moonblessed Aspects (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706231:effect:1:aura:108","name":"Moonblessed Aspects (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706231:effect:2:aura:107","name":"Moonblessed Aspects (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}]},{"id":"coa-tree-11811","classId":"starcaller","dbcSpellId":706232,"name":"Moonblessed Aspects","unlockLevel":1,"icon":"/assets/ui/spells/inv_shoulder_leather_raiddruid_q_01.png","sigil":"MA","description":"Increases the effectiveness of Aspects by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706232:effect:0:aura:108","name":"Moonblessed Aspects (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706232:effect:1:aura:108","name":"Moonblessed Aspects (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706232,"level":1,"description":"Increases the effectiveness of Aspects by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706232:effect:0:aura:108","name":"Moonblessed Aspects (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706232:effect:1:aura:108","name":"Moonblessed Aspects (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":11811},{"id":"coa-tree-33825","classId":"starcaller","dbcSpellId":503583,"name":"Moonlight Ripple","unlockLevel":1,"icon":"/assets/ui/spells/ability_socererking_arcanemines.png","sigil":"MR","description":"Reduces the mana cost of your Aegis spells by -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503583:effect:0:aura:229","name":"Moonlight Ripple (Aura 229)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":229,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503583:effect:1:aura:107","name":"Moonlight Ripple (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503583,"level":1,"description":"Reduces the mana cost of your Aegis spells by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503583:effect:0:aura:229","name":"Moonlight Ripple (Aura 229)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":229,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503583:effect:1:aura:107","name":"Moonlight Ripple (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":33825},{"id":"coa-26-moonlit-impaler-91-706235","classId":"starcaller","dbcSpellId":706235,"name":"Moonlit Impaler","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MI","description":"Moonlit ImpalerRank 2Increases your Arcane damage by 10% and your hit chance by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706235:effect:0:aura:79","name":"Moonlit Impaler (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"arcane","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":64,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706235:effect:1:aura:333","name":"Moonlit Impaler (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706235,"level":1,"description":"Moonlit ImpalerRank 2Increases your Arcane damage by 10% and your hit chance by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706235:effect:0:aura:79","name":"Moonlit Impaler (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"arcane","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":64,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706235:effect:1:aura:333","name":"Moonlit Impaler (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29974","classId":"starcaller","dbcSpellId":560662,"name":"Moonlit Lancer","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_resourcefulness.png","sigil":"ML","description":"Your Lunar Lance now deals additional Arcane damage over 20 sec.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560662:effect:0:aura:107","name":"Moonlit Lancer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":200}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560662,"level":1,"description":"Your Lunar Lance now deals additional Arcane damage over 20 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560662:effect:0:aura:107","name":"Moonlit Lancer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":200}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29974},{"id":"coa-tree-33828","classId":"starcaller","dbcSpellId":300256,"name":"Moonwalk","unlockLevel":1,"icon":"/assets/ui/spells/nhi_manafeet_border.png","sigil":"MO","description":"Increases your movement speed by 20% at night.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300256:effect:0:aura:23","name":"Moonwalk (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300256:proc:0:301328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301328}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301328}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300256,"level":1,"description":"Increases your movement speed by 20% at night.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300256:effect:0:aura:23","name":"Moonwalk (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300256:proc:0:301328","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301328}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301328}]}],"talentEntryId":33828},{"id":"coa-tree-30369","classId":"starcaller","dbcSpellId":804739,"name":"Moonwell","unlockLevel":1,"icon":"/assets/ui/spells/ability_shawaterelemental_swirl.png","sigil":"MO","description":"Creates a zone blessed by moonwell waters for 15 seconds at the target location. All allied players standing within the well receive 25% more healing, and their mana regeneration is increased by 100%.","target":"hostile","range":{"min":0,"max":30},"radius":10,"castMode":"cast","castTimeMs":2000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804739:effect:0:aura:118","name":"Moonwell (Aura 118)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804739:effect:1:aura:4","name":"Moonwell (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804739:effect:2:aura:110","name":"Moonwell (Aura 110)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":1}]},"sourceEffectType":27,"sourceAuraType":110,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804739,"level":1,"description":"Creates a zone blessed by moonwell waters for 15 seconds at the target location. All allied players standing within the well receive 25% more healing, and their mana regeneration is increased by 100%.","castMode":"cast","castTimeMs":2000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804739:effect:0:aura:118","name":"Moonwell (Aura 118)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804739:effect:1:aura:4","name":"Moonwell (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804739:effect:2:aura:110","name":"Moonwell (Aura 110)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":1}]},"sourceEffectType":27,"sourceAuraType":110,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30369},{"id":"coa-tree-6660","classId":"starcaller","dbcSpellId":704774,"name":"Mu'sha's Resilience","unlockLevel":1,"icon":"/assets/ui/spells/inv_fabric_moonrag_01.png","sigil":"MS","description":"Reduces Arcane damage taken by -15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704774:effect:0:aura:87","name":"Mu'sha's Resilience (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":64,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704774,"level":1,"description":"Reduces Arcane damage taken by -15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704774:effect:0:aura:87","name":"Mu'sha's Resilience (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":-0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":64,"triggerSpellId":0}]}],"talentEntryId":6660},{"id":"coa-tree-33829","classId":"starcaller","dbcSpellId":680789,"name":"Nightborne Armaments","unlockLevel":1,"icon":"/assets/ui/spells/inv_helm_armor_nightborne_d_01.png","sigil":"NA","description":"While below 35% health, your damage taken is reduced by -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680789:effect:0:aura:23","name":"Nightborne Armaments (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680789:proc:0:680790","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680790}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":680790}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680789,"level":1,"description":"While below 35% health, your damage taken is reduced by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680789:effect:0:aura:23","name":"Nightborne Armaments (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680789:proc:0:680790","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680790}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":680790}]}],"talentEntryId":33829},{"id":"coa-tree-33834","classId":"starcaller","dbcSpellId":504694,"name":"Pouch of Stardust","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_trinket_mage.png","sigil":"PO","description":"Increases the critical strike chance and critical damage of consumed Scattered Stars by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504694:effect:0:aura:108","name":"Pouch of Stardust (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504694:effect:1:aura:107","name":"Pouch of Stardust (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504694:effect:2:aura:108","name":"Pouch of Stardust (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":37,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504694,"level":1,"description":"Increases the critical strike chance and critical damage of consumed Scattered Stars by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504694:effect:0:aura:108","name":"Pouch of Stardust (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504694:effect:1:aura:107","name":"Pouch of Stardust (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504694:effect:2:aura:108","name":"Pouch of Stardust (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":37,"triggerSpellId":0}]}],"talentEntryId":33834},{"id":"coa-tree-29648","classId":"starcaller","dbcSpellId":570231,"name":"Reverse Magic","unlockLevel":1,"icon":"/assets/ui/spells/inv_10_dungeonjewelry_dragon_trinket_1arcanemagical_blue.png","sigil":"RM","description":"Reverse the next spell cast on you within 3 seconds, reflecting it back to its caster. Reversing a spell in this way drains 600 + 20% SP of the attacker's mana.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570231:effect:0:aura:28","name":"Reverse Magic (Aura 28)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:570231:effect:1:aura:42","name":"Reverse Magic (Aura 42)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:570231:proc:1:806233","triggers":["cast","hit"],"chance":1,"charges":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806233}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806233}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":570231,"level":1,"description":"Reverse the next spell cast on you within 3 seconds, reflecting it back to its caster. Reversing a spell in this way drains 600 + 20% SP of the attacker's mana.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570231:effect:0:aura:28","name":"Reverse Magic (Aura 28)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":28,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:570231:effect:1:aura:42","name":"Reverse Magic (Aura 42)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:570231:proc:1:806233","triggers":["cast","hit"],"chance":1,"charges":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806233}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806233}]}],"talentEntryId":29648},{"id":"coa-tree-29489","classId":"starcaller","dbcSpellId":300252,"name":"Second Moon","unlockLevel":1,"icon":"/assets/ui/spells/nhi_magicmoonbuff_border.png","sigil":"SM","description":"Every 10th Scattered Star consumed now launches a comet at an enemy dealing 304 + 30% arcane SP Arcane damage to 5 enemies within 5 yds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300252:effect:0:aura:42","name":"Second Moon (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300252:proc:0:520406","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520406}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520406}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300252,"level":1,"description":"Every 10th Scattered Star consumed now launches a comet at an enemy dealing 304 + 30% arcane SP Arcane damage to 5 enemies within 5 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300252:effect:0:aura:42","name":"Second Moon (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300252:proc:0:520406","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520406}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520406}]}],"talentEntryId":29489},{"id":"coa-tree-7409","classId":"starcaller","dbcSpellId":800505,"name":"Shooting Star","unlockLevel":1,"icon":"/assets/ui/spells/artifactability_balancedruid_moonandstars.png","sigil":"SS","description":"Shooting StarRank 112% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 sec. While active, you cannot be slowed and cannot stop moving.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800505:effect:0:aura:31","name":"Shooting Star (Aura 31)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800505:effect:1:aura:23","name":"Shooting Star (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800505:proc:1:804996","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804996}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804996},{"kind":"apply-aura","aura":{"id":"coa:800505:effect:2:aura:231","name":"Shooting Star (Aura 231)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800505:proc:2:805006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":805006}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800505,"level":1,"description":"Shooting StarRank 112% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800505:effect:0:aura:31","name":"Shooting Star (Aura 31)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800505:effect:1:aura:23","name":"Shooting Star (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800505:proc:1:804996","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804996}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804996},{"kind":"apply-aura","aura":{"id":"coa:800505:effect:2:aura:231","name":"Shooting Star (Aura 231)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800505:proc:2:805006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":805006}]}],"talentEntryId":7409},{"id":"coa-tree-33810","classId":"starcaller","dbcSpellId":500608,"name":"Star-Charged","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_arcane04.png","sigil":"SC","description":"Reduces the cooldown of your Aspects by -5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500608:effect:0:aura:107","name":"Star-Charged (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":500608,"level":1,"description":"Reduces the cooldown of your Aspects by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500608:effect:0:aura:107","name":"Star-Charged (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":33810},{"id":"coa-26-starbarian-91-704778","classId":"starcaller","dbcSpellId":704778,"name":"Starbarian","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_pandaraid_d_01.png","sigil":"ST","description":"StarbarianRank 1Increases your haste by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704778:effect:0:aura:192","name":"Starbarian (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704778:effect:1:aura:216","name":"Starbarian (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704778,"level":1,"description":"StarbarianRank 1Increases your haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704778:effect:0:aura:192","name":"Starbarian (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704778:effect:1:aura:216","name":"Starbarian (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":706229,"level":1,"description":"StarbarianRank 2Increases your haste by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706229:effect:0:aura:192","name":"Starbarian (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706229:effect:1:aura:216","name":"Starbarian (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30769","classId":"starcaller","dbcSpellId":704778,"name":"Starbarian","unlockLevel":1,"icon":"/assets/ui/spells/inv_axe_1h_pandaraid_d_01.png","sigil":"ST","description":"StarbarianRank 1Increases your haste by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704778:effect:0:aura:192","name":"Starbarian (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704778:effect:1:aura:216","name":"Starbarian (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704778,"level":1,"description":"StarbarianRank 1Increases your haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704778:effect:0:aura:192","name":"Starbarian (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704778:effect:1:aura:216","name":"Starbarian (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":706229,"level":1,"description":"StarbarianRank 2Increases your haste by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706229:effect:0:aura:192","name":"Starbarian (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706229:effect:1:aura:216","name":"Starbarian (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30769},{"id":"coa-26-starcrash-93-704767","classId":"starcaller","dbcSpellId":704767,"name":"Starcrash","unlockLevel":1,"icon":"/assets/ui/spells/spell_mage_supernova.png","sigil":"ST","description":"StarcrashRank 2Increases the damage caused when you consume Scattered Stars by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704767:effect:0:aura:108","name":"Starcrash (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":704767,"level":1,"description":"StarcrashRank 2Increases the damage caused when you consume Scattered Stars by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704767:effect:0:aura:108","name":"Starcrash (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29649","classId":"starcaller","dbcSpellId":801135,"name":"Starshatter","unlockLevel":1,"icon":"/assets/ui/spells/sha_ability_mage_firestarter_nightborne.png","sigil":"ST","description":"Call down the power of the stars, sending forth Elune’s astral light in a line outward from you, stunning enemies struck for 5 seconds and applying a Scattered Star.","target":"self","range":{"min":0,"max":0},"radius":25,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1250,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801135:effect:0:aura:23","name":"Starshatter (Aura 23)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801135:proc:0:707724","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707724}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":707724}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801135,"level":1,"description":"Call down the power of the stars, sending forth Elune’s astral light in a line outward from you, stunning enemies struck for 5 seconds and applying a Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1250,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801135:effect:0:aura:23","name":"Starshatter (Aura 23)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801135:proc:0:707724","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707724}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":707724}]}],"talentEntryId":29649},{"id":"coa-26-starsunder-478-801127","classId":"starcaller","dbcSpellId":801127,"name":"Starsunder","unlockLevel":1,"icon":"/assets/ui/spells/inv_wand_1h_430nightelf_c_01.png","sigil":"ST","description":"StarsunderRank 1InstantRequires Melee Weapon Drains 20% Maximum Mana Applies 1 Scattered Star Strike an enemy for 40% Weapon Damage plus 3+*0.042+ArcP*0.3 Arcane Damage, increased further based on your maximum mana. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1},{"kind":"damage","coefficient":0.4}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801127,"level":1,"description":"StarsunderRank 1InstantRequires Melee Weapon Drains 20% Maximum Mana Applies 1 Scattered Star Strike an enemy for 40% Weapon Damage plus 3+*0.042+ArcP*0.3 Arcane Damage, increased further based on your maximum mana. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1},{"kind":"damage","coefficient":0.4}]}]},{"id":"coa-tree-31067","classId":"starcaller","dbcSpellId":574328,"name":"Touch of Moonlight","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_moonglow.png","sigil":"TO","description":"Drains 10% Maximum Mana Quickly heal an ally with Elune's touch, scaling with maximum mana.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.41025641025641024,"basePoints":31,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":574328,"level":1,"description":"Drains 10% Maximum Mana Quickly heal an ally with Elune's touch, scaling with maximum mana.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.41025641025641024,"basePoints":31,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11}]}],"talentEntryId":31067},{"id":"coa-tree-33830","classId":"starcaller","dbcSpellId":704775,"name":"Twinkle Toes","unlockLevel":1,"icon":"/assets/ui/spells/rogue_burstofspeed.png","sigil":"TT","description":"Increases the movement speed granted by Shooting Star by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704775:effect:0:aura:107","name":"Twinkle Toes (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704775,"level":1,"description":"Increases the movement speed granted by Shooting Star by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704775:effect:0:aura:107","name":"Twinkle Toes (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":33830},{"id":"coa-tree-33823","classId":"starcaller","dbcSpellId":300262,"name":"Universal Power","unlockLevel":1,"icon":"/assets/ui/spells/nhi_manacup_border.png","sigil":"UP","description":"Your Aspect of the Cosmos now stacks 1 additional time.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300262:effect:0:aura:107","name":"Universal Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300262,"level":1,"description":"Your Aspect of the Cosmos now stacks 1 additional time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300262:effect:0:aura:107","name":"Universal Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":31,"triggerSpellId":0}]}],"talentEntryId":33823},{"id":"coa-26-vengeance-of-elune-91-801969","classId":"starcaller","dbcSpellId":801969,"name":"Vengeance of Elune","unlockLevel":1,"icon":"/assets/ui/spells/inv_staff_2h_ardenweald_d_01.png","sigil":"VO","description":"Vengeance of EluneRank 13% of base mana Instant5 sec cooldownCauses 19 to 29 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","target":"hostile","range":{"min":0,"max":5},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":19,"dieSides":11,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":1,"sourceLevel":1,"maxScalingLevel":6},{"kind":"apply-aura","aura":{"id":"coa:801969:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801969,"level":1,"description":"Vengeance of EluneRank 13% of base mana Instant5 sec cooldownCauses 19 to 29 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":19,"dieSides":11,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":1,"sourceLevel":1,"maxScalingLevel":6},{"kind":"apply-aura","aura":{"id":"coa:801969:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502304,"level":7,"description":"Vengeance of EluneRank 23% of base mana Instant5 sec cooldownCauses 31 to 45 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8256363579721162,"basePoints":31,"dieSides":15,"pointsPerLevel":2.3559999465942383,"bonusPowerCoefficient":0,"sourceLevel":7,"maxScalingLevel":12},{"kind":"apply-aura","aura":{"id":"coa:502304:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502305,"level":13,"description":"Vengeance of EluneRank 33% of base mana Instant5 sec cooldownCauses 47 to 66 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1.137523801553817,"basePoints":47,"dieSides":20,"pointsPerLevel":3.003999948501587,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"apply-aura","aura":{"id":"coa:502305:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502306,"level":19,"description":"Vengeance of EluneRank 43% of base mana Instant5 sec cooldownCauses 70 to 95 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4890980299781351,"basePoints":70,"dieSides":26,"pointsPerLevel":3.6519999504089355,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":25},{"kind":"apply-aura","aura":{"id":"coa:502306:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502307,"level":26,"description":"Vengeance of EluneRank 53% of base mana Instant5 sec cooldownCauses 106 to 140 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9317723561108597,"basePoints":106,"dieSides":35,"pointsPerLevel":4.4079999923706055,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":31},{"kind":"apply-aura","aura":{"id":"coa:502307:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502308,"level":32,"description":"Vengeance of EluneRank 63% of base mana Instant5 sec cooldownCauses 149 to 193 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":2.360227003165171,"basePoints":149,"dieSides":45,"pointsPerLevel":5.056000232696533,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37},{"kind":"apply-aura","aura":{"id":"coa:502308:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502309,"level":38,"description":"Vengeance of EluneRank 73% of base mana Instant5 sec cooldownCauses 206 to 261 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":2.831773583993972,"basePoints":206,"dieSides":56,"pointsPerLevel":5.703999996185303,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"apply-aura","aura":{"id":"coa:502309:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502310,"level":44,"description":"Vengeance of EluneRank 83% of base mana Instant5 sec cooldownCauses 280 to 348 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":3.3530396068163513,"basePoints":280,"dieSides":69,"pointsPerLevel":6.3520002365112305,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":49},{"kind":"apply-aura","aura":{"id":"coa:502310:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":502311,"level":50,"description":"Vengeance of EluneRank 93% of base mana Instant5 sec cooldownCauses 376 to 458 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":3.933333333333333,"basePoints":376,"dieSides":83,"pointsPerLevel":7,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":55},{"kind":"apply-aura","aura":{"id":"coa:502311:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":502312,"level":56,"description":"Vengeance of EluneRank 103% of base mana Instant5 sec cooldownCauses 499 to 597 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":499,"dieSides":99,"pointsPerLevel":7.6479997634887695,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62},{"kind":"apply-aura","aura":{"id":"coa:502312:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":11,"spellId":502313,"level":63,"description":"Vengeance of EluneRank 113% of base mana Instant5 sec cooldownCauses 683 to 801 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":683,"dieSides":119,"pointsPerLevel":8.404000282287598,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":68},{"kind":"apply-aura","aura":{"id":"coa:502313:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":12,"spellId":502314,"level":69,"description":"Vengeance of EluneRank 123% of base mana Instant5 sec cooldownCauses 892 to 1029 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":892,"dieSides":138,"pointsPerLevel":9.052000045776367,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74},{"kind":"apply-aura","aura":{"id":"coa:502314:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":13,"spellId":502315,"level":75,"description":"Vengeance of EluneRank 133% of base mana Instant5 sec cooldownCauses 1158 to 1315 Arcane damage to up to 4 enemies within $a1yd of the target, scaling with attack power and Intellect. Can only be used after parrying an attack. This attack cannot be avoided.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1250,"cost":{"resource":"mana","amount":3,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1158,"dieSides":158,"pointsPerLevel":9.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":75,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502315:effect:1:aura:271","name":"Vengeance of Elune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30873","classId":"starcaller","dbcSpellId":804652,"name":"Vial of Moonwell Water","unlockLevel":1,"icon":"/assets/ui/spells/inv_potionc_3.png","sigil":"VO","description":"Drink from your enchanted moonwell vial, instantly removing all crowd control effects and making you immune to them for 3 seconds. Usable while stunned, feared, or polymorphed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804652:effect:0:aura:77","name":"Vial of Moonwell Water (Aura 77)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804652:effect:1:aura:77","name":"Vial of Moonwell Water (Aura 77)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804652:effect:2:aura:77","name":"Vial of Moonwell Water (Aura 77)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804652,"level":1,"description":"Drink from your enchanted moonwell vial, instantly removing all crowd control effects and making you immune to them for 3 seconds. Usable while stunned, feared, or polymorphed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804652:effect:0:aura:77","name":"Vial of Moonwell Water (Aura 77)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804652:effect:1:aura:77","name":"Vial of Moonwell Water (Aura 77)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804652:effect:2:aura:77","name":"Vial of Moonwell Water (Aura 77)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":30873},{"id":"coa-tree-9950","classId":"starcaller","dbcSpellId":680725,"name":"Warden Training","unlockLevel":1,"icon":"/assets/ui/spells/inv_pet_wardenowl.png","sigil":"WT","description":"Level 10 Passive Critically striking with Starsunder now applies an additional stack of Scattered Stars.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680725:effect:0:aura:42","name":"Warden Training (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680725:proc:0:804378","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804378}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804378}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680725,"level":1,"description":"Level 10 Passive Critically striking with Starsunder now applies an additional stack of Scattered Stars.Scattered StarsCan be consumed by spells to deal additional Arcane Damage. Lasts 30 seconds, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680725:effect:0:aura:42","name":"Warden Training (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680725:proc:0:804378","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804378}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804378}]}],"talentEntryId":9950},{"id":"coa-tree-30656","classId":"starcaller","dbcSpellId":805508,"name":"Warden's Blade","unlockLevel":1,"icon":"/assets/ui/spells/_maievblade_arcane.png","sigil":"WS","description":"Attack with celestial fervor, dealing 150% Weapon Damage and triggering a unique effect based on your active Aspect.Cosmic Renewal (Aspect of the Moonwell)Regenerates 30% of your maximum mana.Warden's Strike (Aspect of the Warden)Reduces healing done to the enemy by -40% for 8 seconds.Star Sear (Aspect of the Stars)Increases the damage of your Lunar Lance by 25%.Cosmic Trap (Aspect of the Cosmos)Throw a magic net trap at an enemy, rooting them for 40 seconds (8 sec vs players). Damage dealt may end the effect.Siphoning Arrow (Aspect of the Huntress)Drains 10% maximum mana from the target.","target":"hostile","range":{"min":0,"max":10},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805508,"level":1,"description":"Attack with celestial fervor, dealing 150% Weapon Damage and triggering a unique effect based on your active Aspect.Cosmic Renewal (Aspect of the Moonwell)Regenerates 30% of your maximum mana.Warden's Strike (Aspect of the Warden)Reduces healing done to the enemy by -40% for 8 seconds.Star Sear (Aspect of the Stars)Increases the damage of your Lunar Lance by 25%.Cosmic Trap (Aspect of the Cosmos)Throw a magic net trap at an enemy, rooting them for 40 seconds (8 sec vs players). Damage dealt may end the effect.Siphoning Arrow (Aspect of the Huntress)Drains 10% maximum mana from the target.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1.5}]}],"talentEntryId":30656},{"id":"coa-tree-29647","classId":"starcaller","dbcSpellId":801976,"name":"Way of the Goddess","unlockLevel":1,"icon":"/assets/ui/spells/_diablo3_arrowrain_mage.png","sigil":"WO","description":"Reduces the duration of harmful magic effects on you by -25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801976:effect:0:aura:245","name":"Way of the Goddess (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801976,"level":1,"description":"Reduces the duration of harmful magic effects on you by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801976:effect:0:aura:245","name":"Way of the Goddess (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29647},{"id":"coa-26-aspect-of-the-stars-478-800510","classId":"starcaller","dbcSpellId":800510,"name":"Aspect of the Stars","unlockLevel":4,"icon":"/assets/ui/spells/inv_enchant_essenceeternallarge.png","sigil":"AO","description":"Aspect of the StarsRank 15% of base mana Instant cast10 sec cooldownMelee and ranged auto attacks now have a 25% chance to apply Scattered Stars and deal 5+0+0.1*ArcP+0.07*AP Arcane damage. Shares a cooldown with other Aspects. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"cooldownGroup":"coa:aspects","gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800510:effect:0:aura:107","name":"Aspect of the Stars (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800510:effect:1:aura:231","name":"Aspect of the Stars (Aura 231)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800510:proc:1:800507","triggers":["hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800507}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":800507},{"kind":"apply-aura","aura":{"id":"coa:800510:effect:2:aura:42","name":"Aspect of the Stars (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800510:proc:2:804378","triggers":["hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804378}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804378}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800510,"level":4,"description":"Aspect of the StarsRank 15% of base mana Instant cast10 sec cooldownMelee and ranged auto attacks now have a 25% chance to apply Scattered Stars and deal 5+0+0.1*ArcP+0.07*AP Arcane damage. Shares a cooldown with other Aspects. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800510:effect:0:aura:107","name":"Aspect of the Stars (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800510:effect:1:aura:231","name":"Aspect of the Stars (Aura 231)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800510:proc:1:800507","triggers":["hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800507}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":800507},{"kind":"apply-aura","aura":{"id":"coa:800510:effect:2:aura:42","name":"Aspect of the Stars (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800510:proc:2:804378","triggers":["hit"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804378}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804378}]}]},{"id":"starcaller-celestial-strike","classId":"starcaller","dbcSpellId":800496,"name":"Celestial Strike","unlockLevel":4,"icon":"/assets/ui/spells/inv_sword_1h_pvpdraenors2_d_02.png","sigil":"CS","description":"Celestial StrikeRank 140 Energy InstantRequires Melee Weapon Strike an enemy for 65% Weapon Damage plus 9 and regenerate 10% of your maximum mana plus 20.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.65},{"kind":"damage","coefficient":1}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800496,"level":4,"description":"Celestial StrikeRank 140 Energy InstantRequires Melee Weapon Strike an enemy for 65% Weapon Damage plus 9 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.65},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":502286,"level":6,"description":"Celestial StrikeRank 240 Energy InstantRequires Melee Weapon Strike an enemy for 75% Weapon Damage plus 13 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.75},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":502287,"level":16,"description":"Celestial StrikeRank 340 Energy InstantRequires Melee Weapon Strike an enemy for 80% Weapon Damage plus 36 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.8},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":502288,"level":24,"description":"Celestial StrikeRank 440 Energy InstantRequires Melee Weapon Strike an enemy for 85% Weapon Damage plus 52 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.85},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":502289,"level":32,"description":"Celestial StrikeRank 540 Energy InstantRequires Melee Weapon Strike an enemy for 90% Weapon Damage plus 70 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.9},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":502290,"level":40,"description":"Celestial StrikeRank 640 Energy InstantRequires Melee Weapon Strike an enemy for 95% Weapon Damage plus 91 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":0.95},{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":502291,"level":50,"description":"Celestial StrikeRank 740 Energy InstantRequires Melee Weapon Strike an enemy for 100% Weapon Damage plus 118 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}]},{"rank":8,"spellId":502292,"level":60,"description":"Celestial StrikeRank 840 Energy InstantRequires Melee Weapon Strike an enemy for 105% Weapon Damage plus 146 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.05},{"kind":"damage","coefficient":1}]},{"rank":9,"spellId":502293,"level":68,"description":"Celestial StrikeRank 940 Energy InstantRequires Melee Weapon Strike an enemy for 110% Weapon Damage plus 177 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.1},{"kind":"damage","coefficient":1}]},{"rank":10,"spellId":502294,"level":76,"description":"Celestial StrikeRank 1040 Energy InstantRequires Melee Weapon Strike an enemy for 115% Weapon Damage plus 215 and regenerate 10% of your maximum mana plus 20.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"energy","amount":40},"effects":[{"kind":"damage","coefficient":1.15},{"kind":"damage","coefficient":1}]}]},{"id":"starcaller-lunar-lance","classId":"starcaller","dbcSpellId":502333,"name":"Lunar Lance","unlockLevel":8,"icon":"/assets/ui/spells/spell_priest_divinestar.png","sigil":"LL","description":"Lunar LanceRank 2InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 17+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","target":"hostile","range":{"min":0,"max":45},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.42028985507246375,"basePoints":17,"dieSides":9,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:502333:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.31768115879832837,"basePoints":20,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16,"ticks":1,"intervalMs":3000,"tag":"spell-502333"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502333,"level":8,"description":"Lunar LanceRank 2InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 17+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.42028985507246375,"basePoints":17,"dieSides":9,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16},{"kind":"apply-aura","aura":{"id":"coa:502333:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.31768115879832837,"basePoints":20,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":16,"ticks":1,"intervalMs":3000,"tag":"spell-502333"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}]},{"rank":3,"spellId":502334,"level":18,"description":"Lunar LanceRank 3InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 35+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.6060606060606061,"basePoints":35,"dieSides":15,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"apply-aura","aura":{"id":"coa:502334:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4375757566004088,"basePoints":39,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24,"ticks":1,"intervalMs":3000,"tag":"spell-502334"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}]},{"rank":4,"spellId":502335,"level":26,"description":"Lunar LanceRank 4InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 88+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.016260162601626,"basePoints":88,"dieSides":23,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:502335:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4897560964270336,"basePoints":54,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32,"ticks":1,"intervalMs":3000,"tag":"spell-502335"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}]},{"rank":5,"spellId":502336,"level":34,"description":"Lunar LanceRank 5InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 156+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.4047619047619047,"basePoints":156,"dieSides":34,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:502336:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5248979579429237,"basePoints":69,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":1,"intervalMs":3000,"tag":"spell-502336"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}]},{"rank":6,"spellId":502337,"level":42,"description":"Lunar LanceRank 6InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 255+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.7953216374269005,"basePoints":255,"dieSides":21,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:502337:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5501754372789148,"basePoints":84,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":50,"ticks":1,"intervalMs":3000,"tag":"spell-502337"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}]},{"rank":7,"spellId":502338,"level":52,"description":"Lunar LanceRank 7InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 355+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.0970149253731343,"basePoints":355,"dieSides":30,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"apply-aura","aura":{"id":"coa:502338:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.57452736179627,"basePoints":103,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58,"ticks":1,"intervalMs":3000,"tag":"spell-502338"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}]},{"rank":8,"spellId":502339,"level":60,"description":"Lunar LanceRank 8InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 438+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.3044444444444445,"basePoints":438,"dieSides":42,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"apply-aura","aura":{"id":"coa:502339:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.588444443013933,"basePoints":118,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66,"ticks":1,"intervalMs":3000,"tag":"spell-502339"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}]},{"rank":9,"spellId":502340,"level":68,"description":"Lunar LanceRank 9InstantConsumes Scattered Stars Unleash a lunar lance on an enemy, dealing 538+0.35*ArcP+0.21*AP Arcane damage. Consume Scattered Stars Deals 7+SP*0.182183 Arcane Damage and restores 8% maximum mana for each Scattered Star.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.5562248995983934,"basePoints":538,"dieSides":62,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76},{"kind":"apply-aura","aura":{"id":"coa:502340:effect:1:aura:3","name":"Lunar Lance (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5996787133944561,"basePoints":133,"dieSides":1,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":76,"ticks":1,"intervalMs":3000,"tag":"spell-502340"},{"kind":"trigger-spell","spellId":572315},{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}]}]},{"id":"starcaller-moonwell-splash","classId":"starcaller","dbcSpellId":800370,"name":"Moonwell Splash","unlockLevel":8,"icon":"/assets/ui/spells/spell_frost_manarecharge.png","sigil":"MS","description":"Moonwell SplashRank 125% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 79+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":0.4309999942779541,"basePoints":79,"dieSides":8,"pointsPerLevel":4.206669807434082,"bonusPowerCoefficient":0.4309999942779541,"sourceLevel":8,"maxScalingLevel":12}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800370,"level":8,"description":"Moonwell SplashRank 125% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 79+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":0.4309999942779541,"basePoints":79,"dieSides":8,"pointsPerLevel":4.206669807434082,"bonusPowerCoefficient":0.4309999942779541,"sourceLevel":8,"maxScalingLevel":12}]},{"rank":2,"spellId":503019,"level":14,"description":"Moonwell SplashRank 225% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 121+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":2.3474645833859498,"basePoints":121,"dieSides":10,"pointsPerLevel":5.62352991104126,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":18}]},{"rank":3,"spellId":503020,"level":20,"description":"Moonwell SplashRank 325% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 189+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":3.351771418253581,"basePoints":189,"dieSides":12,"pointsPerLevel":7.871799945831299,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24}]},{"rank":4,"spellId":503021,"level":26,"description":"Moonwell SplashRank 425% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 264+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":3.3446648527936236,"basePoints":264,"dieSides":16,"pointsPerLevel":5.380529880523682,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30}]},{"rank":5,"spellId":503022,"level":32,"description":"Moonwell SplashRank 525% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 331+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":3.9163120350939162,"basePoints":331,"dieSides":21,"pointsPerLevel":6.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36}]},{"rank":6,"spellId":503023,"level":38,"description":"Moonwell SplashRank 625% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 408+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":408,"dieSides":26,"pointsPerLevel":8.140000343322754,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":42}]},{"rank":7,"spellId":503024,"level":44,"description":"Moonwell SplashRank 725% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 534+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":534,"dieSides":46,"pointsPerLevel":10.65999984741211,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48}]},{"rank":8,"spellId":503025,"level":50,"description":"Moonwell SplashRank 825% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 639+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":639,"dieSides":60,"pointsPerLevel":12.760000228881836,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54}]},{"rank":9,"spellId":503026,"level":56,"description":"Moonwell SplashRank 925% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 767+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":767,"dieSides":72,"pointsPerLevel":30.639999389648438,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58}]},{"rank":10,"spellId":503027,"level":60,"description":"Moonwell SplashRank 1025% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 2167+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":2167,"dieSides":86,"pointsPerLevel":12.26669979095459,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66}]},{"rank":11,"spellId":503028,"level":68,"description":"Moonwell SplashRank 1125% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 2392+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":2392,"dieSides":104,"pointsPerLevel":14.720000267028809,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":74}]},{"rank":12,"spellId":503029,"level":76,"description":"Moonwell SplashRank 1225% of base mana 2.5 sec castEnvelop an ally in moonwell waters, healing them for 1708+0+SP*0.448795. Lunar Eclipse: This spell is instant and heals the ally for an additional 5% of their maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":1708,"dieSides":124,"pointsPerLevel":29.739999771118164,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80}]}]},{"id":"coa-26-celestial-awakening-478-801795","classId":"starcaller","dbcSpellId":801795,"name":"Celestial Awakening","unlockLevel":10,"icon":"/assets/ui/spells/ability_druid_twilightswrath.png","sigil":"CA","description":"Celestial AwakeningRank 160% of base mana 8 sec castBrings a dead ally back to life with 70 Health and 135 Mana. The target gains 200% increased Mana regeneration for 10 sec. Cannot be cast when in combat.","target":"friendly","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35},{"kind":"apply-aura","aura":{"id":"coa:801795:effect:1:aura:110","name":"Celestial Awakening (Aura 110)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":2}]},"sourceEffectType":6,"sourceAuraType":110,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801795,"level":10,"description":"Celestial AwakeningRank 160% of base mana 8 sec castBrings a dead ally back to life with 70 Health and 135 Mana. The target gains 200% increased Mana regeneration for 10 sec. Cannot be cast when in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35},{"kind":"apply-aura","aura":{"id":"coa:801795:effect:1:aura:110","name":"Celestial Awakening (Aura 110)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":2}]},"sourceEffectType":6,"sourceAuraType":110,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-26-shooting-star-478-800505","classId":"starcaller","dbcSpellId":800505,"name":"Shooting Star","unlockLevel":10,"icon":"/assets/ui/spells/artifactability_balancedruid_moonandstars.png","sigil":"SS","description":"Shooting StarRank 112% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 sec. While active, you cannot be slowed and cannot stop moving.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800505:effect:0:aura:31","name":"Shooting Star (Aura 31)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800505:effect:1:aura:23","name":"Shooting Star (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800505:proc:1:804996","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804996}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804996},{"kind":"apply-aura","aura":{"id":"coa:800505:effect:2:aura:231","name":"Shooting Star (Aura 231)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800505:proc:2:805006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":805006}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800505,"level":10,"description":"Shooting StarRank 112% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 60% for 4 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800505:effect:0:aura:31","name":"Shooting Star (Aura 31)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800505:effect:1:aura:23","name":"Shooting Star (Aura 23)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800505:proc:1:804996","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804996}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804996},{"kind":"apply-aura","aura":{"id":"coa:800505:effect:2:aura:231","name":"Shooting Star (Aura 231)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800505:proc:2:805006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":805006}]},{"rank":5,"spellId":502295,"level":42,"description":"Shooting StarRank 512% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 80% for 5 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502295:effect:0:aura:31","name":"Shooting Star (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502295:effect:1:aura:23","name":"Shooting Star (Aura 23)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502295:proc:1:804996","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804996}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804996},{"kind":"apply-aura","aura":{"id":"coa:502295:effect:2:aura:231","name":"Shooting Star (Aura 231)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502295:proc:2:805006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":805006}]},{"rank":6,"spellId":502296,"level":52,"description":"Shooting StarRank 612% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 80% for 6 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502296:effect:0:aura:31","name":"Shooting Star (Aura 31)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502296:effect:1:aura:23","name":"Shooting Star (Aura 23)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502296:proc:1:804996","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804996}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804996},{"kind":"apply-aura","aura":{"id":"coa:502296:effect:2:aura:231","name":"Shooting Star (Aura 231)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502296:proc:2:805006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":805006}]},{"rank":7,"spellId":502297,"level":58,"description":"Shooting StarRank 712% of base mana Instant cast1 min cooldownSprint forward with astral magic at your feet, increasing your movement speed by 90% for 6 sec. While active, you cannot be slowed and cannot stop moving.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502297:effect:0:aura:31","name":"Shooting Star (Aura 31)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.9}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502297:effect:1:aura:23","name":"Shooting Star (Aura 23)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502297:proc:1:804996","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804996}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804996},{"kind":"apply-aura","aura":{"id":"coa:502297:effect:2:aura:231","name":"Shooting Star (Aura 231)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502297:proc:2:805006","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":805006}]}]},{"id":"coa-26-prayer-of-elune-92-801987","classId":"starcaller","dbcSpellId":801987,"name":"Prayer of Elune","unlockLevel":13,"icon":"/assets/ui/spells/spell_animaardenweald_orb.png","sigil":"PO","description":"Prayer of EluneRank 133% of base mana 1.5 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 77+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","target":"hostile","range":{"min":0,"max":0},"radius":40,"castMode":"cast","castTimeMs":1500,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":0.6259999871253967,"basePoints":77,"dieSides":8,"pointsPerLevel":1.215999960899353,"bonusPowerCoefficient":0.6259999871253967,"sourceLevel":13,"maxScalingLevel":18},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["magic"],"maxCount":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801987,"level":13,"description":"Prayer of EluneRank 133% of base mana 1.5 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 77+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":1500,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":0.6259999871253967,"basePoints":77,"dieSides":8,"pointsPerLevel":1.215999960899353,"bonusPowerCoefficient":0.6259999871253967,"sourceLevel":13,"maxScalingLevel":18},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["magic"],"maxCount":1}]},{"rank":2,"spellId":502348,"level":20,"description":"Prayer of EluneRank 233% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 115+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":1.6487219038463774,"basePoints":115,"dieSides":12,"pointsPerLevel":2.6307899951934814,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":28},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["magic"],"maxCount":1}]},{"rank":3,"spellId":502349,"level":30,"description":"Prayer of EluneRank 333% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 173+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":1.9568955739339193,"basePoints":173,"dieSides":18,"pointsPerLevel":2.7560300827026367,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":38},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["magic"],"maxCount":1}]},{"rank":4,"spellId":502350,"level":40,"description":"Prayer of EluneRank 433% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 261+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":2.5962351712313567,"basePoints":261,"dieSides":28,"pointsPerLevel":3.8469700813293457,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":48},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["magic"],"maxCount":1}]},{"rank":5,"spellId":502351,"level":50,"description":"Prayer of EluneRank 533% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 374+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":3.207771741426908,"basePoints":374,"dieSides":38,"pointsPerLevel":4.660309791564941,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":58},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["magic"],"maxCount":1}]},{"rank":6,"spellId":575334,"level":60,"description":"Prayer of EluneRank 633% of base mana 2 sec cast30 sec cooldownSay a prayer to Elune, healing up to 12 allies within 40 yds for 498+0+Heal*0.275697, and dispel 1 harmful magic effect from them.","castMode":"cast","castTimeMs":2000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"heal","coefficient":3.618376905653212,"basePoints":498,"dieSides":47,"pointsPerLevel":4.885580062866211,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":70},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["magic"],"maxCount":1}]}]},{"id":"coa-26-deluge-92-800381","classId":"starcaller","dbcSpellId":800381,"name":"Deluge","unlockLevel":15,"icon":"/assets/ui/spells/nhi_waterstrick_border.png","sigil":"DE","description":"DelugeRank 111% of base mana 1.5 sec castHeals a friendly target for 60+(PL+0.48-1*0.48).","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":0.3310000002384186,"basePoints":60,"dieSides":6,"pointsPerLevel":1.573330044746399,"bonusPowerCoefficient":0.3310000002384186,"sourceLevel":15,"maxScalingLevel":18}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800381,"level":15,"description":"DelugeRank 111% of base mana 1.5 sec castHeals a friendly target for 60+(PL+0.48-1*0.48).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":0.3310000002384186,"basePoints":60,"dieSides":6,"pointsPerLevel":1.573330044746399,"bonusPowerCoefficient":0.3310000002384186,"sourceLevel":15,"maxScalingLevel":18}]},{"rank":2,"spellId":503067,"level":20,"description":"DelugeRank 211% of base mana 1.5 sec castHeals a friendly target for 81+(PL*0.7-8*0.7).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":1.1825390679495675,"basePoints":81,"dieSides":2,"pointsPerLevel":2.1333301067352295,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":23}]},{"rank":3,"spellId":503068,"level":25,"description":"DelugeRank 311% of base mana 1.5 sec castHeals a friendly target for 103+(PL*1-16*1).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":1.433333339293798,"basePoints":103,"dieSides":3,"pointsPerLevel":2.7200000286102295,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":28}]},{"rank":4,"spellId":503069,"level":30,"description":"DelugeRank 411% of base mana 1.5 sec castHeals a friendly target for 123+(PL*1.3-23*1.3).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":1.6451844427320692,"basePoints":123,"dieSides":4,"pointsPerLevel":3.2533299922943115,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":33}]},{"rank":5,"spellId":503070,"level":35,"description":"DelugeRank 511% of base mana 1.5 sec castHeals a friendly target for 143+(PL*1.4-30*1.4).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":1.8502229928970337,"basePoints":143,"dieSides":5,"pointsPerLevel":3.786669969558716,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":38}]},{"rank":6,"spellId":503071,"level":40,"description":"DelugeRank 611% of base mana 1.5 sec castHeals a friendly target for 163+(PL*1.6-37*1.6).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":2.0533333749482128,"basePoints":163,"dieSides":7,"pointsPerLevel":4.320000171661377,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":43}]},{"rank":7,"spellId":503072,"level":45,"description":"DelugeRank 711% of base mana 1.5 sec castHeals a friendly target for 181+(PL*1.9-45*1.9).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":2.2277778254614935,"basePoints":181,"dieSides":9,"pointsPerLevel":4.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":48}]},{"rank":8,"spellId":503073,"level":50,"description":"DelugeRank 811% of base mana 1.5 sec castHeals a friendly target for 201+(PL*2.1-52*2.1).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":2.4239308088253706,"basePoints":201,"dieSides":11,"pointsPerLevel":5.333330154418945,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":53}]},{"rank":9,"spellId":503074,"level":55,"description":"DelugeRank 911% of base mana 1.5 sec castHeals a friendly target for 224+(PL*2.3-59*2.3).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":2.6341278916313535,"basePoints":224,"dieSides":14,"pointsPerLevel":5.86667013168335,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58}]},{"rank":10,"spellId":503075,"level":60,"description":"DelugeRank 1011% of base mana 1.5 sec castHeals a friendly target for 255+(PL*2.6-66*2.6).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":2.8755555809868705,"basePoints":255,"dieSides":17,"pointsPerLevel":6.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":63}]},{"rank":11,"spellId":503076,"level":65,"description":"DelugeRank 1111% of base mana 1.5 sec castHeals a friendly target for 476+(PL*2.8-74*2.8).","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"heal","coefficient":3.1516666253407797,"basePoints":476,"dieSides":21,"pointsPerLevel":4.159999847412109,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":70}]}]},{"id":"coa-26-aegis-of-neptulon-92-800375","classId":"starcaller","dbcSpellId":800375,"name":"Aegis of Neptulon","unlockLevel":17,"icon":"/assets/ui/spells/ability_shaman_fortifyingwaters.png","sigil":"AO","description":"Aegis of NeptulonRank 19% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 85+(PL*6-1*6) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800375:effect:0:aura:69","name":"Aegis of Neptulon (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800375:absorb:0","amount":85,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":70452},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800375,"level":17,"description":"Aegis of NeptulonRank 19% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 85+(PL*6-1*6) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800375:effect:0:aura:69","name":"Aegis of Neptulon (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800375:absorb:0","amount":85,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":70452},{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":503040,"level":25,"description":"Aegis of NeptulonRank 29% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 169+(PL*11-12*11) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503040:effect:0:aura:69","name":"Aegis of Neptulon (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:503040:absorb:0","amount":169,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":70452},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":503041,"level":33,"description":"Aegis of NeptulonRank 39% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 261+(PL*16-24*16) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503041:effect:0:aura:69","name":"Aegis of Neptulon (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:503041:absorb:0","amount":261,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":70452},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":503042,"level":41,"description":"Aegis of NeptulonRank 49% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 398+(PL*20-35*20) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503042:effect:0:aura:69","name":"Aegis of Neptulon (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:503042:absorb:0","amount":398,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":70452},{"kind":"damage","coefficient":1}]},{"rank":5,"spellId":503043,"level":49,"description":"Aegis of NeptulonRank 59% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 558+(PL*25-47*25) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503043:effect:0:aura:69","name":"Aegis of Neptulon (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:503043:absorb:0","amount":558,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":70452},{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":503044,"level":57,"description":"Aegis of NeptulonRank 69% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 746+(PL*30-58*30) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503044:effect:0:aura:69","name":"Aegis of Neptulon (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:503044:absorb:0","amount":746,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":70452},{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":503045,"level":65,"description":"Aegis of NeptulonRank 79% of base mana 1.5 sec cast20 sec cooldownPlaces a protective bubble around the target ally for 12 sec, absorbing up to 923+(PL*35-70*35) damage. High Tide: This is instant. Low Tide: Incurs a reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503045:effect:0:aura:69","name":"Aegis of Neptulon (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:503045:absorb:0","amount":923,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":70452},{"kind":"damage","coefficient":1}]}]},{"id":"coa-26-moonwater-blessing-92-800382","classId":"starcaller","dbcSpellId":800382,"name":"Moonwater Blessing","unlockLevel":17,"icon":"/assets/ui/spells/spell_nature_giftofthewaterspirit.png","sigil":"MB","description":"Moonwater BlessingRank 116% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 100+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":0.800000011920929,"basePoints":100,"dieSides":9,"pointsPerLevel":1.9199999570846558,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":17,"maxScalingLevel":25},{"kind":"apply-aura","aura":{"id":"coa:800382:effect:1:aura:72","name":"Moonwater Blessing (Aura 72)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800382:effect:2:aura:101","name":"Moonwater Blessing (Aura 101)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800382,"level":17,"description":"Moonwater BlessingRank 116% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 100+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":0.800000011920929,"basePoints":100,"dieSides":9,"pointsPerLevel":1.9199999570846558,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":17,"maxScalingLevel":25},{"kind":"apply-aura","aura":{"id":"coa:800382:effect:1:aura:72","name":"Moonwater Blessing (Aura 72)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800382:effect:2:aura:101","name":"Moonwater Blessing (Aura 101)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":503077,"level":27,"description":"Moonwater BlessingRank 216% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 144+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":2.0502158498007153,"basePoints":144,"dieSides":14,"pointsPerLevel":3.9935998916625977,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":35},{"kind":"apply-aura","aura":{"id":"coa:503077:effect:1:aura:72","name":"Moonwater Blessing (Aura 72)","disposition":"buff","durationMs":12000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503077:effect:2:aura:101","name":"Moonwater Blessing (Aura 101)","disposition":"buff","durationMs":12000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":503078,"level":37,"description":"Moonwater BlessingRank 316% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 209+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":2.8428615820713534,"basePoints":209,"dieSides":21,"pointsPerLevel":6.067200183868408,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":45},{"kind":"apply-aura","aura":{"id":"coa:503078:effect:1:aura:72","name":"Moonwater Blessing (Aura 72)","disposition":"buff","durationMs":12000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503078:effect:2:aura:101","name":"Moonwater Blessing (Aura 101)","disposition":"buff","durationMs":12000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":503079,"level":47,"description":"Moonwater BlessingRank 416% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 302+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":3.7586968944918726,"basePoints":302,"dieSides":30,"pointsPerLevel":8.140800476074219,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":55},{"kind":"apply-aura","aura":{"id":"coa:503079:effect:1:aura:72","name":"Moonwater Blessing (Aura 72)","disposition":"buff","durationMs":12000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503079:effect:2:aura:101","name":"Moonwater Blessing (Aura 101)","disposition":"buff","durationMs":12000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":503080,"level":57,"description":"Moonwater BlessingRank 516% of base mana Instant cast1 min cooldownBlesses a friendly target, instantly healing them for 438+0+Heal*1, increasing their Armor by 20% and reducing the cost of their abilities by 10% for 12 sec. All effects are increased by 20% for each Lunar Phase stack you have, and will remove all stacks on use.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":438,"dieSides":43,"pointsPerLevel":10.214400291442871,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":67},{"kind":"apply-aura","aura":{"id":"coa:503080:effect:1:aura:72","name":"Moonwater Blessing (Aura 72)","disposition":"buff","durationMs":12000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503080:effect:2:aura:101","name":"Moonwater Blessing (Aura 101)","disposition":"buff","durationMs":12000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-26-slipstream-92-800366","classId":"starcaller","dbcSpellId":800366,"name":"Slipstream","unlockLevel":17,"icon":"/assets/ui/spells/ability_shawaterelemental_swirl.png","sigil":"SL","description":"SlipstreamRank 18% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 4+(PL*0.35-1*0.35) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800366:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800366:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800366:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800366,"level":17,"description":"SlipstreamRank 18% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 4+(PL*0.35-1*0.35) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800366:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800366:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800366:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}]},{"rank":2,"spellId":503012,"level":25,"description":"SlipstreamRank 28% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 7+(PL*0.6-11*0.6) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503012:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503012:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503012:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}]},{"rank":3,"spellId":503013,"level":33,"description":"SlipstreamRank 38% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 79+(PL*0.8-21*0.8) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503013:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503013:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503013:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}]},{"rank":4,"spellId":503014,"level":41,"description":"SlipstreamRank 48% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 23 every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503014:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503014:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503014:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}]},{"rank":5,"spellId":503015,"level":49,"description":"SlipstreamRank 58% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 38+(PL*1.3-41*1.3) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503015:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503015:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503015:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}]},{"rank":6,"spellId":503016,"level":57,"description":"SlipstreamRank 68% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 61+(PL*1.5-51*1.5) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503016:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503016:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503016:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}]},{"rank":7,"spellId":503017,"level":65,"description":"SlipstreamRank 78% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 286+(PL*1.8-61*1.8) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503017:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503017:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503017:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}]},{"rank":8,"spellId":503018,"level":73,"description":"SlipstreamRank 88% of base mana Instant cast15 sec cooldownYou liquify your physical form into a pool of healing water for 5 sec, making you unable to act but healing nearby allies for 411+(PL*2-71*2) every 1 sec. Each tick consumes 1 stack of Bathe on affected allies to do additional healing for each stack. This effect also increases your movement speed by 40% and reduces your damage taken by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503018:effect:0:aura:56","name":"Slipstream (Aura 56)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":56,"miscValue":50058,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503018:effect:1:aura:227","name":"Slipstream (Aura 227)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503018:proc:1:805688","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805688}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":805688}]}]},{"id":"coa-26-starcall-93-800497","classId":"starcaller","dbcSpellId":800497,"name":"Starcall","unlockLevel":17,"icon":"/assets/ui/spells/inv_archaeology_70_starlightbeacon.png","sigil":"ST","description":"StarcallRank 111% of base mana 1.5 sec cast12 sec cooldownBlast the target enemy and all enemies near them with lunar fire that deals 70+0+ArcP*0.33 Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by 1.5 sec. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","target":"hostile","range":{"min":0,"max":45},"radius":10,"castMode":"cast","castTimeMs":1500,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":70,"dieSides":15,"pointsPerLevel":2.3142900466918945,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":17,"maxScalingLevel":24},{"kind":"apply-aura","aura":{"id":"coa:800497:effect:1:aura:4","name":"Starcall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800497,"level":17,"description":"StarcallRank 111% of base mana 1.5 sec cast12 sec cooldownBlast the target enemy and all enemies near them with lunar fire that deals 70+0+ArcP*0.33 Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by 1.5 sec. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"cast","castTimeMs":1500,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":70,"dieSides":15,"pointsPerLevel":2.3142900466918945,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":17,"maxScalingLevel":24},{"kind":"apply-aura","aura":{"id":"coa:800497:effect:1:aura:4","name":"Starcall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502316,"level":26,"description":"StarcallRank 211% of base mana 2 sec cast12 sec cooldownBlast the target enemy and all enemies near them with lunar fire that deals 127+0+ArcP*0.33 Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by 1.5 sec. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5448502563848727,"basePoints":127,"dieSides":20,"pointsPerLevel":2.0583300590515137,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:502316:effect:1:aura:4","name":"Starcall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502317,"level":34,"description":"StarcallRank 311% of base mana 2 sec cast12 sec cooldownBlast the target enemy and all enemies near them with lunar fire that deals 157+0+ArcP*0.33 Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by 1.5 sec. Scattered Stars Can be consumed by spells to deal additional Arcane Damage. Lasts 30 sec, stacking 4 times.","castMode":"cast","castTimeMs":2000,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5917225986921868,"basePoints":157,"dieSides":15,"pointsPerLevel":2.0583300590515137,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42},{"kind":"apply-aura","aura":{"id":"coa:502317:effect:1:aura:4","name":"Starcall (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":302568,"level":44,"description":"Blast the target enemy and all enemies near them with lunar fire that deals ${$m1+0+$spa*0.33} Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by $/1000;504024S1 sec. @s:804378:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8457627000108277,"basePoints":205,"dieSides":20,"pointsPerLevel":2.549999952316284,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":52}]},{"rank":5,"spellId":302569,"level":54,"description":"Blast the target enemy and all enemies near them with lunar fire that deals ${$m1+0+$spa*0.33} Arcane damage, applying Scattered Stars. Consuming a Scattered Star reduces the remaining cooldown by $/1000;504024S1 sec. @s:804378:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":12000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":2.245652198791504,"basePoints":263,"dieSides":51,"pointsPerLevel":3.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62}]}]},{"id":"coa-26-tide-lash-92-800380","classId":"starcaller","dbcSpellId":800380,"name":"Tide Lash","unlockLevel":17,"icon":"/assets/ui/spells/spell_frost_frostbolt.png","sigil":"TL","description":"Tide LashRank 111% of base mana Instant cast15 sec cooldownYou slash the enemy with a swift stream of water, inflicting 68+(PL*0.8-17*0.8) Frost damage plus an additional 7+(PL*0.5-17*0.5) every 1.5 sec for 12 sec. Focus: Frost damage taken increased by 0% for 8 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0843749915560086,"basePoints":68,"dieSides":12,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":27},{"kind":"apply-aura","aura":{"id":"coa:800380:effect:1:aura:3","name":"Tide Lash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.16312499810010195,"basePoints":7,"dieSides":2,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":27,"ticks":8,"intervalMs":1500,"tag":"spell-800380"},{"kind":"trigger-spell","spellId":800396},{"kind":"apply-aura","aura":{"id":"coa:800396:effect:0:aura:87","name":"Drowned (Aura 87)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":16,"triggerSpellId":0},{"kind":"trigger-spell","spellId":706302},{"kind":"trigger-spell","spellId":802985}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800380,"level":17,"description":"Tide LashRank 111% of base mana Instant cast15 sec cooldownYou slash the enemy with a swift stream of water, inflicting 68+(PL*0.8-17*0.8) Frost damage plus an additional 7+(PL*0.5-17*0.5) every 1.5 sec for 12 sec. Focus: Frost damage taken increased by 0% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0843749915560086,"basePoints":68,"dieSides":12,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":27},{"kind":"apply-aura","aura":{"id":"coa:800380:effect:1:aura:3","name":"Tide Lash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.16312499810010195,"basePoints":7,"dieSides":2,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":27,"ticks":8,"intervalMs":1500,"tag":"spell-800380"},{"kind":"trigger-spell","spellId":800396},{"kind":"apply-aura","aura":{"id":"coa:800396:effect:0:aura:87","name":"Drowned (Aura 87)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":16,"triggerSpellId":0},{"kind":"trigger-spell","spellId":706302},{"kind":"trigger-spell","spellId":802985}]},{"rank":2,"spellId":503065,"level":28,"description":"Tide LashRank 211% of base mana Instant cast15 sec cooldownYou slash the enemy with a swift stream of water, inflicting 109+(PL*0.8-17*0.8) Frost damage plus an additional 21+(PL*0.5-17*0.5) every 1.5 sec for 12 sec. Focus: Frost damage taken increased by 0% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3700465194938718,"basePoints":109,"dieSides":7,"pointsPerLevel":2.312000036239624,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36},{"kind":"apply-aura","aura":{"id":"coa:503065:effect:1:aura:3","name":"Tide Lash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4638883716376253,"basePoints":21,"dieSides":1,"pointsPerLevel":1.3871999979019165,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":8,"intervalMs":1500,"tag":"spell-503065"},{"kind":"trigger-spell","spellId":800396},{"kind":"apply-aura","aura":{"id":"coa:800396:effect:0:aura:87","name":"Drowned (Aura 87)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":16,"triggerSpellId":0},{"kind":"trigger-spell","spellId":706302},{"kind":"trigger-spell","spellId":802985}]},{"rank":3,"spellId":503066,"level":38,"description":"Tide LashRank 311% of base mana Instant cast15 sec cooldownYou slash the enemy with a swift stream of water, inflicting 156+(PL*0.8-17*0.8) Frost damage plus an additional 33+(PL*0.5-17*0.5) every 1.5 sec for 12 sec. Focus: Frost damage taken increased by 0% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9038239185165309,"basePoints":156,"dieSides":12,"pointsPerLevel":3.7160000801086426,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"apply-aura","aura":{"id":"coa:503066:effect:1:aura:3","name":"Tide Lash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.62091068051896,"basePoints":33,"dieSides":1,"pointsPerLevel":1.729599952697754,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46,"ticks":8,"intervalMs":1500,"tag":"spell-503066"},{"kind":"trigger-spell","spellId":800396},{"kind":"apply-aura","aura":{"id":"coa:800396:effect:0:aura:87","name":"Drowned (Aura 87)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":16,"triggerSpellId":0},{"kind":"trigger-spell","spellId":706302},{"kind":"trigger-spell","spellId":802985}]}]},{"id":"coa-26-pond-92-800373","classId":"starcaller","dbcSpellId":800373,"name":"Pond","unlockLevel":31,"icon":"/assets/ui/spells/spell_shaman_tidalwaves.png","sigil":"PO","description":"PondRank 19% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 11+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","target":"hostile","range":{"min":0,"max":40},"radius":12,"castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800373:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.10000000149011612,"basePoints":11,"dieSides":2,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":31,"maxScalingLevel":35,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:800373:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800373:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800373,"level":31,"description":"PondRank 19% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 11+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800373:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.10000000149011612,"basePoints":11,"dieSides":2,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0.10000000149011612,"sourceLevel":31,"maxScalingLevel":35,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:800373:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800373:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":503030,"level":37,"description":"PondRank 29% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 19+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503030:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.4775641025641026,"basePoints":19,"dieSides":1,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":41,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:503030:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503030:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503031,"level":43,"description":"PondRank 39% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 28+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503031:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5810344945425274,"basePoints":28,"dieSides":1,"pointsPerLevel":1.7000000476837158,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":47,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:503031:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503031:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503032,"level":49,"description":"PondRank 49% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 36+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503032:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.6723958272486925,"basePoints":36,"dieSides":1,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":53,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:503032:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503032:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503033,"level":55,"description":"PondRank 59% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 44+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503033:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.7595237845466251,"basePoints":44,"dieSides":1,"pointsPerLevel":2.0999999046325684,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:503033:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503033:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503034,"level":60,"description":"PondRank 69% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 53+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503034:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.8488888761732314,"basePoints":53,"dieSides":1,"pointsPerLevel":2.299999952316284,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":63,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:503034:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503034:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503035,"level":65,"description":"PondRank 79% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 64+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503035:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.94375,"basePoints":64,"dieSides":1,"pointsPerLevel":2.5,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":68,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:503035:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503035:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503036,"level":70,"description":"PondRank 89% of base mana 1.5 sec cast10 sec cooldownCreates a pool of healing water at the target location for 8 sec that heals all allies within it for 79+(PL*0.2-11*0.2) every 2 sec. Focus: Increases Pond's duration by 100% and tick rate by 25%.","castMode":"cast","castTimeMs":1500,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503036:effect:0:aura:8","name":"Pond (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.0509804052465102,"basePoints":79,"dieSides":1,"pointsPerLevel":2.700000047683716,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":75,"ticks":4,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:503036:effect:1:aura:118","name":"Pond (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503036:effect:2:aura:283","name":"Pond (Aura 283)","disposition":"debuff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-26-silvercurrent-92-800376","classId":"starcaller","dbcSpellId":800376,"name":"Silvercurrent","unlockLevel":31,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SI","description":"SilvercurrentRank 18% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 37 Spellfrost Damage and up to 8 enemies around them take 18 Spellfrost Damage, increased further by your maximum mana.","target":"hostile","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800376:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800376:effect:1:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.699999988079071,"basePoints":37,"dieSides":1,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0.699999988079071,"sourceLevel":31,"maxScalingLevel":33,"ticks":1,"intervalMs":5999,"tag":"spell-800376"},{"kind":"apply-aura","aura":{"id":"coa:800376:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.32137681694998255,"basePoints":18,"dieSides":1,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":33,"ticks":1,"intervalMs":5999,"tag":"spell-800376"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800376,"level":31,"description":"SilvercurrentRank 18% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 37 Spellfrost Damage and up to 8 enemies around them take 18 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800376:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800376:effect:1:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.699999988079071,"basePoints":37,"dieSides":1,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0.699999988079071,"sourceLevel":31,"maxScalingLevel":33,"ticks":1,"intervalMs":5999,"tag":"spell-800376"},{"kind":"apply-aura","aura":{"id":"coa:800376:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.32137681694998255,"basePoints":18,"dieSides":1,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":33,"ticks":1,"intervalMs":5999,"tag":"spell-800376"}]},{"rank":2,"spellId":503046,"level":35,"description":"SilvercurrentRank 28% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 54 Spellfrost Damage and up to 8 enemies around them take 28 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503046:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503046:effect:1:aura:8","name":"Silvercurrent (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.0439583555857341,"basePoints":54,"dieSides":1,"pointsPerLevel":2.9312500953674316,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":38,"ticks":1,"intervalMs":5999},{"kind":"apply-aura","aura":{"id":"coa:503046:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.39666666110356646,"basePoints":28,"dieSides":1,"pointsPerLevel":0.8999999761581421,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":38,"ticks":1,"intervalMs":5999,"tag":"spell-503046"}]},{"rank":3,"spellId":503047,"level":40,"description":"SilvercurrentRank 38% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 86 Spellfrost Damage and up to 8 enemies around them take 45 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503047:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503047:effect:1:aura:8","name":"Silvercurrent (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.489544238466205,"basePoints":86,"dieSides":1,"pointsPerLevel":3.9943699836730957,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":43,"ticks":1,"intervalMs":5999},{"kind":"apply-aura","aura":{"id":"coa:503047:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6282836451674952,"basePoints":45,"dieSides":1,"pointsPerLevel":1.466670036315918,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":43,"ticks":1,"intervalMs":5999,"tag":"spell-503047"}]},{"rank":4,"spellId":503048,"level":45,"description":"SilvercurrentRank 48% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 129 Spellfrost Damage and up to 8 enemies around them take 69 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503048:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503048:effect:1:aura:8","name":"Silvercurrent (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.981041638056437,"basePoints":129,"dieSides":1,"pointsPerLevel":5.057499885559082,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":48,"ticks":1,"intervalMs":5999},{"kind":"apply-aura","aura":{"id":"coa:503048:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.9500008304913838,"basePoints":69,"dieSides":1,"pointsPerLevel":2.266669988632202,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":48,"ticks":1,"intervalMs":5999,"tag":"spell-503048"}]},{"rank":5,"spellId":503049,"level":50,"description":"SilvercurrentRank 58% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 166 Spellfrost Damage and up to 8 enemies around them take 88 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503049:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503049:effect:1:aura:8","name":"Silvercurrent (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":2.4206743044730943,"basePoints":166,"dieSides":1,"pointsPerLevel":6.120629787445068,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":53,"ticks":1,"intervalMs":5999},{"kind":"apply-aura","aura":{"id":"coa:503049:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1948718193249825,"basePoints":88,"dieSides":1,"pointsPerLevel":2.9000000953674316,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":53,"ticks":1,"intervalMs":5999,"tag":"spell-503049"}]},{"rank":6,"spellId":503050,"level":55,"description":"SilvercurrentRank 68% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 199 Spellfrost Damage and up to 8 enemies around them take 107 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503050:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503050:effect:1:aura:8","name":"Silvercurrent (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":2.798141179765974,"basePoints":199,"dieSides":1,"pointsPerLevel":7.065629959106445,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58,"ticks":1,"intervalMs":5999},{"kind":"apply-aura","aura":{"id":"coa:503050:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.3912706863312494,"basePoints":107,"dieSides":1,"pointsPerLevel":3.3666698932647705,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58,"ticks":1,"intervalMs":5999,"tag":"spell-503050"}]},{"rank":7,"spellId":503051,"level":60,"description":"SilvercurrentRank 78% of base mana Instant cast8 sec cooldownUnleashes 1 Scattered Star Drains 20% Maximum Mana Douse an enemy with enchanted water. After 6 sec, they will take 246 Spellfrost Damage and up to 8 enemies around them take 144 Spellfrost Damage, increased further by your maximum mana.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503051:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503051:effect:1:aura:8","name":"Silvercurrent (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":3.260999959309896,"basePoints":246,"dieSides":1,"pointsPerLevel":8.12874984741211,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":63,"ticks":1,"intervalMs":5999},{"kind":"apply-aura","aura":{"id":"coa:503051:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.911112060546875,"basePoints":144,"dieSides":1,"pointsPerLevel":4.766670227050781,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":63,"ticks":1,"intervalMs":5999,"tag":"spell-503051"}]},{"rank":8,"spellId":503052,"level":65,"description":"SilvercurrentRank 88% of base mana Instant cast8 sec cooldownYou douse a friendly target with enchanted water. After 6 sec, they will be healed for 0+(PL*9.2-63*9.2).","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503052:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503052:effect:1:aura:8","name":"Silvercurrent (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":3.6811342279116315,"basePoints":286,"dieSides":1,"pointsPerLevel":9.191880226135254,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":68,"ticks":1,"intervalMs":5999},{"kind":"apply-aura","aura":{"id":"coa:503052:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.4715268135070803,"basePoints":188,"dieSides":1,"pointsPerLevel":6.233329772949219,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":68,"ticks":1,"intervalMs":5999,"tag":"spell-503052"}]},{"rank":9,"spellId":503053,"level":70,"description":"SilvercurrentRank 98% of base mana Instant cast8 sec cooldownYou douse a friendly target with enchanted water. After 6 sec, they will be healed for 0+(PL*10.2-72*10.2).","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503053:effect:0:aura:87","name":"Silvercurrent (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503053:effect:1:aura:8","name":"Silvercurrent (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":4,"basePoints":346,"dieSides":1,"pointsPerLevel":10.255000114440918,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":75,"ticks":1,"intervalMs":5999},{"kind":"apply-aura","aura":{"id":"coa:503053:effect:2:aura:3","name":"Silvercurrent (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.7945097567988375,"basePoints":385,"dieSides":1,"pointsPerLevel":4.679999828338623,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":75,"ticks":1,"intervalMs":5999,"tag":"spell-503053"}]}]},{"id":"coa-26-geyser-92-503037","classId":"starcaller","dbcSpellId":503037,"name":"Geyser","unlockLevel":39,"icon":"/assets/ui/spells/spell_fire_bluehellfire.png","sigil":"GE","description":"GeyserRank 211% of base mana Instant cast45 sec cooldownSummon a powerful surge of water beneath the target enemy, dealing 713+(PL*2.0-21*2.0) Frost damage and launching them into the air. Focus: Party and raid members within 30 yds of you take 40% reduced damage for until cancelled.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":713,"dieSides":7,"pointsPerLevel":2.0306999683380127,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":47},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":116936,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503037,"level":39,"description":"GeyserRank 211% of base mana Instant cast45 sec cooldownSummon a powerful surge of water beneath the target enemy, dealing 713+(PL*2.0-21*2.0) Frost damage and launching them into the air. Focus: Party and raid members within 30 yds of you take 40% reduced damage for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":713,"dieSides":7,"pointsPerLevel":2.0306999683380127,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":47},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":116936,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":503038,"level":49,"description":"GeyserRank 311% of base mana Instant cast45 sec cooldownSummon a powerful surge of water beneath the target enemy, dealing 787+(PL*2.0-21*2.0) Frost damage and launching them into the air. Focus: Party and raid members within 30 yds of you take 40% reduced damage for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":787,"dieSides":17,"pointsPerLevel":3.1647000312805176,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":57},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":116936,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":503039,"level":59,"description":"GeyserRank 411% of base mana Instant cast45 sec cooldownSummon a powerful surge of water beneath the target enemy, dealing 866+(PL*2.0-21*2.0) Frost damage and launching them into the air. Focus: Party and raid members within 30 yds of you take 40% reduced damage for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1250,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":866,"dieSides":32,"pointsPerLevel":4.298699855804443,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":70},{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":116936,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-26-cosmic-presence-91-502341","classId":"starcaller","dbcSpellId":502341,"name":"Cosmic Presence","unlockLevel":40,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CP","description":"Cosmic PresenceRank 213% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 116+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502341:effect:0:aura:3","name":"Cosmic Presence (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0863636363636364,"basePoints":116,"dieSides":5,"pointsPerLevel":1.53125,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":47,"ticks":6,"intervalMs":2000,"tag":"spell-502341"},{"kind":"apply-aura","aura":{"id":"coa:502341:effect:1:aura:345","name":"Cosmic Presence (Aura 345)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":345,"miscValue":0,"triggerSpellId":801147},{"kind":"apply-aura","aura":{"id":"coa:502341:effect:2:aura:23","name":"Cosmic Presence (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502341:proc:2:800498","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800498}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":127,"triggerSpellId":800498}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502341,"level":40,"description":"Cosmic PresenceRank 213% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 116+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502341:effect:0:aura:3","name":"Cosmic Presence (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0863636363636364,"basePoints":116,"dieSides":5,"pointsPerLevel":1.53125,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":47,"ticks":6,"intervalMs":2000,"tag":"spell-502341"},{"kind":"apply-aura","aura":{"id":"coa:502341:effect:1:aura:345","name":"Cosmic Presence (Aura 345)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":345,"miscValue":0,"triggerSpellId":801147},{"kind":"apply-aura","aura":{"id":"coa:502341:effect:2:aura:23","name":"Cosmic Presence (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502341:proc:2:800498","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800498}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":127,"triggerSpellId":800498}]},{"rank":3,"spellId":502342,"level":47,"description":"Cosmic PresenceRank 313% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 129+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502342:effect:0:aura:3","name":"Cosmic Presence (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801149},{"kind":"dot","coefficient":1.218689537817432,"basePoints":129,"dieSides":8,"pointsPerLevel":2.0037500858306885,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":54,"ticks":6,"intervalMs":2000,"tag":"spell-502342"},{"kind":"apply-aura","aura":{"id":"coa:502342:effect:1:aura:345","name":"Cosmic Presence (Aura 345)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":345,"miscValue":0,"triggerSpellId":801147},{"kind":"apply-aura","aura":{"id":"coa:502342:effect:2:aura:23","name":"Cosmic Presence (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502342:proc:2:800498","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800498}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":127,"triggerSpellId":800498}]},{"rank":4,"spellId":502343,"level":54,"description":"Cosmic PresenceRank 413% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 149+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502343:effect:0:aura:3","name":"Cosmic Presence (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801149},{"kind":"dot","coefficient":1.5443115718122842,"basePoints":149,"dieSides":12,"pointsPerLevel":3.0587499141693115,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":60,"ticks":6,"intervalMs":2000,"tag":"spell-502343"},{"kind":"apply-aura","aura":{"id":"coa:502343:effect:1:aura:345","name":"Cosmic Presence (Aura 345)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":345,"miscValue":0,"triggerSpellId":801147},{"kind":"apply-aura","aura":{"id":"coa:502343:effect:2:aura:23","name":"Cosmic Presence (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502343:proc:2:800498","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800498}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":127,"triggerSpellId":800498}]},{"rank":5,"spellId":502344,"level":60,"description":"Cosmic PresenceRank 516% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 171+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502344:effect:0:aura:3","name":"Cosmic Presence (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801149},{"kind":"dot","coefficient":1.1364444330003527,"basePoints":171,"dieSides":15,"pointsPerLevel":1.2949999570846558,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":67,"ticks":6,"intervalMs":2000,"tag":"spell-502344"},{"kind":"apply-aura","aura":{"id":"coa:502344:effect:1:aura:345","name":"Cosmic Presence (Aura 345)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":345,"miscValue":0,"triggerSpellId":801147},{"kind":"apply-aura","aura":{"id":"coa:502344:effect:2:aura:23","name":"Cosmic Presence (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502344:proc:2:800498","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800498}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":127,"triggerSpellId":800498}]},{"rank":6,"spellId":502345,"level":67,"description":"Cosmic PresenceRank 613% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 201+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502345:effect:0:aura:3","name":"Cosmic Presence (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801149},{"kind":"dot","coefficient":1.2707063008130082,"basePoints":201,"dieSides":19,"pointsPerLevel":1.53125,"bonusPowerCoefficient":0,"sourceLevel":67,"maxScalingLevel":74,"ticks":6,"intervalMs":2000,"tag":"spell-502345"},{"kind":"apply-aura","aura":{"id":"coa:502345:effect:1:aura:345","name":"Cosmic Presence (Aura 345)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":345,"miscValue":0,"triggerSpellId":801147},{"kind":"apply-aura","aura":{"id":"coa:502345:effect:2:aura:23","name":"Cosmic Presence (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502345:proc:2:800498","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800498}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":127,"triggerSpellId":800498}]},{"rank":7,"spellId":502346,"level":74,"description":"Cosmic PresenceRank 713% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 281+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502346:effect:0:aura:3","name":"Cosmic Presence (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801149},{"kind":"dot","coefficient":1.5816292253772863,"basePoints":281,"dieSides":22,"pointsPerLevel":1.7675000429153442,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80,"ticks":6,"intervalMs":2000,"tag":"spell-502346"},{"kind":"apply-aura","aura":{"id":"coa:502346:effect:1:aura:345","name":"Cosmic Presence (Aura 345)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":345,"miscValue":0,"triggerSpellId":801147},{"kind":"apply-aura","aura":{"id":"coa:502346:effect:2:aura:23","name":"Cosmic Presence (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502346:proc:2:800498","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800498}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":127,"triggerSpellId":800498}]},{"rank":8,"spellId":502347,"level":80,"description":"Cosmic PresenceRank 813% of base mana Instant cast1 min cooldownSurround yourself with cosmic mist, dealing 345+0+ArcP*0.08 Arcane Damage to up to 8 nearby enemies every 2 sec and reducing their spell power by AP*0.10. Lasts for 12 sec. When this ends, nearby enemies are stunned for 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1250,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502347:effect:0:aura:3","name":"Cosmic Presence (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":3,"miscValue":0,"triggerSpellId":801149},{"kind":"dot","coefficient":1.8168421293559827,"basePoints":345,"dieSides":26,"pointsPerLevel":2.0037500858306885,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80,"ticks":6,"intervalMs":2000,"tag":"spell-502347"},{"kind":"apply-aura","aura":{"id":"coa:502347:effect:1:aura:345","name":"Cosmic Presence (Aura 345)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":129,"sourceAuraType":345,"miscValue":0,"triggerSpellId":801147},{"kind":"apply-aura","aura":{"id":"coa:502347:effect:2:aura:23","name":"Cosmic Presence (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502347:proc:2:800498","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800498}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":127,"triggerSpellId":800498}]}]},{"id":"coa-26-tidal-rebirth-92-801793","classId":"starcaller","dbcSpellId":801793,"name":"Tidal Rebirth","unlockLevel":40,"icon":"/assets/ui/spells/inv_enchanting_crystal.png","sigil":"TR","description":"Tidal RebirthRank 175% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 400 health and 635 mana. This spell is usable in combat.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801793,"level":40,"description":"Tidal RebirthRank 175% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 400 health and 635 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":2,"spellId":803634,"level":50,"description":"Tidal RebirthRank 275% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 583 health and 833 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":3,"spellId":803635,"level":60,"description":"Tidal RebirthRank 375% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 820 health and 1030 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":4,"spellId":803636,"level":70,"description":"Tidal RebirthRank 475% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 1320 health and 1250 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]},{"rank":5,"spellId":803637,"level":80,"description":"Tidal RebirthRank 575% of base mana 2 sec cast10 min cooldownInstantly brings a dead ally back to life with 2420 health and 1750 mana. This spell is usable in combat.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1000,"cost":{"resource":"mana","amount":75,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]}]}],"sun-cleric":[{"id":"coa-tree-4048","classId":"sun-cleric","dbcSpellId":92137,"name":"Angelic Presence","unlockLevel":1,"icon":"/assets/ui/spells/ability_paladin_conviction.png","sigil":"AP","description":"Level 10 Passive Avoiding an attack now has a 20% chance to grant you Angelic Presence.Angelic PresenceYour next Illumination within 15 seconds is instant cast and free of cost.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92137:effect:0:aura:42","name":"Angelic Presence (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92137:proc:0:800722","triggers":["cast","hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800722}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800722},{"kind":"apply-aura","aura":{"id":"coa:92137:effect:1:aura:79","name":"Angelic Presence (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92137,"level":1,"description":"Level 10 Passive Avoiding an attack now has a 20% chance to grant you Angelic Presence.Angelic PresenceYour next Illumination within 15 seconds is instant cast and free of cost.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92137:effect:0:aura:42","name":"Angelic Presence (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92137:proc:0:800722","triggers":["cast","hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800722}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800722},{"kind":"apply-aura","aura":{"id":"coa:92137:effect:1:aura:79","name":"Angelic Presence (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":4048},{"id":"coa-27-bastion-of-vengeance-97-704925","classId":"sun-cleric","dbcSpellId":704925,"name":"Bastion of Vengeance","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_1h_artifactnorgannon_d_06.png","sigil":"BO","description":"Bastion of VengeanceRank 1Increases your block chance by 2% and gives successful blocks a 50% chance to reduce the remaining cooldown of Vengeful Slam by 0.01 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704925:effect:0:aura:42","name":"Bastion of Vengeance (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704925:proc:0:704926","triggers":["block"],"chance":0.5,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704926}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704926},{"kind":"apply-aura","aura":{"id":"coa:704925:effect:1:aura:51","name":"Bastion of Vengeance (Aura 51)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704925,"level":1,"description":"Bastion of VengeanceRank 1Increases your block chance by 2% and gives successful blocks a 50% chance to reduce the remaining cooldown of Vengeful Slam by 0.01 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704925:effect:0:aura:42","name":"Bastion of Vengeance (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704925:proc:0:704926","triggers":["block"],"chance":0.5,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704926}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704926},{"kind":"apply-aura","aura":{"id":"coa:704925:effect:1:aura:51","name":"Bastion of Vengeance (Aura 51)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"block","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":51,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30816","classId":"sun-cleric","dbcSpellId":300334,"name":"Blessed Armor","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_holybolt.png","sigil":"BA","description":"Increases your spell power by 1 for every 125 Armor you have.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300334:effect:0:aura:23","name":"Blessed Armor (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300334:proc:0:301006","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301006}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300334,"level":1,"description":"Increases your spell power by 1 for every 125 Armor you have.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300334:effect:0:aura:23","name":"Blessed Armor (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300334:proc:0:301006","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301006}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301006}]}],"talentEntryId":30816},{"id":"coa-tree-34022","classId":"sun-cleric","dbcSpellId":300371,"name":"Censure","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_holysmite.png","sigil":"CE","description":"Dealing direct damage to an enemy affected by Chains of Light will now cause it to chain to a nearby enemy. Can only occur once per sec.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300371:effect:0:aura:42","name":"Censure (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300371:proc:0:801582","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801582}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801582}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300371,"level":1,"description":"Dealing direct damage to an enemy affected by Chains of Light will now cause it to chain to a nearby enemy. Can only occur once per sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300371:effect:0:aura:42","name":"Censure (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300371:proc:0:801582","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801582}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":801582}]}],"talentEntryId":34022},{"id":"coa-tree-30766","classId":"sun-cleric","dbcSpellId":520647,"name":"Circle of Valor","unlockLevel":1,"icon":"/assets/ui/spells/inv_circlet_firelands_d_01.png","sigil":"CO","description":"Place a 10 yd holy circle at target location for 15 seconds. Allies that stand inside of it will divert 30% of all damage taken to the caster, and will be healed for 50 + 42.5% SP + 12.5% AP every 2 sec.","target":"self","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520647:effect:0:aura:23","name":"Circle of Valor (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520647:proc:0:520648","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520648}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":520648},{"kind":"trigger-spell","spellId":560347},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560347:effect:0:aura:81","name":"Circle of Valor (Aura 81)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","redirectDamagePercent":0.3,"dispelCategory":"magic"},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":81,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520647,"level":1,"description":"Place a 10 yd holy circle at target location for 15 seconds. Allies that stand inside of it will divert 30% of all damage taken to the caster, and will be healed for 50 + 42.5% SP + 12.5% AP every 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520647:effect:0:aura:23","name":"Circle of Valor (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520647:proc:0:520648","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520648}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":520648},{"kind":"trigger-spell","spellId":560347},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560347:effect:0:aura:81","name":"Circle of Valor (Aura 81)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","redirectDamagePercent":0.3,"dispelCategory":"magic"},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":81,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":30766},{"id":"coa-27-controlled-fury-97-704921","classId":"sun-cleric","dbcSpellId":704921,"name":"Controlled Fury","unlockLevel":1,"icon":"/assets/ui/spells/ability_warrior_innerrage.png","sigil":"CF","description":"Controlled FuryRank 1Increases maximum Rage by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704921:effect:0:aura:132","name":"Controlled Fury (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704921,"level":1,"description":"Controlled FuryRank 1Increases maximum Rage by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704921:effect:0:aura:132","name":"Controlled Fury (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-10956","classId":"sun-cleric","dbcSpellId":681436,"name":"Devoted to the Light","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_lightsgrace.png","sigil":"DT","description":"Removes the cost of your Solar Invocation spells and they now generate 5% of your missing mana when cast.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681436:effect:0:aura:108","name":"Devoted to the Light (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681436:effect:1:aura:42","name":"Devoted to the Light (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:681436:proc:1:504858","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504858}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504858}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681436,"level":1,"description":"Removes the cost of your Solar Invocation spells and they now generate 5% of your missing mana when cast.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681436:effect:0:aura:108","name":"Devoted to the Light (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681436:effect:1:aura:42","name":"Devoted to the Light (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:681436:proc:1:504858","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504858}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504858}]}],"talentEntryId":10956},{"id":"coa-tree-30956","classId":"sun-cleric","dbcSpellId":681066,"name":"Devoted to the Sun","unlockLevel":1,"icon":"/assets/ui/spells/5_sun_border.png","sigil":"DT","description":"Reduces the cooldown of your Solar Invocation spells by -5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681066:effect:0:aura:107","name":"Devoted to the Sun (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681066,"level":1,"description":"Reduces the cooldown of your Solar Invocation spells by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681066:effect:0:aura:107","name":"Devoted to the Sun (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":30956},{"id":"coa-27-divine-vision-96-800234","classId":"sun-cleric","dbcSpellId":800234,"name":"Divine Vision","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_savinggrace.png","sigil":"DV","description":"Divine VisionRank 116% of base mana Instant cast40 sec cooldownHeals an ally for 11 to 15 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":0.6000000238418579,"basePoints":11,"dieSides":5,"pointsPerLevel":1.1200000047683716,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":10},{"kind":"apply-aura","aura":{"id":"coa:800234:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800234,"level":1,"description":"Divine VisionRank 116% of base mana Instant cast40 sec cooldownHeals an ally for 11 to 15 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":0.6000000238418579,"basePoints":11,"dieSides":5,"pointsPerLevel":1.1200000047683716,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":1,"maxScalingLevel":10},{"kind":"apply-aura","aura":{"id":"coa:800234:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}]},{"rank":2,"spellId":502442,"level":11,"description":"Divine VisionRank 216% of base mana Instant cast40 sec cooldownHeals an ally for 21 to 29 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5850769296670572,"basePoints":21,"dieSides":9,"pointsPerLevel":1.8760000467300415,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:502442:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}]},{"rank":3,"spellId":502443,"level":21,"description":"Divine VisionRank 316% of base mana Instant cast40 sec cooldownHeals an ally for 41 to 55 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":0.9562222162882487,"basePoints":41,"dieSides":15,"pointsPerLevel":2.631999969482422,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":30},{"kind":"apply-aura","aura":{"id":"coa:502443:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}]},{"rank":4,"spellId":502444,"level":31,"description":"Divine VisionRank 416% of base mana Instant cast40 sec cooldownHeals an ally for 75 to 98 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":1.3878840605417888,"basePoints":75,"dieSides":24,"pointsPerLevel":3.388000011444092,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:502444:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}]},{"rank":5,"spellId":502445,"level":41,"description":"Divine VisionRank 516% of base mana Instant cast40 sec cooldownHeals an ally for 128 to 163 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":1.877404774938311,"basePoints":128,"dieSides":36,"pointsPerLevel":4.144000053405762,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:502445:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}]},{"rank":6,"spellId":502446,"level":51,"description":"Divine VisionRank 616% of base mana Instant cast40 sec cooldownHeals an ally for 209 to 258 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":2.44141416597848,"basePoints":209,"dieSides":50,"pointsPerLevel":4.900000095367432,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60},{"kind":"apply-aura","aura":{"id":"coa:502446:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}]},{"rank":7,"spellId":502447,"level":61,"description":"Divine VisionRank 716% of base mana Instant cast40 sec cooldownHeals an ally for 330 to 396 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":3.105333370074891,"basePoints":330,"dieSides":67,"pointsPerLevel":5.656000137329102,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70},{"kind":"apply-aura","aura":{"id":"coa:502447:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}]},{"rank":8,"spellId":502448,"level":71,"description":"Divine VisionRank 816% of base mana Instant cast40 sec cooldownHeals an ally for 509 to 595 and causes them to take 20% increased healing for 10 sec. Sunet: Heals increased by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1500,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"heal","coefficient":3.9040775687195532,"basePoints":509,"dieSides":87,"pointsPerLevel":6.4120001792907715,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502448:effect:1:aura:118","name":"Divine Vision (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":802947},{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}]}]},{"id":"coa-tree-30309","classId":"sun-cleric","dbcSpellId":680652,"name":"Enveloped in Light","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_holynova.png","sigil":"EI","description":"Increases your armor contribution from mail and plate items by 10% and reduces Shadow damage taken by -3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680652:effect:0:aura:142","name":"Enveloped in Light (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680652:effect:1:aura:87","name":"Enveloped in Light (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":32,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680652,"level":1,"description":"Increases your armor contribution from mail and plate items by 10% and reduces Shadow damage taken by -3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680652:effect:0:aura:142","name":"Enveloped in Light (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680652:effect:1:aura:87","name":"Enveloped in Light (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":32,"triggerSpellId":0}]},{"rank":2,"spellId":681467,"level":1,"description":"Increases your armor contribution from mail and plate items by 20% and reduces Shadow damage taken by -6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681467:effect:0:aura:142","name":"Enveloped in Light (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681467:effect:1:aura:87","name":"Enveloped in Light (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":32,"triggerSpellId":0}]}],"talentEntryId":30309},{"id":"coa-tree-33994","classId":"sun-cleric","dbcSpellId":300341,"name":"Exorcism","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_surgeoflight.png","sigil":"EX","description":"Sanctify now dispels 1 additional effect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300341:effect:0:aura:107","name":"Exorcism (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300341,"level":1,"description":"Sanctify now dispels 1 additional effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300341:effect:0:aura:107","name":"Exorcism (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":33994},{"id":"coa-tree-11025","classId":"sun-cleric","dbcSpellId":707528,"name":"Final Vows","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_avenginewrath.png","sigil":"FV","description":"Fulfilling your Vow of Grace now also reduces the cooldown of the triggered ability by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707528:effect:0:aura:107","name":"Final Vows (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707528:effect:1:aura:107","name":"Final Vows (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707528,"level":1,"description":"Fulfilling your Vow of Grace now also reduces the cooldown of the triggered ability by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707528:effect:0:aura:107","name":"Final Vows (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707528:effect:1:aura:107","name":"Final Vows (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":11025},{"id":"coa-tree-6569","classId":"sun-cleric","dbcSpellId":504248,"name":"Holy Conquest","unlockLevel":1,"icon":"/assets/ui/spells/5_holypower_border.png","sigil":"HC","description":"Reduces the mana cost of Paragon, Chosen of the Light, and Judgement Day by -50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504248:effect:0:aura:108","name":"Holy Conquest (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504248,"level":1,"description":"Reduces the mana cost of Paragon, Chosen of the Light, and Judgement Day by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504248:effect:0:aura:108","name":"Holy Conquest (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":6569},{"id":"coa-tree-29510","classId":"sun-cleric","dbcSpellId":500154,"name":"Horusath Blast","unlockLevel":1,"icon":"/assets/ui/spells/paladin_holy.png","sigil":"HB","description":"Horusath BlastRank 133% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 73+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":73,"dieSides":12,"pointsPerLevel":1.059999942779541,"bonusPowerCoefficient":1,"sourceLevel":10,"maxScalingLevel":15}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500154,"level":1,"description":"Horusath BlastRank 133% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 73+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":73,"dieSides":12,"pointsPerLevel":1.059999942779541,"bonusPowerCoefficient":1,"sourceLevel":10,"maxScalingLevel":15}]}],"talentEntryId":29510},{"id":"sun-cleric-illumination","classId":"sun-cleric","dbcSpellId":500143,"name":"Illumination","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_clarityofpurpose.png","sigil":"IL","description":"IlluminationRank 130% of base mana 2 sec castIlluminate an ally, healing them for 39+0+Heal*0.68.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.9013333320617676,"basePoints":39,"dieSides":3,"pointsPerLevel":3.2639999389648438,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500143,"level":1,"description":"IlluminationRank 130% of base mana 2 sec castIlluminate an ally, healing them for 39+0+Heal*0.68.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":0.9013333320617676,"basePoints":39,"dieSides":3,"pointsPerLevel":3.2639999389648438,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":4}]},{"rank":2,"spellId":502421,"level":6,"description":"IlluminationRank 230% of base mana 2.5 sec castIlluminate an ally, healing them for 89+0+Heal*0.68.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":2.2047619138445174,"basePoints":89,"dieSides":9,"pointsPerLevel":7.650000095367432,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":11}]},{"rank":3,"spellId":502422,"level":12,"description":"IlluminationRank 330% of base mana 3 sec castIlluminate an ally, healing them for 183+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":183,"dieSides":26,"pointsPerLevel":12.75,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":17}]},{"rank":4,"spellId":502423,"level":18,"description":"IlluminationRank 430% of base mana 3 sec castIlluminate an ally, healing them for 300+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":300,"dieSides":37,"pointsPerLevel":10.347999572753906,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":23}]},{"rank":5,"spellId":502424,"level":24,"description":"IlluminationRank 530% of base mana 3 sec castIlluminate an ally, healing them for 437+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":437,"dieSides":50,"pointsPerLevel":11.5693998336792,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29}]},{"rank":6,"spellId":502425,"level":32,"description":"IlluminationRank 630% of base mana 3 sec castIlluminate an ally, healing them for 637+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":637,"dieSides":66,"pointsPerLevel":16.88800048828125,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37}]},{"rank":7,"spellId":502426,"level":40,"description":"IlluminationRank 730% of base mana 3 sec castIlluminate an ally, healing them for 846+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":846,"dieSides":88,"pointsPerLevel":9.039999961853027,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":45}]},{"rank":8,"spellId":502427,"level":48,"description":"IlluminationRank 830% of base mana 3 sec castIlluminate an ally, healing them for 1042+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":1042,"dieSides":116,"pointsPerLevel":12.432000160217285,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53}]},{"rank":9,"spellId":502428,"level":56,"description":"IlluminationRank 930% of base mana 3 sec castIlluminate an ally, healing them for 1170+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":1170,"dieSides":127,"pointsPerLevel":15.02400016784668,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":61}]},{"rank":10,"spellId":502429,"level":60,"description":"IlluminationRank 1030% of base mana 3 sec castIlluminate an ally, healing them for 1229+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":1229,"dieSides":142,"pointsPerLevel":18.128000259399414,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":65}]},{"rank":12,"spellId":502431,"level":70,"description":"IlluminationRank 1230% of base mana 3 sec castIlluminate an ally, healing them for 1646+0+Heal*0.68.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":1646,"dieSides":185,"pointsPerLevel":26.31999969482422,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":75}]}]},{"id":"coa-tree-29181","classId":"sun-cleric","dbcSpellId":800600,"name":"New Day","unlockLevel":1,"icon":"/assets/ui/spells/_d3waveoflight.png","sigil":"ND","description":"Start anew, reseting the cooldown of Paragon, Chosen of the Light, and Judgement Day spells.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"cooldown-reset","mode":"reset","abilityName":"Paragon"},{"kind":"cooldown-reset","mode":"reset","abilityName":"Chosen of the Light"},{"kind":"cooldown-reset","mode":"reset","abilityName":"Judgement Day"}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800600,"level":1,"description":"Start anew, reseting the cooldown of Paragon, Chosen of the Light, and Judgement Day spells.","castMode":"instant","castTimeMs":0,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"cooldown-reset","mode":"reset","abilityName":"Paragon"},{"kind":"cooldown-reset","mode":"reset","abilityName":"Chosen of the Light"},{"kind":"cooldown-reset","mode":"reset","abilityName":"Judgement Day"}]}],"talentEntryId":29181},{"id":"coa-tree-30154","classId":"sun-cleric","dbcSpellId":520639,"name":"Nysoni's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_blessedrecovery.png","sigil":"NS","description":"Dawn will now provide an additional effect based on your specialization.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520639:effect:0:aura:4","name":"Nysoni's Blessing (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520639,"level":1,"description":"Dawn will now provide an additional effect based on your specialization.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520639:effect:0:aura:4","name":"Nysoni's Blessing (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30154},{"id":"coa-27-on-a-cloudy-day-96-560122","classId":"sun-cleric","dbcSpellId":560122,"name":"On A Cloudy Day","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_skywall.png","sigil":"OA","description":"On A Cloudy DayRank 2Increases the healing done by Shine and Sunshine by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560122:effect:0:aura:108","name":"On A Cloudy Day (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560122,"level":1,"description":"On A Cloudy DayRank 2Increases the healing done by Shine and Sunshine by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560122:effect:0:aura:108","name":"On A Cloudy Day (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-tree-34031","classId":"sun-cleric","dbcSpellId":300314,"name":"Pure Light","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holyshock_border.png","sigil":"PL","description":"While above 80% health you now deal 10% increased damage and healing.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300314:effect:0:aura:23","name":"Pure Light (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300314:proc:0:301341","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301341}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301341}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300314,"level":1,"description":"While above 80% health you now deal 10% increased damage and healing.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300314:effect:0:aura:23","name":"Pure Light (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:300314:proc:0:301341","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301341}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":301341}]}],"talentEntryId":34031},{"id":"coa-tree-34029","classId":"sun-cleric","dbcSpellId":704909,"name":"Sintorcher","unlockLevel":1,"icon":"/assets/ui/spells/spell_fire_lavaspawn.png","sigil":"SI","description":"Increases your damage and healing done by 3% and your critical strike chance against Undead by 2%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704909:effect:0:aura:79","name":"Sintorcher (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704909:effect:1:aura:169","name":"Sintorcher (Aura 169)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":169,"miscValue":32,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704909,"level":1,"description":"Increases your damage and healing done by 3% and your critical strike chance against Undead by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704909:effect:0:aura:79","name":"Sintorcher (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704909:effect:1:aura:169","name":"Sintorcher (Aura 169)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":169,"miscValue":32,"triggerSpellId":0}]}],"talentEntryId":34029},{"id":"coa-27-solar-embrace-96-500151","classId":"sun-cleric","dbcSpellId":500151,"name":"Solar Embrace","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_rayofhope.png","sigil":"SE","description":"Solar EmbraceRank 121% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 48 to 54. Can be used on an enemy or an ally.","target":"friendly","range":{"min":0,"max":40},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"heal","coefficient":0.4020000100135803,"basePoints":48,"dieSides":7,"pointsPerLevel":0.41600000858306885,"bonusPowerCoefficient":0.4020000100135803,"sourceLevel":1,"maxScalingLevel":11},{"kind":"apply-aura","aura":{"id":"coa:500151:effect:1:aura:4","name":"Solar Embrace (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500151,"level":1,"description":"Solar EmbraceRank 121% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 48 to 54. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"heal","coefficient":0.4020000100135803,"basePoints":48,"dieSides":7,"pointsPerLevel":0.41600000858306885,"bonusPowerCoefficient":0.4020000100135803,"sourceLevel":1,"maxScalingLevel":11},{"kind":"apply-aura","aura":{"id":"coa:500151:effect:1:aura:4","name":"Solar Embrace (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502434,"level":12,"description":"Solar EmbraceRank 221% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 75 to 81. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"heal","coefficient":1.0745125964835838,"basePoints":75,"dieSides":7,"pointsPerLevel":0.7529600262641907,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":23},{"kind":"apply-aura","aura":{"id":"coa:502434:effect:1:aura:4","name":"Solar Embrace (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502435,"level":24,"description":"Solar EmbraceRank 321% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 121 to 128. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"heal","coefficient":1.2876759064503205,"basePoints":121,"dieSides":8,"pointsPerLevel":1.0899200439453125,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":34},{"kind":"apply-aura","aura":{"id":"coa:502435:effect:1:aura:4","name":"Solar Embrace (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502436,"level":35,"description":"Solar EmbraceRank 421% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 188 to 196. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"heal","coefficient":1.6063866702715557,"basePoints":188,"dieSides":9,"pointsPerLevel":1.398800015449524,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":46},{"kind":"apply-aura","aura":{"id":"coa:502436:effect:1:aura:4","name":"Solar Embrace (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502437,"level":47,"description":"Solar EmbraceRank 521% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 300 to 310. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"heal","coefficient":2.2442150436421877,"basePoints":300,"dieSides":11,"pointsPerLevel":2.3919999599456787,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":57},{"kind":"apply-aura","aura":{"id":"coa:502437:effect:1:aura:4","name":"Solar Embrace (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502438,"level":58,"description":"Solar EmbraceRank 621% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 459 to 471. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"heal","coefficient":3.0054464753904298,"basePoints":459,"dieSides":13,"pointsPerLevel":3.3309099674224854,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":69},{"kind":"apply-aura","aura":{"id":"coa:502438:effect:1:aura:4","name":"Solar Embrace (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":502439,"level":70,"description":"Solar EmbraceRank 721% of base mana Instant cast24 sec cooldownHeals all friendly party or raid members within $a1yds of the target for 719 to 734. Can be used on an enemy or an ally.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":21,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":719,"dieSides":16,"pointsPerLevel":5.74399995803833,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502439:effect:1:aura:4","name":"Solar Embrace (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120154,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34032","classId":"sun-cleric","dbcSpellId":704581,"name":"Solar Guardian","unlockLevel":1,"icon":"/assets/ui/spells/buff_forcesoforder.png","sigil":"SG","description":"Reduces the duration of stun effects on you by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704581:effect:0:aura:4","name":"Solar Guardian (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704581:effect:1:aura:232","name":"Solar Guardian (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704581,"level":1,"description":"Reduces the duration of stun effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704581:effect:0:aura:4","name":"Solar Guardian (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704581:effect:1:aura:232","name":"Solar Guardian (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":34032},{"id":"coa-27-solar-incandescence-94-704913","classId":"sun-cleric","dbcSpellId":704913,"name":"Solar Incandescence","unlockLevel":1,"icon":"/assets/ui/spells/paladin_holy.png","sigil":"SI","description":"Solar IncandescenceRank 1Increases the damage of Sunflare by 5% and its critical strike chance by 2%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704913:effect:0:aura:108","name":"Solar Incandescence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704913:effect:1:aura:107","name":"Solar Incandescence (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704913,"level":1,"description":"Solar IncandescenceRank 1Increases the damage of Sunflare by 5% and its critical strike chance by 2%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704913:effect:0:aura:108","name":"Solar Incandescence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704913:effect:1:aura:107","name":"Solar Incandescence (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]},{"rank":2,"spellId":704914,"level":1,"description":"Solar IncandescenceRank 2Increases the damage of Sunflare by 10% and its critical strike chance by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704914:effect:0:aura:108","name":"Solar Incandescence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704914:effect:1:aura:107","name":"Solar Incandescence (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}]},{"id":"coa-tree-29446","classId":"sun-cleric","dbcSpellId":806159,"name":"Solar Invocation: Resplendence","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_rayofhope.png","sigil":"SI","description":"Invoke the grace of An'she for 8 seconds, causing your llluminations to be instant cast and guaranteed to critically strike, but cost 100% more mana.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"cooldownGroup":"coa:solar-invocation-spells","gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806159:effect:0:aura:107","name":"Solar Invocation: Resplendence (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806159:effect:1:aura:108","name":"Solar Invocation: Resplendence (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806159:effect:2:aura:108","name":"Solar Invocation: Resplendence (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806159,"level":1,"description":"Invoke the grace of An'she for 8 seconds, causing your llluminations to be instant cast and guaranteed to critically strike, but cost 100% more mana.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806159:effect:0:aura:107","name":"Solar Invocation: Resplendence (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806159:effect:1:aura:108","name":"Solar Invocation: Resplendence (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806159:effect:2:aura:108","name":"Solar Invocation: Resplendence (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":29446},{"id":"coa-tree-30153","classId":"sun-cleric","dbcSpellId":503651,"name":"Solar Invocation: Revelation","unlockLevel":1,"icon":"/assets/ui/spells/5_priestskill07_border.png","sigil":"SI","description":"Invoke An'she to root an enemy for 4 seconds with holy shackles or heal an ally for 10% maximum health and increase their movement speed by 50% for 4 seconds.","target":"any","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"cooldownGroup":"coa:solar-invocation-spells","gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680702},{"kind":"apply-aura","aura":{"id":"coa:680702:effect:0:aura:26","name":"Revelation (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680701},{"kind":"heal","coefficient":0,"percentMaxHealth":0.1,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"apply-aura","aura":{"id":"coa:680701:effect:1:aura:31","name":"Revelation (Aura 31)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":503651,"level":1,"description":"Invoke An'she to root an enemy for 4 seconds with holy shackles or heal an ally for 10% maximum health and increase their movement speed by 50% for 4 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680702},{"kind":"apply-aura","aura":{"id":"coa:680702:effect:0:aura:26","name":"Revelation (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680701},{"kind":"heal","coefficient":0,"percentMaxHealth":0.1,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"apply-aura","aura":{"id":"coa:680701:effect:1:aura:31","name":"Revelation (Aura 31)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30153},{"id":"coa-tree-29513","classId":"sun-cleric","dbcSpellId":704916,"name":"Solar Might","unlockLevel":1,"icon":"/assets/ui/spells/ability_paladin_holyavenger.png","sigil":"SM","description":"Solar MightRank 1Increases your Strength and Intellect by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704916:effect:0:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704916:effect:1:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704916,"level":1,"description":"Solar MightRank 1Increases your Strength and Intellect by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704916:effect:0:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704916:effect:1:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":570120,"level":1,"description":"Solar MightRank 2Increases your Strength and Intellect by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570120:effect:0:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:570120:effect:1:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":29513},{"id":"coa-tree-33979","classId":"sun-cleric","dbcSpellId":806479,"name":"Solar Prayer","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_devineaegis.png","sigil":"SP","description":"Recite a solar prayer, instantly healing you for 25% of your maximum health plus an additional 100 + 100% SP, scaling with spell power. Usable while stunned.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.25,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":80},{"kind":"heal","coefficient":1.4666666666666666,"basePoints":100,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":80}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806479,"level":1,"description":"Recite a solar prayer, instantly healing you for 25% of your maximum health plus an additional 100 + 100% SP, scaling with spell power. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.25,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":80},{"kind":"heal","coefficient":1.4666666666666666,"basePoints":100,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":80}]}],"talentEntryId":33979},{"id":"coa-27-solstice-94-704949","classId":"sun-cleric","dbcSpellId":704949,"name":"Solstice","unlockLevel":1,"icon":"/assets/ui/spells/_time_3_sunset.png","sigil":"SO","description":"SolsticeRank 1Allows Dawn to affect an additional spell.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704949:effect:0:aura:107","name":"Solstice (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704949,"level":1,"description":"SolsticeRank 1Allows Dawn to affect an additional spell.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704949:effect:0:aura:107","name":"Solstice (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0}]}]},{"id":"coa-tree-30148","classId":"sun-cleric","dbcSpellId":300348,"name":"Sun Shield","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holyinfusion_border.png","sigil":"SS","description":"Reduces your chance to be hit by spells by -3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300348:effect:0:aura:186","name":"Sun Shield (Aura 186)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":186,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300348,"level":1,"description":"Reduces your chance to be hit by spells by -3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300348:effect:0:aura:186","name":"Sun Shield (Aura 186)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":186,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":30148},{"id":"coa-tree-31150","classId":"sun-cleric","dbcSpellId":680700,"name":"Sun Stride","unlockLevel":1,"icon":"/assets/ui/spells/ability_priest_archangel.png","sigil":"SS","description":"Rush forward at a high speed for 2 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680700:effect:0:aura:4","name":"Sun Stride (Aura 4)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680700:effect:1:aura:31","name":"Sun Stride (Aura 31)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680700,"level":1,"description":"Rush forward at a high speed for 2 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":24000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680700:effect:0:aura:4","name":"Sun Stride (Aura 4)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680700:effect:1:aura:31","name":"Sun Stride (Aura 31)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":1.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":31150},{"id":"coa-tree-4047","classId":"sun-cleric","dbcSpellId":92136,"name":"Sunlight","unlockLevel":1,"icon":"/assets/ui/spells/item_holyspark.png","sigil":"SU","description":"Level 10 Passive Fulfilling your Vow now unleashes Sunlight restoring 25 + 15% healing health to up to 5 allies within 40 yds, prioritizing the lowest health allies.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92136:effect:0:aura:42","name":"Sunlight (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92136:proc:0:704911","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704911}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704911}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92136,"level":1,"description":"Level 10 Passive Fulfilling your Vow now unleashes Sunlight restoring 25 + 15% healing health to up to 5 allies within 40 yds, prioritizing the lowest health allies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92136:effect:0:aura:42","name":"Sunlight (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92136:proc:0:704911","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704911}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704911}]}],"talentEntryId":4047},{"id":"coa-tree-4046","classId":"sun-cleric","dbcSpellId":92135,"name":"Sunrise and Sunset","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holymeditation_border.png","sigil":"SA","description":"Level 10 Passive After activating Dawn, casting a Holy spell grants Sunrise or casting a Fire spell grants Sunset. Entering Sunrise or Sunset prevents you from entering the other until you enter the next. SunriseIncreases all Holy Damage dealt by 20% for 2 minutes. SunsetIncreases your critical strike chance with Fire spells by 20% and Fire Damage by 10% for 2 minutes.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92135:effect:0:aura:108","name":"Sunrise and Sunset (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92135:effect:1:aura:42","name":"Sunrise and Sunset (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92135:proc:1:804098","triggers":["crit","cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804098}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804098}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92135,"level":1,"description":"Level 10 Passive After activating Dawn, casting a Holy spell grants Sunrise or casting a Fire spell grants Sunset. Entering Sunrise or Sunset prevents you from entering the other until you enter the next. SunriseIncreases all Holy Damage dealt by 20% for 2 minutes. SunsetIncreases your critical strike chance with Fire spells by 20% and Fire Damage by 10% for 2 minutes.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92135:effect:0:aura:108","name":"Sunrise and Sunset (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92135:effect:1:aura:42","name":"Sunrise and Sunset (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92135:proc:1:804098","triggers":["crit","cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804098}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804098}]}],"talentEntryId":4046},{"id":"coa-tree-34025","classId":"sun-cleric","dbcSpellId":300331,"name":"Taking Vows","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_restoration.png","sigil":"TV","description":"Your Vow of Light now heals for an additional 5% of damage taken or direct healing done by you.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300331:effect:0:aura:107","name":"Taking Vows (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300331,"level":1,"description":"Your Vow of Light now heals for an additional 5% of damage taken or direct healing done by you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300331:effect:0:aura:107","name":"Taking Vows (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34025},{"id":"coa-tree-6564","classId":"sun-cleric","dbcSpellId":704579,"name":"Twilight","unlockLevel":1,"icon":"/assets/ui/spells/nhi_sundarkening_border.png","sigil":"TW","description":"Applying Vow of the Eclipse now blinds enemies struck, increasing their chance to miss their next attack by -10% for 6 seconds, stacking 5 times. Does not work on bosses. In addition, increases the effectiveness of the Fulfillment effect of Vow of the Eclipse by 100%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704579:effect:0:aura:42","name":"Twilight (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704579:proc:0:506637","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":506637}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":506637},{"kind":"apply-aura","aura":{"id":"coa:704579:effect:1:aura:108","name":"Twilight (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704579,"level":1,"description":"Applying Vow of the Eclipse now blinds enemies struck, increasing their chance to miss their next attack by -10% for 6 seconds, stacking 5 times. Does not work on bosses. In addition, increases the effectiveness of the Fulfillment effect of Vow of the Eclipse by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704579:effect:0:aura:42","name":"Twilight (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704579:proc:0:506637","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":506637}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":506637},{"kind":"apply-aura","aura":{"id":"coa:704579:effect:1:aura:108","name":"Twilight (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":6564},{"id":"coa-tree-29178","classId":"sun-cleric","dbcSpellId":704945,"name":"Unbreakable Focus","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_auramastery.png","sigil":"UF","description":"Reduces the cooldown of Gavels and Horusath Blast by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704945:effect:0:aura:108","name":"Unbreakable Focus (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704945,"level":1,"description":"Reduces the cooldown of Gavels and Horusath Blast by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704945:effect:0:aura:108","name":"Unbreakable Focus (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":29178},{"id":"coa-tree-6565","classId":"sun-cleric","dbcSpellId":805816,"name":"Valkyrie's Watch","unlockLevel":1,"icon":"/assets/ui/spells/inv_valkiergoldpet.png","sigil":"VS","description":"Damage that would take you below 35% health and damage taken while below 35% health is reduced by 25%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805816:effect:0:aura:69","name":"Valkyrie's Watch (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:805816:absorb:0","amount":25,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805816,"level":1,"description":"Damage that would take you below 35% health and damage taken while below 35% health is reduced by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805816:effect:0:aura:69","name":"Valkyrie's Watch (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:805816:absorb:0","amount":25,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":6565},{"id":"coa-tree-6878","classId":"sun-cleric","dbcSpellId":704563,"name":"Warmth","unlockLevel":1,"icon":"/assets/ui/spells/inv_artifact_xp03.png","sigil":"WA","description":"Direct healing now increases the target's health by 300 for 15 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704563:effect:0:aura:42","name":"Warmth (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704563:proc:0:704564","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704564}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704564}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704563,"level":1,"description":"Direct healing now increases the target's health by 300 for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704563:effect:0:aura:42","name":"Warmth (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704563:proc:0:704564","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704564}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704564}]}],"talentEntryId":6878},{"id":"coa-27-zealous-executions-none-560114","classId":"sun-cleric","dbcSpellId":560114,"name":"Zealous Executions","unlockLevel":1,"icon":"/assets/ui/spells/nhi_holy_justicehammer_border.png","sigil":"ZE","description":"Zealous ExecutionsRank 2Increases the damage of Glorious Execution by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560114:effect:0:aura:108","name":"Zealous Executions (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560114,"level":1,"description":"Zealous ExecutionsRank 2Increases the damage of Glorious Execution by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560114:effect:0:aura:108","name":"Zealous Executions (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-27-devotion-of-grace-479-800852","classId":"sun-cleric","dbcSpellId":800852,"name":"Devotion of Grace","unlockLevel":4,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DO","description":"Devotion of GraceRank 15% of base mana Instant castPlaces a Devotion on the friendly target, restoring 5 mana every 5 seconds and reducing their costs by 5% for 30 min. Players may only have one Devotion on them per Sun Cleric at any one time.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800852:effect:0:aura:85","name":"Devotion of Grace (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":5}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800852:effect:1:aura:72","name":"Devotion of Grace (Aura 72)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800852,"level":4,"description":"Devotion of GraceRank 15% of base mana Instant castPlaces a Devotion on the friendly target, restoring 5 mana every 5 seconds and reducing their costs by 5% for 30 min. Players may only have one Devotion on them per Sun Cleric at any one time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800852:effect:0:aura:85","name":"Devotion of Grace (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":5}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800852:effect:1:aura:72","name":"Devotion of Grace (Aura 72)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":300858,"level":14,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300858:effect:0:aura:85","name":"Devotion of Grace (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":10}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300858:effect:1:aura:72","name":"Devotion of Grace (Aura 72)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":300859,"level":24,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300859:effect:0:aura:85","name":"Devotion of Grace (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":15}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300859:effect:1:aura:72","name":"Devotion of Grace (Aura 72)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":300862,"level":34,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300862:effect:0:aura:85","name":"Devotion of Grace (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":20}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300862:effect:1:aura:72","name":"Devotion of Grace (Aura 72)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":300863,"level":44,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300863:effect:0:aura:85","name":"Devotion of Grace (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":25}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300863:effect:1:aura:72","name":"Devotion of Grace (Aura 72)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":300864,"level":54,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300864:effect:0:aura:85","name":"Devotion of Grace (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":30}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300864:effect:1:aura:72","name":"Devotion of Grace (Aura 72)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":300865,"level":60,"description":"Places a Devotion on the friendly target, restoring $s1 mana every 5 seconds and reducing their costs by $s2% for $d. @ext:Players may only have one Devotion on them per Sun Cleric at any one time.:ext@","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300865:effect:0:aura:85","name":"Devotion of Grace (Aura 85)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"regeneration","operation":"flat","value":33}]},"sourceEffectType":6,"sourceAuraType":85,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300865:effect:1:aura:72","name":"Devotion of Grace (Aura 72)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]}]},{"id":"sun-cleric-gavel-of-light","classId":"sun-cleric","dbcSpellId":800611,"name":"Gavel of Light","unlockLevel":4,"icon":"/assets/ui/spells/ability_paladin_judgementofthepure.png","sigil":"GO","description":"Gavel of LightRank 15% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 12+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}],"source":"coa-progression","cooldownGroup":"coa:gavels","passive":false,"ranks":[{"rank":1,"spellId":800611,"level":4,"description":"Gavel of LightRank 15% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 12+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":2,"spellId":502467,"level":10,"description":"Gavel of LightRank 25% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 17+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":3,"spellId":502468,"level":14,"description":"Gavel of LightRank 35% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 23+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":4,"spellId":502469,"level":20,"description":"Gavel of LightRank 45% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 34+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":5,"spellId":502470,"level":26,"description":"Gavel of LightRank 55% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 45+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":6,"spellId":502471,"level":32,"description":"Gavel of LightRank 65% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 68+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":7,"spellId":502472,"level":38,"description":"Gavel of LightRank 75% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 90+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":8,"spellId":502473,"level":44,"description":"Gavel of LightRank 85% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 125+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":9,"spellId":502474,"level":50,"description":"Gavel of LightRank 95% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 162+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":10,"spellId":502475,"level":56,"description":"Gavel of LightRank 105% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 198+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":11,"spellId":502476,"level":60,"description":"Gavel of LightRank 115% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 232+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":12,"spellId":502477,"level":68,"description":"Gavel of LightRank 125% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 268+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":13,"spellId":502478,"level":74,"description":"Gavel of LightRank 135% of base mana Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 349+0) and heal yourself equal to 50% of the damage dealt. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]}]},{"id":"sun-cleric-sunflare","classId":"sun-cleric","dbcSpellId":502386,"name":"Sunflare","unlockLevel":6,"icon":"/assets/ui/spells/spell_priest_divinestar.png","sigil":"SU","description":"SunflareRank 210% of base mana 2 sec castBlast an enemy with the light of the sun, dealing 39 to 45 Holy damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8042857192811512,"basePoints":39,"dieSides":7,"pointsPerLevel":1.4450000524520874,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502386,"level":6,"description":"SunflareRank 210% of base mana 2 sec castBlast an enemy with the light of the sun, dealing 39 to 45 Holy damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8042857192811512,"basePoints":39,"dieSides":7,"pointsPerLevel":1.4450000524520874,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12}]},{"rank":3,"spellId":502387,"level":12,"description":"SunflareRank 311% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 71 to 77 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.234691360850393,"basePoints":71,"dieSides":7,"pointsPerLevel":2.1675000190734863,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}]},{"rank":4,"spellId":502388,"level":18,"description":"SunflareRank 411% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 92 to 99 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":1.43755556838681,"basePoints":92,"dieSides":8,"pointsPerLevel":2.6010000705718994,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22}]},{"rank":5,"spellId":502389,"level":24,"description":"SunflareRank 512% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 131 to 139 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8153845958220654,"basePoints":131,"dieSides":9,"pointsPerLevel":3.2249999046325684,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28}]},{"rank":6,"spellId":502390,"level":30,"description":"SunflareRank 613% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 175 to 186 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"damage","coefficient":2.1814814708851,"basePoints":175,"dieSides":12,"pointsPerLevel":3.799999952316284,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34}]},{"rank":7,"spellId":502391,"level":36,"description":"SunflareRank 714% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 228 to 239 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"damage","coefficient":2.679084989759657,"basePoints":228,"dieSides":12,"pointsPerLevel":4.900000095367432,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40}]},{"rank":8,"spellId":502392,"level":40,"description":"SunflareRank 814% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 283 to 299 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"damage","coefficient":3.2363635901248817,"basePoints":283,"dieSides":17,"pointsPerLevel":6.074999809265137,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44}]},{"rank":9,"spellId":502393,"level":44,"description":"SunflareRank 915% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 345 to 366 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.8480226225772145,"basePoints":345,"dieSides":22,"pointsPerLevel":7.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48}]},{"rank":10,"spellId":502394,"level":50,"description":"SunflareRank 1015% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 403 to 403 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":403,"dieSides":1,"pointsPerLevel":18.600000381469727,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":52}]},{"rank":11,"spellId":502395,"level":56,"description":"SunflareRank 1115% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 478 to 478 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":478,"dieSides":1,"pointsPerLevel":7.483329772949219,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":62}]},{"rank":12,"spellId":502396,"level":60,"description":"SunflareRank 1215% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 554 to 581 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":554,"dieSides":28,"pointsPerLevel":13.25,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120241,"triggerSpellId":0,"durationMs":0}]},{"rank":13,"spellId":502397,"level":74,"description":"SunflareRank 1315% of base mana 2.5 sec castBlast an enemy with the light of the sun, dealing 637 to 675 Holy damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":637,"dieSides":39,"pointsPerLevel":10.633299827575684,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120241,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-27-sunshine-96-500142","classId":"sun-cleric","dbcSpellId":500142,"name":"Sunshine","unlockLevel":9,"icon":"/assets/ui/spells/spell_holy_divineprovidence.png","sigil":"SU","description":"SunshineRank 127% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(16+0+Heal*.126) over 18 sec.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500142:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.23987500059107938,"basePoints":16,"dieSides":2,"pointsPerLevel":0.3840000033378601,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500142,"level":17,"description":"SunshineRank 127% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(16+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500142:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.23987500059107938,"basePoints":16,"dieSides":2,"pointsPerLevel":0.3840000033378601,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":2,"spellId":502412,"level":9,"description":"SunshineRank 227% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(28+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502412:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.4660488896899753,"basePoints":28,"dieSides":1,"pointsPerLevel":0.6172800064086914,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":30,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":3,"spellId":502413,"level":17,"description":"SunshineRank 327% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(40+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502413:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5626966624210278,"basePoints":40,"dieSides":1,"pointsPerLevel":0.8246399760246277,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":36,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":4,"spellId":502414,"level":25,"description":"SunshineRank 427% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(55+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502414:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.6733333220084509,"basePoints":55,"dieSides":1,"pointsPerLevel":1.031999945640564,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":42,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":5,"spellId":502415,"level":33,"description":"SunshineRank 527% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(73+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502415:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.7909644386834569,"basePoints":73,"dieSides":1,"pointsPerLevel":1.239359974861145,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":48,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":6,"spellId":502416,"level":41,"description":"SunshineRank 627% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(99+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502416:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9423542867104212,"basePoints":99,"dieSides":1,"pointsPerLevel":1.446720004081726,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":54,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":7,"spellId":502417,"level":49,"description":"SunshineRank 727% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(121+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502417:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.0523433418323596,"basePoints":121,"dieSides":1,"pointsPerLevel":1.6540800333023071,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":59,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":8,"spellId":502418,"level":57,"description":"SunshineRank 827% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(159+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502418:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.227324429485533,"basePoints":159,"dieSides":1,"pointsPerLevel":1.8614399433135986,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":66,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":9,"spellId":502419,"level":60,"description":"SunshineRank 927% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(210+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502419:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.4850133260091145,"basePoints":210,"dieSides":1,"pointsPerLevel":2.0687999725341797,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":72,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]},{"rank":10,"spellId":502420,"level":73,"description":"SunshineRank 1027% of base mana Instant castBask an ally in light, healing them for (18*1000/3)*(267+0+Heal*.126) over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502420:effect:0:aura:8","name":"Sunshine (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.851969686421481,"basePoints":267,"dieSides":1,"pointsPerLevel":3.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80,"ticks":6,"intervalMs":3000},{"kind":"trigger-spell","spellId":802941},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149}]}]},{"id":"coa-27-guidance-touch-of-light-96-804251","classId":"sun-cleric","dbcSpellId":804251,"name":"Guidance: Touch of Light","unlockLevel":10,"icon":"/assets/ui/spells/spell_holy_holyguidance.png","sigil":"GT","description":"Guidance: Touch of LightRank 113% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 63++SP*0.85 and an additional 3++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":63},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":3},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804251,"level":13,"description":"Guidance: Touch of LightRank 113% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 63++SP*0.85 and an additional 3++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":63},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":3},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]},{"rank":2,"spellId":503509,"level":10,"description":"Guidance: Touch of LightRank 213% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 85++SP*0.85 and an additional 8++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":85},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":8},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]},{"rank":3,"spellId":503510,"level":19,"description":"Guidance: Touch of LightRank 313% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 145++SP*0.85 and an additional 11++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":145},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":11},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]},{"rank":4,"spellId":503511,"level":28,"description":"Guidance: Touch of LightRank 413% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 179++SP*0.85 and an additional 15++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":179},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":15},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]},{"rank":5,"spellId":503512,"level":37,"description":"Guidance: Touch of LightRank 513% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 230++SP*0.85 and an additional 18++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":230},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":18},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]},{"rank":6,"spellId":503513,"level":45,"description":"Guidance: Touch of LightRank 613% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 397++SP*0.85 and an additional 21++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":397},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":21},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]},{"rank":7,"spellId":503514,"level":54,"description":"Guidance: Touch of LightRank 713% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 403++SP*0.85 and an additional 24++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":403},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":24},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]},{"rank":8,"spellId":503515,"level":63,"description":"Guidance: Touch of LightRank 813% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 455++SP*0.85 and an additional 27++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":455},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":27},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]},{"rank":9,"spellId":503516,"level":72,"description":"Guidance: Touch of LightRank 913% of base mana 1 sec cast12 sec cooldownHeals your Guided ally for 671++SP*0.85 and an additional 30++SP*0.12 every 0.5 over 6 sec. Only usable on allies with Solar Guidance active.","castMode":"cast","castTimeMs":1000,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":680886,"withValue":671},{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15},{"kind":"trigger-spell","spellId":680887,"withValue":30},{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}]}]},{"id":"coa-27-revivify-479-801790","classId":"sun-cleric","dbcSpellId":801790,"name":"Revivify","unlockLevel":10,"icon":"/assets/ui/spells/spell_holy_redemption.png","sigil":"RE","description":"RevivifyRank 160% of base mana 8 sec castBrings a dead ally back to life with 70 health and 135 mana. Not usable in combat.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801790,"level":10,"description":"RevivifyRank 160% of base mana 8 sec castBrings a dead ally back to life with 70 health and 135 mana. Not usable in combat.","castMode":"cast","castTimeMs":8000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":60,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]}]},{"id":"coa-27-dawnbreak-97-800654","classId":"sun-cleric","dbcSpellId":800654,"name":"Dawnbreak","unlockLevel":11,"icon":"/assets/ui/spells/nhi_energyshield_border.png","sigil":"DA","description":"DawnbreakRank 15% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 23+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","target":"hostile","range":{"min":0,"max":5},"radius":12,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":23,"dieSides":3,"pointsPerLevel":0.2857140004634857,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":11,"maxScalingLevel":18}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800654,"level":11,"description":"DawnbreakRank 15% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 23+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4000000059604645,"basePoints":23,"dieSides":3,"pointsPerLevel":0.2857140004634857,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":11,"maxScalingLevel":18}]},{"rank":2,"spellId":502496,"level":20,"description":"DawnbreakRank 25% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 37+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4666666689373198,"basePoints":37,"dieSides":3,"pointsPerLevel":0.550000011920929,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26}]},{"rank":3,"spellId":502497,"level":28,"description":"DawnbreakRank 35% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 53+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6271317855332249,"basePoints":53,"dieSides":12,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34}]},{"rank":4,"spellId":502498,"level":36,"description":"DawnbreakRank 45% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 61+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6836600475061952,"basePoints":61,"dieSides":21,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42}]},{"rank":5,"spellId":502499,"level":44,"description":"DawnbreakRank 55% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 79+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8378531191982118,"basePoints":79,"dieSides":34,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50}]},{"rank":6,"spellId":504579,"level":52,"description":"DawnbreakRank 65% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 103+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1.2024875375168833,"basePoints":103,"dieSides":34,"pointsPerLevel":2.3499999046325684,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56}]},{"rank":7,"spellId":504580,"level":58,"description":"DawnbreakRank 75% of base mana Instant6 sec cooldownRequires Shields Radiate holy light from your shield on enemies in front of you, dealing 205+0+SP*0.25+AP*0.1 Holyfire Damage, scaling with your block value.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3674772558691295,"basePoints":205,"dieSides":34,"pointsPerLevel":1.34443998336792,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":67}]}]},{"id":"coa-27-dawnsear-94-500146","classId":"sun-cleric","dbcSpellId":500146,"name":"Dawnsear","unlockLevel":11,"icon":"/assets/ui/spells/nhi_fire_solar_border.png","sigil":"DA","description":"DawnsearRank 115% of base mana 3.5 sec castBlast an enemy with burning light, dealing 88+0+FireP*1 Fire damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3848718022688842,"basePoints":88,"dieSides":12,"pointsPerLevel":1.3200000524520874,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500146,"level":11,"description":"DawnsearRank 115% of base mana 3.5 sec castBlast an enemy with burning light, dealing 88+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3848718022688842,"basePoints":88,"dieSides":12,"pointsPerLevel":1.3200000524520874,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16}]},{"rank":2,"spellId":502366,"level":18,"description":"DawnsearRank 215% of base mana 3.5 sec castBlast an enemy with burning light, dealing 114+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.357000004161488,"basePoints":114,"dieSides":16,"pointsPerLevel":6.213500022888184,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22}]},{"rank":3,"spellId":502367,"level":24,"description":"DawnsearRank 315% of base mana 3.5 sec castBlast an enemy with burning light, dealing 158+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3680813455174112,"basePoints":158,"dieSides":26,"pointsPerLevel":4.440229892730713,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":4,"spellId":502368,"level":32,"description":"DawnsearRank 415% of base mana 3.5 sec castBlast an enemy with burning light, dealing 246+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.0891437936336437,"basePoints":246,"dieSides":37,"pointsPerLevel":5.361539840698242,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38}]},{"rank":5,"spellId":502369,"level":40,"description":"DawnsearRank 515% of base mana 3.5 sec castBlast an enemy with burning light, dealing 334+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.378787878787879,"basePoints":334,"dieSides":48,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44}]},{"rank":6,"spellId":502370,"level":46,"description":"DawnsearRank 615% of base mana 3.5 sec castBlast an enemy with burning light, dealing 411+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.4418952243575633,"basePoints":411,"dieSides":60,"pointsPerLevel":4.11667013168335,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52}]},{"rank":7,"spellId":502371,"level":54,"description":"DawnsearRank 715% of base mana 3.5 sec castBlast an enemy with burning light, dealing 531+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":531,"dieSides":72,"pointsPerLevel":8,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58}]},{"rank":8,"spellId":554406,"level":60,"description":"DawnsearRank 815% of base mana 3.5 sec castBlast an enemy with burning light, dealing 669+0+FireP*1 Fire damage.","castMode":"cast","castTimeMs":3500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":669,"dieSides":80,"pointsPerLevel":5.642859935760498,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":67}]}]},{"id":"coa-27-shining-ray-97-502460","classId":"sun-cleric","dbcSpellId":502460,"name":"Shining Ray","unlockLevel":11,"icon":"/assets/ui/spells/ability_priest_flashoflight.png","sigil":"SR","description":"Shining RayRank 2Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502460:effect:0:aura:42","name":"Shining Ray (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:502460:proc:0:800616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800616}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800616},{"kind":"apply-aura","aura":{"id":"coa:502460:effect:1:aura:4","name":"Shining Ray (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":502460,"level":11,"description":"Shining RayRank 2Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502460:effect:0:aura:42","name":"Shining Ray (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:502460:proc:0:800616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800616}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800616},{"kind":"apply-aura","aura":{"id":"coa:502460:effect:1:aura:4","name":"Shining Ray (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0}]},{"rank":3,"spellId":502461,"level":21,"description":"Shining RayRank 3Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502461:effect:0:aura:42","name":"Shining Ray (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:502461:proc:0:800616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800616}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800616},{"kind":"apply-aura","aura":{"id":"coa:502461:effect:1:aura:4","name":"Shining Ray (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0}]},{"rank":4,"spellId":502462,"level":31,"description":"Shining RayRank 4Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502462:effect:0:aura:42","name":"Shining Ray (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:502462:proc:0:800616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800616}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800616},{"kind":"apply-aura","aura":{"id":"coa:502462:effect:1:aura:4","name":"Shining Ray (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0}]},{"rank":5,"spellId":502463,"level":41,"description":"Shining RayRank 5Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502463:effect:0:aura:42","name":"Shining Ray (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:502463:proc:0:800616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800616}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800616},{"kind":"apply-aura","aura":{"id":"coa:502463:effect:1:aura:4","name":"Shining Ray (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0}]},{"rank":6,"spellId":502464,"level":51,"description":"Shining RayRank 6Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502464:effect:0:aura:42","name":"Shining Ray (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:502464:proc:0:800616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800616}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800616},{"kind":"apply-aura","aura":{"id":"coa:502464:effect:1:aura:4","name":"Shining Ray (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0}]},{"rank":7,"spellId":502465,"level":61,"description":"Shining RayRank 7Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502465:effect:0:aura:42","name":"Shining Ray (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:502465:proc:0:800616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800616}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800616},{"kind":"apply-aura","aura":{"id":"coa:502465:effect:1:aura:4","name":"Shining Ray (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0}]},{"rank":8,"spellId":502466,"level":71,"description":"Shining RayRank 8Instant castYour Sunflare ability now causes an additional 0 Fire Damage scaling with your attack power and applies Purging Flames.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502466:effect:0:aura:42","name":"Shining Ray (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:502466:proc:0:800616","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800616}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800616},{"kind":"apply-aura","aura":{"id":"coa:502466:effect:1:aura:4","name":"Shining Ray (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0}]}]},{"id":"coa-27-transgression-94-503368","classId":"sun-cleric","dbcSpellId":503368,"name":"Transgression","unlockLevel":11,"icon":"/assets/ui/spells/inv_shoulder_robe_raidpriest_k_01.png","sigil":"TR","description":"TransgressionRank 213% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 25+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":806468,"withValue":25},{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503368:effect:1:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503368:effect:2:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503368,"level":11,"description":"TransgressionRank 213% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 25+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":806468,"withValue":25},{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503368:effect:1:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503368:effect:2:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":503369,"level":21,"description":"TransgressionRank 313% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 46+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":806468,"withValue":46},{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503369:effect:1:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503369:effect:2:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":503370,"level":31,"description":"TransgressionRank 413% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 80+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":806468,"withValue":80},{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503370:effect:1:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503370:effect:2:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":503371,"level":41,"description":"TransgressionRank 513% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 133+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":806468,"withValue":133},{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503371:effect:1:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503371:effect:2:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":503372,"level":51,"description":"TransgressionRank 613% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 213+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":806468,"withValue":213},{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503372:effect:1:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503372:effect:2:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":503373,"level":61,"description":"TransgressionRank 713% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 332+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":806468,"withValue":332},{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503373:effect:1:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503373:effect:2:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":503374,"level":71,"description":"TransgressionRank 813% of base mana 1 sec cast2 min cooldownShroud yourself in holy Energy for 10 sec, reducing all damage taken by 40% and dealing 507+(PL*0.9-1*0.9) Holy Damage to enemies striking you, stunning them for 3 sec. Enemies immune to stun effects are knocked away instead.","castMode":"cast","castTimeMs":1000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":806468,"withValue":507},{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60},{"kind":"apply-aura","aura":{"id":"coa:503374:effect:1:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503374:effect:2:aura:87","name":"Transgression (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-27-gavel-of-grace-97-800614","classId":"sun-cleric","dbcSpellId":800614,"name":"Gavel of Grace","unlockLevel":12,"icon":"/assets/ui/spells/ability_paladin_judgementofthewise.png","sigil":"GO","description":"Gavel of GraceRank 1Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 23+0) and restores 25 mana. Shares a cooldown with other Gavels.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"cooldownGroup":"coa:gavels","gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8},{"kind":"trigger-spell","spellId":681317,"withValue":25},{"kind":"resource","amount":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800614,"level":12,"description":"Gavel of GraceRank 1Instant5 sec cooldownRequires Melee Weapon Smash an enemy for 80% Weapon Damage plus 23+0) and restores 25 mana. Shares a cooldown with other Gavels.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":25},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8},{"kind":"trigger-spell","spellId":681317,"withValue":25},{"kind":"resource","amount":1}]}]},{"id":"coa-27-solar-might-none-570120","classId":"sun-cleric","dbcSpellId":570120,"name":"Solar Might","unlockLevel":12,"icon":"/assets/ui/spells/ability_paladin_holyavenger.png","sigil":"SM","description":"Solar MightRank 2Increases your Strength and Intellect by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570120:effect:0:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:570120:effect:1:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":570120,"level":12,"description":"Solar MightRank 2Increases your Strength and Intellect by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570120:effect:0:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:570120:effect:1:aura:137","name":"Solar Might (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-27-flash-94-500144","classId":"sun-cleric","dbcSpellId":500144,"name":"Flash","unlockLevel":13,"icon":"/assets/ui/spells/nhi_holy_hand_border.png","sigil":"FL","description":"FlashRank 115% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 95+0+HolP*.75 Holy Damage and generating 1 Solar Power.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.483571430047353,"basePoints":95,"dieSides":15,"pointsPerLevel":1.7400000095367432,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500144,"level":13,"description":"FlashRank 115% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 95+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.483571430047353,"basePoints":95,"dieSides":15,"pointsPerLevel":1.7400000095367432,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18}]},{"rank":2,"spellId":502352,"level":20,"description":"FlashRank 215% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 130+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7057143075125558,"basePoints":130,"dieSides":4,"pointsPerLevel":2.380000114440918,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":25}]},{"rank":3,"spellId":502353,"level":27,"description":"FlashRank 315% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 175+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.102698418829176,"basePoints":175,"dieSides":7,"pointsPerLevel":3.2200000286102295,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32}]},{"rank":4,"spellId":502354,"level":34,"description":"FlashRank 415% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 191+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.1416326574727793,"basePoints":191,"dieSides":12,"pointsPerLevel":3.4800000190734863,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39}]},{"rank":5,"spellId":502355,"level":41,"description":"FlashRank 515% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 218+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3292857096308754,"basePoints":218,"dieSides":18,"pointsPerLevel":4.019999980926514,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":46}]},{"rank":6,"spellId":502356,"level":48,"description":"FlashRank 615% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 254+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.5986242950277982,"basePoints":254,"dieSides":26,"pointsPerLevel":4.679999828338623,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53}]},{"rank":7,"spellId":502357,"level":55,"description":"FlashRank 715% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 290+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.8680952730632963,"basePoints":290,"dieSides":36,"pointsPerLevel":5.360000133514404,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":60}]},{"rank":8,"spellId":502358,"level":62,"description":"FlashRank 815% of base mana Instant cast5 sec cooldownShine a powerful beam of sunlight at an enemy, dealing 477+0+HolP*.75 Holy Damage and generating 1 Solar Power.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.1642856886892607,"basePoints":477,"dieSides":47,"pointsPerLevel":3.7249999046325684,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":70}]}]},{"id":"coa-27-radiant-flame-94-806060","classId":"sun-cleric","dbcSpellId":806060,"name":"Radiant Flame","unlockLevel":13,"icon":"/assets/ui/spells/nhi_holysparks_border.png","sigil":"RF","description":"Radiant FlameRank 125% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 31+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806060:effect:0:aura:227","name":"Radiant Flame (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806060:proc:0:807058","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807058}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":807058},{"kind":"apply-aura","aura":{"id":"coa:806060:effect:1:aura:4","name":"Radiant Flame (Aura 4)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":806060,"level":13,"description":"Radiant FlameRank 125% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 31+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806060:effect:0:aura:227","name":"Radiant Flame (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806060:proc:0:807058","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807058}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":807058},{"kind":"apply-aura","aura":{"id":"coa:806060:effect:1:aura:4","name":"Radiant Flame (Aura 4)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":560862,"level":20,"description":"Radiant FlameRank 225% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 44+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560862:effect:0:aura:227","name":"Radiant Flame (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:560862:proc:0:807058","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807058}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":807058},{"kind":"apply-aura","aura":{"id":"coa:560862:effect:1:aura:4","name":"Radiant Flame (Aura 4)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":560863,"level":28,"description":"Radiant FlameRank 325% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 64+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560863:effect:0:aura:227","name":"Radiant Flame (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:560863:proc:0:807058","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807058}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":807058},{"kind":"apply-aura","aura":{"id":"coa:560863:effect:1:aura:4","name":"Radiant Flame (Aura 4)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":560864,"level":34,"description":"Radiant FlameRank 425% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 83+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560864:effect:0:aura:227","name":"Radiant Flame (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:560864:proc:0:807058","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807058}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":807058},{"kind":"apply-aura","aura":{"id":"coa:560864:effect:1:aura:4","name":"Radiant Flame (Aura 4)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":560865,"level":42,"description":"Radiant FlameRank 525% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 114+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560865:effect:0:aura:227","name":"Radiant Flame (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:560865:proc:0:807058","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807058}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":807058},{"kind":"apply-aura","aura":{"id":"coa:560865:effect:1:aura:4","name":"Radiant Flame (Aura 4)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":560866,"level":48,"description":"Radiant FlameRank 625% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 142+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560866:effect:0:aura:227","name":"Radiant Flame (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:560866:proc:0:807058","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807058}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":807058},{"kind":"apply-aura","aura":{"id":"coa:560866:effect:1:aura:4","name":"Radiant Flame (Aura 4)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":560867,"level":56,"description":"Radiant FlameRank 725% of base mana ChanneledLaunch radiant spheres at an enemy each dealing 172+0+SP*0.206923 Holyflame Damage, repeating every 1 sec for 4 sec.","castMode":"channel","castTimeMs":4000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560867:effect:0:aura:227","name":"Radiant Flame (Aura 227)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:560867:proc:0:807058","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807058}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":807058},{"kind":"apply-aura","aura":{"id":"coa:560867:effect:1:aura:4","name":"Radiant Flame (Aura 4)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"sun-cleric-horusath-blast","classId":"sun-cleric","dbcSpellId":502380,"name":"Horusath Blast","unlockLevel":16,"icon":"/assets/ui/spells/paladin_holy.png","sigil":"HB","description":"Horusath BlastRank 233% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 107+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4791397792036816,"basePoints":107,"dieSides":25,"pointsPerLevel":1.159999966621399,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502380,"level":16,"description":"Horusath BlastRank 233% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 107+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4791397792036816,"basePoints":107,"dieSides":25,"pointsPerLevel":1.159999966621399,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}]},{"rank":3,"spellId":502381,"level":22,"description":"Horusath BlastRank 333% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 172+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":2.4563423362938135,"basePoints":172,"dieSides":37,"pointsPerLevel":3.756999969482422,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":27}]},{"rank":4,"spellId":502382,"level":28,"description":"Horusath BlastRank 433% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 256+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":2.988933341447697,"basePoints":256,"dieSides":48,"pointsPerLevel":3.788300037384033,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":33}]},{"rank":5,"spellId":502383,"level":34,"description":"Horusath BlastRank 533% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 337+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":3.126595500375138,"basePoints":337,"dieSides":61,"pointsPerLevel":2.7238099575042725,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39}]},{"rank":6,"spellId":502384,"level":40,"description":"Horusath BlastRank 633% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 422+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":3.5751515128395774,"basePoints":422,"dieSides":76,"pointsPerLevel":3.259999990463257,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":45}]},{"rank":7,"spellId":502385,"level":46,"description":"Horusath BlastRank 733% of base mana Instant cast25 sec cooldownBlast an enemy with the power of the sun, dealing 527+0+HolP*1 Holy damage and reducing their attack power by -(-24+ -3.4 Points Per Level) for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1500,"cost":{"resource":"mana","amount":33,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":527,"dieSides":90,"pointsPerLevel":4.139999866485596,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":51}]}]},{"id":"coa-27-shine-96-800357","classId":"sun-cleric","dbcSpellId":800357,"name":"Shine","unlockLevel":16,"icon":"/assets/ui/spells/ability_priest_spiritoftheredeemer.png","sigil":"SH","description":"ShineRank 119% of base mana 1.5 sec castShine holy light upon an ally, healing for 136+0+SP*0.294699.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":1.6193548428115023,"basePoints":136,"dieSides":3,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800357,"level":16,"description":"ShineRank 119% of base mana 1.5 sec castShine holy light upon an ally, healing for 136+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":1.6193548428115023,"basePoints":136,"dieSides":3,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":21}]},{"rank":2,"spellId":502449,"level":22,"description":"ShineRank 219% of base mana 1.5 sec castShine holy light upon an ally, healing for 189+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":1.8837837861464903,"basePoints":189,"dieSides":6,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":27}]},{"rank":3,"spellId":502450,"level":28,"description":"ShineRank 319% of base mana 1.5 sec castShine holy light upon an ally, healing for 237+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":2.093550386354905,"basePoints":237,"dieSides":8,"pointsPerLevel":1.055999994277954,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":33}]},{"rank":4,"spellId":502451,"level":34,"description":"ShineRank 419% of base mana 1.5 sec castShine holy light upon an ally, healing for 284+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":2.2808435482232747,"basePoints":284,"dieSides":10,"pointsPerLevel":1.3760000467300415,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39}]},{"rank":5,"spellId":502452,"level":40,"description":"ShineRank 519% of base mana 1.5 sec castShine holy light upon an ally, healing for 342+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":2.515030306035822,"basePoints":342,"dieSides":10,"pointsPerLevel":1.7120000123977661,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":45}]},{"rank":6,"spellId":502453,"level":46,"description":"ShineRank 619% of base mana 1.5 sec castShine holy light upon an ally, healing for 402+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":2.759103814109427,"basePoints":402,"dieSides":14,"pointsPerLevel":2.0959999561309814,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":51}]},{"rank":7,"spellId":502454,"level":52,"description":"ShineRank 719% of base mana 1.5 sec castShine holy light upon an ally, healing for 430+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":3.0092537486138036,"basePoints":430,"dieSides":20,"pointsPerLevel":3.180000066757202,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56}]},{"rank":8,"spellId":502455,"level":58,"description":"ShineRank 819% of base mana 1.5 sec castShine holy light upon an ally, healing for 511+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":3.208237458581794,"basePoints":511,"dieSides":26,"pointsPerLevel":3.0880000591278076,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":63}]},{"rank":9,"spellId":502456,"level":64,"description":"ShineRank 919% of base mana 1.5 sec castShine holy light upon an ally, healing for 595+0+SP*0.294699.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":19,"percentage":true},"effects":[{"kind":"heal","coefficient":3.4184809817543513,"basePoints":595,"dieSides":32,"pointsPerLevel":3.119999885559082,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":70}]}]},{"id":"coa-27-blessing-of-absolution-96-804249","classId":"sun-cleric","dbcSpellId":804249,"name":"Blessing of Absolution","unlockLevel":17,"icon":"/assets/ui/spells/spell_paladin_lightofdawn.png","sigil":"BO","description":"Blessing of AbsolutionRank 118% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 32+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":32},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804249,"level":17,"description":"Blessing of AbsolutionRank 118% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 32+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":32},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":2,"spellId":503498,"level":22,"description":"Blessing of AbsolutionRank 218% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 66+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":66},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":3,"spellId":503499,"level":26,"description":"Blessing of AbsolutionRank 318% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 86+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":86},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":4,"spellId":503500,"level":32,"description":"Blessing of AbsolutionRank 418% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 126+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":126},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":5,"spellId":503501,"level":38,"description":"Blessing of AbsolutionRank 518% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 172+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":172},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":6,"spellId":503502,"level":44,"description":"Blessing of AbsolutionRank 618% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 214+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":214},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":7,"spellId":503503,"level":48,"description":"Blessing of AbsolutionRank 718% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 265+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":265},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":8,"spellId":503504,"level":54,"description":"Blessing of AbsolutionRank 818% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 326+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":326},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":9,"spellId":503505,"level":60,"description":"Blessing of AbsolutionRank 918% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 404+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":404},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":10,"spellId":503506,"level":64,"description":"Blessing of AbsolutionRank 1018% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 489+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":489},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":11,"spellId":503507,"level":70,"description":"Blessing of AbsolutionRank 1118% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 592+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":592},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]},{"rank":12,"spellId":503508,"level":74,"description":"Blessing of AbsolutionRank 1218% of base mana Instant cast15 sec cooldownEmpower a Blessed ally to unleash a burst of holy energy in front of them, dealing 721+0+Heal*1.5 Holy damage enemies in a 10 yd frontal cone and generating additional threat. Only usable on your ally with Bless active.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"trigger-spell","spellId":680893,"withValue":721},{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}]}]},{"id":"coa-27-daybreak-96-500147","classId":"sun-cleric","dbcSpellId":500147,"name":"Daybreak","unlockLevel":17,"icon":"/assets/ui/spells/ability_paladin_lightoftheprotector.png","sigil":"DA","description":"DaybreakRank 126% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 155+0+Heal*0.595.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":155,"dieSides":8,"pointsPerLevel":2.7408199310302734,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":17,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500147,"level":17,"description":"DaybreakRank 126% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 155+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"heal","coefficient":0.23100000619888306,"basePoints":155,"dieSides":8,"pointsPerLevel":2.7408199310302734,"bonusPowerCoefficient":0.23100000619888306,"sourceLevel":17,"maxScalingLevel":22}]},{"rank":2,"spellId":502432,"level":24,"description":"DaybreakRank 226% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 228+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"heal","coefficient":2.545865996271117,"basePoints":228,"dieSides":12,"pointsPerLevel":2.6819300651550293,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":3,"spellId":502433,"level":32,"description":"DaybreakRank 326% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 307+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"heal","coefficient":2.943232921843833,"basePoints":307,"dieSides":17,"pointsPerLevel":3.1248700618743896,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36}]},{"rank":4,"spellId":503623,"level":38,"description":"DaybreakRank 426% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 379+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"heal","coefficient":3.731946009509968,"basePoints":379,"dieSides":23,"pointsPerLevel":5.352089881896973,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44}]},{"rank":5,"spellId":503624,"level":46,"description":"DaybreakRank 526% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 444+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":444,"dieSides":32,"pointsPerLevel":6.582499980926514,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":56}]},{"rank":6,"spellId":572035,"level":58,"description":"DaybreakRank 626% of base mana Instant cast10 sec cooldownMake a prayer, healing an ally for 515+0+Heal*0.595.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":26,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":515,"dieSides":70,"pointsPerLevel":6.968999862670898,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66}]}]},{"id":"coa-27-gleaming-vigil-97-502486","classId":"sun-cleric","dbcSpellId":502486,"name":"Gleaming Vigil","unlockLevel":17,"icon":"/assets/ui/spells/inv_artifact_bulwarkoforder.png","sigil":"GV","description":"Gleaming VigilRank 220 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 113 to 126 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502486:effect:0:aura:69","name":"Gleaming Vigil (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:502486:absorb:0","amount":113,"perStack":false}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502486,"level":17,"description":"Gleaming VigilRank 220 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 113 to 126 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502486:effect:0:aura:69","name":"Gleaming Vigil (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:502486:absorb:0","amount":113,"perStack":false}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502487,"level":33,"description":"Gleaming VigilRank 320 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 333 to 350 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502487:effect:0:aura:69","name":"Gleaming Vigil (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:502487:absorb:0","amount":333,"perStack":false}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":502488,"level":49,"description":"Gleaming VigilRank 420 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 521 to 543 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502488:effect:0:aura:69","name":"Gleaming Vigil (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:502488:absorb:0","amount":521,"perStack":false}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":502489,"level":65,"description":"Gleaming VigilRank 520 Rage Instant15 sec cooldownYou Summon a magical barrier of sunlight that will Absorb 806 to 833 damage dealt against yourself and all party and raid members within 30 yards. Lasts until destroyed.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502489:effect:0:aura:69","name":"Gleaming Vigil (Aura 69)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","absorbs":[{"id":"coa:502489:absorb:0","amount":806,"perStack":false}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-27-guidance-intervention-96-503517","classId":"sun-cleric","dbcSpellId":503517,"name":"Guidance: Intervention","unlockLevel":17,"icon":"/assets/ui/spells/ability_paladin_beaconsoflight.png","sigil":"GI","description":"Guidance: InterventionRank 218% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503517:effect:0:aura:40","name":"Guidance: Intervention (Aura 40)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":40,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503517:effect:1:aura:31","name":"Guidance: Intervention (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503517,"level":17,"description":"Guidance: InterventionRank 218% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503517:effect:0:aura:40","name":"Guidance: Intervention (Aura 40)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":40,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503517:effect:1:aura:31","name":"Guidance: Intervention (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503518,"level":33,"description":"Guidance: InterventionRank 318% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503518:effect:0:aura:40","name":"Guidance: Intervention (Aura 40)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":40,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503518:effect:1:aura:31","name":"Guidance: Intervention (Aura 31)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503519,"level":49,"description":"Guidance: InterventionRank 418% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503519:effect:0:aura:40","name":"Guidance: Intervention (Aura 40)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":40,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503519:effect:1:aura:31","name":"Guidance: Intervention (Aura 31)","disposition":"buff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503520,"level":65,"description":"Guidance: InterventionRank 518% of base mana Instant cast1 min cooldownMakes your Guided ally immune to all damage for 4 sec, and grants them 25% increased movement speed for the duration. Only usable on allies with Solar Guidance active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503520:effect:0:aura:40","name":"Guidance: Intervention (Aura 40)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":40,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503520:effect:1:aura:31","name":"Guidance: Intervention (Aura 31)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-4547","classId":"sun-cleric","dbcSpellId":704910,"name":"Sun Worship","unlockLevel":20,"icon":"/assets/ui/spells/ability_paladin_gaurdedbythelight.png","sigil":"SW","description":"Level 20 Passive Increases your healing power by 15% of your Intellect and your spell haste rating by 25% of your Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704910:effect:0:aura:175","name":"Sun Worship (Aura 175)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":175,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704910:effect:1:aura:220","name":"Sun Worship (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:524288","operation":"flat","value":25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":524288,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704910,"level":20,"description":"Level 20 Passive Increases your healing power by 15% of your Intellect and your spell haste rating by 25% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704910:effect:0:aura:175","name":"Sun Worship (Aura 175)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":175,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704910:effect:1:aura:220","name":"Sun Worship (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:524288","operation":"flat","value":25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":524288,"triggerSpellId":0}]}],"talentEntryId":4547},{"id":"coa-tree-4649","classId":"sun-cleric","dbcSpellId":561023,"name":"Sun-Touched Armor","unlockLevel":20,"icon":"/assets/ui/spells/spell_fire_firearmor.png","sigil":"ST","description":"Level 20 Passive Increases your Armor by 150% of your Strength and Intellect and increases your total Stamina by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561023:effect:0:aura:182","name":"Sun-Touched Armor (Aura 182)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":182,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561023:effect:1:aura:182","name":"Sun-Touched Armor (Aura 182)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":182,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561023:effect:2:aura:137","name":"Sun-Touched Armor (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561023,"level":20,"description":"Level 20 Passive Increases your Armor by 150% of your Strength and Intellect and increases your total Stamina by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561023:effect:0:aura:182","name":"Sun-Touched Armor (Aura 182)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":182,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561023:effect:1:aura:182","name":"Sun-Touched Armor (Aura 182)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":182,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561023:effect:2:aura:137","name":"Sun-Touched Armor (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0}]}],"talentEntryId":4649},{"id":"coa-tree-4546","classId":"sun-cleric","dbcSpellId":805301,"name":"Holy Form","unlockLevel":30,"icon":"/assets/ui/spells/spell_holy_auramastery.png","sigil":"HF","description":"Ascend into a holy form, increasing your healing done by 10%, increasing your Holy critical strike chance by 5%, and reducing your threat generated by -50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805301:effect:0:aura:136","name":"Holy Form (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805301:effect:1:aura:71","name":"Holy Form (Aura 71)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-critical-strike","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":71,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805301:effect:2:aura:10","name":"Holy Form (Aura 10)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":10,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805301,"level":30,"description":"Ascend into a holy form, increasing your healing done by 10%, increasing your Holy critical strike chance by 5%, and reducing your threat generated by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805301:effect:0:aura:136","name":"Holy Form (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805301:effect:1:aura:71","name":"Holy Form (Aura 71)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-critical-strike","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":71,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805301:effect:2:aura:10","name":"Holy Form (Aura 10)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":10,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":4546},{"id":"coa-tree-9650","classId":"sun-cleric","dbcSpellId":561159,"name":"Holy Strength","unlockLevel":30,"icon":"/assets/ui/spells/spell_holy_blessingofprotection.png","sigil":"HS","description":"Level 30 Passive Increases your spell power by 100% of your Strength.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561159:effect:0:aura:55","name":"Holy Strength (Aura 55)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":55,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561159:effect:1:aura:174","name":"Holy Strength (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561159:effect:2:aura:175","name":"Holy Strength (Aura 175)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":175,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561159,"level":30,"description":"Level 30 Passive Increases your spell power by 100% of your Strength.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561159:effect:0:aura:55","name":"Holy Strength (Aura 55)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":55,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561159:effect:1:aura:174","name":"Holy Strength (Aura 174)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"spell-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":174,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561159:effect:2:aura:175","name":"Holy Strength (Aura 175)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":175,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":9650},{"id":"coa-27-radiant-cascade-96-500141","classId":"sun-cleric","dbcSpellId":500141,"name":"Radiant Cascade","unlockLevel":30,"icon":"/assets/ui/spells/ability_priest_cascade.png","sigil":"RC","description":"Radiant CascadeRank 131% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 207++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","target":"friendly","range":{"min":0,"max":40},"radius":15,"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":2.25481484024613,"basePoints":207,"dieSides":23,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500141,"level":30,"description":"Radiant CascadeRank 131% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 207++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":2.25481484024613,"basePoints":207,"dieSides":23,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34}]},{"rank":2,"spellId":502407,"level":36,"description":"Radiant CascadeRank 231% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 271++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":2.648235321044922,"basePoints":271,"dieSides":26,"pointsPerLevel":3.380000114440918,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":120977,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502408,"level":42,"description":"Radiant CascadeRank 331% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 326++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":2.978596486543354,"basePoints":326,"dieSides":30,"pointsPerLevel":4.019999980926514,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":120977,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":502409,"level":48,"description":"Radiant CascadeRank 431% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 401++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":3.4355555943080356,"basePoints":401,"dieSides":33,"pointsPerLevel":4.840000152587891,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":120977,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":502410,"level":54,"description":"Radiant CascadeRank 531% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 477++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":477,"dieSides":37,"pointsPerLevel":11.720000267028809,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":120977,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":502411,"level":58,"description":"Radiant CascadeRank 631% of base mana 2.5 sec castRefract light into a restorative beam, healing an ally for 523++Heal*0.141131, and then jumps to up to 4 additional allies, healing for less with each bounce.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":31,"percentage":true},"effects":[{"kind":"heal","coefficient":2.9436529629851043,"basePoints":523,"dieSides":39,"pointsPerLevel":1.7699999809265137,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":74}]}]},{"id":"coa-27-solar-invocation-ascension-96-500152","classId":"sun-cleric","dbcSpellId":500152,"name":"Solar Invocation: Ascension","unlockLevel":30,"icon":"/assets/ui/spells/spell_priest_pontifex.png","sigil":"SI","description":"Solar Invocation: AscensionRank 135% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 107++SP*1.55. Shares a cooldown with other Solar Invocation spells.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"cooldownGroup":"coa:solar-invocation-spells","gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"heal","coefficient":0.44999998807907104,"basePoints":107,"dieSides":26,"pointsPerLevel":3.119999885559082,"bonusPowerCoefficient":0.44999998807907104,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500152,"level":30,"description":"Solar Invocation: AscensionRank 135% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 107++SP*1.55. Shares a cooldown with other Solar Invocation spells.","castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"heal","coefficient":0.44999998807907104,"basePoints":107,"dieSides":26,"pointsPerLevel":3.119999885559082,"bonusPowerCoefficient":0.44999998807907104,"sourceLevel":30,"maxScalingLevel":36},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":502440,"level":38,"description":"Solar Invocation: AscensionRank 235% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 136++SP*1.55. Shares a cooldown with other Solar Invocation spells.","castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"heal","coefficient":1.684528317841344,"basePoints":136,"dieSides":42,"pointsPerLevel":2.930000066757202,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":46},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":502441,"level":48,"description":"Solar Invocation: AscensionRank 335% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 170++SP*1.55. Shares a cooldown with other Solar Invocation spells.","castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"heal","coefficient":2.3302645405764304,"basePoints":170,"dieSides":58,"pointsPerLevel":5.039999961853027,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":572157,"level":56,"description":"Solar Invocation: AscensionRank 435% of base mana 2.5 sec cast30 sec cooldownCall down the restorative power of the sun, healing all allied players within 40 yds for 203++SP*1.55. Shares a cooldown with other Solar Invocation spells.","castMode":"cast","castTimeMs":2500,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"heal","coefficient":2.1877198376006364,"basePoints":203,"dieSides":72,"pointsPerLevel":4.062220096588135,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":65},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-4747","classId":"sun-cleric","dbcSpellId":300353,"name":"Heaven’s Appraisal","unlockLevel":40,"icon":"/assets/ui/spells/ability_priest_wordsofmeaning.png","sigil":"HS","description":"Level 40 Passive Increases the effectiveness of your Fulfillment effects by 25%. In addition, the Fulfillment effect granted by Vow of Dawn now triples the amount of targets struck.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300353:effect:0:aura:108","name":"Heaven’s Appraisal (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300353:effect:1:aura:108","name":"Heaven’s Appraisal (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300353:effect:2:aura:107","name":"Heaven’s Appraisal (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300353,"level":40,"description":"Level 40 Passive Increases the effectiveness of your Fulfillment effects by 25%. In addition, the Fulfillment effect granted by Vow of Dawn now triples the amount of targets struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300353:effect:0:aura:108","name":"Heaven’s Appraisal (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300353:effect:1:aura:108","name":"Heaven’s Appraisal (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300353:effect:2:aura:107","name":"Heaven’s Appraisal (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":4747},{"id":"coa-tree-4651","classId":"sun-cleric","dbcSpellId":807654,"name":"Solar Discernment","unlockLevel":40,"icon":"/assets/ui/spells/5_paladinskill13_border.png","sigil":"SD","description":"Level 40 Passive Increases your critical strike rating and expertise rating by 12% of your Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807654:effect:0:aura:220","name":"Solar Discernment (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:1792","operation":"flat","value":12}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":1792,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807654:effect:1:aura:220","name":"Solar Discernment (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:8388608","operation":"flat","value":12}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":8388608,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807654,"level":40,"description":"Level 40 Passive Increases your critical strike rating and expertise rating by 12% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807654:effect:0:aura:220","name":"Solar Discernment (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:1792","operation":"flat","value":12}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":1792,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807654:effect:1:aura:220","name":"Solar Discernment (Aura 220)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"combat-rating:8388608","operation":"flat","value":12}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":8388608,"triggerSpellId":0}]}],"talentEntryId":4651},{"id":"coa-tree-11651","classId":"sun-cleric","dbcSpellId":704935,"name":"Clarity of the Heavens","unlockLevel":50,"icon":"/assets/ui/spells/spell_holy_ardentdefender.png","sigil":"CO","description":"Level 50 Passive Increases your block value by 50% of your Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704935:effect:0:aura:23","name":"Clarity of the Heavens (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704935:proc:0:707776","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707776}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":707776}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704935,"level":50,"description":"Level 50 Passive Increases your block value by 50% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704935:effect:0:aura:23","name":"Clarity of the Heavens (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704935:proc:0:707776","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707776}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":707776}]}],"talentEntryId":11651},{"id":"coa-tree-9747","classId":"sun-cleric","dbcSpellId":300339,"name":"The Redeemer","unlockLevel":50,"icon":"/assets/ui/spells/5_priestskill01_border.png","sigil":"TR","description":"Level 50 Passive When you critically heal your target, they will be healed for 30% of the amount originally healed the next time they take damage. Lasts 15 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300339:effect:0:aura:4","name":"The Redeemer (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300339,"level":50,"description":"Level 50 Passive When you critically heal your target, they will be healed for 30% of the amount originally healed the next time they take damage. Lasts 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300339:effect:0:aura:4","name":"The Redeemer (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":9747},{"id":"coa-27-firefall-134-983368","classId":"sun-cleric","dbcSpellId":983368,"name":"Firefall","unlockLevel":60,"icon":"/assets/ui/spells/5_firerainnobg_border.png","sigil":"FI","description":"FirefallRank 135% of base mana Instant cast1 min cooldownYou summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing 121 to 136 Fire damage. Also causes 22 Fire damage to all other enemies within 5 yards of the enemy target. Maximum 16 stars. Lasts 8 sec. Shapeshifting into an animal form or mounting cancels the effect. Any effect which causes you to lose control of your character will suppress the starfall effect. After the effect ends you gain Hot Streak if you know the final talent of it.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:983368:effect:0:aura:23","name":"Firefall (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:983368:proc:0:983369","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":983369}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":983369}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":983368,"level":60,"description":"FirefallRank 135% of base mana Instant cast1 min cooldownYou summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing 121 to 136 Fire damage. Also causes 22 Fire damage to all other enemies within 5 yards of the enemy target. Maximum 16 stars. Lasts 8 sec. Shapeshifting into an animal form or mounting cancels the effect. Any effect which causes you to lose control of your character will suppress the starfall effect. After the effect ends you gain Hot Streak if you know the final talent of it.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:983368:effect:0:aura:23","name":"Firefall (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:983368:proc:0:983369","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":983369}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":983369}]},{"rank":2,"spellId":284680,"level":70,"description":"FirefallRank 235% of base mana Instant cast1 min cooldownUnleash a flurry of fiery stars from the sky, each impact deals 121 to 136 Fire damage before exploding for an additional 22 Fire damage to enemies within 5 yards. The effect lasts 8 sec, summoning up to 16 stars within 20 yards of you. The final star grants you Hot Streak if known. This uses Starfall modifiers. Canceled if you shapeshift, lose character control, or mount. Hot Streak Your next Pyroblast is instant.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:284680:effect:0:aura:23","name":"Firefall (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:284680:proc:0:284683","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":284683}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":284683},{"kind":"apply-aura","aura":{"id":"coa:284680:effect:1:aura:23","name":"Firefall (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:284680:proc:1:48108","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":48108}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":48108}]},{"rank":3,"spellId":284681,"level":75,"description":"FirefallRank 335% of base mana Instant cast1 min cooldownUnleash a flurry of fiery stars from the sky, each impact deals 121 to 136 Fire damage before exploding for an additional 22 Fire damage to enemies within 5 yards. The effect lasts 8 sec, summoning up to 16 stars within 20 yards of you. The final star grants you Hot Streak if known. This uses Starfall modifiers. Canceled if you shapeshift, lose character control, or mount. Hot Streak Your next Pyroblast is instant.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:284681:effect:0:aura:23","name":"Firefall (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:284681:proc:0:284684","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":284684}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":284684},{"kind":"apply-aura","aura":{"id":"coa:284681:effect:1:aura:23","name":"Firefall (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:284681:proc:1:48108","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":48108}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":48108}]},{"rank":4,"spellId":284682,"level":80,"description":"FirefallRank 435% of base mana Instant cast1 min cooldownUnleash a flurry of fiery stars from the sky, each impact deals 121 to 136 Fire damage before exploding for an additional 22 Fire damage to enemies within 5 yards. The effect lasts 8 sec, summoning up to 16 stars within 20 yards of you. The final star grants you Hot Streak if known. This uses Starfall modifiers. Canceled if you shapeshift, lose character control, or mount. Hot Streak Your next Pyroblast is instant.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:284682:effect:0:aura:23","name":"Firefall (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:284682:proc:0:284685","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":284685}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":284685},{"kind":"apply-aura","aura":{"id":"coa:284682:effect:1:aura:23","name":"Firefall (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:284682:proc:1:48108","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":48108}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":48108}]}]}],"tinker":[{"id":"coa-tree-29440","classId":"tinker","dbcSpellId":801744,"name":"Air Strike","unlockLevel":1,"icon":"/assets/ui/spells/ability_mount_gyrocoptor.png","sigil":"AS","description":"Mark the target location for an Air Strike. After 7 seconds, it deals 1250 Fire damage to up to 12 enemies caught within the blast. This ability always critically strikes.","target":"hostile","range":{"min":0,"max":60},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801744:effect:0:aura:23","name":"Air Strike (Aura 23)","disposition":"debuff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801744:proc:0:801745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801745}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801745}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801744,"level":1,"description":"Mark the target location for an Air Strike. After 7 seconds, it deals 1250 Fire damage to up to 12 enemies caught within the blast. This ability always critically strikes.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801744:effect:0:aura:23","name":"Air Strike (Aura 23)","disposition":"debuff","durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801744:proc:0:801745","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801745}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801745}]}],"talentEntryId":29440},{"id":"coa-tree-5997","classId":"tinker","dbcSpellId":520445,"name":"Auto Resuscitation Device","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_enggizmos_15.png","sigil":"AR","description":"Attach a resuscitation device to your target ally for 20 seconds. When the target would otherwise die, they are instead healed for 50% of their maximum health.","target":"friendly","range":{"min":0,"max":20},"castMode":"cast","castTimeMs":1500,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520445:effect:0:aura:69","name":"Auto Resuscitation Device (Aura 69)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:520445:absorb:0","amount":20,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":524780}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520445,"level":1,"description":"Attach a resuscitation device to your target ally for 20 seconds. When the target would otherwise die, they are instead healed for 50% of their maximum health.","castMode":"cast","castTimeMs":1500,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":40,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520445:effect:0:aura:69","name":"Auto Resuscitation Device (Aura 69)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:520445:absorb:0","amount":20,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":524780}]}],"talentEntryId":5997},{"id":"coa-28-blasting-barrels-99-705835","classId":"tinker","dbcSpellId":705835,"name":"Blasting Barrels","unlockLevel":1,"icon":"/assets/ui/spells/5_gunshot_(3)_border.png","sigil":"BB","description":"Blasting BarrelsRank 1InstantIncreases critical strike damage by 0% and increases damage dealt by Rounds by 0%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705835,"level":1,"description":"Blasting BarrelsRank 1InstantIncreases critical strike damage by 0% and increases damage dealt by Rounds by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1}]}]},{"id":"coa-tree-30583","classId":"tinker","dbcSpellId":560754,"name":"Build: Alarm Beacon","unlockLevel":1,"icon":"/assets/ui/spells/inv_lightforgedmechsuit.png","sigil":"BA","description":"3 Charges, 15 sec recharge Throw down an alarm beacon for 10 seconds, removing fear, charm and sleep effects from up to 1 ally within 20 yds every 1 sec.","target":"hostile","range":{"min":0,"max":20},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"summon","creatureId":500361,"coefficient":0.08,"durationMs":10000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560754,"level":1,"description":"3 Charges, 15 sec recharge Throw down an alarm beacon for 10 seconds, removing fear, charm and sleep effects from up to 1 ally within 20 yds every 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":10000},{"kind":"summon","creatureId":500361,"coefficient":0.08,"durationMs":10000}]}],"talentEntryId":30583},{"id":"coa-tree-29203","classId":"tinker","dbcSpellId":804673,"name":"Build: Destructo-Bot","unlockLevel":1,"icon":"/assets/ui/spells/little_bomb_bro.png","sigil":"BD","description":"Build a Destructo-Bot that you can see through and directly control. The bot is capable of exploding, dealing massive Fire damage to enemies nearby and disorienting them for 3 seconds.","target":"hostile","range":{"min":0,"max":50000},"radius":100,"castMode":"channel","castTimeMs":45000,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":50300,"coefficient":0.08,"durationMs":45000},{"kind":"apply-aura","aura":{"id":"coa:804673:effect:1:aura:4","name":"Build: Destructo-Bot (Aura 4)","disposition":"buff","durationMs":45000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804673,"level":1,"description":"Build a Destructo-Bot that you can see through and directly control. The bot is capable of exploding, dealing massive Fire damage to enemies nearby and disorienting them for 3 seconds.","castMode":"channel","castTimeMs":45000,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":50300,"coefficient":0.08,"durationMs":45000},{"kind":"apply-aura","aura":{"id":"coa:804673:effect:1:aura:4","name":"Build: Destructo-Bot (Aura 4)","disposition":"buff","durationMs":45000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29203},{"id":"coa-tree-4051","classId":"tinker","dbcSpellId":92141,"name":"Build: Mechsuit","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_815_uberspanner.png","sigil":"BM","description":"Level 10 Passive Teaches you Build: Mechsuit. You can now generate Scrap to build your Mechsuit and Scrap Shot and Sticky Bomb now generate Scrap. Build: MechsuitActivate your Mechsuit, draining 5 Scrap every sec, increasing damage dealt by 10%, your armor by 800, and your movement speed by 15%. If you run out of Scrap while active, you are ejected from the Mechsuit. While active, your Scrap Shot is transformed into Gatling Gun.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92141:effect:0:aura:107","name":"Build: Mechsuit (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92141:effect:1:aura:42","name":"Build: Mechsuit (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92141:proc:1:706535","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706535}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706535},{"kind":"apply-aura","aura":{"id":"coa:92141:effect:2:aura:108","name":"Build: Mechsuit (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92141,"level":1,"description":"Level 10 Passive Teaches you Build: Mechsuit. You can now generate Scrap to build your Mechsuit and Scrap Shot and Sticky Bomb now generate Scrap. Build: MechsuitActivate your Mechsuit, draining 5 Scrap every sec, increasing damage dealt by 10%, your armor by 800, and your movement speed by 15%. If you run out of Scrap while active, you are ejected from the Mechsuit. While active, your Scrap Shot is transformed into Gatling Gun.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92141:effect:0:aura:107","name":"Build: Mechsuit (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92141:effect:1:aura:42","name":"Build: Mechsuit (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92141:proc:1:706535","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706535}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706535},{"kind":"apply-aura","aura":{"id":"coa:92141:effect:2:aura:108","name":"Build: Mechsuit (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4051},{"id":"coa-tree-9987","classId":"tinker","dbcSpellId":706904,"name":"Build: Repulsion Unit","unlockLevel":1,"icon":"/assets/ui/spells/repulsionunit.png","sigil":"BR","description":"Build a Repulsion Unit that periodically knocks nearby enemies back every 5 sec for 20 seconds.","target":"self","range":{"min":0,"max":0},"radius":2,"castMode":"cast","castTimeMs":1250,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":32,"percentage":true},"effects":[{"kind":"summon","creatureId":500366,"coefficient":0.08,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":706904,"level":1,"description":"Build a Repulsion Unit that periodically knocks nearby enemies back every 5 sec for 20 seconds.","castMode":"cast","castTimeMs":1250,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":32,"percentage":true},"effects":[{"kind":"summon","creatureId":500366,"coefficient":0.08,"durationMs":20000}]}],"talentEntryId":9987},{"id":"coa-tree-4050","classId":"tinker","dbcSpellId":92140,"name":"Build: ZIGGI-6K","unlockLevel":1,"icon":"/assets/ui/spells/inv_plate_mechagnome_c_01shoulder.png","sigil":"BZ","description":"Level 10 Passive Teaches you Build: ZIGGI-6K.Build: ZIGGI-6KBuild ZIGGI-6K, the latest in regenerative technology, to aid you in healing allies until dismissed.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92140:effect:0:aura:4","name":"Build: ZIGGI-6K (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92140:effect:1:aura:4","name":"Build: ZIGGI-6K (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92140:effect:2:aura:354","name":"Build: ZIGGI-6K (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":190,"sourceAuraType":354,"miscValue":0,"triggerSpellId":520375}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92140,"level":1,"description":"Level 10 Passive Teaches you Build: ZIGGI-6K.Build: ZIGGI-6KBuild ZIGGI-6K, the latest in regenerative technology, to aid you in healing allies until dismissed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92140:effect:0:aura:4","name":"Build: ZIGGI-6K (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92140:effect:1:aura:4","name":"Build: ZIGGI-6K (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92140:effect:2:aura:354","name":"Build: ZIGGI-6K (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":190,"sourceAuraType":354,"miscValue":0,"triggerSpellId":520375}]}],"talentEntryId":4050},{"id":"coa-tree-29209","classId":"tinker","dbcSpellId":801706,"name":"Bunker Operative","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_sonicenvironmentenhancer.png","sigil":"BO","description":"Reduces the cooldown of Kinetic Shield, Discombobulate!, and Repulsion Unit by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801706:effect:0:aura:108","name":"Bunker Operative (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":801706,"level":1,"description":"Reduces the cooldown of Kinetic Shield, Discombobulate!, and Repulsion Unit by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801706:effect:0:aura:108","name":"Bunker Operative (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":29209},{"id":"coa-tree-5116","classId":"tinker","dbcSpellId":505336,"name":"Clockwork Ingenuity","unlockLevel":1,"icon":"/assets/ui/spells/t_roboticon.png","sigil":"CI","description":"Increases the maximum health of your summons by 10%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:505336:effect:0:aura:4","name":"Clockwork Ingenuity (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:505336:effect:1:aura:133","name":"Clockwork Ingenuity (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":505336,"level":1,"description":"Increases the maximum health of your summons by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:505336:effect:0:aura:4","name":"Clockwork Ingenuity (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:505336:effect:1:aura:133","name":"Clockwork Ingenuity (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":5116},{"id":"coa-tree-4871","classId":"tinker","dbcSpellId":704107,"name":"Concussive Spanner","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_brainfreeze.png","sigil":"CS","description":"Your Spanner Smash will now apply Concussion to the target.ConcussionYour target is unable to critically strike and their total primary attributes are reduced by -5% for 8 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704107:effect:0:aura:42","name":"Concussive Spanner (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704107:proc:0:653254","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":653254}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":653254}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704107,"level":1,"description":"Your Spanner Smash will now apply Concussion to the target.ConcussionYour target is unable to critically strike and their total primary attributes are reduced by -5% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704107:effect:0:aura:42","name":"Concussive Spanner (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704107:proc:0:653254","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":653254}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":653254}]}],"talentEntryId":4871},{"id":"coa-tree-4987","classId":"tinker","dbcSpellId":707398,"name":"Cutting Edge Technology","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_reavesmodule.png","sigil":"CE","description":"Increases the tick rate and healing done of Nanobot Reconstruction by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707398:effect:0:aura:108","name":"Cutting Edge Technology (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707398:effect:1:aura:108","name":"Cutting Edge Technology (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707398,"level":1,"description":"Increases the tick rate and healing done of Nanobot Reconstruction by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707398:effect:0:aura:108","name":"Cutting Edge Technology (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707398:effect:1:aura:108","name":"Cutting Edge Technology (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}]}],"talentEntryId":4987},{"id":"coa-tree-30839","classId":"tinker","dbcSpellId":500236,"name":"Deathball","unlockLevel":1,"icon":"/assets/ui/spells/ability_garrosh_siege_engine.png","sigil":"DE","description":"Launch 3 Deathballs in a line, increasing in speed the further they travel. They explode when they come into contact with an enemy, dealing 1150 + 35% ranged AP Fire damage to nearby enemies, increased based on distance traveled. Bot and Build abilities reduce the cooldown of this ability by -2 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":226312,"coefficient":0.08,"durationMs":4000},{"kind":"summon","creatureId":226312,"coefficient":0.08,"durationMs":4000},{"kind":"summon","creatureId":226312,"coefficient":0.08,"durationMs":4000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500236,"level":1,"description":"Launch 3 Deathballs in a line, increasing in speed the further they travel. They explode when they come into contact with an enemy, dealing 1150 + 35% ranged AP Fire damage to nearby enemies, increased based on distance traveled. Bot and Build abilities reduce the cooldown of this ability by -2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":226312,"coefficient":0.08,"durationMs":4000},{"kind":"summon","creatureId":226312,"coefficient":0.08,"durationMs":4000},{"kind":"summon","creatureId":226312,"coefficient":0.08,"durationMs":4000}]}],"talentEntryId":30839},{"id":"coa-28-demolition-100-705823","classId":"tinker","dbcSpellId":705823,"name":"Demolition","unlockLevel":1,"icon":"/assets/ui/spells/inv_firearm_2h_rifle_draenorraid_d_01.png","sigil":"DE","description":"DemolitionRank 1InstantIncreases the damage of Bomb Launcher shots by 4% and the critical strike chance of Rocket Launcher by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705823:effect:0:aura:108","name":"Demolition (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705823:effect:1:aura:107","name":"Demolition (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705823:effect:2:aura:4","name":"Demolition (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705823,"level":1,"description":"DemolitionRank 1InstantIncreases the damage of Bomb Launcher shots by 4% and the critical strike chance of Rocket Launcher by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705823:effect:0:aura:108","name":"Demolition (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705823:effect:1:aura:107","name":"Demolition (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705823:effect:2:aura:4","name":"Demolition (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":705824,"level":1,"description":"DemolitionRank 2InstantIncreases the damage of Bomb Launcher shots by 8% and the critical strike chance of Rocket Launcher by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705824:effect:0:aura:108","name":"Demolition (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705824:effect:1:aura:107","name":"Demolition (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705824:effect:2:aura:4","name":"Demolition (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-31235","classId":"tinker","dbcSpellId":705806,"name":"Efficiency","unlockLevel":1,"icon":"/assets/ui/spells/inv_bountyhunting.png","sigil":"EF","description":"Reduces the mana cost of all spells and abilities by -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705806:effect:0:aura:72","name":"Efficiency (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705806,"level":1,"description":"Reduces the mana cost of all spells and abilities by -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705806:effect:0:aura:72","name":"Efficiency (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":31235},{"id":"coa-28-enhanced-remote-102-706373","classId":"tinker","dbcSpellId":706373,"name":"Enhanced Remote","unlockLevel":1,"icon":"/assets/ui/spells/_hearthstonegizmo_rogue.png","sigil":"ER","description":"Enhanced RemoteRank 2Increases the base damage of Bot: Crash & Thrash by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706373:effect:0:aura:108","name":"Enhanced Remote (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706373:effect:1:aura:4","name":"Enhanced Remote (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706373,"level":1,"description":"Enhanced RemoteRank 2Increases the base damage of Bot: Crash & Thrash by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706373:effect:0:aura:108","name":"Enhanced Remote (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706373:effect:1:aura:4","name":"Enhanced Remote (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-tree-5998","classId":"tinker","dbcSpellId":704111,"name":"Explosive Personality","unlockLevel":1,"icon":"/assets/ui/spells/custom_engineerskill_35_border.png","sigil":"EP","description":"Increases your ranged attack power by 50% of your Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704111:effect:0:aura:212","name":"Explosive Personality (Aura 212)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":212,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704111,"level":1,"description":"Increases your ranged attack power by 50% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704111:effect:0:aura:212","name":"Explosive Personality (Aura 212)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":212,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":707833,"level":1,"description":"Increases your ranged attack power by 100% of your Intellect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707833:effect:0:aura:212","name":"Explosive Personality (Aura 212)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":212,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":5998},{"id":"coa-28-flexible-thinking-100-705826","classId":"tinker","dbcSpellId":705826,"name":"Flexible Thinking","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_leystone_buoy.png","sigil":"FT","description":"Flexible ThinkingRank 2Increases Agility and Intellect by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705826:effect:0:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705826:effect:1:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705826:effect:2:aura:4","name":"Flexible Thinking (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705826,"level":1,"description":"Flexible ThinkingRank 2Increases Agility and Intellect by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705826:effect:0:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705826:effect:1:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705826:effect:2:aura:4","name":"Flexible Thinking (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-6551","classId":"tinker","dbcSpellId":705825,"name":"Flexible Thinking","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_leystone_buoy.png","sigil":"FT","description":"Increases Agility and Intellect by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705825:effect:0:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705825:effect:1:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705825:effect:2:aura:4","name":"Flexible Thinking (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705825,"level":1,"description":"Increases Agility and Intellect by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705825:effect:0:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705825:effect:1:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705825:effect:2:aura:4","name":"Flexible Thinking (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":705826,"level":1,"description":"Flexible ThinkingRank 2Increases Agility and Intellect by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705826:effect:0:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"intellect","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705826:effect:1:aura:137","name":"Flexible Thinking (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705826:effect:2:aura:4","name":"Flexible Thinking (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":6551},{"id":"coa-tree-5974","classId":"tinker","dbcSpellId":707265,"name":"Frozen Bomb Launcher","unlockLevel":1,"icon":"/assets/ui/spells/inv_eng_bombicestun.png","sigil":"FB","description":"Damage dealt by your Sentry Turrets will now slow enemy movement speed by -15% for 10 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":50,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707265:effect:0:aura:42","name":"Frozen Bomb Launcher (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707265:proc:0:707266","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707266}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707266}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707265,"level":1,"description":"Damage dealt by your Sentry Turrets will now slow enemy movement speed by -15% for 10 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707265:effect:0:aura:42","name":"Frozen Bomb Launcher (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707265:proc:0:707266","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707266}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707266}]}],"talentEntryId":5974},{"id":"coa-tree-5996","classId":"tinker","dbcSpellId":806762,"name":"Goblin Depravity","unlockLevel":1,"icon":"/assets/ui/spells/ability_mount_gyrocoptorelite.png","sigil":"GD","description":"Air Strike now drops Tear Gas, dealing 132 + 11% nature SP + 100% AP Nature damage every 2 sec for 12 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806762:effect:0:aura:4","name":"Goblin Depravity (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806762,"level":1,"description":"Air Strike now drops Tear Gas, dealing 132 + 11% nature SP + 100% AP Nature damage every 2 sec for 12 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806762:effect:0:aura:4","name":"Goblin Depravity (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":5996},{"id":"coa-28-hastened-shots-100-705813","classId":"tinker","dbcSpellId":705813,"name":"Hastened Shots","unlockLevel":1,"icon":"/assets/ui/spells/_smallgun_red.png","sigil":"HS","description":"Hastened ShotsRank 2Reduces the cast time of Repair Shots and reduces the cooldown of Rounds by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705813:effect:0:aura:108","name":"Hastened Shots (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705813:effect:1:aura:108","name":"Hastened Shots (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705813:effect:2:aura:4","name":"Hastened Shots (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705813,"level":1,"description":"Hastened ShotsRank 2Reduces the cast time of Repair Shots and reduces the cooldown of Rounds by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705813:effect:0:aura:108","name":"Hastened Shots (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705813:effect:1:aura:108","name":"Hastened Shots (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705813:effect:2:aura:4","name":"Hastened Shots (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-28-high-tech-shots-none-806608","classId":"tinker","dbcSpellId":806608,"name":"High Tech Shots","unlockLevel":1,"icon":"/assets/ui/spells/nhi_poisongun_border.png","sigil":"HT","description":"High Tech ShotsRank 2Increases the critical strike chance of Repair Shot and Scrap Shot by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806608:effect:0:aura:107","name":"High Tech Shots (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":806608,"level":1,"description":"High Tech ShotsRank 2Increases the critical strike chance of Repair Shot and Scrap Shot by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806608:effect:0:aura:107","name":"High Tech Shots (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}]},{"id":"coa-tree-6829","classId":"tinker","dbcSpellId":503534,"name":"I'm The Creator Now","unlockLevel":1,"icon":"/assets/ui/spells/nhi_tech_roboticcalm_border.png","sigil":"IM","description":"Damage dealt by your summons now has a 40% chance to increase your attack power and spell power by 9 for 30 seconds, stacking 3 times.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503534:effect:0:aura:42","name":"I'm The Creator Now (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503534:proc:0:503549","triggers":["hit"],"chance":0.4,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503549}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503549},{"kind":"apply-aura","aura":{"id":"coa:503534:effect:1:aura:4","name":"I'm The Creator Now (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503534,"level":1,"description":"Damage dealt by your summons now has a 40% chance to increase your attack power and spell power by 9 for 30 seconds, stacking 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503534:effect:0:aura:42","name":"I'm The Creator Now (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:503534:proc:0:503549","triggers":["hit"],"chance":0.4,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503549}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503549},{"kind":"apply-aura","aura":{"id":"coa:503534:effect:1:aura:4","name":"I'm The Creator Now (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6829},{"id":"coa-28-improved-explosives-100-705773","classId":"tinker","dbcSpellId":705773,"name":"Improved Explosives","unlockLevel":1,"icon":"/assets/ui/spells/ability_vehicle_demolisherflamecatapult.png","sigil":"IE","description":"Improved ExplosivesRank 2Increases Fire Damage dealt by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705773:effect:0:aura:79","name":"Improved Explosives (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"fire","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705773:effect:1:aura:4","name":"Improved Explosives (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705773:effect:2:aura:4","name":"Improved Explosives (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705773,"level":1,"description":"Improved ExplosivesRank 2Increases Fire Damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705773:effect:0:aura:79","name":"Improved Explosives (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"fire","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705773:effect:1:aura:4","name":"Improved Explosives (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705773:effect:2:aura:4","name":"Improved Explosives (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-28-improved-reload-99-705768","classId":"tinker","dbcSpellId":705768,"name":"Improved Reload","unlockLevel":1,"icon":"/assets/ui/spells/_smallgun_orange.png","sigil":"IR","description":"Improved ReloadRank 1Reduces the cost of Reload by 0%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705768,"level":1,"description":"Improved ReloadRank 1Reduces the cost of Reload by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":705769,"level":1,"description":"Improved ReloadRank 2Reduces the cost of Reload by 0%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-28-improved-remote-detonation-102-705784","classId":"tinker","dbcSpellId":705784,"name":"Improved Remote Detonation","unlockLevel":1,"icon":"/assets/ui/spells/inv_wildfirebomb_blood.png","sigil":"IR","description":"Improved Remote DetonationRank 1Reduces the cooldown of Remote Detonation by 5 sec and increases its damage by 25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705784:effect:0:aura:4","name":"Improved Remote Detonation (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705784:effect:1:aura:107","name":"Improved Remote Detonation (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705784:effect:2:aura:108","name":"Improved Remote Detonation (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705784,"level":1,"description":"Improved Remote DetonationRank 1Reduces the cooldown of Remote Detonation by 5 sec and increases its damage by 25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705784:effect:0:aura:4","name":"Improved Remote Detonation (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705784:effect:1:aura:107","name":"Improved Remote Detonation (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705784:effect:2:aura:108","name":"Improved Remote Detonation (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705785,"level":1,"description":"Improved Remote DetonationRank 2Reduces the cooldown of Remote Detonation by 10 sec and increases its damage by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705785:effect:0:aura:4","name":"Improved Remote Detonation (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705785:effect:1:aura:107","name":"Improved Remote Detonation (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705785:effect:2:aura:108","name":"Improved Remote Detonation (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30869","classId":"tinker","dbcSpellId":806224,"name":"Kinetic Shield","unlockLevel":1,"icon":"/assets/ui/spells/garrison_bluearmorupgrade.png","sigil":"KS","description":"Create magnetic shields of kinetic energy on an ally target for 8 seconds, reducing damage taken by -40% and making them immune to stun effects. Usable while stunned.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":38,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806224:effect:0:aura:87","name":"Kinetic Shield (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806224:effect:1:aura:77","name":"Kinetic Shield (Aura 77)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["stun"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":12,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806224,"level":1,"description":"Create magnetic shields of kinetic energy on an ally target for 8 seconds, reducing damage taken by -40% and making them immune to stun effects. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":38,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806224:effect:0:aura:87","name":"Kinetic Shield (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806224:effect:1:aura:77","name":"Kinetic Shield (Aura 77)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["stun"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":30869},{"id":"coa-tree-6890","classId":"tinker","dbcSpellId":506632,"name":"Mechanical Enhancements","unlockLevel":1,"icon":"/assets/ui/spells/inv_plate_mechagnome_c_01chest.png","sigil":"ME","description":"Reduces your damage taken from bleed effects by -10% and the duration of bleed effects on you by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:506632:effect:0:aura:255","name":"Mechanical Enhancements (Aura 255)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":255,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:506632:effect:1:aura:232","name":"Mechanical Enhancements (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":15,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":506632,"level":1,"description":"Reduces your damage taken from bleed effects by -10% and the duration of bleed effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:506632:effect:0:aura:255","name":"Mechanical Enhancements (Aura 255)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":255,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:506632:effect:1:aura:232","name":"Mechanical Enhancements (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":15,"triggerSpellId":0}]}],"talentEntryId":6890},{"id":"coa-tree-8355","classId":"tinker","dbcSpellId":800347,"name":"Med Pack","unlockLevel":1,"icon":"/assets/ui/spells/inv_first_aid_70_medicalkit.png","sigil":"MP","description":"Med PackRank 130% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(34+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","target":"friendly","range":{"min":0,"max":10},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800347:effect:0:aura:8","name":"Med Pack (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5169892464914629,"basePoints":34,"dieSides":1,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800347:effect:1:aura:4","name":"Med Pack (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806158},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800347,"level":1,"description":"Med PackRank 130% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(34+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800347:effect:0:aura:8","name":"Med Pack (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5169892464914629,"basePoints":34,"dieSides":1,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800347:effect:1:aura:4","name":"Med Pack (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806158},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":8355},{"id":"coa-28-modular-charges-99-705767","classId":"tinker","dbcSpellId":705767,"name":"Modular Charges","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_ammo_bullet_01.png","sigil":"MC","description":"Modular ChargesRank 2Increases the effectiveness of the charge effects granted by Rounds by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705767:effect:0:aura:108","name":"Modular Charges (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705767,"level":1,"description":"Modular ChargesRank 2Increases the effectiveness of the charge effects granted by Rounds by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705767:effect:0:aura:108","name":"Modular Charges (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}]},{"id":"coa-tree-6979","classId":"tinker","dbcSpellId":560744,"name":"My Greatest Invention!","unlockLevel":1,"icon":"/assets/ui/spells/achievement_alliedrace_mechagnome.png","sigil":"MG","description":"Show off your Greatest Invention, healing party and raid members in a 30 yd radius for 823 + 65% healing every 2 sec for 9 seconds.","target":"self","range":{"min":0,"max":0},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000},{"kind":"summon","creatureId":500362,"coefficient":0.08,"durationMs":9000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":560744,"level":1,"description":"Show off your Greatest Invention, healing party and raid members in a 30 yd radius for 823 + 65% healing every 2 sec for 9 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":9000},{"kind":"summon","creatureId":500362,"coefficient":0.08,"durationMs":9000}]}],"talentEntryId":6979},{"id":"coa-28-nanobot-deconstruction-100-801808","classId":"tinker","dbcSpellId":801808,"name":"Nanobot Deconstruction","unlockLevel":1,"icon":"/assets/ui/spells/spell_druid_swarm.png","sigil":"ND","description":"Nanobot DeconstructionRank 17% of base mana Instant castSend your Nanobots to an enemy, dealing 4 to 5 Arcane damage every second for up to 24 sec. Your Nanobots can only be sent to 1 target at time.","target":"hostile","range":{"min":0,"max":45},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801808:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":24000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.10444444451067182,"basePoints":4,"dieSides":2,"pointsPerLevel":0.20000000298023224,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":8,"intervalMs":3000,"tag":"spell-801808"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801808,"level":1,"description":"Nanobot DeconstructionRank 17% of base mana Instant castSend your Nanobots to an enemy, dealing 4 to 5 Arcane damage every second for up to 24 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801808:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":24000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.10444444451067182,"basePoints":4,"dieSides":2,"pointsPerLevel":0.20000000298023224,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":9,"ticks":8,"intervalMs":3000,"tag":"spell-801808"}]},{"rank":2,"spellId":502544,"level":10,"description":"Nanobot DeconstructionRank 27% of base mana Instant castSend your Nanobots to an enemy, dealing 6 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502544:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1246666677792867,"basePoints":6,"dieSides":1,"pointsPerLevel":0.33500000834465027,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18,"ticks":15,"intervalMs":1000,"tag":"spell-502544"}]},{"rank":3,"spellId":502545,"level":19,"description":"Nanobot DeconstructionRank 37% of base mana Instant castSend your Nanobots to an enemy, dealing 9 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502545:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.17326960668844335,"basePoints":9,"dieSides":1,"pointsPerLevel":0.45649999380111694,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27,"ticks":15,"intervalMs":1000,"tag":"spell-502545"}]},{"rank":4,"spellId":502546,"level":28,"description":"Nanobot DeconstructionRank 47% of base mana Instant castSend your Nanobots to an enemy, dealing 15 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502546:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24173643607501835,"basePoints":15,"dieSides":1,"pointsPerLevel":0.578000009059906,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36,"ticks":15,"intervalMs":1000,"tag":"spell-502546"}]},{"rank":5,"spellId":502547,"level":37,"description":"Nanobot DeconstructionRank 57% of base mana Instant castSend your Nanobots to an enemy, dealing 23 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502547:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3133429544858443,"basePoints":23,"dieSides":1,"pointsPerLevel":0.6995000243186951,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44,"ticks":15,"intervalMs":1000,"tag":"spell-502547"}]},{"rank":6,"spellId":502548,"level":45,"description":"Nanobot DeconstructionRank 67% of base mana Instant castSend your Nanobots to an enemy, dealing 36 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502548:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4018750011920929,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8075000047683716,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53,"ticks":15,"intervalMs":1000,"tag":"spell-502548"}]},{"rank":7,"spellId":502549,"level":54,"description":"Nanobot DeconstructionRank 77% of base mana Instant castSend your Nanobots to an enemy, dealing 58 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502549:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5225410680264091,"basePoints":58,"dieSides":1,"pointsPerLevel":0.9290000200271606,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62,"ticks":15,"intervalMs":1000,"tag":"spell-502549"}]},{"rank":8,"spellId":502550,"level":63,"description":"Nanobot DeconstructionRank 87% of base mana Instant castSend your Nanobots to an enemy, dealing 93 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502550:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7070512756323203,"basePoints":93,"dieSides":1,"pointsPerLevel":1.149999976158142,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71,"ticks":15,"intervalMs":1000,"tag":"spell-502550"}]},{"rank":9,"spellId":502551,"level":72,"description":"Nanobot DeconstructionRank 97% of base mana Instant castSend your Nanobots to an enemy, dealing 147 Arcane damage every second for up to 15 sec. Your Nanobots can only be sent to 1 target at time.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502551:effect:0:aura:3","name":"Nanobot Deconstruction (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.066666679820795,"basePoints":147,"dieSides":1,"pointsPerLevel":1.8250000476837158,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":15,"intervalMs":1000,"tag":"spell-502551"}]}]},{"id":"coa-tree-29813","classId":"tinker","dbcSpellId":801809,"name":"Nanobot Reconstruction","unlockLevel":1,"icon":"/assets/ui/spells/ability_shaman_repulsiontotem.png","sigil":"NR","description":"Nanobot ReconstructionRank 117% of base mana Instant castSend Nanobots to an ally, healing them for 360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801809:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.05000000074505806,"basePoints":6,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10,"maxScalingLevel":14,"ticks":60,"intervalMs":1000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801809,"level":1,"description":"Nanobot ReconstructionRank 117% of base mana Instant castSend Nanobots to an ally, healing them for 360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801809:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.05000000074505806,"basePoints":6,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10,"maxScalingLevel":14,"ticks":60,"intervalMs":1000}]}],"talentEntryId":29813},{"id":"coa-tree-4049","classId":"tinker","dbcSpellId":92138,"name":"Napalm","unlockLevel":1,"icon":"/assets/ui/spells/inv_eng_bombfire.png","sigil":"NA","description":"Level 10 Passive Dealing direct Fire damage now applies Napalm to your target.Napalm (Damage)Fire Damage taken by you is increased and healing received reduced by -3% for 8 seconds. Stacks 10 times.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92138:effect:0:aura:4","name":"Napalm (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92138,"level":1,"description":"Level 10 Passive Dealing direct Fire damage now applies Napalm to your target.Napalm (Damage)Fire Damage taken by you is increased and healing received reduced by -3% for 8 seconds. Stacks 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92138:effect:0:aura:4","name":"Napalm (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4049},{"id":"coa-28-precision-scopes-99-705807","classId":"tinker","dbcSpellId":705807,"name":"Precision Scopes","unlockLevel":1,"icon":"/assets/ui/spells/inv_bountyhunting.png","sigil":"PS","description":"Precision ScopesRank 2Increases critical strike chance by 4%, and the effectiveness of both damaging and healing critical strikes by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705807:effect:0:aura:290","name":"Precision Scopes (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705807:effect:1:aura:163","name":"Precision Scopes (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705807:effect:2:aura:50","name":"Precision Scopes (Aura 50)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-healing","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":50,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705807,"level":1,"description":"Precision ScopesRank 2Increases critical strike chance by 4%, and the effectiveness of both damaging and healing critical strikes by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705807:effect:0:aura:290","name":"Precision Scopes (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705807:effect:1:aura:163","name":"Precision Scopes (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705807:effect:2:aura:50","name":"Precision Scopes (Aura 50)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-healing","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":50,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-28-quickscope-99-805686","classId":"tinker","dbcSpellId":805686,"name":"Quickscope","unlockLevel":1,"icon":"/assets/ui/spells/inv_engineering_snipingscope.png","sigil":"QU","description":"QuickscopeRank 1InstantGives Scrap Shot and Gunsling a 15% chance to make your next Snipe instant, deal 0% increased damage, and guaranteed to critically strike.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805686:effect:0:aura:42","name":"Quickscope (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805686:proc:0:805663","triggers":["crit"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805663}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805663},{"kind":"apply-aura","aura":{"id":"coa:805686:effect:2:aura:107","name":"Quickscope (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":805686,"level":1,"description":"QuickscopeRank 1InstantGives Scrap Shot and Gunsling a 15% chance to make your next Snipe instant, deal 0% increased damage, and guaranteed to critically strike.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805686:effect:0:aura:42","name":"Quickscope (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805686:proc:0:805663","triggers":["crit"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805663}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805663},{"kind":"apply-aura","aura":{"id":"coa:805686:effect:2:aura:107","name":"Quickscope (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}]},{"id":"coa-tree-6001","classId":"tinker","dbcSpellId":705781,"name":"Refined Gunpowder","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_ammo_gunpowder_02.png","sigil":"RG","description":"Increases your haste and your damage dealt against Mechanical creatures by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705781:effect:0:aura:168","name":"Refined Gunpowder (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":256,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705781:effect:1:aura:192","name":"Refined Gunpowder (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705781:effect:2:aura:168","name":"Refined Gunpowder (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":256,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705781,"level":1,"description":"Increases your haste and your damage dealt against Mechanical creatures by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705781:effect:0:aura:168","name":"Refined Gunpowder (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":256,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705781:effect:1:aura:192","name":"Refined Gunpowder (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705781:effect:2:aura:168","name":"Refined Gunpowder (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":256,"triggerSpellId":0}]},{"rank":2,"spellId":705782,"level":1,"description":"Increases your haste and your damage dealt against Mechanical creatures by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705782:effect:0:aura:168","name":"Refined Gunpowder (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":256,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705782:effect:1:aura:192","name":"Refined Gunpowder (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705782:effect:2:aura:168","name":"Refined Gunpowder (Aura 168)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":168,"miscValue":256,"triggerSpellId":0}]}],"talentEntryId":6001},{"id":"tinker-remote-detonation","classId":"tinker","dbcSpellId":801798,"name":"Remote Detonation","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_mindbomb.png","sigil":"RD","description":"Detonates all Blast Mines$?s706647[ and Shrapnel Mines][] placed by you within 60 yards. Usable while casting or channeling.","target":"hostile","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":801798,"level":1,"description":"Detonates all Blast Mines$?s706647[ and Shrapnel Mines][] placed by you within 60 yards. Usable while casting or channeling.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-34987","classId":"tinker","dbcSpellId":706695,"name":"Rocket Bombardment","unlockLevel":1,"icon":"/assets/ui/spells/5_engineerskill25_border.png","sigil":"RB","description":"Casting Sticky Bomb now causes your Sentry Turret to fire a rocket cluster on its next attack, causing 126 Fire damage to enemies within 5 yds of the target.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706695:effect:0:aura:42","name":"Rocket Bombardment (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706695:proc:0:706698","triggers":["cast","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706698}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706698}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706695,"level":1,"description":"Casting Sticky Bomb now causes your Sentry Turret to fire a rocket cluster on its next attack, causing 126 Fire damage to enemies within 5 yds of the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706695:effect:0:aura:42","name":"Rocket Bombardment (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706695:proc:0:706698","triggers":["cast","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706698}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706698}]}],"talentEntryId":34987},{"id":"coa-tree-31113","classId":"tinker","dbcSpellId":500241,"name":"Rocket Boots","unlockLevel":1,"icon":"/assets/ui/spells/inv_gizmo_rocketbootextreme.png","sigil":"RB","description":"3 Charges, 30 sec recharge Activate your Rocket Boots, dispelling root effects and launching you forward.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"movement","movement":"leap","toward":"away"},{"kind":"dispel-mechanic","mechanic":7,"maxCount":10}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500241,"level":1,"description":"3 Charges, 30 sec recharge Activate your Rocket Boots, dispelling root effects and launching you forward.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"movement","movement":"leap","toward":"away"},{"kind":"dispel-mechanic","mechanic":7,"maxCount":10}]}],"talentEntryId":31113},{"id":"coa-tree-29613","classId":"tinker","dbcSpellId":500235,"name":"Rocket Launcher","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_rocketbarrage.png","sigil":"RL","description":"Rocket LauncherRank 18% of base mana 3 sec castFire a powerful rocket at an enemy that deals 126+0+RAP*0.35+FireP*.35 Fire damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":126},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500235,"level":1,"description":"Rocket LauncherRank 18% of base mana 3 sec castFire a powerful rocket at an enemy that deals 126+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":126},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}]}],"talentEntryId":29613},{"id":"tinker-rocket-pack","classId":"tinker","dbcSpellId":705820,"name":"Rocket Pack","unlockLevel":1,"icon":"/assets/ui/spells/inv_backpack_wrathion_c_01.png","sigil":"RP","description":"Fire critical strikes now reduce the remaining cooldown of Rockadier by -3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705820:effect:0:aura:42","name":"Rocket Pack (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705820:proc:0:705821","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705821}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":1,"triggerSpellId":705821},{"kind":"apply-aura","aura":{"id":"coa:705820:effect:1:aura:4","name":"Rocket Pack (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705820:effect:2:aura:4","name":"Rocket Pack (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"source":"coa-starter","passive":true,"ranks":[{"rank":1,"spellId":705820,"level":1,"description":"Fire critical strikes now reduce the remaining cooldown of Rockadier by -3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705820:effect:0:aura:42","name":"Rocket Pack (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705820:proc:0:705821","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":705821}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":1,"triggerSpellId":705821},{"kind":"apply-aura","aura":{"id":"coa:705820:effect:1:aura:4","name":"Rocket Pack (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705820:effect:2:aura:4","name":"Rocket Pack (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-28-rounds-and-rounds-99-300631","classId":"tinker","dbcSpellId":300631,"name":"Rounds and Rounds","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_holybullet_border.png","sigil":"RA","description":"Reduces the cooldown of Rounds by $/1000;s1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300631:effect:0:aura:4","name":"Rounds and Rounds (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":300631,"level":1,"description":"Reduces the cooldown of Rounds by $/1000;s1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300631:effect:0:aura:4","name":"Rounds and Rounds (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0}]},{"rank":2,"spellId":705765,"level":1,"description":"Rounds and RoundsRank 2Reduces the cooldown of Rounds by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705765:effect:0:aura:4","name":"Rounds and Rounds (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29777","classId":"tinker","dbcSpellId":806627,"name":"Scrapshielding","unlockLevel":1,"icon":"/assets/ui/spells/uico_mecha_spell_02_border.png","sigil":"SC","description":"Your critical strikes now grant you a shield that absorbs 177 + 15% AP + 60% SP damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:806627:effect:0:aura:4","name":"Scrapshielding (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806627:effect:1:aura:4","name":"Scrapshielding (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806627:effect:2:aura:42","name":"Scrapshielding (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:806627:proc:2:806628","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806628}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806628}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806627,"level":1,"description":"Your critical strikes now grant you a shield that absorbs 177 + 15% AP + 60% SP damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:806627:effect:0:aura:4","name":"Scrapshielding (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806627:effect:1:aura:4","name":"Scrapshielding (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806627:effect:2:aura:42","name":"Scrapshielding (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:806627:proc:2:806628","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806628}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806628}]}],"talentEntryId":29777},{"id":"coa-28-smoking-gun-99-704108","classId":"tinker","dbcSpellId":704108,"name":"Smoking Gun","unlockLevel":1,"icon":"/assets/ui/spells/inv_weapon_rifle_44.png","sigil":"SG","description":"Smoking GunRank 1Increases the damage of Gunsling and Handcannon against enemies affected by Sticky Bomb by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704108:effect:0:aura:107","name":"Smoking Gun (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":704108,"level":1,"description":"Smoking GunRank 1Increases the damage of Gunsling and Handcannon against enemies affected by Sticky Bomb by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704108:effect:0:aura:107","name":"Smoking Gun (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}]},{"id":"coa-28-repair-shot-480-801707","classId":"tinker","dbcSpellId":801707,"name":"Repair Shot","unlockLevel":2,"icon":"/assets/ui/spells/ability_siege_engineer_automatic_repair_beam.png","sigil":"RS","description":"Repair ShotRank 128% of base mana 1.5 sec castFire a healing stimshot at an ally, healing them for 38+0+Heal*0.7.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":1.2999999523162842,"basePoints":38,"dieSides":12,"pointsPerLevel":2.326930046081543,"bonusPowerCoefficient":1.2999999523162842,"sourceLevel":2,"maxScalingLevel":9}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801707,"level":2,"description":"Repair ShotRank 128% of base mana 1.5 sec castFire a healing stimshot at an ally, healing them for 38+0+Heal*0.7.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":1.2999999523162842,"basePoints":38,"dieSides":12,"pointsPerLevel":2.326930046081543,"bonusPowerCoefficient":1.2999999523162842,"sourceLevel":2,"maxScalingLevel":9}]},{"rank":2,"spellId":502573,"level":8,"description":"Repair ShotRank 228% of base mana 2 sec castFire a healing stimshot at an ally, healing them for 86+0+Heal*0.7.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":1.9280602828316067,"basePoints":86,"dieSides":16,"pointsPerLevel":4.942019939422607,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":10}]},{"rank":3,"spellId":502574,"level":12,"description":"Repair ShotRank 328% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 142+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":2.9341604915665993,"basePoints":142,"dieSides":25,"pointsPerLevel":6.972249984741211,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16}]},{"rank":4,"spellId":502575,"level":18,"description":"Repair ShotRank 428% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 228+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":3.9694824796734434,"basePoints":228,"dieSides":25,"pointsPerLevel":8.498820304870605,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22}]},{"rank":5,"spellId":502576,"level":24,"description":"Repair ShotRank 528% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 327+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":327,"dieSides":25,"pointsPerLevel":6.603280067443848,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28}]},{"rank":6,"spellId":502577,"level":30,"description":"Repair ShotRank 628% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 447+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":447,"dieSides":39,"pointsPerLevel":8.616600036621094,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34}]},{"rank":7,"spellId":502578,"level":36,"description":"Repair ShotRank 728% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 561+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":561,"dieSides":47,"pointsPerLevel":10.77280044555664,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40}]},{"rank":8,"spellId":502579,"level":42,"description":"Repair ShotRank 828% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 739+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":739,"dieSides":56,"pointsPerLevel":14.128100395202637,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46}]},{"rank":9,"spellId":502580,"level":48,"description":"Repair ShotRank 928% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 589+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":589,"dieSides":68,"pointsPerLevel":11.465999603271484,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52}]},{"rank":10,"spellId":502581,"level":54,"description":"Repair ShotRank 1028% of base mana 2.5 sec castFire a healing stimshot at an ally, healing them for 935+0+Heal*0.7.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":28,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":935,"dieSides":81,"pointsPerLevel":17.97130012512207,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58}]}]},{"id":"tinker-warphole-generator","classId":"tinker","dbcSpellId":801544,"name":"Warphole Generator","unlockLevel":2,"icon":"/assets/ui/spells/inv_misc_enggizmos_35.png","sigil":"WG","description":"Teleports you to the target location. Taking any damage while casting will interrupt this ability. Not usable in combat.","target":"hostile","range":{"min":0,"max":40},"radius":2,"castMode":"cast","castTimeMs":6000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"teleport","toward":"destination"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":801544,"level":2,"description":"Teleports you to the target location. Taking any damage while casting will interrupt this ability. Not usable in combat.","castMode":"cast","castTimeMs":6000,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"teleport","toward":"destination"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"tinker-magic-cleanser-4000x","classId":"tinker","dbcSpellId":560472,"name":"Magic-Cleanser 4000X","unlockLevel":4,"icon":"/assets/ui/spells/inv_pet_magicalcradadbox.png","sigil":"MC","description":"Deprecate","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"source":"coa-starter","passive":true,"ranks":[{"rank":1,"spellId":560472,"level":4,"description":"Deprecate","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-28-power-module-480-706742","classId":"tinker","dbcSpellId":706742,"name":"Power Module","unlockLevel":4,"icon":"/assets/ui/spells/inv_gizmo_khoriumpowercore.png","sigil":"PM","description":"Power ModuleRank 19% of base mana Instant castActivates power module on an allied player, increasing attack power by 19 for 30 min. Only one Module per Tinker can be active.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706742:effect:0:aura:99","name":"Power Module (Aura 99)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"flat","value":19}]},"sourceEffectType":6,"sourceAuraType":99,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706742:effect:1:aura:124","name":"Power Module (Aura 124)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"flat","value":19}]},"sourceEffectType":6,"sourceAuraType":124,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706742,"level":4,"description":"Power ModuleRank 19% of base mana Instant castActivates power module on an allied player, increasing attack power by 19 for 30 min. Only one Module per Tinker can be active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706742:effect:0:aura:99","name":"Power Module (Aura 99)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"flat","value":19}]},"sourceEffectType":6,"sourceAuraType":99,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706742:effect:1:aura:124","name":"Power Module (Aura 124)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"flat","value":19}]},"sourceEffectType":6,"sourceAuraType":124,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-28-sticky-bomb-480-500232","classId":"tinker","dbcSpellId":500232,"name":"Sticky Bomb","unlockLevel":4,"icon":"/assets/ui/spells/inv_misc_blackironbomb.png","sigil":"SB","description":"Sticky BombRank 18% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 17+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:500232:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500232:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:500232:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500232,"level":4,"description":"Sticky BombRank 18% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 17+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:500232:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500232:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:500232:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502512,"level":12,"description":"Sticky BombRank 28% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 53+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:502512:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502512:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:502512:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502513,"level":20,"description":"Sticky BombRank 38% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 84+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:502513:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502513:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:502513:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502514,"level":28,"description":"Sticky BombRank 48% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 125+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:502514:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502514:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:502514:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502515,"level":36,"description":"Sticky BombRank 58% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 188+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:502515:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502515:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:502515:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502516,"level":44,"description":"Sticky BombRank 68% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 272+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:502516:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502516:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:502516:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502517,"level":52,"description":"Sticky BombRank 78% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 394+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:502517:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502517:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:502517:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-28-defibrillate-480-802175","classId":"tinker","dbcSpellId":802175,"name":"Defibrillate","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_enggizmos_02.png","sigil":"DE","description":"DefibrillateRank 120% of base mana 10 sec castBrings up to 5 dead allies within 15 yds back to life with 70 health and 135 mana. Cannot be cast when in combat.","target":"self","range":{"min":0,"max":0},"radius":15,"castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":802175,"level":10,"description":"DefibrillateRank 120% of base mana 10 sec castBrings up to 5 dead allies within 15 yds back to life with 70 health and 135 mana. Cannot be cast when in combat.","castMode":"cast","castTimeMs":10000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]}]},{"id":"coa-28-nanobot-reconstruction-100-801809","classId":"tinker","dbcSpellId":801809,"name":"Nanobot Reconstruction","unlockLevel":10,"icon":"/assets/ui/spells/ability_shaman_repulsiontotem.png","sigil":"NR","description":"Nanobot ReconstructionRank 117% of base mana Instant castSend Nanobots to an ally, healing them for 360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801809:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.05000000074505806,"basePoints":6,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10,"maxScalingLevel":14,"ticks":60,"intervalMs":1000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801809,"level":10,"description":"Nanobot ReconstructionRank 117% of base mana Instant castSend Nanobots to an ally, healing them for 360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801809:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.05000000074505806,"basePoints":6,"dieSides":1,"pointsPerLevel":0.03999999910593033,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10,"maxScalingLevel":14,"ticks":60,"intervalMs":1000}]},{"rank":2,"spellId":502552,"level":16,"description":"Nanobot ReconstructionRank 217% of base mana Instant castSend Nanobots to an ally, healing them for 600 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502552:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.12817204254929737,"basePoints":10,"dieSides":1,"pointsPerLevel":0.11999999731779099,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":18,"ticks":60,"intervalMs":1000}]},{"rank":3,"spellId":502553,"level":20,"description":"Nanobot ReconstructionRank 317% of base mana Instant castSend Nanobots to an ally, healing them for 960 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502553:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.17142857171240308,"basePoints":16,"dieSides":1,"pointsPerLevel":0.10000000149011612,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":24,"ticks":60,"intervalMs":1000}]},{"rank":4,"spellId":502554,"level":26,"description":"Nanobot ReconstructionRank 417% of base mana Instant castSend Nanobots to an ally, healing them for 1440 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502554:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.2627642261303537,"basePoints":24,"dieSides":1,"pointsPerLevel":0.3199999928474426,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":28,"ticks":60,"intervalMs":1000}]},{"rank":5,"spellId":502555,"level":30,"description":"Nanobot ReconstructionRank 517% of base mana Instant castSend Nanobots to an ally, healing them for 1920 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502555:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.27703703862649426,"basePoints":32,"dieSides":1,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34,"ticks":60,"intervalMs":1000}]},{"rank":6,"spellId":502556,"level":36,"description":"Nanobot ReconstructionRank 617% of base mana Instant castSend Nanobots to an ally, healing them for 2580 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502556:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.38457516283770793,"basePoints":43,"dieSides":1,"pointsPerLevel":0.4399999976158142,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":38,"ticks":60,"intervalMs":1000}]},{"rank":7,"spellId":502557,"level":40,"description":"Nanobot ReconstructionRank 717% of base mana Instant castSend Nanobots to an ally, healing them for 3360 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502557:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.4751515157294996,"basePoints":56,"dieSides":1,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":42,"ticks":60,"intervalMs":1000}]},{"rank":8,"spellId":502558,"level":44,"description":"Nanobot ReconstructionRank 817% of base mana Instant castSend Nanobots to an ally, healing them for 3900 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502558:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.45175141331839697,"basePoints":65,"dieSides":1,"pointsPerLevel":0.3400000035762787,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":48,"ticks":60,"intervalMs":1000}]},{"rank":9,"spellId":502559,"level":50,"description":"Nanobot ReconstructionRank 917% of base mana Instant castSend Nanobots to an ally, healing them for 4680 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502559:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.5076923043299943,"basePoints":78,"dieSides":1,"pointsPerLevel":0.41999998688697815,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":54,"ticks":60,"intervalMs":1000}]},{"rank":10,"spellId":502560,"level":56,"description":"Nanobot ReconstructionRank 1017% of base mana Instant castSend Nanobots to an ally, healing them for 5400 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502560:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.695962431285303,"basePoints":90,"dieSides":1,"pointsPerLevel":1.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58,"ticks":60,"intervalMs":1000}]},{"rank":11,"spellId":502561,"level":60,"description":"Nanobot ReconstructionRank 1117% of base mana Instant castSend Nanobots to an ally, healing them for 6120 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502561:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.6239999961853028,"basePoints":102,"dieSides":1,"pointsPerLevel":0.6399999856948853,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":60,"intervalMs":1000}]},{"rank":12,"spellId":502562,"level":66,"description":"Nanobot ReconstructionRank 1217% of base mana Instant castSend Nanobots to an ally, healing them for 6780 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502562:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.8887242642940317,"basePoints":113,"dieSides":1,"pointsPerLevel":1.559999942779541,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":68,"ticks":60,"intervalMs":1000}]},{"rank":13,"spellId":502563,"level":70,"description":"Nanobot ReconstructionRank 1317% of base mana Instant castSend Nanobots to an ally, healing them for 7560 over 1 min. Nanobot Reconstruction can only be sent to 1 target at a time and cannot be dispelled.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":17,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502563:effect:0:aura:8","name":"Nanobot Reconstruction (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":706837},{"kind":"hot","coefficient":0.5995294126809813,"basePoints":126,"dieSides":1,"pointsPerLevel":0.3840000033378601,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":80,"ticks":60,"intervalMs":1000}]}]},{"id":"coa-28-bomb-toss-99-801005","classId":"tinker","dbcSpellId":801005,"name":"Bomb Toss","unlockLevel":11,"icon":"/assets/ui/spells/5_bomb_border.png","sigil":"BT","description":"Bomb TossRank 16% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 36+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5653846187469287,"basePoints":36,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801005,"level":11,"description":"Bomb TossRank 16% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 36+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5653846187469287,"basePoints":36,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":502510,"level":18,"description":"Bomb TossRank 26% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 65+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8154545480554755,"basePoints":65,"dieSides":6,"pointsPerLevel":0.7350000143051147,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":24},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":3,"spellId":502511,"level":26,"description":"Bomb TossRank 36% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 108+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.128455274473361,"basePoints":108,"dieSides":8,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":4,"spellId":560600,"level":32,"description":"Bomb TossRank 46% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 150+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3496453846600038,"basePoints":150,"dieSides":8,"pointsPerLevel":1.149999976158142,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":5,"spellId":560601,"level":38,"description":"Bomb TossRank 56% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 192+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5395597586841703,"basePoints":192,"dieSides":15,"pointsPerLevel":1.2050000429153442,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":6,"spellId":560602,"level":46,"description":"Bomb TossRank 66% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 261+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8579234972677596,"basePoints":261,"dieSides":21,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":7,"spellId":560603,"level":52,"description":"Bomb TossRank 76% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 317+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":2.037313432835821,"basePoints":317,"dieSides":30,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]},{"rank":8,"spellId":547209,"level":60,"description":"Bomb TossRank 86% of base mana Instant8 sec cooldownLob a bomb at an enemy, dealing 401+0+RAP*.3+FireP*.5 Fire damage and reducing their armor by 5% for 15 sec, stacking 4 times.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":2.2733333333333334,"basePoints":401,"dieSides":42,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"trigger-spell","spellId":572053},{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-28-snipe-99-800345","classId":"tinker","dbcSpellId":800345,"name":"Snipe","unlockLevel":13,"icon":"/assets/ui/spells/inv_firearm_2h_rifle_pvppandarias1_c_01.png","sigil":"SN","description":"SnipeRank 16% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 18, reducing the target's movement speed by 40% for 5 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800345,"level":13,"description":"SnipeRank 16% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 18, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":502500,"level":17,"description":"SnipeRank 26% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 90, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":502501,"level":25,"description":"SnipeRank 36% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 162, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":502502,"level":33,"description":"SnipeRank 46% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 259, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1}]},{"rank":6,"spellId":502504,"level":49,"description":"SnipeRank 66% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 463, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1}]},{"rank":7,"spellId":502505,"level":57,"description":"SnipeRank 76% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 636, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1}]},{"rank":8,"spellId":502506,"level":65,"description":"SnipeRank 86% of base mana 5 sec castRequires Guns Fires a gunshot, dealing Weapon Damage plus 984, reducing the target's movement speed by 40% for 5 sec.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1}]}]},{"id":"coa-28-build-shield-beacon-100-801799","classId":"tinker","dbcSpellId":801799,"name":"Build: Shield Beacon","unlockLevel":14,"icon":"/assets/ui/spells/inv_essenceofwintergrasp.png","sigil":"BS","description":"Build: Shield BeaconRank 110% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 220+1.0 Points Per Level. Shares a cooldown with other Beacons","target":"hostile","range":{"min":0,"max":20},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"cooldownGroup":"coa:beacons","gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"summon","creatureId":50036,"coefficient":0.08,"durationMs":15000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801799,"level":14,"description":"Build: Shield BeaconRank 110% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 220+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"summon","creatureId":50036,"coefficient":0.08,"durationMs":15000}]},{"rank":2,"spellId":803799,"level":26,"description":"Build: Shield BeaconRank 210% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 370+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"summon","creatureId":51036,"coefficient":0.08,"durationMs":15000}]},{"rank":3,"spellId":803800,"level":36,"description":"Build: Shield BeaconRank 310% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 504+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"summon","creatureId":53036,"coefficient":0.08,"durationMs":15000}]},{"rank":4,"spellId":803801,"level":44,"description":"Build: Shield BeaconRank 410% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 635+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"summon","creatureId":54036,"coefficient":0.08,"durationMs":15000}]},{"rank":5,"spellId":803802,"level":56,"description":"Build: Shield BeaconRank 510% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 760+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"summon","creatureId":55036,"coefficient":0.08,"durationMs":15000}]},{"rank":6,"spellId":803803,"level":64,"description":"Build: Shield BeaconRank 610% of base mana Instant3 Charges, 15 sec recharge Throw down a shield beacon for 15 sec which projects a force field in a 10 yd radius, increasing the Armor of nearby allies by 901+1.0 Points Per Level. Shares a cooldown with other Beacons","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":15000},{"kind":"summon","creatureId":56036,"coefficient":0.08,"durationMs":15000}]}]},{"id":"coa-28-rocket-launcher-99-500235","classId":"tinker","dbcSpellId":500235,"name":"Rocket Launcher","unlockLevel":15,"icon":"/assets/ui/spells/ability_racial_rocketbarrage.png","sigil":"RL","description":"Rocket LauncherRank 18% of base mana 3 sec castFire a powerful rocket at an enemy that deals 126+0+RAP*0.35+FireP*.35 Fire damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":126},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500235,"level":15,"description":"Rocket LauncherRank 18% of base mana 3 sec castFire a powerful rocket at an enemy that deals 126+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":126},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}]},{"rank":2,"spellId":500647,"level":24,"description":"Rocket LauncherRank 28% of base mana 3 sec castFire a powerful rocket at an enemy that deals 172+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":172},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}]},{"rank":3,"spellId":502521,"level":30,"description":"Rocket LauncherRank 38% of base mana 3 sec castFire a powerful rocket at an enemy that deals 234+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":234},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}]},{"rank":4,"spellId":502522,"level":40,"description":"Rocket LauncherRank 48% of base mana 3 sec castFire a powerful rocket at an enemy that deals 328+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":328},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}]},{"rank":5,"spellId":502523,"level":48,"description":"Rocket LauncherRank 58% of base mana 3 sec castFire a powerful rocket at an enemy that deals 440+0+RAP*0.35+FireP*.35 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":440},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}]},{"rank":6,"spellId":573268,"level":54,"description":"Rocket LauncherRank 68% of base mana 3 sec castFire a powerful rocket at an enemy that deals 589+0+RAP*0.35+FireP*.8 Fire damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500220,"withValue":589},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}]}]},{"id":"coa-28-med-pack-100-800347","classId":"tinker","dbcSpellId":800347,"name":"Med Pack","unlockLevel":16,"icon":"/assets/ui/spells/inv_first_aid_70_medicalkit.png","sigil":"MP","description":"Med PackRank 130% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(34+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","target":"friendly","range":{"min":0,"max":10},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800347:effect:0:aura:8","name":"Med Pack (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5169892464914629,"basePoints":34,"dieSides":1,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800347:effect:1:aura:4","name":"Med Pack (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806158},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800347,"level":16,"description":"Med PackRank 130% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(34+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800347:effect:0:aura:8","name":"Med Pack (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5169892464914629,"basePoints":34,"dieSides":1,"pointsPerLevel":0.8799999952316284,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":24,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800347:effect:1:aura:4","name":"Med Pack (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806158},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":502533,"level":26,"description":"Med PackRank 230% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(59+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502533:effect:0:aura:8","name":"Med Pack (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.6020844932494125,"basePoints":59,"dieSides":1,"pointsPerLevel":0.5790920257568359,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":34,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502533:effect:1:aura:4","name":"Med Pack (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806158},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}]},{"rank":3,"spellId":502534,"level":36,"description":"Med PackRank 330% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(99+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502534:effect:0:aura:8","name":"Med Pack (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.8091882101071426,"basePoints":99,"dieSides":2,"pointsPerLevel":0.6751610040664673,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":44,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502534:effect:1:aura:4","name":"Med Pack (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806158},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}]},{"rank":4,"spellId":502535,"level":46,"description":"Med PackRank 430% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(145+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502535:effect:0:aura:8","name":"Med Pack (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.8924666193665051,"basePoints":145,"dieSides":3,"pointsPerLevel":0.3765519857406616,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":54,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502535:effect:1:aura:4","name":"Med Pack (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806158},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}]},{"rank":5,"spellId":502536,"level":56,"description":"Med PackRank 530% of base mana Instant cast1 min cooldownToss a med pack to an ally, healing for (6*1000/1)*(200+SP*.2) over 6 sec and cleanses all bleed, poison and disease effects.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":30,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502536:effect:0:aura:8","name":"Med Pack (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.477730692832123,"basePoints":200,"dieSides":4,"pointsPerLevel":2.022439956665039,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":66,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502536:effect:1:aura:4","name":"Med Pack (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806158},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-28-supercharge-102-801708","classId":"tinker","dbcSpellId":801708,"name":"Supercharge","unlockLevel":27,"icon":"/assets/ui/spells/inv_engineering_intradalaranwormholegenerator.png","sigil":"SU","description":"SuperchargeRank 18% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 27 every 1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801708:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801708:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801708:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.800000011920929,"basePoints":27,"dieSides":2,"pointsPerLevel":0.6933330297470093,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":27,"maxScalingLevel":30,"ticks":15,"intervalMs":1000}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801708,"level":27,"description":"SuperchargeRank 18% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 27 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801708:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801708:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801708:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.800000011920929,"basePoints":27,"dieSides":2,"pointsPerLevel":0.6933330297470093,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":27,"maxScalingLevel":30,"ticks":15,"intervalMs":1000}]},{"rank":2,"spellId":502582,"level":32,"description":"SuperchargeRank 28% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 40%, and healing it for 39 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502582:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.4}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502582:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502582:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5065713436045545,"basePoints":39,"dieSides":1,"pointsPerLevel":1.0133299827575684,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":35,"ticks":15,"intervalMs":1000}]},{"rank":3,"spellId":502583,"level":37,"description":"SuperchargeRank 38% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 40%, and healing it for 44 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502583:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.4}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502583:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502583:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5540178807882162,"basePoints":44,"dieSides":1,"pointsPerLevel":1.1466699838638306,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":40,"ticks":15,"intervalMs":1000}]},{"rank":4,"spellId":502584,"level":42,"description":"SuperchargeRank 48% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 66 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502584:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502584:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502584:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.811695090511389,"basePoints":66,"dieSides":1,"pointsPerLevel":1.7333300113677979,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":45,"ticks":15,"intervalMs":1000}]},{"rank":5,"spellId":502585,"level":47,"description":"SuperchargeRank 58% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 90 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502585:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502585:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502585:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.0835834164773264,"basePoints":90,"dieSides":1,"pointsPerLevel":2.3733301162719727,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":50,"ticks":15,"intervalMs":1000}]},{"rank":6,"spellId":502586,"level":52,"description":"SuperchargeRank 68% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 109 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502586:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502586:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502586:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.2873632136862077,"basePoints":109,"dieSides":1,"pointsPerLevel":2.880000114440918,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":55,"ticks":15,"intervalMs":1000}]},{"rank":7,"spellId":502587,"level":57,"description":"SuperchargeRank 78% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 163 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502587:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502587:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502587:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.8946296749291596,"basePoints":163,"dieSides":1,"pointsPerLevel":4.320000171661377,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":60,"ticks":15,"intervalMs":1000}]},{"rank":8,"spellId":502588,"level":62,"description":"SuperchargeRank 88% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 254 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502588:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502588:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502588:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":2.910361583098705,"basePoints":254,"dieSides":1,"pointsPerLevel":6.746669769287109,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":65,"ticks":15,"intervalMs":1000}]},{"rank":9,"spellId":502589,"level":67,"description":"SuperchargeRank 98% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 391 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502589:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502589:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502589:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":4,"basePoints":391,"dieSides":1,"pointsPerLevel":10.399999618530273,"bonusPowerCoefficient":0,"sourceLevel":67,"maxScalingLevel":70,"ticks":15,"intervalMs":1000}]},{"rank":10,"spellId":502590,"level":72,"description":"SuperchargeRank 108% of base mana Instant2 min cooldownSupercharge your Clockwork Assistant for 15 sec, increasing all damage it deals by 50%, and healing it for 844 every 1 sec.","castMode":"channel","castTimeMs":15000,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502590:effect:0:aura:79","name":"Supercharge (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502590:effect:1:aura:108","name":"Supercharge (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":801415},{"kind":"apply-aura","aura":{"id":"coa:502590:effect:2:aura:8","name":"Supercharge (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":4,"basePoints":844,"dieSides":1,"pointsPerLevel":5.960000038146973,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80,"ticks":15,"intervalMs":1000}]}]},{"id":"coa-28-build-battle-turret-x-13-102-504519","classId":"tinker","dbcSpellId":504519,"name":"Build: Battle Turret X-13","unlockLevel":40,"icon":"/assets/ui/spells/ability_rogue_cannonballbarrage.png","sigil":"BB","description":"Build: Battle Turret X-13Rank 125% of base mana 3 sec cast10 min cooldownCreate the latest in turret technology, the Battle Turret X-13 for 30 sec that emanates an aura that increases the damage of your summons by 10%. Allies can enter the turret giving them access to unique abilities and the turret's health pool for the duration.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"cast","castTimeMs":3000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"summon","creatureId":347770,"coefficient":0.08,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:504519:effect:1:aura:79","name":"Build: Battle Turret X-13 (Aura 79)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":504519,"level":40,"description":"Build: Battle Turret X-13Rank 125% of base mana 3 sec cast10 min cooldownCreate the latest in turret technology, the Battle Turret X-13 for 30 sec that emanates an aura that increases the damage of your summons by 10%. Allies can enter the turret giving them access to unique abilities and the turret's health pool for the duration.","castMode":"cast","castTimeMs":3000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"summon","creatureId":347770,"coefficient":0.08,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:504519:effect:1:aura:79","name":"Build: Battle Turret X-13 (Aura 79)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":504678,"level":50,"description":"Build: Battle Turret X-13Rank 225% of base mana 3 sec cast10 min cooldownCreate the latest in turret technology, the Battle Turret X-13 for 30 sec that emanates an aura that increases the damage of your summons by 10%. Allies can enter the turret giving them access to unique abilities and the turret's health pool for the duration.","castMode":"cast","castTimeMs":3000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"summon","creatureId":457771,"coefficient":0.08,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:504678:effect:1:aura:79","name":"Build: Battle Turret X-13 (Aura 79)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":504680,"level":60,"description":"Build: Battle Turret X-13Rank 325% of base mana 3 sec cast10 min cooldownCreate the latest in turret technology, the Battle Turret X-13 for 30 sec that emanates an aura that increases the damage of your summons by 10%. Allies can enter the turret giving them access to unique abilities and the turret's health pool for the duration.","castMode":"cast","castTimeMs":3000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"summon","creatureId":457772,"coefficient":0.08,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:504680:effect:1:aura:79","name":"Build: Battle Turret X-13 (Aura 79)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-28-sticky-bomb-102-502564","classId":"tinker","dbcSpellId":502564,"name":"Sticky Bomb","unlockLevel":60,"icon":"/assets/ui/spells/inv_misc_blackironbomb.png","sigil":"SB","description":"Sticky BombRank 88% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 571+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:502564:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502564:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:502564:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":8,"spellId":502564,"level":60,"description":"Sticky BombRank 88% of base mana Instant cast12 sec cooldown Throw a bomb that sticks to the enemy for 5 sec. At the end of the duration the bomb will explode, dealing 571+0+FireP*.407381+AP*0.213 Fire damage to the target and 4 enemies within 8 yds of the target. Can target corpses.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":704263,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:502564:effect:1:aura:227","name":"Sticky Bomb (Aura 227)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502564:proc:1:801009","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801009}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":801009},{"kind":"apply-aura","aura":{"id":"coa:502564:effect:2:aura:308","name":"Sticky Bomb (Aura 308)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]}]}],"venomancer":[{"id":"coa-29-acceleration-103-705960","classId":"venomancer","dbcSpellId":705960,"name":"Acceleration","unlockLevel":1,"icon":"/assets/ui/spells/_meat_rotten.png","sigil":"AC","description":"AccelerationRank 2Increases the tick rate of Wilt and Shadra's Vigil by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705960:effect:0:aura:108","name":"Acceleration (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705960:effect:1:aura:108","name":"Acceleration (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705960,"level":1,"description":"AccelerationRank 2Increases the tick rate of Wilt and Shadra's Vigil by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705960:effect:0:aura:108","name":"Acceleration (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705960:effect:1:aura:108","name":"Acceleration (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0}]}]},{"id":"coa-tree-6086","classId":"venomancer","dbcSpellId":805775,"name":"Adrenal Venom","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a26.png","sigil":"AV","description":"Activate Adrenal Venom for 120 minutes, giving your casts a 25% chance to increase your haste by 6% for 6 seconds, stacking 3 times. You can have a maximum of 2 unique Venoms active at a time.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805775:effect:0:aura:42","name":"Adrenal Venom (Aura 42)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:805775:proc:0:805894","triggers":["cast"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805894}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805894},{"kind":"apply-aura","aura":{"id":"coa:805775:effect:1:aura:107","name":"Adrenal Venom (Aura 107)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805775,"level":1,"description":"Activate Adrenal Venom for 120 minutes, giving your casts a 25% chance to increase your haste by 6% for 6 seconds, stacking 3 times. You can have a maximum of 2 unique Venoms active at a time.","castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805775:effect:0:aura:42","name":"Adrenal Venom (Aura 42)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:805775:proc:0:805894","triggers":["cast"],"chance":0.25,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805894}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805894},{"kind":"apply-aura","aura":{"id":"coa:805775:effect:1:aura:107","name":"Adrenal Venom (Aura 107)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}]}],"talentEntryId":6086},{"id":"coa-tree-29574","classId":"venomancer","dbcSpellId":800878,"name":"Ambush Predator","unlockLevel":1,"icon":"/assets/ui/spells/5_assassinskill12_border.png","sigil":"AP","description":"Casting Burrow will now apply Skulk to you if you are in Spider Form. While Skulk is active every 1 sec you reduce the cooldown of Burrow by -1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800878:effect:0:aura:42","name":"Ambush Predator (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800878:proc:0:800843","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800843}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800843},{"kind":"apply-aura","aura":{"id":"coa:800878:effect:1:aura:23","name":"Ambush Predator (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800878:proc:1:802825","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802825}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":802825}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800878,"level":1,"description":"Casting Burrow will now apply Skulk to you if you are in Spider Form. While Skulk is active every 1 sec you reduce the cooldown of Burrow by -1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800878:effect:0:aura:42","name":"Ambush Predator (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800878:proc:0:800843","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800843}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":800843},{"kind":"apply-aura","aura":{"id":"coa:800878:effect:1:aura:23","name":"Ambush Predator (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:800878:proc:1:802825","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802825}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":802825}]}],"talentEntryId":29574},{"id":"coa-29-arachnified-103-705958","classId":"venomancer","dbcSpellId":705958,"name":"Arachnified","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_pet_spider.png","sigil":"AR","description":"ArachnifiedRank 2Increases the damage of Fang of Shadra by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705958:effect:0:aura:108","name":"Arachnified (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705958,"level":1,"description":"ArachnifiedRank 2Increases the damage of Fang of Shadra by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705958:effect:0:aura:108","name":"Arachnified (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":3,"triggerSpellId":0}]}]},{"id":"coa-tree-6090","classId":"venomancer","dbcSpellId":503856,"name":"Avatar of Shadra","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_monsterspidercarapace_01.png","sigil":"AO","description":"Damage and healing done now has a 10% chance to apply Curse of Shadra for 10 seconds. Dealing damage or healing with Serpent's Fang, Claw Strike, or Venom Fang on an enemy that is cursed will deal damage or heal them for an additional 25% of the value and heal you for 90.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503856:effect:0:aura:42","name":"Avatar of Shadra (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:503856:proc:0:504377","triggers":["heal"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504377}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504377}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":503856,"level":1,"description":"Damage and healing done now has a 10% chance to apply Curse of Shadra for 10 seconds. Dealing damage or healing with Serpent's Fang, Claw Strike, or Venom Fang on an enemy that is cursed will deal damage or heal them for an additional 25% of the value and heal you for 90.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503856:effect:0:aura:42","name":"Avatar of Shadra (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","procs":[{"id":"coa:503856:proc:0:504377","triggers":["heal"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504377}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504377}]}],"talentEntryId":6090},{"id":"coa-29-bountiful-gifts-103-706009","classId":"venomancer","dbcSpellId":706009,"name":"Bountiful Gifts","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureseye_border.png","sigil":"BG","description":"Bountiful GiftsRank 1Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706009:effect:0:aura:108","name":"Bountiful Gifts (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706009:effect:1:aura:108","name":"Bountiful Gifts (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706009,"level":1,"description":"Bountiful GiftsRank 1Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706009:effect:0:aura:108","name":"Bountiful Gifts (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706009:effect:1:aura:108","name":"Bountiful Gifts (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]},{"rank":2,"spellId":706010,"level":1,"description":"Bountiful GiftsRank 2Increases the healing of Shadra's Prayer, Green Salve, and Alkahest by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706010:effect:0:aura:108","name":"Bountiful Gifts (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706010:effect:1:aura:108","name":"Bountiful Gifts (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}]},{"id":"coa-tree-4053","classId":"venomancer","dbcSpellId":92143,"name":"Brood Marks","unlockLevel":1,"icon":"/assets/ui/spells/_d3corpsespiders.png","sigil":"BM","description":"Level 10 Passive Your Venom Fang now applies a Brood Mark for 15 seconds, stacking 5 times. Some abilities will consume them for an additional effect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92143:effect:0:aura:42","name":"Brood Marks (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:92143:proc:0:804972","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804972}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804972},{"kind":"apply-aura","aura":{"id":"coa:92143:effect:1:aura:333","name":"Brood Marks (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92143,"level":1,"description":"Level 10 Passive Your Venom Fang now applies a Brood Mark for 15 seconds, stacking 5 times. Some abilities will consume them for an additional effect.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92143:effect:0:aura:42","name":"Brood Marks (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:92143:proc:0:804972","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804972}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804972},{"kind":"apply-aura","aura":{"id":"coa:92143:effect:1:aura:333","name":"Brood Marks (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4053},{"id":"coa-29-bugweaving-none-503963","classId":"venomancer","dbcSpellId":503963,"name":"Bugweaving","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_head_nerubian_01.png","sigil":"BU","description":"BugweavingRank 2Damage dealt with Fortitude and Spider Form melee abilities has a 20% chance to apply your Fang Venom effects.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503963:effect:0:aura:42","name":"Bugweaving (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503963:proc:0:805774","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805774}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805774}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":503963,"level":1,"description":"BugweavingRank 2Damage dealt with Fortitude and Spider Form melee abilities has a 20% chance to apply your Fang Venom effects.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503963:effect:0:aura:42","name":"Bugweaving (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:503963:proc:0:805774","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805774}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805774}]}]},{"id":"coa-29-charm-of-warding-105-705968","classId":"venomancer","dbcSpellId":705968,"name":"Charm of Warding","unlockLevel":1,"icon":"/assets/ui/spells/inv_trinket_naxxramas01.png","sigil":"CO","description":"Charm of WardingRank 2Reduces damage taken by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705968:effect:0:aura:87","name":"Charm of Warding (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705968:effect:1:aura:4","name":"Charm of Warding (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705968,"level":1,"description":"Charm of WardingRank 2Reduces damage taken by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705968:effect:0:aura:87","name":"Charm of Warding (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705968:effect:1:aura:4","name":"Charm of Warding (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29576","classId":"venomancer","dbcSpellId":705996,"name":"Empowering Pheromones","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_deadenednerves.png","sigil":"EP","description":"Increases the effectiveness of your Pheromones by 20% and their duration by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705996:effect:0:aura:108","name":"Empowering Pheromones (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705996:effect:1:aura:108","name":"Empowering Pheromones (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705996,"level":1,"description":"Increases the effectiveness of your Pheromones by 20% and their duration by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705996:effect:0:aura:108","name":"Empowering Pheromones (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705996:effect:1:aura:108","name":"Empowering Pheromones (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29576},{"id":"coa-29-enduring-exoskeleton-105-706004","classId":"venomancer","dbcSpellId":706004,"name":"Enduring Exoskeleton","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_skinofearth.png","sigil":"EE","description":"Enduring ExoskeletonRank 1Increases Armor contribution from items by 10% and grants direct damage dealt and taken a 15% chance to generate 2 Rage. Can only occur once per sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":2},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706004:effect:0:aura:101","name":"Enduring Exoskeleton (Aura 101)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706004:effect:1:aura:42","name":"Enduring Exoskeleton (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706004:proc:1:503953","triggers":["hit"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503953}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503953}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":706004,"level":1,"description":"Enduring ExoskeletonRank 1Increases Armor contribution from items by 10% and grants direct damage dealt and taken a 15% chance to generate 2 Rage. Can only occur once per sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":2},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706004:effect:0:aura:101","name":"Enduring Exoskeleton (Aura 101)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706004:effect:1:aura:42","name":"Enduring Exoskeleton (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706004:proc:1:503953","triggers":["hit"],"chance":0.15,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":503953}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":503953}]}]},{"id":"coa-tree-29607","classId":"venomancer","dbcSpellId":300855,"name":"Envenomed Weapons","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_creepingvenom.png","sigil":"EW","description":"Envenoms the weapons of all nearby allies for 30 minutes, giving them a 5% chance to launch a jet of poison at their target whenever they deal damage, dealing 8 + 10% nature SP + 10% AP Nature damage.","target":"hostile","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300855:effect:0:aura:42","name":"Envenomed Weapons (Aura 42)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:300855:proc:0:803178","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803178}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803178}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":300855,"level":1,"description":"Envenoms the weapons of all nearby allies for 30 minutes, giving them a 5% chance to launch a jet of poison at their target whenever they deal damage, dealing 8 + 10% nature SP + 10% AP Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300855:effect:0:aura:42","name":"Envenomed Weapons (Aura 42)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:300855:proc:0:803178","triggers":["hit"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803178}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":803178}]}],"talentEntryId":29607},{"id":"coa-tree-4054","classId":"venomancer","dbcSpellId":92144,"name":"Exposed Flesh","unlockLevel":1,"icon":"/assets/ui/spells/inv_nerubianbeetlepet_green.png","sigil":"EF","description":"Level 10 Passive Hostile attacks against you now have a 50% chance to grant a stack of Exposed Flesh. Exposed FleshGenerates 10 Rage and increases your Physical Damage taken 3% for 20 seconds, stacking 10 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92144:effect:0:aura:4","name":"Exposed Flesh (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92144,"level":1,"description":"Level 10 Passive Hostile attacks against you now have a 50% chance to grant a stack of Exposed Flesh. Exposed FleshGenerates 10 Rage and increases your Physical Damage taken 3% for 20 seconds, stacking 10 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92144:effect:0:aura:4","name":"Exposed Flesh (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4054},{"id":"coa-tree-6098","classId":"venomancer","dbcSpellId":800894,"name":"Fury of Anub'Rekhan","unlockLevel":1,"icon":"/assets/ui/spells/inv_mechanicalspiderpet.png","sigil":"FO","description":"Increases your maximum mana, Energy, and Rage by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800894:effect:0:aura:132","name":"Fury of Anub'Rekhan (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800894:effect:1:aura:132","name":"Fury of Anub'Rekhan (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800894:effect:2:aura:132","name":"Fury of Anub'Rekhan (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800894,"level":1,"description":"Increases your maximum mana, Energy, and Rage by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800894:effect:0:aura:132","name":"Fury of Anub'Rekhan (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800894:effect:1:aura:132","name":"Fury of Anub'Rekhan (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800894:effect:2:aura:132","name":"Fury of Anub'Rekhan (Aura 132)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"maximum","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":132,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6098},{"id":"coa-29-genesis-103-705963","classId":"venomancer","dbcSpellId":705963,"name":"Genesis","unlockLevel":1,"icon":"/assets/ui/spells/uico_venom_spell_08_border.png","sigil":"GE","description":"GenesisRank 2Increases haste by 6% and healing done by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705963:effect:0:aura:192","name":"Genesis (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705963:effect:1:aura:216","name":"Genesis (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705963:effect:2:aura:136","name":"Genesis (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":126,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705963,"level":1,"description":"GenesisRank 2Increases haste by 6% and healing done by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705963:effect:0:aura:192","name":"Genesis (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705963:effect:1:aura:216","name":"Genesis (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705963:effect:2:aura:136","name":"Genesis (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":126,"triggerSpellId":0}]}]},{"id":"coa-tree-6117","classId":"venomancer","dbcSpellId":705962,"name":"Genesis","unlockLevel":1,"icon":"/assets/ui/spells/uico_venom_spell_08_border.png","sigil":"GE","description":"Increases your haste by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705962:effect:0:aura:192","name":"Genesis (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705962:effect:1:aura:216","name":"Genesis (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705962,"level":1,"description":"Increases your haste by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705962:effect:0:aura:192","name":"Genesis (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705962:effect:1:aura:216","name":"Genesis (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6117},{"id":"coa-tree-7722","classId":"venomancer","dbcSpellId":800902,"name":"Green Salve","unlockLevel":1,"icon":"/assets/ui/spells/inv_firstaid_healingsalve.png","sigil":"GS","description":"Green SalveRank 115% of base mana Instant cast10 sec cooldownRapidly heal an ally for 24 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47+Heal*0.244572.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800902:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.7999999523162842,"basePoints":4,"dieSides":1,"pointsPerLevel":0.05999999865889549,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":14,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800902:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800902:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800902,"level":1,"description":"Green SalveRank 115% of base mana Instant cast10 sec cooldownRapidly heal an ally for 24 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800902:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.7999999523162842,"basePoints":4,"dieSides":1,"pointsPerLevel":0.05999999865889549,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":14,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800902:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800902:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]}],"talentEntryId":7722},{"id":"coa-29-improved-facemelter-104-706039","classId":"venomancer","dbcSpellId":706039,"name":"Improved Facemelter","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_demoniccirclesummon.png","sigil":"IF","description":"Improved FacemelterRank 2Reduces the cooldown of Facemelter by 30 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706039:effect:0:aura:107","name":"Improved Facemelter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706039:effect:1:aura:4","name":"Improved Facemelter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706039,"level":1,"description":"Improved FacemelterRank 2Reduces the cooldown of Facemelter by 30 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706039:effect:0:aura:107","name":"Improved Facemelter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706039:effect:1:aura:4","name":"Improved Facemelter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-29-improved-harden-105-705971","classId":"venomancer","dbcSpellId":705971,"name":"Improved Harden","unlockLevel":1,"icon":"/assets/ui/spells/inv_shield_pvppandarias3_c_01.png","sigil":"IH","description":"Improved HardenRank 1Reduces the cooldown of Harden by 20 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705971:effect:0:aura:107","name":"Improved Harden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-200}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705971:effect:1:aura:4","name":"Improved Harden (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705971,"level":1,"description":"Improved HardenRank 1Reduces the cooldown of Harden by 20 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705971:effect:0:aura:107","name":"Improved Harden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-200}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705971:effect:1:aura:4","name":"Improved Harden (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705972,"level":1,"description":"Improved HardenRank 2Reduces the cooldown of Harden by 40 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705972:effect:0:aura:107","name":"Improved Harden (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-400}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705972:effect:1:aura:4","name":"Improved Harden (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-29-improved-sting-105-705979","classId":"venomancer","dbcSpellId":705979,"name":"Improved Sting","unlockLevel":1,"icon":"/assets/ui/spells/hunter_pvp_vipersting.png","sigil":"IS","description":"Improved StingRank 2Reduces the cooldown of Sting by 4 sec and increases its damage by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705979:effect:0:aura:107","name":"Improved Sting (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705979:effect:1:aura:108","name":"Improved Sting (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705979,"level":1,"description":"Improved StingRank 2Reduces the cooldown of Sting by 4 sec and increases its damage by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705979:effect:0:aura:107","name":"Improved Sting (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705979:effect:1:aura:108","name":"Improved Sting (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-29-improved-venoxis-fang-103-706013","classId":"venomancer","dbcSpellId":706013,"name":"Improved Venoxis Fang","unlockLevel":1,"icon":"/assets/ui/spells/spell_hunter_exoticmunitions_poisoned.png","sigil":"IV","description":"Improved Venoxis FangRank 2Reduces the cast time of Venoxis Fang by 0.5 sec and its cost by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706013:effect:0:aura:107","name":"Improved Venoxis Fang (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706013:effect:1:aura:108","name":"Improved Venoxis Fang (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706013,"level":1,"description":"Improved Venoxis FangRank 2Reduces the cast time of Venoxis Fang by 0.5 sec and its cost by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706013:effect:0:aura:107","name":"Improved Venoxis Fang (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706013:effect:1:aura:108","name":"Improved Venoxis Fang (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-tree-9590","classId":"venomancer","dbcSpellId":804963,"name":"Lifeblood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_volatilelife_green.png","sigil":"LI","description":"Embrace Shadra's lifeblood, reducing your damage taken and pushback from casting spells by -20% and causing all damage taken to cast Rejuvenating Venom. Lasts for 10 seconds.Rejuvenating Venom (Heal)Heal a random ally within 30 yds of your target for 67 + 9.2% healing over 6 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804963:effect:0:aura:42","name":"Lifeblood (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:804963:proc:0:630869","triggers":["cast","heal","damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":630869}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":630869},{"kind":"apply-aura","aura":{"id":"coa:804963:effect:1:aura:87","name":"Lifeblood (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804963:effect:2:aura:149","name":"Lifeblood (Aura 149)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"],"dispelCategory":"poison"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804963,"level":1,"description":"Embrace Shadra's lifeblood, reducing your damage taken and pushback from casting spells by -20% and causing all damage taken to cast Rejuvenating Venom. Lasts for 10 seconds.Rejuvenating Venom (Heal)Heal a random ally within 30 yds of your target for 67 + 9.2% healing over 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804963:effect:0:aura:42","name":"Lifeblood (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:804963:proc:0:630869","triggers":["cast","heal","damage-taken"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":630869}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":630869},{"kind":"apply-aura","aura":{"id":"coa:804963:effect:1:aura:87","name":"Lifeblood (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804963:effect:2:aura:149","name":"Lifeblood (Aura 149)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["pushback-resistance"],"dispelCategory":"poison"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":149,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":9590},{"id":"coa-tree-7247","classId":"venomancer","dbcSpellId":504326,"name":"Master of Venoms","unlockLevel":1,"icon":"/assets/ui/spells/rogue_venomzest.png","sigil":"MO","description":"Increases the duration of your Venoms by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504326:effect:0:aura:108","name":"7Master of Venoms (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504326,"level":1,"description":"Increases the duration of your Venoms by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504326:effect:0:aura:108","name":"7Master of Venoms (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":7247},{"id":"venomancer-myotoxin","classId":"venomancer","dbcSpellId":572304,"name":"Myotoxin","unlockLevel":1,"icon":"/assets/ui/spells/uico_venom_spell_04_border.png","sigil":"MY","description":"Inject an enemy with myotoxins, removing $s1 enrage effect, repeating every $t2 sec for $d.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["enrage"],"maxCount":1},{"kind":"apply-aura","aura":{"id":"coa:572304:effect:1:aura:23","name":"Myotoxin (Aura 23)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","procs":[{"id":"coa:572304:proc:1:572407","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572407}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572407}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":572304,"level":1,"description":"Inject an enemy with myotoxins, removing $s1 enrage effect, repeating every $t2 sec for $d.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["enrage"],"maxCount":1},{"kind":"apply-aura","aura":{"id":"coa:572304:effect:1:aura:23","name":"Myotoxin (Aura 23)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","procs":[{"id":"coa:572304:proc:1:572407","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572407}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572407}]}]},{"id":"coa-tree-6756","classId":"venomancer","dbcSpellId":704235,"name":"Pinch","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_monsterclaw_10.png","sigil":"PI","description":"Disarm an enemy's melee weapons with your claws for 5 seconds and apply Weakening Venom to them for 10 sec.Weakening Venom (Proc)Deals 59 + 12.5% SP Shadow Damage and reduces attack power by 23.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704235:effect:0:aura:67","name":"Pinch (Aura 67)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":67,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704235:effect:1:aura:254","name":"Pinch (Aura 254)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":254,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":706000},{"kind":"apply-aura","aura":{"id":"coa:706000:effect:0:aura:344","name":"Weakening Venom (Aura 344)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.3666666701987938,"basePoints":18,"dieSides":4,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":12}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":704235,"level":1,"description":"Disarm an enemy's melee weapons with your claws for 5 seconds and apply Weakening Venom to them for 10 sec.Weakening Venom (Proc)Deals 59 + 12.5% SP Shadow Damage and reduces attack power by 23.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"rage","amount":15},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704235:effect:0:aura:67","name":"Pinch (Aura 67)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":67,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:704235:effect:1:aura:254","name":"Pinch (Aura 254)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":254,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":706000},{"kind":"apply-aura","aura":{"id":"coa:706000:effect:0:aura:344","name":"Weakening Venom (Aura 344)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.3666666701987938,"basePoints":18,"dieSides":4,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":12}]}],"talentEntryId":6756},{"id":"coa-tree-30482","classId":"venomancer","dbcSpellId":707563,"name":"Playing With Poison","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_nullifydisease.png","sigil":"PW","description":"Increases your Nature damage by 5% and healing done by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707563:effect:0:aura:79","name":"Playing With Poison (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"dealt","school":"nature","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707563:effect:1:aura:118","name":"Playing With Poison (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707563,"level":1,"description":"Increases your Nature damage by 5% and healing done by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707563:effect:0:aura:79","name":"Playing With Poison (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"dealt","school":"nature","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707563:effect:1:aura:118","name":"Playing With Poison (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":30482},{"id":"coa-29-protogenesis-105-705974","classId":"venomancer","dbcSpellId":705974,"name":"Protogenesis","unlockLevel":1,"icon":"/assets/ui/spells/achievement_guild_doctorisin.png","sigil":"PR","description":"ProtogenesisRank 2Increases healing recieved by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705974:effect:0:aura:118","name":"Protogenesis (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705974:effect:1:aura:4","name":"Protogenesis (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705974,"level":1,"description":"ProtogenesisRank 2Increases healing recieved by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:705974:effect:0:aura:118","name":"Protogenesis (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705974:effect:1:aura:4","name":"Protogenesis (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-29588","classId":"venomancer","dbcSpellId":705966,"name":"Reinforced Shell","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_leather_shellfragment.png","sigil":"RS","description":"Increases your total armor by 20%. In addition, while Spider or Beetle form is active your attacks are unable to be parried or dodged.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705966:effect:0:aura:101","name":"Reinforced Shell (Aura 101)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705966,"level":1,"description":"Increases your total armor by 20%. In addition, while Spider or Beetle form is active your attacks are unable to be parried or dodged.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705966:effect:0:aura:101","name":"Reinforced Shell (Aura 101)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29588},{"id":"coa-tree-4052","classId":"venomancer","dbcSpellId":92142,"name":"Rot Lich","unlockLevel":1,"icon":"/assets/ui/spells/_instableaffliction_green.png","sigil":"RL","description":"Level 10 Passive Direct damage dealt now has a 20% chance to reset the cooldown of Serpent's Fang and grant you Rot Lich and allies Replenishment.Rot Lich (Proc)Your next Serpent's Fang within 15 seconds is free of cost.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92142:effect:0:aura:42","name":"Rot Lich (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92142:proc:0:706032","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706032}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706032},{"kind":"apply-aura","aura":{"id":"coa:92142:effect:1:aura:333","name":"Rot Lich (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92142,"level":1,"description":"Level 10 Passive Direct damage dealt now has a 20% chance to reset the cooldown of Serpent's Fang and grant you Rot Lich and allies Replenishment.Rot Lich (Proc)Your next Serpent's Fang within 15 seconds is free of cost.ReplenishmentReplenishes 5% of maximum mana per 5 sec for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92142:effect:0:aura:42","name":"Rot Lich (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92142:proc:0:706032","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706032}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706032},{"kind":"apply-aura","aura":{"id":"coa:92142:effect:1:aura:333","name":"Rot Lich (Aura 333)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":333,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4052},{"id":"coa-tree-9951","classId":"venomancer","dbcSpellId":680800,"name":"Shadra's Vigil","unlockLevel":1,"icon":"/assets/ui/spells/nhi_naturestaff_border.png","sigil":"SS","description":"Level 10 Passive Healing done by Serpent's Fang now applies Shadra's Vigil to allies.Shadra's VigilThe next 5 instances of periodic healing by you on this target will heal them for an additional 10% of the value.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680800:effect:0:aura:107","name":"Shadra's Vigil (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-120}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680800:effect:1:aura:42","name":"Shadra's Vigil (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680800:proc:1:505203","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505203}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":505203}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680800,"level":1,"description":"Level 10 Passive Healing done by Serpent's Fang now applies Shadra's Vigil to allies.Shadra's VigilThe next 5 instances of periodic healing by you on this target will heal them for an additional 10% of the value.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680800:effect:0:aura:107","name":"Shadra's Vigil (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-120}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680800:effect:1:aura:42","name":"Shadra's Vigil (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680800:proc:1:505203","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505203}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":505203}]}],"talentEntryId":9951},{"id":"coa-29-skin-shedder-103-705950","classId":"venomancer","dbcSpellId":705950,"name":"Skin Shedder","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_moonglow.png","sigil":"SS","description":"Skin ShedderRank 2Reduces the cost of shapeshifting spells by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705950:effect:0:aura:72","name":"Skin Shedder (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.08}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705950:effect:1:aura:4","name":"Skin Shedder (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705950:effect:2:aura:108","name":"Skin Shedder (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705950,"level":1,"description":"Skin ShedderRank 2Reduces the cost of shapeshifting spells by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705950:effect:0:aura:72","name":"Skin Shedder (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.08}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705950:effect:1:aura:4","name":"Skin Shedder (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705950:effect:2:aura:108","name":"Skin Shedder (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-tree-7252","classId":"venomancer","dbcSpellId":800887,"name":"Spindlebind","unlockLevel":1,"icon":"/assets/ui/spells/nhi_poisonweb_border.png","sigil":"SP","description":"SpindlebindRank 130 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 61+0+NatP*0.4 Nature damage.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":61,"dieSides":10,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":16,"maxScalingLevel":22},{"kind":"apply-aura","aura":{"id":"coa:800887:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800887,"level":1,"description":"SpindlebindRank 130 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 61+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":61,"dieSides":10,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":16,"maxScalingLevel":22},{"kind":"apply-aura","aura":{"id":"coa:800887:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":7252},{"id":"coa-tree-6331","classId":"venomancer","dbcSpellId":706035,"name":"Surprise Strategy","unlockLevel":1,"icon":"/assets/ui/spells/ability_fixated_state_green.png","sigil":"SS","description":"Critical strikes now have a 15% chance to increase the healing of your next Shadra's Prayer by 20% and make it instant cast for 10 seconds. Can only occur once per 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706035:effect:0:aura:42","name":"Surprise Strategy (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706035:proc:0:504211","triggers":["crit","cast","heal"],"chance":0.15,"internalCooldownMs":5000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504211}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504211},{"kind":"apply-aura","aura":{"id":"coa:706035:effect:1:aura:108","name":"Surprise Strategy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706035,"level":1,"description":"Critical strikes now have a 15% chance to increase the healing of your next Shadra's Prayer by 20% and make it instant cast for 10 seconds. Can only occur once per 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706035:effect:0:aura:42","name":"Surprise Strategy (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706035:proc:0:504211","triggers":["crit","cast","heal"],"chance":0.15,"internalCooldownMs":5000,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504211}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504211},{"kind":"apply-aura","aura":{"id":"coa:706035:effect:1:aura:108","name":"Surprise Strategy (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}]}],"talentEntryId":6331},{"id":"coa-29-toxflinger-105-803203","classId":"venomancer","dbcSpellId":803203,"name":"Toxflinger","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_elementalshields.png","sigil":"TO","description":"ToxflingerRank 1Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 12 to 14 Nature Damage to affected enemies.","target":"hostile","range":{"min":0,"max":40},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":12},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803203,"level":1,"description":"ToxflingerRank 1Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 12 to 14 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":12},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":2,"spellId":503182,"level":9,"description":"ToxflingerRank 2Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 23 to 26 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":23},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":3,"spellId":503183,"level":17,"description":"ToxflingerRank 3Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 40 to 45 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":40},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":4,"spellId":503184,"level":25,"description":"ToxflingerRank 4Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 67 to 75 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":67},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":5,"spellId":503185,"level":33,"description":"ToxflingerRank 5Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 106 to 118 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":106},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":6,"spellId":503186,"level":41,"description":"ToxflingerRank 6Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 162 to 179 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":162},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":7,"spellId":503187,"level":49,"description":"ToxflingerRank 7Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 241 to 264 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":241},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":8,"spellId":503188,"level":57,"description":"ToxflingerRank 8Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 351 to 381 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":351},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":9,"spellId":503189,"level":65,"description":"ToxflingerRank 9Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 503 to 541 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":503},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]},{"rank":10,"spellId":503190,"level":73,"description":"ToxflingerRank 10Instant cast6 sec cooldownLaunches bolts of poison at all enemies within $a1yd that are standing in the pool created by Toxic Sludge, dealing 711 to 758 Nature Damage to affected enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":803204,"withValue":711},{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}]}]},{"id":"coa-tree-6553","classId":"venomancer","dbcSpellId":504347,"name":"Toxic Stride","unlockLevel":1,"icon":"/assets/ui/spells/nhi_naturepoisonedstep_border.png","sigil":"TS","description":"Embrace Shadra's blessing, granting you immunity to all silence and interrupt effects and allowing you to cast your spells while moving for 15 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":504346},{"kind":"apply-aura","aura":{"id":"coa:504346:effect:0:aura:77","name":"Toxic Stride (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":9,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504346:effect:1:aura:313","name":"Toxic Stride (Aura 313)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":313,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504346:effect:2:aura:77","name":"Toxic Stride (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":26,"triggerSpellId":0},{"kind":"dispel-mechanic","mechanic":11,"maxCount":20}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504347,"level":1,"description":"Embrace Shadra's blessing, granting you immunity to all silence and interrupt effects and allowing you to cast your spells while moving for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":504346},{"kind":"apply-aura","aura":{"id":"coa:504346:effect:0:aura:77","name":"Toxic Stride (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":9,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504346:effect:1:aura:313","name":"Toxic Stride (Aura 313)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":313,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504346:effect:2:aura:77","name":"Toxic Stride (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":26,"triggerSpellId":0},{"kind":"dispel-mechanic","mechanic":11,"maxCount":20}]}],"talentEntryId":6553},{"id":"coa-tree-6118","classId":"venomancer","dbcSpellId":504799,"name":"Tranquil Essence","unlockLevel":1,"icon":"/assets/ui/spells/ui_notoriety_thevizier.png","sigil":"TE","description":"Reduces the threat generated by your healing spells by -10% and increases your periodic healing by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504799:effect:0:aura:108","name":"Tranquil Essence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504799:effect:1:aura:108","name":"Tranquil Essence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504799,"level":1,"description":"Reduces the threat generated by your healing spells by -10% and increases your periodic healing by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504799:effect:0:aura:108","name":"Tranquil Essence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504799:effect:1:aura:108","name":"Tranquil Essence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]},{"rank":2,"spellId":505204,"level":1,"description":"Reduces the threat generated by your healing spells by -20% and increases your periodic healing by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:505204:effect:0:aura:108","name":"Tranquil Essence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:505204:effect:1:aura:108","name":"Tranquil Essence (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}],"talentEntryId":6118},{"id":"venomancer-venom-bolt","classId":"venomancer","dbcSpellId":800869,"name":"Venom Bolt","unlockLevel":1,"icon":"/assets/ui/spells/_venomorb_green.png","sigil":"VB","description":"Venom BoltRank 115% of base mana 2 sec castSpew poison on an enemy, dealing 19+0+NatP*.814 Nature damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":19,"dieSides":7,"pointsPerLevel":1.5479999780654907,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":1,"maxScalingLevel":6},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800869,"level":1,"description":"Venom BoltRank 115% of base mana 2 sec castSpew poison on an enemy, dealing 19+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":19,"dieSides":7,"pointsPerLevel":1.5479999780654907,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":1,"maxScalingLevel":6},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":502870,"level":8,"description":"Venom BoltRank 215% of base mana 2.3 sec castSpew poison on an enemy, dealing 42+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":2300,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8078260836393937,"basePoints":42,"dieSides":8,"pointsPerLevel":1.2799999713897705,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":13},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502871,"level":14,"description":"Venom BoltRank 315% of base mana 2.5 sec castSpew poison on an enemy, dealing 71+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0770114865796319,"basePoints":71,"dieSides":10,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":19},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":502872,"level":20,"description":"Venom BoltRank 415% of base mana 2.5 sec castSpew poison on an enemy, dealing 90+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.6579047702607654,"basePoints":90,"dieSides":13,"pointsPerLevel":3.9040000438690186,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":25},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":502873,"level":26,"description":"Venom BoltRank 515% of base mana 3 sec castSpew poison on an enemy, dealing 159+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.9830894470214844,"basePoints":159,"dieSides":19,"pointsPerLevel":2.9200000762939453,"bonusPowerCoefficient":0,"sourceLevel":26,"maxScalingLevel":31},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":502874,"level":32,"description":"Venom BoltRank 615% of base mana 3 sec castSpew poison on an enemy, dealing 204+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3781560262044272,"basePoints":204,"dieSides":23,"pointsPerLevel":3.759999990463257,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":502875,"level":38,"description":"Venom BoltRank 715% of base mana 3 sec castSpew poison on an enemy, dealing 263+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.9036478306512414,"basePoints":263,"dieSides":29,"pointsPerLevel":4.860000133514404,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":502876,"level":44,"description":"Venom BoltRank 815% of base mana 3 sec castSpew poison on an enemy, dealing 324+0+NatP*.814 Nature damage.","castMode":"cast","castTimeMs":3000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":3.4131073493742,"basePoints":324,"dieSides":35,"pointsPerLevel":5.980000019073486,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":49},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-tree-7231","classId":"venomancer","dbcSpellId":680794,"name":"Venomizer","unlockLevel":1,"icon":"/assets/ui/spells/uico_venom_spell_06_border.png","sigil":"VE","description":"Increases the proc chance of all Venoms by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680794:effect:0:aura:107","name":"Venomizer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680794,"level":1,"description":"Increases the proc chance of all Venoms by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680794:effect:0:aura:107","name":"Venomizer (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}],"talentEntryId":7231},{"id":"coa-tree-6095","classId":"venomancer","dbcSpellId":681052,"name":"Versatile and Deadly","unlockLevel":1,"icon":"/assets/ui/spells/inv_fishing_f_seascorpion3.png","sigil":"VA","description":"Reduce all damage taken while in Beetle Form by -3% and increases your movement speed while in Spider Form by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681052:effect:0:aura:107","name":"Versatile and Deadly (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681052:effect:1:aura:107","name":"Versatile and Deadly (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681052,"level":1,"description":"Reduce all damage taken while in Beetle Form by -3% and increases your movement speed while in Spider Form by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681052:effect:0:aura:107","name":"Versatile and Deadly (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681052:effect:1:aura:107","name":"Versatile and Deadly (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":681492,"level":1,"description":"Reduce all damage taken while in Beetle Form by -6% and increases your movement speed while in Spider Form by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681492:effect:0:aura:107","name":"Versatile and Deadly (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681492:effect:1:aura:107","name":"Versatile and Deadly (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6095},{"id":"coa-29-vile-fury-105-706005","classId":"venomancer","dbcSpellId":706005,"name":"Vile Fury","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_removedisease.png","sigil":"VF","description":"Vile FuryRank 1Vile Stinger generates 5 Rage and the cost of Hivebreak is reduced by 5.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706005:effect:0:aura:107","name":"Vile Fury (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706005:effect:1:aura:107","name":"Vile Fury (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706005,"level":1,"description":"Vile FuryRank 1Vile Stinger generates 5 Rage and the cost of Hivebreak is reduced by 5.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":5},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706005:effect:0:aura:107","name":"Vile Fury (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706005:effect:1:aura:107","name":"Vile Fury (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-tree-6116","classId":"venomancer","dbcSpellId":805778,"name":"Weakening Venom","unlockLevel":1,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a23.png","sigil":"WV","description":"Activate Weakening Venom for 120 minutes, giving your casts a 35% chance to deal 59 + 12.5% SP Shadow damage and reduce an enemy's attack power by 234 for 8 seconds. You can have a maximum of 2 unique Venoms active at a time.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805778:effect:0:aura:42","name":"Weakening Venom (Aura 42)","disposition":"buff","durationMs":7200000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"poison","procs":[{"id":"coa:805778:proc:0:706000","triggers":["cast","hit"],"chance":0.35,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706000}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805778,"level":1,"description":"Activate Weakening Venom for 120 minutes, giving your casts a 35% chance to deal 59 + 12.5% SP Shadow damage and reduce an enemy's attack power by 234 for 8 seconds. You can have a maximum of 2 unique Venoms active at a time.","castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805778:effect:0:aura:42","name":"Weakening Venom (Aura 42)","disposition":"buff","durationMs":7200000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"poison","procs":[{"id":"coa:805778:proc:0:706000","triggers":["cast","hit"],"chance":0.35,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706000}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706000}]}],"talentEntryId":6116},{"id":"coa-29-web-wrap-103-800876","classId":"venomancer","dbcSpellId":800876,"name":"Web Wrap","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureweb_border.png","sigil":"WW","description":"Web WrapRank 18% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 20+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","target":"hostile","range":{"min":0,"max":40},"castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:800876:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4300000071525574,"basePoints":20,"dieSides":5,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0.4300000071525574,"sourceLevel":1,"maxScalingLevel":8,"ticks":4,"intervalMs":1000,"tag":"spell-800876"},{"kind":"apply-aura","aura":{"id":"coa:800876:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800876,"level":1,"description":"Web WrapRank 18% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 20+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:800876:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4300000071525574,"basePoints":20,"dieSides":5,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0.4300000071525574,"sourceLevel":1,"maxScalingLevel":8,"ticks":4,"intervalMs":1000,"tag":"spell-800876"},{"kind":"apply-aura","aura":{"id":"coa:800876:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0}]},{"rank":2,"spellId":502881,"level":9,"description":"Web WrapRank 28% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 30+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502881:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4996599853038788,"basePoints":30,"dieSides":6,"pointsPerLevel":1.3519999980926514,"bonusPowerCoefficient":0.4996599853038788,"sourceLevel":9,"maxScalingLevel":16,"ticks":4,"intervalMs":1000,"tag":"spell-502881"},{"kind":"apply-aura","aura":{"id":"coa:502881:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502882,"level":17,"description":"Web WrapRank 38% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 52+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502882:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5772320032119751,"basePoints":52,"dieSides":7,"pointsPerLevel":1.9759999513626099,"bonusPowerCoefficient":0.5772320032119751,"sourceLevel":17,"maxScalingLevel":24,"ticks":4,"intervalMs":1000,"tag":"spell-502882"},{"kind":"apply-aura","aura":{"id":"coa:502882:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502883,"level":25,"description":"Web WrapRank 48% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 70+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502883:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6629509925842285,"basePoints":70,"dieSides":8,"pointsPerLevel":2.9119999408721924,"bonusPowerCoefficient":0.6629509925842285,"sourceLevel":25,"maxScalingLevel":32,"ticks":4,"intervalMs":1000,"tag":"spell-502883"},{"kind":"apply-aura","aura":{"id":"coa:502883:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502884,"level":33,"description":"Web WrapRank 58% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 93+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502884:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7569249868392944,"basePoints":93,"dieSides":9,"pointsPerLevel":4.159999847412109,"bonusPowerCoefficient":0.7569249868392944,"sourceLevel":33,"maxScalingLevel":40,"ticks":4,"intervalMs":1000,"tag":"spell-502884"},{"kind":"apply-aura","aura":{"id":"coa:502884:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502885,"level":41,"description":"Web WrapRank 68% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 108+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502885:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8591089844703674,"basePoints":108,"dieSides":10,"pointsPerLevel":5.71999979019165,"bonusPowerCoefficient":0.8591089844703674,"sourceLevel":41,"maxScalingLevel":48,"ticks":4,"intervalMs":1000,"tag":"spell-502885"},{"kind":"apply-aura","aura":{"id":"coa:502885:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502886,"level":49,"description":"Web WrapRank 78% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 114+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502886:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.969290018081665,"basePoints":114,"dieSides":11,"pointsPerLevel":7.5920000076293945,"bonusPowerCoefficient":0.969290018081665,"sourceLevel":49,"maxScalingLevel":56,"ticks":4,"intervalMs":1000,"tag":"spell-502886"},{"kind":"apply-aura","aura":{"id":"coa:502886:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502887,"level":57,"description":"Web WrapRank 88% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 147+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502887:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0870599746704102,"basePoints":147,"dieSides":12,"pointsPerLevel":9.776000022888184,"bonusPowerCoefficient":1.0870599746704102,"sourceLevel":57,"maxScalingLevel":64,"ticks":4,"intervalMs":1000,"tag":"spell-502887"},{"kind":"apply-aura","aura":{"id":"coa:502887:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":502888,"level":65,"description":"Web WrapRank 98% of base mana Channeled20 sec cooldownChannels a beam of webbing at an enemy, slowing their movement speed by 60% and inflicting 179+0+NatP*0.2 Nature damage every 1 sec for 4 sec. While active, the target takes 30% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502888:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.2117999792099,"basePoints":179,"dieSides":13,"pointsPerLevel":12.272000312805176,"bonusPowerCoefficient":1.2117999792099,"sourceLevel":65,"maxScalingLevel":72,"ticks":4,"intervalMs":1000,"tag":"spell-502888"},{"kind":"apply-aura","aura":{"id":"coa:502888:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.3}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":502889,"level":73,"description":"Channels a beam of webbing at an enemy, reducing their movement speed by $s1% and inflicting ${$m2+$ppl2} Nature Damage every $t2 sec for $d. While active, the target takes $s3% increased damage from your other periodic damage effects. Can be used in any form.","castMode":"channel","castTimeMs":4000,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":800923},{"kind":"apply-aura","aura":{"id":"coa:502889:effect:1:aura:3","name":"Web Wrap (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.34266996383667,"basePoints":196,"dieSides":14,"pointsPerLevel":15.079999923706055,"bonusPowerCoefficient":1.34266996383667,"sourceLevel":73,"maxScalingLevel":80,"ticks":4,"intervalMs":1000,"tag":"spell-502889"},{"kind":"apply-aura","aura":{"id":"coa:502889:effect:2:aura:271","name":"Web Wrap (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"venomancer-rejuvenating-venom","classId":"venomancer","dbcSpellId":630868,"name":"Rejuvenating Venom","unlockLevel":2,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a21.png","sigil":"RV","description":"Activate Rejuvenating Venom for $d, giving your casts a $h% chance to heal a random ally within $630869a1 yds of your target for ${$630869m1*$+$bh*0.092} over $630869d. You can have a maximum of 2 unique Venoms active at a time.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:630868:effect:0:aura:42","name":"Rejuvenating Venom (Aura 42)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:630868:proc:0:630869","triggers":["cast","heal"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":630869}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":630869}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":630868,"level":2,"description":"Activate Rejuvenating Venom for $d, giving your casts a $h% chance to heal a random ally within $630869a1 yds of your target for ${$630869m1*$+$bh*0.092} over $630869d. You can have a maximum of 2 unique Venoms active at a time.","castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:630868:effect:0:aura:42","name":"Rejuvenating Venom (Aura 42)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:630868:proc:0:630869","triggers":["cast","heal"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":630869}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":630869}]}]},{"id":"coa-29-serpents-fang-103-800946","classId":"venomancer","dbcSpellId":800946,"name":"Serpent's Fang","unlockLevel":2,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Serpent's FangRank 120% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 27+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.6568627450980392,"basePoints":27,"dieSides":6,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":10}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800946,"level":2,"description":"Serpent's FangRank 120% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 27+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.6568627450980392,"basePoints":27,"dieSides":6,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":10}]},{"rank":2,"spellId":503931,"level":12,"description":"Serpent's FangRank 220% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 64+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":1.6080246913580247,"basePoints":64,"dieSides":3,"pointsPerLevel":5.4375,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":18}]},{"rank":3,"spellId":503932,"level":20,"description":"Serpent's FangRank 320% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 111+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":2.5761904761904764,"basePoints":111,"dieSides":10,"pointsPerLevel":7.75,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26}]},{"rank":4,"spellId":503933,"level":28,"description":"Serpent's FangRank 420% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 180+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":3.045643370280894,"basePoints":180,"dieSides":14,"pointsPerLevel":7.370999813079834,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34}]},{"rank":5,"spellId":503934,"level":36,"description":"Serpent's FangRank 520% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 245+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":3.6631045123330908,"basePoints":245,"dieSides":20,"pointsPerLevel":8.498749732971191,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42}]},{"rank":6,"spellId":503935,"level":44,"description":"Serpent's FangRank 620% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 431+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":3.8040859200860146,"basePoints":431,"dieSides":30,"pointsPerLevel":5.177800178527832,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50}]},{"rank":7,"spellId":552781,"level":52,"description":"Serpent's FangRank 720% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 510+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":4,"basePoints":510,"dieSides":44,"pointsPerLevel":6.550000190734863,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58}]},{"rank":8,"spellId":552783,"level":60,"description":"Serpent's FangRank 820% of base mana Instant cast8 sec cooldownLaunch vile poison at an enemy, dealing 596+0+NatP*1 Nature damage and healing up to 5 allies near them for 32+3.4 Points Per Level+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":4,"basePoints":596,"dieSides":66,"pointsPerLevel":8.366669654846191,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66}]}]},{"id":"coa-29-shadras-prayer-499-800870","classId":"venomancer","dbcSpellId":800870,"name":"Shadra's Prayer","unlockLevel":2,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","sigil":"SS","description":"Shadra's PrayerRank 125% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800870:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.10980392203611486,"basePoints":5,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":9,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":0.7333333352032829,"basePoints":32,"dieSides":4,"pointsPerLevel":1.9500000476837158,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":9},{"kind":"apply-aura","aura":{"id":"coa:800870:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800870:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800870,"level":2,"description":"Shadra's PrayerRank 125% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800870:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.10980392203611486,"basePoints":5,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":9,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":0.7333333352032829,"basePoints":32,"dieSides":4,"pointsPerLevel":1.9500000476837158,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":9},{"kind":"apply-aura","aura":{"id":"coa:800870:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800870:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":2,"spellId":502939,"level":10,"description":"Shadra's PrayerRank 225% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 60+0+Heal*0.263078, plus 9+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502939:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.25999999364217125,"basePoints":9,"dieSides":1,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.24,"basePoints":60,"dieSides":7,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"apply-aura","aura":{"id":"coa:502939:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502939:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":3,"spellId":502940,"level":16,"description":"Shadra's PrayerRank 325% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 84+0+Heal*0.263078, plus 13+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502940:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.29199500750469903,"basePoints":13,"dieSides":1,"pointsPerLevel":0.8847209811210632,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.0898924796811995,"basePoints":84,"dieSides":5,"pointsPerLevel":6.772500038146973,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:502940:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502940:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":4,"spellId":502941,"level":22,"description":"Shadra's PrayerRank 425% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 122+0+Heal*0.263078, plus 18+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502941:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.26737230747669666,"basePoints":18,"dieSides":1,"pointsPerLevel":0.5308330059051514,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.8881306476421185,"basePoints":122,"dieSides":11,"pointsPerLevel":3.7537500858306885,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:502941:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502941:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":5,"spellId":502942,"level":28,"description":"Shadra's PrayerRank 525% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 161+0+Heal*0.263078, plus 24+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502942:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3177259596743325,"basePoints":24,"dieSides":1,"pointsPerLevel":0.6066660284996033,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.233733051507048,"basePoints":161,"dieSides":16,"pointsPerLevel":4.273270130157471,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:502942:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502942:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":6,"spellId":502943,"level":34,"description":"Shadra's PrayerRank 625% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 199+0+Heal*0.263078, plus 30+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502943:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3862244953103617,"basePoints":30,"dieSides":1,"pointsPerLevel":0.7875000238418579,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.5939004145511966,"basePoints":199,"dieSides":22,"pointsPerLevel":5.053040027618408,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"apply-aura","aura":{"id":"coa:502943:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502943:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":7,"spellId":502944,"level":40,"description":"Shadra's PrayerRank 725% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 241+0+Heal*0.263078, plus 36+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502944:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.42499999422015566,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8531249761581421,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.0434885198419743,"basePoints":241,"dieSides":30,"pointsPerLevel":6.1668901443481445,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"apply-aura","aura":{"id":"coa:502944:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502944:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":8,"spellId":502945,"level":46,"description":"Shadra's PrayerRank 825% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 291+0+Heal*0.263078, plus 44+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502945:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.45596751945266306,"basePoints":44,"dieSides":1,"pointsPerLevel":0.8574360013008118,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.10617652747149,"basePoints":291,"dieSides":39,"pointsPerLevel":5.6180500984191895,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:502945:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502945:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":9,"spellId":502946,"level":52,"description":"Shadra's PrayerRank 925% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 322+0+Heal*0.263078, plus 50+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502946:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5014462079574813,"basePoints":50,"dieSides":1,"pointsPerLevel":0.9767439961433411,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.3649008641788614,"basePoints":322,"dieSides":49,"pointsPerLevel":6.352789878845215,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:502946:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502946:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":10,"spellId":502947,"level":58,"description":"Shadra's PrayerRank 1025% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 356+0+Heal*0.263078, plus 55+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502947:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.38650428867775555,"basePoints":55,"dieSides":1,"pointsPerLevel":0.5111110210418701,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.6037005463691605,"basePoints":356,"dieSides":49,"pointsPerLevel":3.2794899940490723,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64},{"kind":"apply-aura","aura":{"id":"coa:502947:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502947:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]}]},{"id":"venomancer-debilitating-venom","classId":"venomancer","dbcSpellId":805731,"name":"Debilitating Venom","unlockLevel":4,"icon":"/assets/ui/spells/trade_alchemy_dpotion_a22.png","sigil":"DV","description":"Activate Debilitating Venom for $d, giving your casts a $h% chance to inject a target and enemies around them with a crippling venom that slows their movement speed by $805895s1% for $805895d. You can have a maximum of 2 unique Venoms active at a time.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805731:effect:0:aura:42","name":"Debilitating Venom (Aura 42)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:805731:proc:0:805895","triggers":["cast"],"chance":0.3,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805895}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805895},{"kind":"apply-aura","aura":{"id":"coa:805731:effect:1:aura:108","name":"Debilitating Venom (Aura 108)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":805731,"level":4,"description":"Activate Debilitating Venom for $d, giving your casts a $h% chance to inject a target and enemies around them with a crippling venom that slows their movement speed by $805895s1% for $805895d. You can have a maximum of 2 unique Venoms active at a time.","castMode":"cast","castTimeMs":1000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805731:effect:0:aura:42","name":"Debilitating Venom (Aura 42)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:805731:proc:0:805895","triggers":["cast"],"chance":0.3,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805895}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805895},{"kind":"apply-aura","aura":{"id":"coa:805731:effect:1:aura:108","name":"Debilitating Venom (Aura 108)","disposition":"buff","durationMs":7200000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}]}]},{"id":"coa-29-venom-fang-104-800880","classId":"venomancer","dbcSpellId":800880,"name":"Venom Fang","unlockLevel":4,"icon":"/assets/ui/spells/inv_pet_spiderdemon2.png","sigil":"VF","description":"Venom FangRank 135 Energy Instant castBite an enemy for 24+0+NatP*.4 Nature damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5052631612409625,"basePoints":24,"dieSides":1,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":8}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800880,"level":4,"description":"Venom FangRank 135 Energy Instant castBite an enemy for 24+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.5052631612409625,"basePoints":24,"dieSides":1,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":4,"maxScalingLevel":8}]},{"rank":2,"spellId":502896,"level":10,"description":"Venom FangRank 235 Energy Instant castBite an enemy for 39+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":0.7333333365122477,"basePoints":39,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16}]},{"rank":3,"spellId":502897,"level":18,"description":"Venom FangRank 335 Energy Instant castBite an enemy for 55+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.0222222395617553,"basePoints":55,"dieSides":7,"pointsPerLevel":2.4000000953674316,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22}]},{"rank":4,"spellId":502898,"level":24,"description":"Venom FangRank 435 Energy Instant castBite an enemy for 77+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.0384615384615385,"basePoints":77,"dieSides":12,"pointsPerLevel":1.625,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30}]},{"rank":5,"spellId":502899,"level":32,"description":"Venom FangRank 535 Energy Instant castBite an enemy for 94+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.1990070748836437,"basePoints":94,"dieSides":18,"pointsPerLevel":2.0799999237060547,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":36}]},{"rank":6,"spellId":502900,"level":38,"description":"Venom FangRank 635 Energy Instant castBite an enemy for 117+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.3516980926945525,"basePoints":117,"dieSides":19,"pointsPerLevel":2.3399999141693115,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44}]},{"rank":7,"spellId":502901,"level":46,"description":"Venom FangRank 735 Energy Instant castBite an enemy for 153+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":1.8013661441907205,"basePoints":153,"dieSides":30,"pointsPerLevel":3.5250000953674316,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50}]},{"rank":8,"spellId":502902,"level":52,"description":"Venom FangRank 835 Energy Instant castBite an enemy for 234+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":2.036153442230984,"basePoints":234,"dieSides":17,"pointsPerLevel":3.216670036315918,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58}]},{"rank":9,"spellId":502903,"level":60,"description":"Venom FangRank 935 Energy Instant castBite an enemy for 280+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":3.024444393581814,"basePoints":280,"dieSides":28,"pointsPerLevel":6.449999809265137,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64}]},{"rank":10,"spellId":502904,"level":66,"description":"Venom FangRank 1035 Energy Instant castBite an enemy for 421+0+NatP*.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"damage","coefficient":3.387242772451644,"basePoints":421,"dieSides":33,"pointsPerLevel":5.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72}]}]},{"id":"coa-29-riftgate-prison-117-500280","classId":"venomancer","dbcSpellId":500280,"name":"Riftgate: Prison","unlockLevel":6,"icon":"/assets/ui/spells/spell_nature_astralrecalgroup.png","sigil":"RP","description":"Riftgate: PrisonRank 18% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 4 to 5 Arcane Damage and Stunning them for 2 sec.","target":"hostile","range":{"min":0,"max":25},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.20399999618530273,"basePoints":4,"dieSides":2,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":6,"maxScalingLevel":8},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500280,"level":6,"description":"Riftgate: PrisonRank 18% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 4 to 5 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.20399999618530273,"basePoints":4,"dieSides":2,"pointsPerLevel":0.23999999463558197,"bonusPowerCoefficient":0.20399999618530273,"sourceLevel":6,"maxScalingLevel":8},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502650,"level":9,"description":"Riftgate: PrisonRank 28% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 5 to 6 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.11246388860874706,"basePoints":5,"dieSides":2,"pointsPerLevel":0.28859999775886536,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502651,"level":17,"description":"Riftgate: PrisonRank 38% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 9 to 10 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.17301458089301983,"basePoints":9,"dieSides":2,"pointsPerLevel":0.41819998621940613,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502652,"level":25,"description":"Riftgate: PrisonRank 48% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 12 to 14 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.22245833426713943,"basePoints":12,"dieSides":3,"pointsPerLevel":0.5478000044822693,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502653,"level":33,"description":"Riftgate: PrisonRank 58% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 16 to 19 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.27676527616050506,"basePoints":16,"dieSides":4,"pointsPerLevel":0.6773999929428101,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":40},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502654,"level":41,"description":"Riftgate: PrisonRank 68% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 24 to 29 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.3546845192710559,"basePoints":24,"dieSides":6,"pointsPerLevel":0.8069999814033508,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":48},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502655,"level":49,"description":"Riftgate: PrisonRank 78% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 34 to 41 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.43434063252061605,"basePoints":34,"dieSides":8,"pointsPerLevel":0.9366000294685364,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":56},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502656,"level":57,"description":"Riftgate: PrisonRank 88% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 50 to 60 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5359879676942472,"basePoints":50,"dieSides":11,"pointsPerLevel":1.0662000179290771,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":64},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":502657,"level":65,"description":"Riftgate: PrisonRank 98% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 71 to 84 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.6467791522542635,"basePoints":71,"dieSides":14,"pointsPerLevel":1.1957999467849731,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":72},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":502658,"level":73,"description":"Riftgate: PrisonRank 108% of base mana Instant cast1 min cooldownTeleports the target enemy to the nearest Riftgate, dealing 101 to 117 Arcane Damage and Stunning them for 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7802485250162355,"basePoints":101,"dieSides":17,"pointsPerLevel":1.328570008277893,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500308},{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-29-carapace-crash-105-803199","classId":"venomancer","dbcSpellId":803199,"name":"Carapace Crash","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CC","description":"Carapace CrashRank 125 Rage InstantSlam your body against the ground dealing 32+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.5433333365122477,"basePoints":32,"dieSides":4,"pointsPerLevel":0.7250000238418579,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803199,"level":10,"description":"Carapace CrashRank 125 Rage InstantSlam your body against the ground dealing 32+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.5433333365122477,"basePoints":32,"dieSides":4,"pointsPerLevel":0.7250000238418579,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14}]},{"rank":2,"spellId":803231,"level":16,"description":"Carapace CrashRank 225 Rage InstantSlam your body against the ground dealing 44+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.6612903225806451,"basePoints":44,"dieSides":4,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20}]},{"rank":3,"spellId":803232,"level":22,"description":"Carapace CrashRank 325 Rage InstantSlam your body against the ground dealing 58+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.7986486580994752,"basePoints":58,"dieSides":4,"pointsPerLevel":1.3250000476837158,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26}]},{"rank":4,"spellId":803233,"level":28,"description":"Carapace CrashRank 425 Rage InstantSlam your body against the ground dealing 72+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":0.9317829405614572,"basePoints":72,"dieSides":5,"pointsPerLevel":1.649999976158142,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32}]},{"rank":5,"spellId":803234,"level":34,"description":"Carapace CrashRank 525 Rage InstantSlam your body against the ground dealing 87+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.0656462640178448,"basePoints":87,"dieSides":6,"pointsPerLevel":1.975000023841858,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38}]},{"rank":6,"spellId":803235,"level":40,"description":"Carapace CrashRank 625 Rage InstantSlam your body against the ground dealing 110+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.2969697200890744,"basePoints":110,"dieSides":7,"pointsPerLevel":2.5250000953674316,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44}]},{"rank":7,"spellId":573061,"level":46,"description":"Carapace CrashRank 725 Rage InstantSlam your body against the ground dealing 141+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.6092896174863387,"basePoints":141,"dieSides":9,"pointsPerLevel":3.25,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50}]},{"rank":8,"spellId":573062,"level":52,"description":"Carapace CrashRank 825 Rage InstantSlam your body against the ground dealing 173+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1.913930323586535,"basePoints":173,"dieSides":11,"pointsPerLevel":3.9749999046325684,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56}]},{"rank":9,"spellId":573063,"level":58,"description":"Carapace CrashRank 925 Rage InstantSlam your body against the ground dealing 272+0+AP*0.140625+NatP*.2 Nature damage to enemies within 8 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":2.121612527054739,"basePoints":272,"dieSides":17,"pointsPerLevel":3.1833300590515137,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64}]}]},{"id":"coa-29-green-salve-499-800902","classId":"venomancer","dbcSpellId":800902,"name":"Green Salve","unlockLevel":10,"icon":"/assets/ui/spells/inv_firstaid_healingsalve.png","sigil":"GS","description":"Green SalveRank 115% of base mana Instant cast10 sec cooldownRapidly heal an ally for 24 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47+Heal*0.244572.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800902:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.7999999523162842,"basePoints":4,"dieSides":1,"pointsPerLevel":0.05999999865889549,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":14,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800902:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800902:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800902,"level":10,"description":"Green SalveRank 115% of base mana Instant cast10 sec cooldownRapidly heal an ally for 24 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 47+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800902:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.7999999523162842,"basePoints":4,"dieSides":1,"pointsPerLevel":0.05999999865889549,"bonusPowerCoefficient":1.7999999523162842,"sourceLevel":10,"maxScalingLevel":14,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:800902:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800902:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]},{"rank":2,"spellId":502974,"level":16,"description":"Green SalveRank 215% of base mana Instant cast10 sec cooldownRapidly heal an ally for 60 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 72+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502974:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.13849462488646147,"basePoints":10,"dieSides":1,"pointsPerLevel":0.18000000715255737,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502974:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502974:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]},{"rank":3,"spellId":502975,"level":22,"description":"Green SalveRank 315% of base mana Instant cast10 sec cooldownRapidly heal an ally for 96 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 94+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502975:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.20360360596631025,"basePoints":16,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502975:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502975:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]},{"rank":4,"spellId":502976,"level":28,"description":"Green SalveRank 415% of base mana Instant cast10 sec cooldownRapidly heal an ally for 120 to 126 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 113+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502976:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.24139534780221392,"basePoints":20,"dieSides":2,"pointsPerLevel":0.3799999952316284,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502976:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502976:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]},{"rank":5,"spellId":502977,"level":34,"description":"Green SalveRank 515% of base mana Instant cast10 sec cooldownRapidly heal an ally for 150 to 156 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 130+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502977:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.28448979343686787,"basePoints":25,"dieSides":2,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502977:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502977:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]},{"rank":6,"spellId":502978,"level":40,"description":"Green SalveRank 615% of base mana Instant cast10 sec cooldownRapidly heal an ally for 168 to 180 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 144+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502978:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3066666718685266,"basePoints":28,"dieSides":3,"pointsPerLevel":0.5400000214576721,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502978:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502978:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]},{"rank":7,"spellId":502979,"level":46,"description":"Green SalveRank 715% of base mana Instant cast10 sec cooldownRapidly heal an ally for 186 to 204 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 160+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502979:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3284153065394834,"basePoints":31,"dieSides":4,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502979:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502979:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]},{"rank":8,"spellId":502980,"level":52,"description":"Green SalveRank 815% of base mana Instant cast10 sec cooldownRapidly heal an ally for 204 to 234 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 174+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502980:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.35233831524255854,"basePoints":34,"dieSides":6,"pointsPerLevel":0.6600000262260437,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502980:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502980:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]},{"rank":9,"spellId":502981,"level":58,"description":"Green SalveRank 915% of base mana Instant cast10 sec cooldownRapidly heal an ally for 312 to 354 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 13+1.0 Points Per Level+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502981:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3770168301177351,"basePoints":52,"dieSides":8,"pointsPerLevel":0.4666669964790344,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502981:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502981:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]}]},{"id":"coa-29-hivebreak-105-803193","classId":"venomancer","dbcSpellId":803193,"name":"Hivebreak","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HI","description":"HivebreakRank 120 Rage InstantPierce an enemy with your front leg, dealing 32+0+NatP*.35+AP*0.15 Nature damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.4266666666666667,"basePoints":32,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":805774}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803193,"level":10,"description":"HivebreakRank 120 Rage InstantPierce an enemy with your front leg, dealing 32+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.4266666666666667,"basePoints":32,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"trigger-spell","spellId":805774}]},{"rank":2,"spellId":503149,"level":16,"description":"HivebreakRank 220 Rage InstantPierce an enemy with your front leg, dealing 54+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.6075268817204301,"basePoints":54,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":805774}]},{"rank":3,"spellId":503150,"level":22,"description":"HivebreakRank 320 Rage InstantPierce an enemy with your front leg, dealing 87+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8153153153153153,"basePoints":87,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"trigger-spell","spellId":805774}]},{"rank":4,"spellId":503151,"level":28,"description":"HivebreakRank 420 Rage InstantPierce an enemy with your front leg, dealing 102+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.813953488372093,"basePoints":102,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":805774}]},{"rank":5,"spellId":503152,"level":34,"description":"HivebreakRank 520 Rage InstantPierce an enemy with your front leg, dealing 129+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.9217687074829932,"basePoints":129,"dieSides":14,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":805774}]},{"rank":6,"spellId":503153,"level":40,"description":"HivebreakRank 620 Rage InstantPierce an enemy with your front leg, dealing 161+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.0272727272727273,"basePoints":161,"dieSides":18,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":805774}]},{"rank":7,"spellId":503154,"level":46,"description":"HivebreakRank 720 Rage InstantPierce an enemy with your front leg, dealing 203+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.1584699453551912,"basePoints":203,"dieSides":19,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":805774}]},{"rank":8,"spellId":503155,"level":52,"description":"HivebreakRank 820 Rage InstantPierce an enemy with your front leg, dealing 268+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.3930348258706469,"basePoints":268,"dieSides":25,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":54},{"kind":"trigger-spell","spellId":805774}]},{"rank":9,"spellId":572037,"level":56,"description":"HivebreakRank 920 Rage InstantPierce an enemy with your front leg, dealing 332+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.6150234741784038,"basePoints":332,"dieSides":25,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":805774}]},{"rank":10,"spellId":572038,"level":60,"description":"HivebreakRank 1020 Rage InstantPierce an enemy with your front leg, dealing 399+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.8244444444444445,"basePoints":399,"dieSides":24,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64},{"kind":"trigger-spell","spellId":805774}]},{"rank":11,"spellId":572039,"level":66,"description":"HivebreakRank 1120 Rage InstantPierce an enemy with your front leg, dealing 459+0+NatP*.35+AP*0.15 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.9526748971193415,"basePoints":459,"dieSides":32,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72},{"kind":"trigger-spell","spellId":805774}]}]},{"id":"coa-29-shadras-prayer-484-502939","classId":"venomancer","dbcSpellId":502939,"name":"Shadra's Prayer","unlockLevel":10,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","sigil":"SS","description":"Shadra's PrayerRank 225% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 60+0+Heal*0.263078, plus 9+0+Heal*0.131086 every 3 sec for 21 sec.","target":"friendly","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502939:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.25999999364217125,"basePoints":9,"dieSides":1,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.24,"basePoints":60,"dieSides":7,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"apply-aura","aura":{"id":"coa:502939:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502939:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502939,"level":10,"description":"Shadra's PrayerRank 225% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 60+0+Heal*0.263078, plus 9+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502939:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.25999999364217125,"basePoints":9,"dieSides":1,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.24,"basePoints":60,"dieSides":7,"pointsPerLevel":3,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":14},{"kind":"apply-aura","aura":{"id":"coa:502939:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502939:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":3,"spellId":502940,"level":16,"description":"Shadra's PrayerRank 325% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 84+0+Heal*0.263078, plus 13+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502940:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.29199500750469903,"basePoints":13,"dieSides":1,"pointsPerLevel":0.8847209811210632,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.0898924796811995,"basePoints":84,"dieSides":5,"pointsPerLevel":6.772500038146973,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:502940:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502940:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":4,"spellId":502941,"level":22,"description":"Shadra's PrayerRank 425% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 122+0+Heal*0.263078, plus 18+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502941:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.26737230747669666,"basePoints":18,"dieSides":1,"pointsPerLevel":0.5308330059051514,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":1.8881306476421185,"basePoints":122,"dieSides":11,"pointsPerLevel":3.7537500858306885,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:502941:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502941:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":5,"spellId":502942,"level":28,"description":"Shadra's PrayerRank 525% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 161+0+Heal*0.263078, plus 24+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502942:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3177259596743325,"basePoints":24,"dieSides":1,"pointsPerLevel":0.6066660284996033,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.233733051507048,"basePoints":161,"dieSides":16,"pointsPerLevel":4.273270130157471,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:502942:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502942:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":6,"spellId":502943,"level":34,"description":"Shadra's PrayerRank 625% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 199+0+Heal*0.263078, plus 30+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502943:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3862244953103617,"basePoints":30,"dieSides":1,"pointsPerLevel":0.7875000238418579,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":2.5939004145511966,"basePoints":199,"dieSides":22,"pointsPerLevel":5.053040027618408,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"apply-aura","aura":{"id":"coa:502943:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502943:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":7,"spellId":502944,"level":40,"description":"Shadra's PrayerRank 725% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 241+0+Heal*0.263078, plus 36+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502944:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.42499999422015566,"basePoints":36,"dieSides":1,"pointsPerLevel":0.8531249761581421,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.0434885198419743,"basePoints":241,"dieSides":30,"pointsPerLevel":6.1668901443481445,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"apply-aura","aura":{"id":"coa:502944:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502944:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":8,"spellId":502945,"level":46,"description":"Shadra's PrayerRank 825% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 291+0+Heal*0.263078, plus 44+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502945:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.45596751945266306,"basePoints":44,"dieSides":1,"pointsPerLevel":0.8574360013008118,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.10617652747149,"basePoints":291,"dieSides":39,"pointsPerLevel":5.6180500984191895,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:502945:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502945:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]},{"rank":9,"spellId":502946,"level":52,"description":"Shadra's PrayerRank 925% of base mana 2 sec castBring the glory of Shadra to an ally, healing them for 322+0+Heal*0.263078, plus 50+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502946:effect:0:aura:8","name":"Shadra's Prayer (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5014462079574813,"basePoints":50,"dieSides":1,"pointsPerLevel":0.9767439961433411,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":7,"intervalMs":3000},{"kind":"heal","coefficient":3.3649008641788614,"basePoints":322,"dieSides":49,"pointsPerLevel":6.352789878845215,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"apply-aura","aura":{"id":"coa:502946:effect:2:aura:23","name":"Shadra's Prayer (Aura 23)","disposition":"buff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502946:proc:2:800874","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800874}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800874}]}]},{"id":"coa-29-spider-pheromones-484-803177","classId":"venomancer","dbcSpellId":803177,"name":"Spider Pheromones","unlockLevel":10,"icon":"/assets/ui/spells/nhi_spiderweb_border.png","sigil":"SP","description":"Spider PheromonesRank 17% of base mana InstantInject an ally with spider pheromones, increasing their Agility by 6. Lasts 30 min.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803177:effect:0:aura:29","name":"Spider Pheromones (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"agility","operation":"flat","value":6}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803177,"level":10,"description":"Spider PheromonesRank 17% of base mana InstantInject an ally with spider pheromones, increasing their Agility by 6. Lasts 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803177:effect:0:aura:29","name":"Spider Pheromones (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"agility","operation":"flat","value":6}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-29-wilt-103-804982","classId":"venomancer","dbcSpellId":804982,"name":"Wilt","unlockLevel":11,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_naturewrath_border.png","sigil":"WI","description":"WiltRank 110% of base mana Instant castWilt the life of an enemy with vile poison, dealing 138 Nature damage over 18 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804982:effect:0:aura:3","name":"Wilt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.39560444003496414,"basePoints":23,"dieSides":1,"pointsPerLevel":0.7142860293388367,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18,"ticks":6,"intervalMs":3000,"tag":"spell-804982"},{"kind":"apply-aura","aura":{"id":"coa:804982:effect:1:aura:271","name":"Wilt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804982,"level":11,"description":"WiltRank 110% of base mana Instant castWilt the life of an enemy with vile poison, dealing 138 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804982:effect:0:aura:3","name":"Wilt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.39560444003496414,"basePoints":23,"dieSides":1,"pointsPerLevel":0.7142860293388367,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18,"ticks":6,"intervalMs":3000,"tag":"spell-804982"},{"kind":"apply-aura","aura":{"id":"coa:804982:effect:1:aura:271","name":"Wilt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":620067,"level":20,"description":"WiltRank 210% of base mana Instant castWilt the life of an enemy with vile poison, dealing 234 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:620067:effect:0:aura:3","name":"Wilt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.49841256595793226,"basePoints":39,"dieSides":1,"pointsPerLevel":0.6666659712791443,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26,"ticks":6,"intervalMs":3000,"tag":"spell-620067"},{"kind":"apply-aura","aura":{"id":"coa:620067:effect:1:aura:271","name":"Wilt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":620068,"level":28,"description":"WiltRank 310% of base mana Instant castWilt the life of an enemy with vile poison, dealing 330 to 336 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:620068:effect:0:aura:3","name":"Wilt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5568474762199461,"basePoints":55,"dieSides":2,"pointsPerLevel":0.5833330154418945,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34,"ticks":6,"intervalMs":3000,"tag":"spell-620068"},{"kind":"apply-aura","aura":{"id":"coa:620068:effect:1:aura:271","name":"Wilt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":620069,"level":34,"description":"WiltRank 410% of base mana Instant castWilt the life of an enemy with vile poison, dealing 462 to 474 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:620069:effect:0:aura:3","name":"Wilt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7182161434978044,"basePoints":77,"dieSides":3,"pointsPerLevel":0.8111109733581543,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42,"ticks":6,"intervalMs":3000,"tag":"spell-620069"},{"kind":"apply-aura","aura":{"id":"coa:620069:effect:1:aura:271","name":"Wilt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":620070,"level":44,"description":"WiltRank 510% of base mana Instant castWilt the life of an enemy with vile poison, dealing 594 to 618 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:620070:effect:0:aura:3","name":"Wilt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.86064112119082,"basePoints":99,"dieSides":5,"pointsPerLevel":1.1666699647903442,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50,"ticks":6,"intervalMs":3000,"tag":"spell-620070"},{"kind":"apply-aura","aura":{"id":"coa:620070:effect:1:aura:271","name":"Wilt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":620071,"level":52,"description":"WiltRank 610% of base mana Instant castWilt the life of an enemy with vile poison, dealing 810 to 846 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:620071:effect:0:aura:3","name":"Wilt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.2751244027816242,"basePoints":135,"dieSides":7,"pointsPerLevel":2.2750000953674316,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":6,"intervalMs":3000,"tag":"spell-620071"},{"kind":"apply-aura","aura":{"id":"coa:620071:effect:1:aura:271","name":"Wilt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":620072,"level":58,"description":"WiltRank 710% of base mana Instant castWilt the life of an enemy with vile poison, dealing 1104 to 1140 Nature damage over 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:620072:effect:0:aura:3","name":"Wilt (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.2378995560075594,"basePoints":184,"dieSides":7,"pointsPerLevel":1.4500000476837158,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66,"ticks":6,"intervalMs":3000,"tag":"spell-620072"},{"kind":"apply-aura","aura":{"id":"coa:620072:effect:1:aura:271","name":"Wilt (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-29-claw-strike-105-803198","classId":"venomancer","dbcSpellId":803198,"name":"Claw Strike","unlockLevel":12,"icon":"/assets/ui/spells/nhi_poisonedclaws_border.png","sigil":"CS","description":"Claw StrikeRank 1Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 25 Nature damage, scaling with your Stamina. Generates 20 Rage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.3271604938271605,"basePoints":25,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803198,"level":12,"description":"Claw StrikeRank 1Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 25 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.3271604938271605,"basePoints":25,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":12,"maxScalingLevel":16},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":2,"spellId":503165,"level":18,"description":"Claw StrikeRank 2Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 37 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.3888888888888889,"basePoints":37,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":3,"spellId":503166,"level":24,"description":"Claw StrikeRank 3Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 53 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.452991452991453,"basePoints":53,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":28},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":4,"spellId":503167,"level":30,"description":"Claw StrikeRank 4Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 72 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5407407407407407,"basePoints":72,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":5,"spellId":503168,"level":36,"description":"Claw StrikeRank 5Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 94 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.6274509803921569,"basePoints":94,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":40},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":6,"spellId":503169,"level":42,"description":"Claw StrikeRank 6Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 118 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.7222222222222222,"basePoints":118,"dieSides":12,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":7,"spellId":503170,"level":48,"description":"Claw StrikeRank 7Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 146 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.798941798941799,"basePoints":146,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":8,"spellId":503171,"level":54,"description":"Claw StrikeRank 8Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 172 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8647342995169082,"basePoints":172,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":9,"spellId":503172,"level":60,"description":"Claw StrikeRank 9Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 199 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.9288888888888889,"basePoints":199,"dieSides":21,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":60},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":10,"spellId":503173,"level":62,"description":"Claw StrikeRank 10Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 206 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.948051948051948,"basePoints":206,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":66},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":11,"spellId":503174,"level":68,"description":"Claw StrikeRank 11Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 238 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.034136546184739,"basePoints":238,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":72},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":12,"spellId":503175,"level":74,"description":"Claw StrikeRank 12Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 303 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.2209737827715357,"basePoints":303,"dieSides":47,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":78},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":13,"spellId":503176,"level":80,"description":"Claw StrikeRank 13Instant4 sec cooldownSmash an enemy and up to 3 enemies with your claw, dealing 367 Nature damage, scaling with your Stamina. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":4000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.4017543859649122,"basePoints":367,"dieSides":66,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":86},{"kind":"trigger-spell","spellId":800001},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}]}]},{"id":"coa-29-toxic-sludge-105-803201","classId":"venomancer","dbcSpellId":803201,"name":"Toxic Sludge","unlockLevel":12,"icon":"/assets/ui/spells/achievment_boss_wellofeternity.png","sigil":"TS","description":"Toxic SludgeRank 140 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 6 sec, instantly Burning enemies inside for 37 Nature Damage. Enemies in the pool take 16 Nature Damage every 3 sec, and have 50% reduced movement speed.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803201:effect:0:aura:3","name":"Toxic Sludge (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":16,"dieSides":2,"pointsPerLevel":0.5329999923706055,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":12,"maxScalingLevel":20,"ticks":2,"intervalMs":3000,"tag":"spell-803201"},{"kind":"trigger-spell","spellId":803218},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803218:effect:0:aura:33","name":"Toxic Sludge (Aura 33)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":12000,"magnitude":0.5},{"kind":"damage","coefficient":0.4000000059604645,"basePoints":37,"dieSides":2,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":12,"maxScalingLevel":20}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803201,"level":12,"description":"Toxic SludgeRank 140 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 6 sec, instantly Burning enemies inside for 37 Nature Damage. Enemies in the pool take 16 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803201:effect:0:aura:3","name":"Toxic Sludge (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.07000000029802322,"basePoints":16,"dieSides":2,"pointsPerLevel":0.5329999923706055,"bonusPowerCoefficient":0.07000000029802322,"sourceLevel":12,"maxScalingLevel":20,"ticks":2,"intervalMs":3000,"tag":"spell-803201"},{"kind":"trigger-spell","spellId":803218},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803218:effect:0:aura:33","name":"Toxic Sludge (Aura 33)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":12000,"magnitude":0.5},{"kind":"damage","coefficient":0.4000000059604645,"basePoints":37,"dieSides":2,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":12,"maxScalingLevel":20}]},{"rank":2,"spellId":503177,"level":20,"description":"Toxic SludgeRank 240 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 47 Nature Damage. Enemies in the pool take 23 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503177:effect:0:aura:3","name":"Toxic Sludge (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.37142857369922455,"basePoints":23,"dieSides":1,"pointsPerLevel":0.800000011920929,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":30,"ticks":4,"intervalMs":3000,"tag":"spell-503177"},{"kind":"trigger-spell","spellId":803218},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803218:effect:0:aura:33","name":"Toxic Sludge (Aura 33)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":12000,"magnitude":0.5},{"kind":"damage","coefficient":0.6428571405864897,"basePoints":47,"dieSides":4,"pointsPerLevel":0.949999988079071,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":30}]},{"rank":3,"spellId":503178,"level":30,"description":"Toxic SludgeRank 340 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 69 Nature Damage. Enemies in the pool take 37 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503178:effect:0:aura:3","name":"Toxic Sludge (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5407407513371221,"basePoints":37,"dieSides":1,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":40,"ticks":4,"intervalMs":3000,"tag":"spell-503178"},{"kind":"trigger-spell","spellId":803218},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803218:effect:0:aura:33","name":"Toxic Sludge (Aura 33)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":12000,"magnitude":0.5},{"kind":"damage","coefficient":0.7888888835906982,"basePoints":69,"dieSides":7,"pointsPerLevel":1.149999976158142,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":40}]},{"rank":4,"spellId":503179,"level":40,"description":"Toxic SludgeRank 440 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 87 Nature Damage. Enemies in the pool take 53 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503179:effect:0:aura:3","name":"Toxic Sludge (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.725090911171653,"basePoints":53,"dieSides":1,"pointsPerLevel":1.6660000085830688,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":50,"ticks":4,"intervalMs":3000,"tag":"spell-503179"},{"kind":"trigger-spell","spellId":803218},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803218:effect:0:aura:33","name":"Toxic Sludge (Aura 33)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":12000,"magnitude":0.5},{"kind":"damage","coefficient":0.9484848542646929,"basePoints":87,"dieSides":12,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":50}]},{"rank":5,"spellId":503180,"level":50,"description":"Toxic SludgeRank 540 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 122 Nature Damage. Enemies in the pool take 80 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503180:effect:0:aura:3","name":"Toxic Sludge (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.905897427827884,"basePoints":80,"dieSides":1,"pointsPerLevel":1.9329999685287476,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":60,"ticks":4,"intervalMs":3000,"tag":"spell-503180"},{"kind":"trigger-spell","spellId":803218},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803218:effect:0:aura:33","name":"Toxic Sludge (Aura 33)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":12000,"magnitude":0.5},{"kind":"damage","coefficient":1.2564102441836627,"basePoints":122,"dieSides":17,"pointsPerLevel":2.299999952316284,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":60}]},{"rank":6,"spellId":503181,"level":60,"description":"Toxic SludgeRank 640 Rage Instant cast12 sec cooldownPlace a toxic pool on the ground for 12 sec, instantly Burning enemies inside for 172 Nature Damage. Enemies in the pool take 111 Nature Damage every 3 sec, and have 50% reduced movement speed.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1500,"cost":{"resource":"rage","amount":40},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503181:effect:0:aura:3","name":"Toxic Sludge (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1199999745686848,"basePoints":111,"dieSides":1,"pointsPerLevel":2.3499999046325684,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":70,"ticks":4,"intervalMs":3000,"tag":"spell-503181"},{"kind":"trigger-spell","spellId":803218},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803218:effect:0:aura:33","name":"Toxic Sludge (Aura 33)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":12000,"magnitude":0.5},{"kind":"damage","coefficient":1.5288889016045464,"basePoints":172,"dieSides":21,"pointsPerLevel":2.700000047683716,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":70}]}]},{"id":"coa-29-spore-103-804983","classId":"venomancer","dbcSpellId":804983,"name":"Spore","unlockLevel":13,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"SporeRank 115% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 20+0+NatP*.175 Shadow damage, plus an additional 210 to 224 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804983:effect:0:aura:3","name":"Spore (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4309523818748338,"basePoints":30,"dieSides":3,"pointsPerLevel":0.4000000059604645,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18,"ticks":7,"intervalMs":3000,"tag":"spell-804983"},{"kind":"damage","coefficient":0.35833333148842766,"basePoints":20,"dieSides":3,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"apply-aura","aura":{"id":"coa:804983:effect:2:aura:308","name":"Spore (Aura 308)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804983,"level":13,"description":"SporeRank 115% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 20+0+NatP*.175 Shadow damage, plus an additional 210 to 224 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804983:effect:0:aura:3","name":"Spore (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4309523818748338,"basePoints":30,"dieSides":3,"pointsPerLevel":0.4000000059604645,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18,"ticks":7,"intervalMs":3000,"tag":"spell-804983"},{"kind":"damage","coefficient":0.35833333148842766,"basePoints":20,"dieSides":3,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18},{"kind":"apply-aura","aura":{"id":"coa:804983:effect:2:aura:308","name":"Spore (Aura 308)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":503983,"level":20,"description":"SporeRank 215% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 50+0+NatP*.175 Shadow damage, plus an additional 308 to 329 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503983:effect:0:aura:3","name":"Spore (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5953649498167493,"basePoints":44,"dieSides":4,"pointsPerLevel":0.8506659865379333,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26,"ticks":7,"intervalMs":3000,"tag":"spell-503983"},{"kind":"damage","coefficient":0.6936506634666806,"basePoints":50,"dieSides":8,"pointsPerLevel":0.9666659832000732,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:503983:effect:2:aura:308","name":"Spore (Aura 308)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503984,"level":28,"description":"SporeRank 315% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 71+0+NatP*.175 Shadow damage, plus an additional 539 to 574 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503984:effect:0:aura:3","name":"Spore (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7790697674418605,"basePoints":77,"dieSides":6,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":7,"intervalMs":3000,"tag":"spell-503984"},{"kind":"damage","coefficient":0.9573643410852714,"basePoints":71,"dieSides":15,"pointsPerLevel":1.625,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:503984:effect:2:aura:308","name":"Spore (Aura 308)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503985,"level":34,"description":"SporeRank 415% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 106+0+NatP*.175 Shadow damage, plus an additional 700 to 742 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503985:effect:0:aura:3","name":"Spore (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8760770267369796,"basePoints":100,"dieSides":7,"pointsPerLevel":0.7583330273628235,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":7,"intervalMs":3000,"tag":"spell-503985"},{"kind":"damage","coefficient":1.0979591891879128,"basePoints":106,"dieSides":20,"pointsPerLevel":1.350000023841858,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:503985:effect:2:aura:308","name":"Spore (Aura 308)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503986,"level":42,"description":"SporeRank 515% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 124+0+NatP*.175 Shadow damage, plus an additional 896 to 945 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503986:effect:0:aura:3","name":"Spore (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1067251461988303,"basePoints":128,"dieSides":8,"pointsPerLevel":1.375,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":7,"intervalMs":3000,"tag":"spell-503986"},{"kind":"damage","coefficient":1.4154970994469716,"basePoints":124,"dieSides":25,"pointsPerLevel":2.5250000953674316,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"apply-aura","aura":{"id":"coa:503986:effect:2:aura:308","name":"Spore (Aura 308)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":572868,"level":48,"description":"SporeRank 615% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 179+0+NatP*.175 Shadow damage, plus an additional 1106 to 1155 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572868:effect:0:aura:3","name":"Spore (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1846560725459345,"basePoints":158,"dieSides":8,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54,"ticks":7,"intervalMs":3000,"tag":"spell-572868"},{"kind":"damage","coefficient":1.5402107844277033,"basePoints":179,"dieSides":30,"pointsPerLevel":2.033329963684082,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"apply-aura","aura":{"id":"coa:572868:effect:2:aura:308","name":"Spore (Aura 308)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":572869,"level":56,"description":"SporeRank 715% of base mana 1.5 sec castInject an enemy with parasitic spores, dealing 209+0+NatP*.175 Shadow damage, plus an additional 1337 to 1386 over 21 sec. After 10 sec, drop a Mushroom below the target that explodes after 2 sec, dealing 303*$+NatP*.25 Nature damage to nearby enemies.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572869:effect:0:aura:3","name":"Spore (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.284507048521803,"basePoints":191,"dieSides":8,"pointsPerLevel":1.412500023841858,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":64,"ticks":7,"intervalMs":3000,"tag":"spell-572869"},{"kind":"damage","coefficient":1.5830986040858595,"basePoints":209,"dieSides":39,"pointsPerLevel":1.9500000476837158,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":64},{"kind":"apply-aura","aura":{"id":"coa:572869:effect:2:aura:308","name":"Spore (Aura 308)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-29-mending-mist-499-800899","classId":"venomancer","dbcSpellId":800899,"name":"Mending Mist","unlockLevel":15,"icon":"/assets/ui/spells/ability_druid_focusedgrowth.png","sigil":"MM","description":"Mending MistRank 135% of base mana 1.8 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 9+0+Heal*0.15 every 1 sec for 7 sec. After 1.69 sec, all allies within 30 yds are healed for an additional 96+2.5 Points Per Level+Heal*0.231.","target":"hostile","range":{"min":0,"max":40},"radius":30,"castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800899:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.1213333343466123,"basePoints":9,"dieSides":1,"pointsPerLevel":0.12800000607967377,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803538,"withValue":1689},{"kind":"heal","coefficient":1.3199999968210856,"basePoints":96,"dieSides":1,"pointsPerLevel":1.5199999809265137,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800899,"level":15,"description":"Mending MistRank 135% of base mana 1.8 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 9+0+Heal*0.15 every 1 sec for 7 sec. After 1.69 sec, all allies within 30 yds are healed for an additional 96+2.5 Points Per Level+Heal*0.231.","castMode":"cast","castTimeMs":1800,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800899:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.1213333343466123,"basePoints":9,"dieSides":1,"pointsPerLevel":0.12800000607967377,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803538,"withValue":1689},{"kind":"heal","coefficient":1.3199999968210856,"basePoints":96,"dieSides":1,"pointsPerLevel":1.5199999809265137,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20}]},{"rank":2,"spellId":502951,"level":22,"description":"Mending MistRank 235% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 15+0+Heal*0.15 every 1 sec for 7 sec. After 1.64 sec, all allies within 30 yds are healed for an additional 149+4.0 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502951:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.1951351353714058,"basePoints":15,"dieSides":2,"pointsPerLevel":0.2800000011920929,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803539,"withValue":1635},{"kind":"heal","coefficient":1.9290090165696703,"basePoints":149,"dieSides":1,"pointsPerLevel":2.9600000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26}]},{"rank":3,"spellId":502952,"level":28,"description":"Mending MistRank 335% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 18+0+Heal*0.15 every 1 sec for 7 sec. After 1.59 sec, all allies within 30 yds are healed for an additional 185+4.7 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502952:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.221085272094076,"basePoints":18,"dieSides":3,"pointsPerLevel":0.3400000035762787,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803540,"withValue":1590},{"kind":"heal","coefficient":2.232868231544199,"basePoints":185,"dieSides":1,"pointsPerLevel":3.680000066757202,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32}]},{"rank":4,"spellId":502953,"level":34,"description":"Mending MistRank 435% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 22+0+Heal*0.15 every 1 sec for 7 sec. After 1.55 sec, all allies within 30 yds are healed for an additional 219+5.4 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502953:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.2570067996881446,"basePoints":22,"dieSides":4,"pointsPerLevel":0.41999998688697815,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803541,"withValue":1545},{"kind":"heal","coefficient":2.4982313233978894,"basePoints":219,"dieSides":1,"pointsPerLevel":4.360000133514404,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38}]},{"rank":5,"spellId":502954,"level":40,"description":"Mending MistRank 535% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 25+0+Heal*0.15 every 1 sec for 7 sec. After 1.5 sec, all allies within 30 yds are healed for an additional 260+5.3 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502954:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.27999999739907006,"basePoints":25,"dieSides":5,"pointsPerLevel":0.47999998927116394,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803542,"withValue":1500},{"kind":"heal","coefficient":2.608484903971354,"basePoints":260,"dieSides":1,"pointsPerLevel":4.260000228881836,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44}]},{"rank":6,"spellId":502955,"level":46,"description":"Mending MistRank 635% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 29+0+Heal*0.15 every 1 sec for 7 sec. After 1.5 sec, all allies within 30 yds are healed for an additional 287+5.7 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502955:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3128961754626915,"basePoints":29,"dieSides":6,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803543,"withValue":1500},{"kind":"heal","coefficient":2.754754045621945,"basePoints":287,"dieSides":1,"pointsPerLevel":4.71999979019165,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50}]},{"rank":7,"spellId":502956,"level":52,"description":"Mending MistRank 735% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 32+0+Heal*0.15 every 1 sec for 7 sec. After 1.5 sec, all allies within 30 yds are healed for an additional 314+6.3 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502956:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.33452736441768816,"basePoints":32,"dieSides":7,"pointsPerLevel":0.6200000047683716,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803544,"withValue":1500},{"kind":"heal","coefficient":2.9385075070964755,"basePoints":314,"dieSides":1,"pointsPerLevel":5.320000171661377,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56}]},{"rank":8,"spellId":502957,"level":58,"description":"Mending MistRank 835% of base mana 2 sec castSpread a precarious mist to up to 8 allies within 30 yds, healing them for 48+0+Heal*0.15 every 1 sec for 7 sec. After 1.5 sec, all allies within 30 yds are healed for an additional 692+1.0 Points Per Level+Heal*.33.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502957:effect:0:aura:8","name":"Mending Mist (Aura 8)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":7000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3610350949579178,"basePoints":48,"dieSides":9,"pointsPerLevel":0.4666669964790344,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":7,"intervalMs":1000},{"kind":"trigger-spell","spellId":803545,"withValue":1500},{"kind":"heal","coefficient":3.1598173515981736,"basePoints":692,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58}]}]},{"id":"coa-29-nerubian-sting-104-800882","classId":"venomancer","dbcSpellId":800882,"name":"Nerubian Sting","unlockLevel":15,"icon":"/assets/ui/spells/inv_misc_head_nerubian_01.png","sigil":"NS","description":"Nerubian StingRank 135 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 26+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(4+0+ShaP*.1) over 15 sec, stacking up to 3 times.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800882:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1100000023841858,"basePoints":4,"dieSides":2,"pointsPerLevel":0.36000001430511475,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18,"ticks":5,"intervalMs":3000,"tag":"spell-800882"},{"kind":"damage","coefficient":0.4333333902888828,"basePoints":26,"dieSides":4,"pointsPerLevel":0.7666670083999634,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18},{"kind":"apply-aura","aura":{"id":"coa:800882:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800882,"level":15,"description":"Nerubian StingRank 135 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 26+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(4+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800882:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1100000023841858,"basePoints":4,"dieSides":2,"pointsPerLevel":0.36000001430511475,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18,"ticks":5,"intervalMs":3000,"tag":"spell-800882"},{"kind":"damage","coefficient":0.4333333902888828,"basePoints":26,"dieSides":4,"pointsPerLevel":0.7666670083999634,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":18},{"kind":"apply-aura","aura":{"id":"coa:800882:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502905,"level":20,"description":"Nerubian StingRank 235 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 32+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(7+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502905:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1956761950538272,"basePoints":7,"dieSides":3,"pointsPerLevel":0.6273000240325928,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26,"ticks":5,"intervalMs":3000,"tag":"spell-502905"},{"kind":"damage","coefficient":0.4539428574698312,"basePoints":32,"dieSides":5,"pointsPerLevel":0.6832000017166138,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"apply-aura","aura":{"id":"coa:502905:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502906,"level":28,"description":"Nerubian StingRank 335 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 42+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(12+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502906:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.30130542525949405,"basePoints":12,"dieSides":6,"pointsPerLevel":0.8702999949455261,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32,"ticks":5,"intervalMs":3000,"tag":"spell-502906"},{"kind":"damage","coefficient":0.5511627881101859,"basePoints":42,"dieSides":6,"pointsPerLevel":0.949999988079071,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"apply-aura","aura":{"id":"coa:502906:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502907,"level":34,"description":"Nerubian StingRank 435 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 52+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(18+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502907:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4105591757767865,"basePoints":18,"dieSides":10,"pointsPerLevel":1.1132999658584595,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40,"ticks":5,"intervalMs":3000,"tag":"spell-502907"},{"kind":"damage","coefficient":0.657970058674715,"basePoints":52,"dieSides":8,"pointsPerLevel":1.212399959564209,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:502907:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502908,"level":42,"description":"Nerubian StingRank 535 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 69+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(31+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502908:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5553485371215999,"basePoints":31,"dieSides":15,"pointsPerLevel":1.3562999963760376,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46,"ticks":5,"intervalMs":3000,"tag":"spell-502908"},{"kind":"damage","coefficient":0.8195906549866436,"basePoints":69,"dieSides":11,"pointsPerLevel":1.5750000476837158,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46},{"kind":"apply-aura","aura":{"id":"coa:502908:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502909,"level":48,"description":"Nerubian StingRank 635 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 94+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(51+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502909:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.728922758152876,"basePoints":51,"dieSides":21,"pointsPerLevel":1.5993000268936157,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54,"ticks":5,"intervalMs":3000,"tag":"spell-502909"},{"kind":"damage","coefficient":0.9752804085060403,"basePoints":94,"dieSides":15,"pointsPerLevel":1.7359999418258667,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"apply-aura","aura":{"id":"coa:502909:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502910,"level":56,"description":"Nerubian StingRank 735 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 125+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(80+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502910:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.4009389922092779,"basePoints":80,"dieSides":29,"pointsPerLevel":3.6500000953674316,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58,"ticks":5,"intervalMs":3000,"tag":"spell-502910"},{"kind":"damage","coefficient":2.1455399061032865,"basePoints":125,"dieSides":21,"pointsPerLevel":5.75,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"apply-aura","aura":{"id":"coa:502910:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502911,"level":60,"description":"Nerubian StingRank 835 Energy Instant castApplies 1 Brood Mark Sting an enemy, dealing 418+0+ShaP*0.25 Shadow damage and an additional (15*1000/3)*(222+0+ShaP*.1) over 15 sec, stacking up to 3 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":35},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502911:effect:0:aura:3","name":"Nerubian Sting (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.6249688805474176,"basePoints":222,"dieSides":38,"pointsPerLevel":2.0852999687194824,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68,"ticks":5,"intervalMs":3000,"tag":"spell-502911"},{"kind":"damage","coefficient":2.522577747768826,"basePoints":418,"dieSides":28,"pointsPerLevel":2.2679998874664307,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"apply-aura","aura":{"id":"coa:502911:effect:2:aura:271","name":"Nerubian Sting (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-29-shadras-balm-499-800901","classId":"venomancer","dbcSpellId":800901,"name":"Shadra's Balm","unlockLevel":16,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Shadra's BalmRank 118% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 14+0+Heal*0.251685 every 3 sec for 18 sec.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800901:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.558603020124538,"basePoints":14,"dieSides":2,"pointsPerLevel":2.340630054473877,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:800901:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800901:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800901,"level":16,"description":"Shadra's BalmRank 118% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 14+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800901:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.558603020124538,"basePoints":14,"dieSides":2,"pointsPerLevel":2.340630054473877,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:800901:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800901:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}]},{"rank":2,"spellId":502968,"level":24,"description":"Shadra's BalmRank 218% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 41+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502968:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.6550796622903938,"basePoints":41,"dieSides":1,"pointsPerLevel":1.4851800203323364,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502968:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502968:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}]},{"rank":3,"spellId":502969,"level":32,"description":"Shadra's BalmRank 318% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 65+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502969:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.8466905093362146,"basePoints":65,"dieSides":1,"pointsPerLevel":1.6994800567626953,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502969:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502969:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}]},{"rank":4,"spellId":502970,"level":40,"description":"Shadra's BalmRank 418% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 84+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502970:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9606860709912849,"basePoints":84,"dieSides":1,"pointsPerLevel":1.8628300428390503,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502970:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502970:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}]},{"rank":5,"spellId":502971,"level":48,"description":"Shadra's BalmRank 518% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 102+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502971:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.8455746060325986,"basePoints":102,"dieSides":1,"pointsPerLevel":1.204450011253357,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502971:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502971:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}]},{"rank":6,"spellId":502972,"level":54,"description":"Shadra's BalmRank 618% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 142+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502972:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.2447912220793647,"basePoints":142,"dieSides":1,"pointsPerLevel":2.1420700550079346,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502972:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502972:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}]},{"rank":7,"spellId":502973,"level":60,"description":"Shadra's BalmRank 718% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 190+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502973:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":1.0719999101426867,"basePoints":190,"dieSides":1,"pointsPerLevel":0.8533329963684082,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:502973:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502973:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}]},{"rank":8,"spellId":570206,"level":68,"description":"Shadra's BalmRank 818% of base mana Instant castEnvelop an ally with a restorative balm, healing them for 235+0+Heal*0.251685 every 3 sec for 18 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570206:effect:0:aura:8","name":"Shadra's Balm (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9437751004016064,"basePoints":235,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":68,"ticks":6,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:570206:effect:1:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:570206:effect:2:aura:178","name":"Shadra's Balm (Aura 178)","disposition":"buff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0}]}]},{"id":"coa-29-spindlebind-103-800887","classId":"venomancer","dbcSpellId":800887,"name":"Spindlebind","unlockLevel":16,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"SpindlebindRank 130 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 61+0+NatP*0.4 Nature damage.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":61,"dieSides":10,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":16,"maxScalingLevel":22},{"kind":"apply-aura","aura":{"id":"coa:800887:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800887,"level":16,"description":"SpindlebindRank 130 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 61+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":61,"dieSides":10,"pointsPerLevel":0.9333329796791077,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":16,"maxScalingLevel":22},{"kind":"apply-aura","aura":{"id":"coa:800887:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":502890,"level":24,"description":"SpindlebindRank 230 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 83+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.2509140074253082,"basePoints":83,"dieSides":14,"pointsPerLevel":1.2666699886322021,"bonusPowerCoefficient":0.2509140074253082,"sourceLevel":24,"maxScalingLevel":30},{"kind":"apply-aura","aura":{"id":"coa:502890:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502891,"level":32,"description":"SpindlebindRank 330 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 104+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.31091898679733276,"basePoints":104,"dieSides":19,"pointsPerLevel":1.5833300352096558,"bonusPowerCoefficient":0.31091898679733276,"sourceLevel":32,"maxScalingLevel":38},{"kind":"apply-aura","aura":{"id":"coa:502891:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":502892,"level":40,"description":"SpindlebindRank 430 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 144+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.3804759979248047,"basePoints":144,"dieSides":26,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0.3804759979248047,"sourceLevel":40,"maxScalingLevel":46},{"kind":"apply-aura","aura":{"id":"coa:502892:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":502893,"level":48,"description":"SpindlebindRank 530 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 201+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.45972299575805664,"basePoints":201,"dieSides":37,"pointsPerLevel":4.625,"bonusPowerCoefficient":0.45972299575805664,"sourceLevel":48,"maxScalingLevel":52},{"kind":"apply-aura","aura":{"id":"coa:502893:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":502894,"level":54,"description":"SpindlebindRank 630 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 281+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.5483840107917786,"basePoints":281,"dieSides":52,"pointsPerLevel":6.474999904632568,"bonusPowerCoefficient":0.5483840107917786,"sourceLevel":54,"maxScalingLevel":58},{"kind":"apply-aura","aura":{"id":"coa:502894:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":502895,"level":60,"description":"SpindlebindRank 730 Energy Instant16 sec cooldownEmit webs at all enemies behind you, rooting them for 4 sec and inflicting 392+0+NatP*0.4 Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":16000,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"damage","coefficient":0.6456829905509949,"basePoints":392,"dieSides":109,"pointsPerLevel":6.033329963684082,"bonusPowerCoefficient":0.6456829905509949,"sourceLevel":60,"maxScalingLevel":66},{"kind":"apply-aura","aura":{"id":"coa:502895:effect:1:aura:26","name":"Spindlebind (Aura 26)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":800868},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-29-unity-103-502982","classId":"venomancer","dbcSpellId":502982,"name":"Unity","unlockLevel":19,"icon":"/assets/ui/spells/ability_druid_cyclone.png","sigil":"UN","description":"UnityRank 325% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 48 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","target":"friendly","range":{"min":0,"max":40},"radius":12,"castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":0.9522823562809065,"basePoints":48,"dieSides":16,"pointsPerLevel":2.191200017929077,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27}],"passive":false,"source":"coa-progression","ranks":[{"rank":3,"spellId":502982,"level":19,"description":"UnityRank 325% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 48 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":0.9522823562809065,"basePoints":48,"dieSides":16,"pointsPerLevel":2.191200017929077,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":27}]},{"rank":4,"spellId":502983,"level":28,"description":"UnityRank 425% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 79 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":1.2959937975388165,"basePoints":79,"dieSides":22,"pointsPerLevel":2.774399995803833,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":36}]},{"rank":5,"spellId":502984,"level":37,"description":"UnityRank 525% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 125 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":1.6905846091417165,"basePoints":125,"dieSides":30,"pointsPerLevel":3.357599973678589,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":44}]},{"rank":6,"spellId":502985,"level":45,"description":"UnityRank 625% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 185 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":2.1023333152135213,"basePoints":185,"dieSides":39,"pointsPerLevel":3.875999927520752,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":53}]},{"rank":7,"spellId":502986,"level":54,"description":"UnityRank 725% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 279 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":2.6318685743543835,"basePoints":279,"dieSides":51,"pointsPerLevel":4.459199905395508,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62}]},{"rank":8,"spellId":502987,"level":63,"description":"UnityRank 825% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 414 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":3.2635521053249,"basePoints":414,"dieSides":65,"pointsPerLevel":5.042399883270264,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":71}]},{"rank":9,"spellId":502988,"level":72,"description":"UnityRank 925% of base mana 1.5 sec cast20 sec cooldownHeals up to 8 allies within 12 yds of the targeted location for 605 and applies Shadra's Vigil to them. Shadra's Prayer Bring the glory of Shadra to an ally, healing them for 32+0+Heal*0.263078, plus 5+0+Heal*0.131086 every 3 sec for 21 sec.","castMode":"cast","castTimeMs":1500,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":25,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":605,"dieSides":80,"pointsPerLevel":5.6255998611450195,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":80}]}]},{"id":"coa-29-venomtip-poison-105-803195","classId":"venomancer","dbcSpellId":803195,"name":"Venomtip Poison","unlockLevel":27,"icon":"/assets/ui/spells/5_poisonclaw_border.png","sigil":"VP","description":"Venomtip PoisonRank 120 Rage InstantSpray poison on an enemy and all enemies near them, dealing 30+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","target":"hostile","range":{"min":0,"max":20},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.09000000357627869,"basePoints":30,"dieSides":2,"pointsPerLevel":0.5400000214576721,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":27,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803195,"level":27,"description":"Venomtip PoisonRank 120 Rage InstantSpray poison on an enemy and all enemies near them, dealing 30+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.09000000357627869,"basePoints":30,"dieSides":2,"pointsPerLevel":0.5400000214576721,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":27,"maxScalingLevel":32},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":503156,"level":34,"description":"Venomtip PoisonRank 220 Rage InstantSpray poison on an enemy and all enemies near them, dealing 37+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.42857142857142855,"basePoints":37,"dieSides":2,"pointsPerLevel":0.75,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503157,"level":40,"description":"Venomtip PoisonRank 320 Rage InstantSpray poison on an enemy and all enemies near them, dealing 45+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5030303001403809,"basePoints":45,"dieSides":1,"pointsPerLevel":0.949999988079071,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503158,"level":46,"description":"Venomtip PoisonRank 420 Rage InstantSpray poison on an enemy and all enemies near them, dealing 54+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.5904371464838747,"basePoints":54,"dieSides":1,"pointsPerLevel":1.1749999523162842,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503159,"level":52,"description":"Venomtip PoisonRank 520 Rage InstantSpray poison on an enemy and all enemies near them, dealing 65+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.6985074750226529,"basePoints":65,"dieSides":1,"pointsPerLevel":1.4500000476837158,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503160,"level":58,"description":"Venomtip PoisonRank 620 Rage InstantSpray poison on an enemy and all enemies near them, dealing 78+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":0.8285388064711061,"basePoints":78,"dieSides":2,"pointsPerLevel":1.774999976158142,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":62},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503161,"level":64,"description":"Venomtip PoisonRank 720 Rage InstantSpray poison on an enemy and all enemies near them, dealing 97+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.0101265565252506,"basePoints":97,"dieSides":1,"pointsPerLevel":2.2249999046325684,"bonusPowerCoefficient":0,"sourceLevel":64,"maxScalingLevel":68},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503162,"level":70,"description":"Venomtip PoisonRank 820 Rage InstantSpray poison on an enemy and all enemies near them, dealing 120+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.2254901960784315,"basePoints":120,"dieSides":1,"pointsPerLevel":2.75,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":74},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":503163,"level":76,"description":"Venomtip PoisonRank 920 Rage InstantSpray poison on an enemy and all enemies near them, dealing 147+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.47985347985348,"basePoints":147,"dieSides":2,"pointsPerLevel":3.375,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":503164,"level":82,"description":"Venomtip PoisonRank 1020 Rage InstantSpray poison on an enemy and all enemies near them, dealing 263+0+NatP*0.11+AP*0.1 Nature damage and reducing their attack speed by 20% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"damage","coefficient":1.6880861066051365,"basePoints":263,"dieSides":1,"pointsPerLevel":2.783329963684082,"bonusPowerCoefficient":0,"sourceLevel":82,"maxScalingLevel":88},{"kind":"trigger-spell","spellId":572058},{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-29-facemelter-103-502877","classId":"venomancer","dbcSpellId":502877,"name":"Facemelter","unlockLevel":34,"icon":"/assets/ui/spells/spell_deathvortex.png","sigil":"FA","description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(23+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*3.50} Nature damage.","target":"hostile","range":{"min":0,"max":20},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502877:effect:0:aura:3","name":"Facemelter (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2846938720365771,"basePoints":24,"dieSides":1,"pointsPerLevel":0.5249999761581421,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":5,"intervalMs":3000,"tag":"spell-502877"},{"kind":"apply-aura","aura":{"id":"coa:502877:effect:1:aura:4","name":"Facemelter (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502877:effect:2:aura:271","name":"Facemelter (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502877,"level":34,"description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(23+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(23+0+$spn*.15))*3.50} Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502877:effect:0:aura:3","name":"Facemelter (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2846938720365771,"basePoints":24,"dieSides":1,"pointsPerLevel":0.5249999761581421,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38,"ticks":5,"intervalMs":3000,"tag":"spell-502877"},{"kind":"apply-aura","aura":{"id":"coa:502877:effect:1:aura:4","name":"Facemelter (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502877:effect:2:aura:271","name":"Facemelter (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502878,"level":40,"description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(30+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(30+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(30+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(30+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(30+0+$spn*.15))*3.50} Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502878:effect:0:aura:3","name":"Facemelter (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3575757546858354,"basePoints":31,"dieSides":1,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44,"ticks":5,"intervalMs":3000,"tag":"spell-502878"},{"kind":"apply-aura","aura":{"id":"coa:502878:effect:1:aura:4","name":"Facemelter (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502878:effect:2:aura:271","name":"Facemelter (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502879,"level":46,"description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(37+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(37+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(37+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(37+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(37+0+$spn*.15))*3.50} Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502879:effect:0:aura:3","name":"Facemelter (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.42677596227718834,"basePoints":38,"dieSides":3,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":5,"intervalMs":3000,"tag":"spell-502879"},{"kind":"apply-aura","aura":{"id":"coa:502879:effect:1:aura:4","name":"Facemelter (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502879:effect:2:aura:271","name":"Facemelter (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502880,"level":52,"description":"$?a800841[][]Requires Spider Form Consumes Brood Marks Spray poison upon an enemy and nearby enemies, dealing Nature damage over $d. 1 Mark: ${(($d*1000/$T1)*(45+0+$spn*.15))*1.25} Nature damage. 2 Marks: ${(($d*1000/$T1)*(45+0+$spn*.15))*1.60} Nature damage. 3 Marks: ${(($d*1000/$T1)*(45+0+$spn*.15))*2.05} Nature damage. 4 Marks: ${(($d*1000/$T1)*(45+0+$spn*.15))*2.60} Nature damage. 5 Marks: ${(($d*1000/$T1)*(45+0+$spn*.15))*3.50} Nature damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"energy","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502880:effect:0:aura:3","name":"Facemelter (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5054726244798348,"basePoints":46,"dieSides":3,"pointsPerLevel":1.0499999523162842,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56,"ticks":5,"intervalMs":3000,"tag":"spell-502880"},{"kind":"apply-aura","aura":{"id":"coa:502880:effect:1:aura:4","name":"Facemelter (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502880:effect:2:aura:271","name":"Facemelter (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-29-venoxis-fang-103-805405","classId":"venomancer","dbcSpellId":805405,"name":"Venoxis Fang","unlockLevel":35,"icon":"/assets/ui/spells/spell_nature_poisoncleansingtotem.png","sigil":"VF","description":"Venoxis FangRank 19% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 123+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4206666644414265,"basePoints":123,"dieSides":23,"pointsPerLevel":2.259999990463257,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:805405:effect:1:aura:271","name":"Venoxis Fang (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":527873},{"kind":"apply-aura","aura":{"id":"coa:527873:effect:0:aura:108","name":"Venoxis Fang (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805405,"level":35,"description":"Venoxis FangRank 19% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 123+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1.4206666644414265,"basePoints":123,"dieSides":23,"pointsPerLevel":2.259999990463257,"bonusPowerCoefficient":0,"sourceLevel":35,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:805405:effect:1:aura:271","name":"Venoxis Fang (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":527873},{"kind":"apply-aura","aura":{"id":"coa:527873:effect:0:aura:108","name":"Venoxis Fang (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":2,"spellId":503941,"level":42,"description":"Venoxis FangRank 210% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 157+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.7245613566616127,"basePoints":157,"dieSides":14,"pointsPerLevel":7.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":44},{"kind":"apply-aura","aura":{"id":"coa:503941:effect:1:aura:271","name":"Venoxis Fang (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":527873},{"kind":"apply-aura","aura":{"id":"coa:527873:effect:0:aura:108","name":"Venoxis Fang (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":3,"spellId":503942,"level":46,"description":"Venoxis FangRank 312% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 191+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.302185840294009,"basePoints":191,"dieSides":18,"pointsPerLevel":8.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":48},{"kind":"apply-aura","aura":{"id":"coa:503942:effect:1:aura:271","name":"Venoxis Fang (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":527873},{"kind":"apply-aura","aura":{"id":"coa:527873:effect:0:aura:108","name":"Venoxis Fang (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":4,"spellId":503943,"level":50,"description":"Venoxis FangRank 413% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 403+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":13,"percentage":true},"effects":[{"kind":"damage","coefficient":3.790597426585662,"basePoints":403,"dieSides":20,"pointsPerLevel":6.533329963684082,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":53},{"kind":"apply-aura","aura":{"id":"coa:503943:effect:1:aura:271","name":"Venoxis Fang (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":527873},{"kind":"apply-aura","aura":{"id":"coa:527873:effect:0:aura:108","name":"Venoxis Fang (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":5,"spellId":503944,"level":55,"description":"Venoxis FangRank 514% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 450+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":450,"dieSides":33,"pointsPerLevel":7.533329963684082,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":58},{"kind":"apply-aura","aura":{"id":"coa:503944:effect:1:aura:271","name":"Venoxis Fang (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":527873},{"kind":"apply-aura","aura":{"id":"coa:527873:effect:0:aura:108","name":"Venoxis Fang (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":6,"spellId":503945,"level":60,"description":"Venoxis FangRank 615% of base mana 2 sec cast8 sec cooldownBlast an enemy with a jet of toxic venom, dealing 792+0+ShaP*0.65 Shadow Damage, increasing the damage the target takes from this spell by 5% and its mana cost by 5% for 6 sec, stacks 5 times. If your target is afflicted with Lethargy, this spell incurs no cooldown. Usable while moving. Scales with modifiers to Venom Bolt.","castMode":"cast","castTimeMs":2000,"cooldownMs":8000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":792,"dieSides":28,"pointsPerLevel":4.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66},{"kind":"apply-aura","aura":{"id":"coa:503945:effect:1:aura:271","name":"Venoxis Fang (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":527873},{"kind":"apply-aura","aura":{"id":"coa:527873:effect:0:aura:108","name":"Venoxis Fang (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-29-spawn-484-805568","classId":"venomancer","dbcSpellId":805568,"name":"Spawn","unlockLevel":40,"icon":"/assets/ui/spells/achievement_halloween_rottenegg_01.png","sigil":"SP","description":"SpawnRank 120% of base mana 2 sec cast10 min cooldownBring a dead ally back to life with 400 health and 635 mana. Can be used in combat. Not usable in arena.","target":"self","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805568,"level":40,"description":"SpawnRank 120% of base mana 2 sec cast10 min cooldownBring a dead ally back to life with 400 health and 635 mana. Can be used in combat. Not usable in arena.","castMode":"cast","castTimeMs":2000,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"resurrection","percentMaxHealth":0.35}]}]},{"id":"coa-29-green-salve-103-502981","classId":"venomancer","dbcSpellId":502981,"name":"Green Salve","unlockLevel":58,"icon":"/assets/ui/spells/inv_firstaid_healingsalve.png","sigil":"GS","description":"Green SalveRank 915% of base mana Instant cast10 sec cooldownRapidly heal an ally for 312 to 354 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 13+1.0 Points Per Level+Heal*0.244572.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502981:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3770168301177351,"basePoints":52,"dieSides":8,"pointsPerLevel":0.4666669964790344,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502981:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502981:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}],"passive":false,"source":"coa-progression","ranks":[{"rank":9,"spellId":502981,"level":58,"description":"Green SalveRank 915% of base mana Instant cast10 sec cooldownRapidly heal an ally for 312 to 354 over 6 sec. At the end of the duration, this will seek another nearby ally with the lowest health and heal them for 13+1.0 Points Per Level+Heal*0.244572.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502981:effect:0:aura:8","name":"Green Salve (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.3770168301177351,"basePoints":52,"dieSides":8,"pointsPerLevel":0.4666669964790344,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64,"ticks":6,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:502981:effect:1:aura:227","name":"Green Salve (Aura 227)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502981:proc:1:803529","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803529}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803529}]}]}],"reaper":[{"id":"coa-tree-6708","classId":"reaper","dbcSpellId":706790,"name":"Backswing","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(32)_border.png","sigil":"BA","description":"Increases the Runic Power generated by Reap by 5.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706790:effect:0:aura:107","name":"Backswing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706790,"level":1,"description":"Increases the Runic Power generated by Reap by 5.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706790:effect:0:aura:107","name":"Backswing (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":6708},{"id":"coa-tree-34500","classId":"reaper","dbcSpellId":560412,"name":"Between Shadows","unlockLevel":1,"icon":"/assets/ui/spells/5_shadowworld_border.png","sigil":"BS","description":"Casting Spectre Stride now generates 1 Reaped Soul.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560412:effect:0:aura:42","name":"Between Shadows (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560412:proc:0:504390","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504390}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504390}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560412,"level":1,"description":"Casting Spectre Stride now generates 1 Reaped Soul.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560412:effect:0:aura:42","name":"Between Shadows (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560412:proc:0:504390","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504390}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504390}]}],"talentEntryId":34500},{"id":"coa-tree-31289","classId":"reaper","dbcSpellId":680337,"name":"Bolstered Form","unlockLevel":1,"icon":"/assets/ui/spells/achievement_raid_torghast_shadowscourge_prisonofnerzhul.png","sigil":"BF","description":"Assume a bolstered form for 15 seconds, generating 30 Runic Power, increasing your Armor and your parry chance by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680337:effect:0:aura:101","name":"Bolstered Form (Aura 101)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":359505},{"kind":"resource","amount":300},{"kind":"apply-aura","aura":{"id":"coa:680337:effect:2:aura:47","name":"Bolstered Form (Aura 47)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":680337,"level":1,"description":"Assume a bolstered form for 15 seconds, generating 30 Runic Power, increasing your Armor and your parry chance by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680337:effect:0:aura:101","name":"Bolstered Form (Aura 101)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"trigger-spell","spellId":359505},{"kind":"resource","amount":300},{"kind":"apply-aura","aura":{"id":"coa:680337:effect:2:aura:47","name":"Bolstered Form (Aura 47)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":31289},{"id":"coa-tree-6780","classId":"reaper","dbcSpellId":560422,"name":"Burial Rites","unlockLevel":1,"icon":"/assets/ui/spells/achievement_raid_torghast_thenine.png","sigil":"BR","description":"Increases the effectiveness of your Rites by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560422:effect:0:aura:137","name":"Burial Rites (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560422:effect:1:aura:108","name":"Burial Rites (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560422,"level":1,"description":"Increases the effectiveness of your Rites by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560422:effect:0:aura:137","name":"Burial Rites (Aura 137)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560422:effect:1:aura:108","name":"Burial Rites (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":6780},{"id":"coa-30-corporeal-flay-107-800938","classId":"reaper","dbcSpellId":800938,"name":"Corporeal Flay","unlockLevel":1,"icon":"/assets/ui/spells/ability_warlock_soulsiphon.png","sigil":"CF","description":"Corporeal FlayRank 1Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 17 to 18 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800938:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4004444440205892,"basePoints":17,"dieSides":2,"pointsPerLevel":0.5199999809265137,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":8,"ticks":3,"intervalMs":2000,"tag":"spell-800938"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800938,"level":1,"description":"Corporeal FlayRank 1Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 17 to 18 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800938:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4004444440205892,"basePoints":17,"dieSides":2,"pointsPerLevel":0.5199999809265137,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":8,"ticks":3,"intervalMs":2000,"tag":"spell-800938"}]},{"rank":2,"spellId":502685,"level":9,"description":"Corporeal FlayRank 2Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 32 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502685:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5337444436219003,"basePoints":32,"dieSides":1,"pointsPerLevel":0.7143999934196472,"bonusPowerCoefficient":0,"sourceLevel":9,"maxScalingLevel":16,"ticks":3,"intervalMs":2000,"tag":"spell-502685"}]},{"rank":3,"spellId":502686,"level":17,"description":"Corporeal FlayRank 3Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 60 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502686:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.7998166705171267,"basePoints":60,"dieSides":1,"pointsPerLevel":0.9872000217437744,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":24,"ticks":3,"intervalMs":2000,"tag":"spell-502686"}]},{"rank":4,"spellId":502687,"level":25,"description":"Corporeal FlayRank 4Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 92 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502687:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0374999900658926,"basePoints":92,"dieSides":1,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":32,"ticks":3,"intervalMs":2000,"tag":"spell-502687"}]},{"rank":5,"spellId":502688,"level":33,"description":"Corporeal FlayRank 5Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 113 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502688:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.151388894352648,"basePoints":113,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":40,"ticks":3,"intervalMs":2000,"tag":"spell-502688"}]},{"rank":6,"spellId":502689,"level":41,"description":"Corporeal FlayRank 6Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 157 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502689:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.4784010081064134,"basePoints":157,"dieSides":1,"pointsPerLevel":2.228569984436035,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":48,"ticks":3,"intervalMs":2000,"tag":"spell-502689"}]},{"rank":7,"spellId":502690,"level":49,"description":"Corporeal FlayRank 7Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 212 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502690:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.8734386178354423,"basePoints":212,"dieSides":1,"pointsPerLevel":3.0142900943756104,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":56,"ticks":3,"intervalMs":2000,"tag":"spell-502690"}]},{"rank":8,"spellId":502691,"level":57,"description":"Corporeal FlayRank 8Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 257 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502691:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.154893430294814,"basePoints":257,"dieSides":1,"pointsPerLevel":3.657140016555786,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":64,"ticks":3,"intervalMs":2000,"tag":"spell-502691"}]},{"rank":9,"spellId":502692,"level":65,"description":"Corporeal FlayRank 9Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 319 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502692:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.559524591763814,"basePoints":319,"dieSides":1,"pointsPerLevel":4.54286003112793,"bonusPowerCoefficient":0,"sourceLevel":65,"maxScalingLevel":72,"ticks":3,"intervalMs":2000,"tag":"spell-502692"}]},{"rank":10,"spellId":502693,"level":73,"description":"Corporeal FlayRank 10Instant cast8 sec cooldownFlay an enemy's soul with a beam of dark magic, dealing 413 Spellshadow Damage every 2 sec for 6 sec. Soul Infusion: Arcs to up to 0 enemies and ticks % faster.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502693:effect:0:aura:3","name":"Corporeal Flay (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":3.191881866166086,"basePoints":413,"dieSides":1,"pointsPerLevel":5.885709762573242,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80,"ticks":3,"intervalMs":2000,"tag":"spell-502693"}]}]},{"id":"coa-30-crimson-quickness-106-705411","classId":"reaper","dbcSpellId":705411,"name":"Crimson Quickness","unlockLevel":1,"icon":"/assets/ui/spells/inv_knife_1h_artifactcthun_d_03.png","sigil":"CQ","description":"Crimson QuicknessRank 1Reduces the cooldown of Crimson Scythe by 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705411:effect:0:aura:4","name":"Crimson Quickness (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":704551},{"kind":"apply-aura","aura":{"id":"coa:705411:effect:1:aura:107","name":"Crimson Quickness (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705411,"level":1,"description":"Crimson QuicknessRank 1Reduces the cooldown of Crimson Scythe by 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705411:effect:0:aura:4","name":"Crimson Quickness (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":704551},{"kind":"apply-aura","aura":{"id":"coa:705411:effect:1:aura:107","name":"Crimson Quickness (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]},{"rank":2,"spellId":705412,"level":1,"description":"Crimson QuicknessRank 2Reduces the cooldown of Crimson Scythe by 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705412:effect:0:aura:4","name":"Crimson Quickness (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":704551},{"kind":"apply-aura","aura":{"id":"coa:705412:effect:1:aura:107","name":"Crimson Quickness (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-100}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-30-cursed-rosary-none-504307","classId":"reaper","dbcSpellId":504307,"name":"Cursed Rosary","unlockLevel":1,"icon":"/assets/ui/spells/nhi_shadowcross_border.png","sigil":"CR","description":"Cursed RosaryRank 2Increases Physical and Shadow Damage dealt by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504307:effect:0:aura:79","name":"Cursed Rosary (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504307:effect:1:aura:79","name":"Cursed Rosary (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"shadow","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":32,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":504307,"level":1,"description":"Cursed RosaryRank 2Increases Physical and Shadow Damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504307:effect:0:aura:79","name":"Cursed Rosary (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504307:effect:1:aura:79","name":"Cursed Rosary (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"shadow","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":32,"triggerSpellId":0}]}]},{"id":"coa-tree-6726","classId":"reaper","dbcSpellId":704558,"name":"Dark Passage","unlockLevel":1,"icon":"/assets/ui/spells/inv_artifact_stolenpower.png","sigil":"DP","description":"Dealing direct critical strikes with Shadow damage reduce the cooldown of Limbo by -2 sec.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704558:effect:0:aura:42","name":"Dark Passage (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704558:proc:0:504035","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504035}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504035}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704558,"level":1,"description":"Dealing direct critical strikes with Shadow damage reduce the cooldown of Limbo by -2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:704558:effect:0:aura:42","name":"Dark Passage (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704558:proc:0:504035","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504035}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":504035}]}],"talentEntryId":6726},{"id":"coa-tree-30324","classId":"reaper","dbcSpellId":805186,"name":"Essence Invigoration","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_lesseressence.png","sigil":"EI","description":"Casting abilities that require Soul Infusion now has a 50% chance to restore 5% of your missing health.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805186:effect:0:aura:42","name":"Essence Invigoration (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805186:proc:0:805187","triggers":["cast"],"chance":0.5,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805187}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805187}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805186,"level":1,"description":"Casting abilities that require Soul Infusion now has a 50% chance to restore 5% of your missing health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805186:effect:0:aura:42","name":"Essence Invigoration (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:805186:proc:0:805187","triggers":["cast"],"chance":0.5,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805187}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805187}]}],"talentEntryId":30324},{"id":"coa-tree-34492","classId":"reaper","dbcSpellId":805192,"name":"Ghastly Advance","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_auraofdarkness.png","sigil":"GA","description":"Increases the range of Spectre Stride by 5 yds and causes it to generate 5 more Runic Power.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805192:effect:0:aura:107","name":"Ghastly Advance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805192:effect:1:aura:107","name":"Ghastly Advance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805192,"level":1,"description":"Increases the range of Spectre Stride by 5 yds and causes it to generate 5 more Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805192:effect:0:aura:107","name":"Ghastly Advance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805192:effect:1:aura:107","name":"Ghastly Advance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]},{"rank":2,"spellId":807885,"level":1,"description":"Increases the range of Spectre Stride by 10 yds and causes it to generate 10 more Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807885:effect:0:aura:107","name":"Ghastly Advance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807885:effect:1:aura:107","name":"Ghastly Advance (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34492},{"id":"coa-tree-6778","classId":"reaper","dbcSpellId":704357,"name":"Ghastly Form","unlockLevel":1,"icon":"/assets/ui/spells/ability_argus_deathfog.png","sigil":"GF","description":"After using Spectre Stride, Scythe Rush, or Veilwalk you now gain a shield that absorbs 114 + 33% AP damage for 6 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:704357:effect:0:aura:42","name":"Ghastly Form (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704357:proc:0:704358","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704358}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704358}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":704357,"level":1,"description":"After using Spectre Stride, Scythe Rush, or Veilwalk you now gain a shield that absorbs 114 + 33% AP damage for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:704357:effect:0:aura:42","name":"Ghastly Form (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:704357:proc:0:704358","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704358}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704358}]}],"talentEntryId":6778},{"id":"coa-tree-9321","classId":"reaper","dbcSpellId":806146,"name":"Ghastly Screech","unlockLevel":1,"icon":"/assets/ui/spells/_d3horrify.png","sigil":"GS","description":"Screech with ghastly intent, silencing all nearby enemies for 4 seconds, and dealing 90 + 25% AP Shadowfrost Damage at the end of the duration.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"damage","coefficient":1},{"kind":"interrupt","lockoutMs":4000},{"kind":"apply-aura","aura":{"id":"coa:806146:effect:1:aura:27","name":"Ghastly Screech (Aura 27)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806146:effect:2:aura:227","name":"Ghastly Screech (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806146:proc:2:806147","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806147}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":806147}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806146,"level":1,"description":"Screech with ghastly intent, silencing all nearby enemies for 4 seconds, and dealing 90 + 25% AP Shadowfrost Damage at the end of the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":20},"effects":[{"kind":"damage","coefficient":1},{"kind":"interrupt","lockoutMs":4000},{"kind":"apply-aura","aura":{"id":"coa:806146:effect:1:aura:27","name":"Ghastly Screech (Aura 27)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806146:effect:2:aura:227","name":"Ghastly Screech (Aura 227)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:806146:proc:2:806147","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806147}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":806147}]}],"talentEntryId":9321},{"id":"coa-30-grim-skin-none-560494","classId":"reaper","dbcSpellId":560494,"name":"Grim Skin","unlockLevel":1,"icon":"/assets/ui/spells/inv_tradeskill_skinning_shaleather.png","sigil":"GS","description":"Grim SkinRank 2Reduces damage taken by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560494:effect:0:aura:87","name":"Grim Skin (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560494,"level":1,"description":"Grim SkinRank 2Reduces damage taken by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560494:effect:0:aura:87","name":"Grim Skin (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-tree-4055","classId":"reaper","dbcSpellId":92145,"name":"Harvester","unlockLevel":1,"icon":"/assets/ui/spells/ability_revendreth_deathknight.png","sigil":"HA","description":"Level 10 Passive You now heal yourself equal to 15% of all damage dealt.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92145:effect:0:aura:4","name":"Harvester (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92145,"level":1,"description":"Level 10 Passive You now heal yourself equal to 15% of all damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92145:effect:0:aura:4","name":"Harvester (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4055},{"id":"coa-tree-34505","classId":"reaper","dbcSpellId":805188,"name":"Harvester's Scythe","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_restlessblades.png","sigil":"HS","description":"Increases the amount leeched by Soul Strike by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805188:effect:0:aura:107","name":"Harvester's Scythe (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805188,"level":1,"description":"Increases the amount leeched by Soul Strike by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805188:effect:0:aura:107","name":"Harvester's Scythe (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34505},{"id":"coa-30-improved-blood-siphon-106-705407","classId":"reaper","dbcSpellId":705407,"name":"Improved Blood Siphon","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_soulleech.png","sigil":"IB","description":"Improved Blood SiphonRank 1Increases the damage of Blood Siphon by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705407:effect:0:aura:108","name":"Improved Blood Siphon (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705407:effect:1:aura:4","name":"Improved Blood Siphon (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705407,"level":1,"description":"Improved Blood SiphonRank 1Increases the damage of Blood Siphon by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705407:effect:0:aura:108","name":"Improved Blood Siphon (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705407:effect:1:aura:4","name":"Improved Blood Siphon (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705408,"level":1,"description":"Improved Blood SiphonRank 2Increases the damage of Blood Siphon by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705408:effect:0:aura:108","name":"Improved Blood Siphon (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705408:effect:1:aura:4","name":"Improved Blood Siphon (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-13500","classId":"reaper","dbcSpellId":561342,"name":"Into The Shadow Realm","unlockLevel":1,"icon":"/assets/ui/spells/5_spirit_border.png","sigil":"IT","description":"Reduces the cooldown of Deathstalker, Soulstone Lure, and Soul Shear by -25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561342:effect:0:aura:108","name":"Into The Shadow Realm (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561342,"level":1,"description":"Reduces the cooldown of Deathstalker, Soulstone Lure, and Soul Shear by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561342:effect:0:aura:108","name":"Into The Shadow Realm (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":13500},{"id":"coa-tree-9322","classId":"reaper","dbcSpellId":805718,"name":"Jailer's Bargain","unlockLevel":1,"icon":"/assets/ui/spells/nhi_spiritarmor_border.png","sigil":"JS","description":"Beckon the jailer, gaining a shield that absorbs damage equal to 30% of your maximum health for 10 seconds. While this is active you are considered Undead and are immune to fear, sleep, and charm effects.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:805718:effect:0:aura:69","name":"Jailer's Bargain (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:805718:absorb:0","amount":1,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805718:effect:1:aura:77","name":"Jailer's Bargain (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805718:effect:2:aura:77","name":"Jailer's Bargain (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805718,"level":1,"description":"Beckon the jailer, gaining a shield that absorbs damage equal to 30% of your maximum health for 10 seconds. While this is active you are considered Undead and are immune to fear, sleep, and charm effects.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:805718:effect:0:aura:69","name":"Jailer's Bargain (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:805718:absorb:0","amount":1,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805718:effect:1:aura:77","name":"Jailer's Bargain (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805718:effect:2:aura:77","name":"Jailer's Bargain (Aura 77)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["fear"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":9322},{"id":"coa-tree-5600","classId":"reaper","dbcSpellId":800845,"name":"Limbo","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_shadowdance.png","sigil":"LI","description":"Rip out of your mortal shell for 5 seconds, making you immune to all harmful spell effects and instantly restoring 30% of your maximum health and Runic Power. Usable while stunned, feared, or polymorphed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.3,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"resource","amount":30,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:800845:effect:2:aura:39","name":"Limbo (Aura 39)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"holy","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":39,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800845,"level":1,"description":"Rip out of your mortal shell for 5 seconds, making you immune to all harmful spell effects and instantly restoring 30% of your maximum health and Runic Power. Usable while stunned, feared, or polymorphed.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.3,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"resource","amount":30,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:800845:effect:2:aura:39","name":"Limbo (Aura 39)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"holy","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"nature","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"shadow","operation":"percent","value":-1},{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":39,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":5600},{"id":"coa-tree-30535","classId":"reaper","dbcSpellId":803030,"name":"Masochistic Rage","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_vendetta.png","sigil":"MR","description":"After a 1 sec delay, you suffer 660 + 36% AP damage, enraging you and increasing your damage dealt by 20% for 15 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":570097,"withValue":1000},{"kind":"damage","coefficient":4,"basePoints":420,"dieSides":1,"pointsPerLevel":8,"bonusPowerCoefficient":0,"sourceLevel":30},{"kind":"apply-aura","aura":{"id":"coa:570097:effect:1:aura:79","name":"Masochistic Rage (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803030,"level":1,"description":"After a 1 sec delay, you suffer 660 + 36% AP damage, enraging you and increasing your damage dealt by 20% for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":570097,"withValue":1000},{"kind":"damage","coefficient":4,"basePoints":420,"dieSides":1,"pointsPerLevel":8,"bonusPowerCoefficient":0,"sourceLevel":30},{"kind":"apply-aura","aura":{"id":"coa:570097:effect:1:aura:79","name":"Masochistic Rage (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":30535},{"id":"coa-tree-31125","classId":"reaper","dbcSpellId":805203,"name":"Mawborn","unlockLevel":1,"icon":"/assets/ui/spells/warlock_siphonlife.png","sigil":"MA","description":"Reduces the duration of disarm and incapacitate effects against you by -20%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"status","status":"sleep","durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:805203:effect:0:aura:232","name":"Mawborn (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805203:effect:1:aura:232","name":"Mawborn (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805203:effect:2:aura:232","name":"Mawborn (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":30,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805203,"level":1,"description":"Reduces the duration of disarm and incapacitate effects against you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"status","status":"sleep","durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:805203:effect:0:aura:232","name":"Mawborn (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805203:effect:1:aura:232","name":"Mawborn (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805203:effect:2:aura:232","name":"Mawborn (Aura 232)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":30,"triggerSpellId":0}]}],"talentEntryId":31125},{"id":"reaper-murder","classId":"reaper","dbcSpellId":500376,"name":"Murder","unlockLevel":1,"icon":"/assets/ui/spells/_d3companion.png","sigil":"MU","description":"MurderRank 130 Runic Power Instant castSend soulcrows at an enemy, dealing 13+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","target":"hostile","range":{"min":0,"max":15},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":0.3020833333333333,"basePoints":13,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"trigger-spell","spellId":500374},{"kind":"trigger-spell","spellId":560421},{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":500376,"level":1,"description":"MurderRank 130 Runic Power Instant castSend soulcrows at an enemy, dealing 13+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":0.3020833333333333,"basePoints":13,"dieSides":2,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":6},{"kind":"trigger-spell","spellId":500374},{"kind":"trigger-spell","spellId":560421},{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502679,"level":8,"description":"MurderRank 230 Runic Power Instant castSend soulcrows at an enemy, dealing 29+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":0.5739130490068076,"basePoints":29,"dieSides":3,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":18},{"kind":"trigger-spell","spellId":500374},{"kind":"trigger-spell","spellId":560421},{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502680,"level":20,"description":"MurderRank 330 Runic Power Instant castSend soulcrows at an enemy, dealing 61+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":0.8904761859348842,"basePoints":61,"dieSides":10,"pointsPerLevel":1.399999976158142,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"trigger-spell","spellId":500374},{"kind":"trigger-spell","spellId":560421},{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502681,"level":28,"description":"MurderRank 430 Runic Power Instant castSend soulcrows at an enemy, dealing 94+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1.1193798346112864,"basePoints":94,"dieSides":15,"pointsPerLevel":1.5499999523162842,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":500374},{"kind":"trigger-spell","spellId":560421},{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502682,"level":36,"description":"MurderRank 530 Runic Power Instant castSend soulcrows at an enemy, dealing 134+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1.34248365452087,"basePoints":134,"dieSides":25,"pointsPerLevel":1.649999976158142,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"trigger-spell","spellId":500374},{"kind":"trigger-spell","spellId":560421},{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502683,"level":44,"description":"MurderRank 630 Runic Power Instant castSend soulcrows at an enemy, dealing 206+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1.7062146892655368,"basePoints":206,"dieSides":39,"pointsPerLevel":1.75,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":500374},{"kind":"trigger-spell","spellId":560421},{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502684,"level":52,"description":"MurderRank 730 Runic Power Instant castSend soulcrows at an enemy, dealing 320+0+AP*0.18 Shadow damage and reducing their chance to hit by 3% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":2.211940286171377,"basePoints":320,"dieSides":63,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":500374},{"kind":"trigger-spell","spellId":560421},{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30109","classId":"reaper","dbcSpellId":561108,"name":"Mysterious Omen","unlockLevel":1,"icon":"/assets/ui/spells/nhi_frozenghost_border.png","sigil":"MO","description":"Increases the range of Murder and Soul Shock by 5 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561108:effect:0:aura:107","name":"Mysterious Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561108:effect:1:aura:107","name":"Mysterious Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561108,"level":1,"description":"Increases the range of Murder and Soul Shock by 5 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561108:effect:0:aura:107","name":"Mysterious Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:561108:effect:1:aura:107","name":"Mysterious Omen (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":30109},{"id":"coa-tree-30534","classId":"reaper","dbcSpellId":680995,"name":"Painbringer","unlockLevel":1,"icon":"/assets/ui/spells/nhi_reaperscythe_border.png","sigil":"PA","description":"Generating Reaped Souls now has a 10% chance to trigger Masochistic Rage for 5 sec. If Masochistic Rage is already active, it will instead extend the duration by 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680995:effect:0:aura:42","name":"Painbringer (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680995:proc:0:520533","triggers":["hit"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520533}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520533},{"kind":"apply-aura","aura":{"id":"coa:680995:effect:1:aura:42","name":"Painbringer (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680995:proc:1:520877","triggers":["hit"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520877}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520877}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680995,"level":1,"description":"Generating Reaped Souls now has a 10% chance to trigger Masochistic Rage for 5 sec. If Masochistic Rage is already active, it will instead extend the duration by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680995:effect:0:aura:42","name":"Painbringer (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680995:proc:0:520533","triggers":["hit"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520533}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520533},{"kind":"apply-aura","aura":{"id":"coa:680995:effect:1:aura:42","name":"Painbringer (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680995:proc:1:520877","triggers":["hit"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520877}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520877}]}],"talentEntryId":30534},{"id":"reaper-scythe-rush","classId":"reaper","dbcSpellId":500359,"name":"Scythe Rush","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_bladedance.png","sigil":"SR","description":"Rush towards an enemy and generate 15 Runic Power. Cannot be used on the same target more than once every 20 seconds.","target":"hostile","range":{"min":8,"max":25},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"charge","toward":"target"}],"source":"coa-tree","passive":false,"ranks":[{"rank":1,"spellId":500359,"level":1,"description":"Rush towards an enemy and generate 15 Runic Power. Cannot be used on the same target more than once every 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"charge","toward":"target"}]}]},{"id":"coa-tree-34499","classId":"reaper","dbcSpellId":805184,"name":"Soul Furnace","unlockLevel":1,"icon":"/assets/ui/spells/nhi_spiritamulet_border.png","sigil":"SF","description":"Increases the amount leeched from Soul Harvest by an additional 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805184:effect:0:aura:108","name":"Soul Furnace (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805184:effect:1:aura:108","name":"Soul Furnace (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":27,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":805184,"level":1,"description":"Increases the amount leeched from Soul Harvest by an additional 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805184:effect:0:aura:108","name":"Soul Furnace (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805184:effect:1:aura:108","name":"Soul Furnace (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":27,"triggerSpellId":0}]}],"talentEntryId":34499},{"id":"coa-tree-34502","classId":"reaper","dbcSpellId":504012,"name":"Soul Harvest","unlockLevel":1,"icon":"/assets/ui/spells/nhi_spiritfire_border.png","sigil":"SH","description":"Generating Reaped Souls now triggers Soul Harvest. Soul Harvest (Damage)Blasts your target for 1 + 5% AP + 10% shadow SP Shadow Damage, healing for 100% of the damage dealt.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504012:effect:0:aura:42","name":"Soul Harvest (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504012:proc:0:573050","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573050}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":573050}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504012,"level":1,"description":"Generating Reaped Souls now triggers Soul Harvest. Soul Harvest (Damage)Blasts your target for 1 + 5% AP + 10% shadow SP Shadow Damage, healing for 100% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504012:effect:0:aura:42","name":"Soul Harvest (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:504012:proc:0:573050","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573050}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":573050}]}],"talentEntryId":34502},{"id":"coa-tree-6722","classId":"reaper","dbcSpellId":804311,"name":"Soul Harvester","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathknight_soulreaper.png","sigil":"SH","description":"Landing the killing blow on a target that yields experience or honor now grants Soul Harvester for 10 seconds.Soul HarvesterAfter killing an enemy you generate 2 Runic Power every 1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804311:effect:0:aura:42","name":"Soul Harvester (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804311:proc:0:804312","triggers":["kill"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804312}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804312},{"kind":"apply-aura","aura":{"id":"coa:804311:effect:1:aura:4","name":"Soul Harvester (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804311,"level":1,"description":"Landing the killing blow on a target that yields experience or honor now grants Soul Harvester for 10 seconds.Soul HarvesterAfter killing an enemy you generate 2 Runic Power every 1 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804311:effect:0:aura:42","name":"Soul Harvester (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:804311:proc:0:804312","triggers":["kill"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804312}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":804312},{"kind":"apply-aura","aura":{"id":"coa:804311:effect:1:aura:4","name":"Soul Harvester (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":6722},{"id":"coa-tree-34497","classId":"reaper","dbcSpellId":300553,"name":"Soul Protector","unlockLevel":1,"icon":"/assets/ui/spells/inv_helmet_146.png","sigil":"SP","description":"Increases Armor contribution from items by 25% and increases your magic resistances by 21.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300553:effect:0:aura:142","name":"Soul Protector (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300553:effect:1:aura:22","name":"Soul Protector (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"flat","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":22,"miscValue":127,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300553,"level":1,"description":"Increases Armor contribution from items by 25% and increases your magic resistances by 21.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300553:effect:0:aura:142","name":"Soul Protector (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:300553:effect:1:aura:22","name":"Soul Protector (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"flat","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":22,"miscValue":127,"triggerSpellId":0}]}],"talentEntryId":34497},{"id":"coa-tree-29564","classId":"reaper","dbcSpellId":807397,"name":"Soul Tap","unlockLevel":1,"icon":"/assets/ui/spells/_d3soulharvest.png","sigil":"ST","description":"Chip away at the very essence of your own soul, generating 50 Runic Power. Usable while stealthed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"health","amount":0},"effects":[{"kind":"resource","amount":500}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":807397,"level":1,"description":"Chip away at the very essence of your own soul, generating 50 Runic Power. Usable while stealthed.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1500,"cost":{"resource":"health","amount":0},"effects":[{"kind":"resource","amount":500}]}],"talentEntryId":29564},{"id":"coa-tree-34510","classId":"reaper","dbcSpellId":560419,"name":"Soul Warden","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_ghostland_border.png","sigil":"SW","description":"Increases your melee attack power by 1 for every 100 Armor you have.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560419:effect:0:aura:285","name":"Soul Warden (Aura 285)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":285,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560419,"level":1,"description":"Increases your melee attack power by 1 for every 100 Armor you have.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560419:effect:0:aura:285","name":"Soul Warden (Aura 285)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":285,"miscValue":1,"triggerSpellId":0}]},{"rank":2,"spellId":561337,"level":1,"description":"Increases your melee attack power by 1 for every 50 Armor you have.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561337:effect:0:aura:285","name":"Soul Warden (Aura 285)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":285,"miscValue":2,"triggerSpellId":0}]}],"talentEntryId":34510},{"id":"reaper-soulspear","classId":"reaper","dbcSpellId":803984,"name":"Soulspear","unlockLevel":1,"icon":"/assets/ui/spells/ability_bastion_warlock.png","sigil":"SO","description":"SoulspearRank 11.5 sec cast20 sec cooldownDeals 31 to 35 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":0.6991666667163372,"basePoints":31,"dieSides":5,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":7}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":803984,"level":1,"description":"SoulspearRank 11.5 sec cast20 sec cooldownDeals 31 to 35 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":0.6991666667163372,"basePoints":31,"dieSides":5,"pointsPerLevel":0.5600000023841858,"bonusPowerCoefficient":0,"sourceLevel":1,"maxScalingLevel":7}]},{"rank":2,"spellId":503276,"level":8,"description":"SoulspearRank 21.5 sec cast20 sec cooldownDeals 54 to 58 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":0.8993789009425951,"basePoints":54,"dieSides":5,"pointsPerLevel":0.7571430206298828,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":15}]},{"rank":3,"spellId":503277,"level":16,"description":"SoulspearRank 31.5 sec cast20 sec cooldownDeals 96 to 100 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":1.326164307132844,"basePoints":96,"dieSides":5,"pointsPerLevel":1.5833300352096558,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22}]},{"rank":4,"spellId":503278,"level":23,"description":"SoulspearRank 41.5 sec cast20 sec cooldownDeals 123 to 127 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":1.5067244663573147,"basePoints":123,"dieSides":5,"pointsPerLevel":2.033329963684082,"bonusPowerCoefficient":0,"sourceLevel":23,"maxScalingLevel":29}]},{"rank":5,"spellId":503279,"level":30,"description":"SoulspearRank 51.5 sec cast20 sec cooldownDeals 148 to 152 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":1.6555555661519368,"basePoints":148,"dieSides":5,"pointsPerLevel":2.450000047683716,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36}]},{"rank":7,"spellId":503281,"level":45,"description":"SoulspearRank 71.5 sec cast20 sec cooldownDeals 219 to 224 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":2.138888082239363,"basePoints":219,"dieSides":6,"pointsPerLevel":3.6333301067352295,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":51}]},{"rank":8,"spellId":503282,"level":52,"description":"SoulspearRank 81.5 sec cast20 sec cooldownDeals 266 to 272 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":2.480929512289626,"basePoints":266,"dieSides":7,"pointsPerLevel":4.416669845581055,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58}]},{"rank":9,"spellId":503283,"level":59,"description":"SoulspearRank 91.5 sec cast20 sec cooldownDeals 339 to 346 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":500,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":3.039939019057128,"basePoints":339,"dieSides":8,"pointsPerLevel":5.63332986831665,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":65}]},{"rank":10,"spellId":503284,"level":66,"description":"SoulspearRank 101.5 sec cast20 sec cooldownDeals 422 to 430 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":3.386597244827836,"basePoints":422,"dieSides":9,"pointsPerLevel":6.014289855957031,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":73}]},{"rank":11,"spellId":503285,"level":74,"description":"SoulspearRank 111.5 sec castDeals 1670 to 1679 Shadow Damage to an enemy. If you have Soul Infusion this spell is instant cast, but does not consume Soul Infusion.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1670,"dieSides":10,"pointsPerLevel":27.816699981689453,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":80}]}]},{"id":"coa-tree-5495","classId":"reaper","dbcSpellId":572340,"name":"Soulstrider","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_spiritwalkersgrace.png","sigil":"SO","description":"Increases the movement speed granted by Veilwalk by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572340:effect:0:aura:107","name":"Soulstrider (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":572340,"level":1,"description":"Increases the movement speed granted by Veilwalk by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572340:effect:0:aura:107","name":"Soulstrider (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":5495},{"id":"coa-30-soultwister-none-706796","classId":"reaper","dbcSpellId":706796,"name":"Soultwister","unlockLevel":1,"icon":"/assets/ui/spells/sha_inv_elemental_primal_shadow.png","sigil":"SO","description":"SoultwisterRank 2Soul Tap and Soulwarden's Resolve reduce the remaining cooldown of Requiem by 3 sec on use.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706796:effect:0:aura:107","name":"Soultwister (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706796:effect:1:aura:4","name":"Soultwister (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706796,"level":1,"description":"SoultwisterRank 2Soul Tap and Soulwarden's Resolve reduce the remaining cooldown of Requiem by 3 sec on use.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706796:effect:0:aura:107","name":"Soultwister (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706796:effect:1:aura:4","name":"Soultwister (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-30113","classId":"reaper","dbcSpellId":500483,"name":"Tormented Souls","unlockLevel":1,"icon":"/assets/ui/spells/_soulsdevourer_blue.png","sigil":"TS","description":"Create 1 Tormented Soul and generate Runic Power for each Reaped Soul active. Consumes Reaped Souls and Soul Infusion. Tormented SoulsReduces all direct damage you take by -10% and heals you for 35 + 5.8% AP + 24% Stamina, removing 1 stack. Lasts 20 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"trigger-spell","spellId":500481},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:0:aura:87","name":"Tormented Souls (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:1:aura:42","name":"Tormented Souls (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500481:proc:1:500482","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500482},{"kind":"trigger-spell","spellId":355461},{"kind":"resource","amount":70},{"kind":"trigger-spell","spellId":500481,"withValue":50},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:0:aura:87","name":"Tormented Souls (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:1:aura:42","name":"Tormented Souls (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500481:proc:1:500482","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500482},{"kind":"trigger-spell","spellId":355461},{"kind":"resource","amount":70},{"kind":"trigger-spell","spellId":500481,"withValue":50},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:0:aura:87","name":"Tormented Souls (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:1:aura:42","name":"Tormented Souls (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500481:proc:1:500482","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500482},{"kind":"trigger-spell","spellId":355461},{"kind":"resource","amount":70}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500483,"level":1,"description":"Create 1 Tormented Soul and generate Runic Power for each Reaped Soul active. Consumes Reaped Souls and Soul Infusion. Tormented SoulsReduces all direct damage you take by -10% and heals you for 35 + 5.8% AP + 24% Stamina, removing 1 stack. Lasts 20 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"trigger-spell","spellId":500481},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:0:aura:87","name":"Tormented Souls (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:1:aura:42","name":"Tormented Souls (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500481:proc:1:500482","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500482},{"kind":"trigger-spell","spellId":355461},{"kind":"resource","amount":70},{"kind":"trigger-spell","spellId":500481,"withValue":50},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:0:aura:87","name":"Tormented Souls (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:1:aura:42","name":"Tormented Souls (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500481:proc:1:500482","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500482},{"kind":"trigger-spell","spellId":355461},{"kind":"resource","amount":70},{"kind":"trigger-spell","spellId":500481,"withValue":50},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:0:aura:87","name":"Tormented Souls (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:1:aura:42","name":"Tormented Souls (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500481:proc:1:500482","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500482},{"kind":"trigger-spell","spellId":355461},{"kind":"resource","amount":70}]}],"talentEntryId":30113},{"id":"coa-tree-4057","classId":"reaper","dbcSpellId":92147,"name":"Tormentor","unlockLevel":1,"icon":"/assets/ui/spells/nhi_ghosthand_border.png","sigil":"TO","description":"Level 10 Passive Consuming Soul Infusion now reduces the cooldown of Tormented Souls by -3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92147:effect:0:aura:42","name":"Tormentor (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92147:proc:0:359019","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":359019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":359019},{"kind":"apply-aura","aura":{"id":"coa:92147:effect:1:aura:42","name":"Tormentor (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92147:proc:1:805077","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805077}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805077}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92147,"level":1,"description":"Level 10 Passive Consuming Soul Infusion now reduces the cooldown of Tormented Souls by -3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92147:effect:0:aura:42","name":"Tormentor (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92147:proc:0:359019","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":359019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":359019},{"kind":"apply-aura","aura":{"id":"coa:92147:effect:1:aura:42","name":"Tormentor (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92147:proc:1:805077","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805077}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805077}]}],"talentEntryId":4057},{"id":"coa-tree-6719","classId":"reaper","dbcSpellId":803990,"name":"Veilwalk","unlockLevel":1,"icon":"/assets/ui/spells/_diablo3_thunderclap_warlock.png","sigil":"VE","description":"2 Charges, 60 sec recharge Move with spectral agility, gaining 50% increased movement speed for 5 seconds, stacking 2 times. Removes all movement impairing effects. Usable while stealthed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803990:effect:0:aura:31","name":"Veilwalk (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"dispel-mechanic","mechanic":7,"maxCount":100},{"kind":"dispel-mechanic","mechanic":11,"maxCount":100}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803990,"level":1,"description":"2 Charges, 60 sec recharge Move with spectral agility, gaining 50% increased movement speed for 5 seconds, stacking 2 times. Removes all movement impairing effects. Usable while stealthed.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803990:effect:0:aura:31","name":"Veilwalk (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"dispel-mechanic","mechanic":7,"maxCount":100},{"kind":"dispel-mechanic","mechanic":11,"maxCount":100}]}],"talentEntryId":6719},{"id":"coa-tree-4056","classId":"reaper","dbcSpellId":92146,"name":"Weakened Souls","unlockLevel":1,"icon":"/assets/ui/spells/nhi_souldarkening_border.png","sigil":"WS","description":"Level 10 Passive Your Soulrend now also applies Weakened Soul, increasing the target's Shadow and Frost damage taken from you by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92146:effect:0:aura:4","name":"Weakened Souls (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92146:effect:1:aura:354","name":"Weakened Souls (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807085}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92146,"level":1,"description":"Level 10 Passive Your Soulrend now also applies Weakened Soul, increasing the target's Shadow and Frost damage taken from you by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92146:effect:0:aura:4","name":"Weakened Souls (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92146:effect:1:aura:354","name":"Weakened Souls (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807085}]}],"talentEntryId":4056},{"id":"coa-30-wicked-shadows-107-705390","classId":"reaper","dbcSpellId":705390,"name":"Wicked Shadows","unlockLevel":1,"icon":"/assets/ui/spells/inv_helm_cloth_raidwarlockmythic_q_01.png","sigil":"WS","description":"Wicked ShadowsRank 1Increases the damage of Soul Harvest by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705390:effect:0:aura:108","name":"Wicked Shadows (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705390,"level":1,"description":"Wicked ShadowsRank 1Increases the damage of Soul Harvest by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705390:effect:0:aura:108","name":"Wicked Shadows (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705391,"level":1,"description":"Wicked ShadowsRank 2Increases the damage of Soul Harvest by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705391:effect:0:aura:108","name":"Wicked Shadows (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-34495","classId":"reaper","dbcSpellId":573071,"name":"Withering Touch","unlockLevel":1,"icon":"/assets/ui/spells/_d3spiritbarrage.png","sigil":"WT","description":"Your touch rots armor and resolve, reducing the target’s armor by -20% and increasing their Magic damage taken by 10% for 1 minute, and generates Runic Power.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573071:effect:0:aura:101","name":"Withering Touch (Aura 101)","disposition":"debuff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:573071:effect:1:aura:87","name":"Withering Touch (Aura 87)","disposition":"debuff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":573071,"level":1,"description":"Your touch rots armor and resolve, reducing the target’s armor by -20% and increasing their Magic damage taken by 10% for 1 minute, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573071:effect:0:aura:101","name":"Withering Touch (Aura 101)","disposition":"debuff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:573071:effect:1:aura:87","name":"Withering Touch (Aura 87)","disposition":"debuff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]}],"talentEntryId":34495},{"id":"coa-tree-30107","classId":"reaper","dbcSpellId":805258,"name":"Wraithblade","unlockLevel":1,"icon":"/assets/ui/spells/inv_archaeology_orcclans_tattooknife.png","sigil":"WR","description":"Generates 3 Reaped Souls Strike for 150% Weapon Damage plus 36 + 62.5% SP + 18% AP Shadow damage, ignoring resistances, absorption, and invulnerability effects.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.6733333365122477,"basePoints":36,"dieSides":3,"pointsPerLevel":1.350000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":805258,"level":1,"description":"Generates 3 Reaped Souls Strike for 150% Weapon Damage plus 36 + 62.5% SP + 18% AP Shadow damage, ignoring resistances, absorption, and invulnerability effects.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":40},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.6733333365122477,"basePoints":36,"dieSides":3,"pointsPerLevel":1.350000023841858,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":16},{"kind":"damage","coefficient":1.5}]}],"talentEntryId":30107},{"id":"reaper-rite-of-resolve","classId":"reaper","dbcSpellId":800198,"name":"Rite of Resolve","unlockLevel":4,"icon":"/assets/ui/spells/ui_sigil_venthyr.png","sigil":"RO","description":"Rite of ResolveRank 1Instant castPerform a resolving rite upon an ally, increasing their Stamina by 4 for 30 min.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800198:effect:0:aura:29","name":"Rite of Resolve (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"stamina","operation":"flat","value":4}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":2,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800198,"level":4,"description":"Rite of ResolveRank 1Instant castPerform a resolving rite upon an ally, increasing their Stamina by 4 for 30 min.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800198:effect:0:aura:29","name":"Rite of Resolve (Aura 29)","disposition":"buff","durationMs":1800000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"stamina","operation":"flat","value":4}]},"sourceEffectType":6,"sourceAuraType":29,"miscValue":2,"triggerSpellId":0}]}]},{"id":"coa-30-reap-483-504056","classId":"reaper","dbcSpellId":504056,"name":"Reap","unlockLevel":6,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"ReapRank 2InstantRequires Melee Weapon Generates 1 Soul Fragment Strike an enemy for 80% Weapon Damage plus 5, and generates Runic Power.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.8},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":504056,"level":6,"description":"ReapRank 2InstantRequires Melee Weapon Generates 1 Soul Fragment Strike an enemy for 80% Weapon Damage plus 5, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.8},{"kind":"damage","coefficient":1}]},{"rank":3,"spellId":504057,"level":16,"description":"ReapRank 3InstantRequires Melee Weapon Generates 1 Soul Fragment Strike an enemy for 80% Weapon Damage plus 10, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.8},{"kind":"damage","coefficient":1}]},{"rank":4,"spellId":504058,"level":24,"description":"ReapRank 4InstantRequires Melee Weapon Generates 1 Soul Fragment Strike an enemy for 80% Weapon Damage plus 17, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.8},{"kind":"damage","coefficient":1}]}]},{"id":"coa-30-deathchaser-107-805190","classId":"reaper","dbcSpellId":805190,"name":"Deathchaser","unlockLevel":11,"icon":"/assets/ui/spells/nhi_spiritstab_border.png","sigil":"DE","description":"DeathchaserRank 1InstantRequires Melee Weapon Force death upon an enemy, dealing 13+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805190:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1794871794871795,"basePoints":13,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16,"ticks":4,"intervalMs":250,"tag":"spell-805190"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:805190:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805190,"level":11,"description":"DeathchaserRank 1InstantRequires Melee Weapon Force death upon an enemy, dealing 13+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805190:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1794871794871795,"basePoints":13,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":16,"ticks":4,"intervalMs":250,"tag":"spell-805190"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:805190:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":560428,"level":18,"description":"DeathchaserRank 2InstantRequires Melee Weapon Force death upon an enemy, dealing 26+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560428:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2828282828282828,"basePoints":26,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18,"maxScalingLevel":23,"ticks":4,"intervalMs":250,"tag":"spell-560428"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:560428:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":560429,"level":25,"description":"DeathchaserRank 3InstantRequires Melee Weapon Force death upon an enemy, dealing 42+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560429:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.375,"basePoints":42,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":30,"ticks":4,"intervalMs":250,"tag":"spell-560429"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:560429:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":561032,"level":32,"description":"DeathchaserRank 4InstantRequires Melee Weapon Force death upon an enemy, dealing 60+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561032:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4574468085106383,"basePoints":60,"dieSides":10,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":37,"ticks":4,"intervalMs":250,"tag":"spell-561032"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:561032:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":561033,"level":39,"description":"DeathchaserRank 5InstantRequires Melee Weapon Force death upon an enemy, dealing 80+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561033:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5370370370370371,"basePoints":80,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":39,"maxScalingLevel":44,"ticks":4,"intervalMs":250,"tag":"spell-561033"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:561033:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":561034,"level":46,"description":"DeathchaserRank 6InstantRequires Melee Weapon Force death upon an enemy, dealing 102+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561034:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6147540983606558,"basePoints":102,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":51,"ticks":4,"intervalMs":250,"tag":"spell-561034"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:561034:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":573052,"level":53,"description":"DeathchaserRank 7InstantRequires Melee Weapon Force death upon an enemy, dealing 132+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573052:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.6985294117647058,"basePoints":132,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":53,"maxScalingLevel":58,"ticks":4,"intervalMs":250,"tag":"spell-573052"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:573052:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":8,"spellId":573053,"level":60,"description":"DeathchaserRank 8InstantRequires Melee Weapon Force death upon an enemy, dealing 176+0+AP*.08 Shadowfrost Damage, repeating every 0.25 sec for 1 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573053:effect:0:aura:3","name":"Deathchaser (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.8288888888888889,"basePoints":176,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":67,"ticks":4,"intervalMs":250,"tag":"spell-573053"},{"kind":"trigger-spell","spellId":359009},{"kind":"resource","amount":140},{"kind":"apply-aura","aura":{"id":"coa:573053:effect:2:aura:118","name":"Deathchaser (Aura 118)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-30-doomrend-106-800172","classId":"reaper","dbcSpellId":800172,"name":"Doomrend","unlockLevel":11,"icon":"/assets/ui/spells/inv_knife_1h_revendrethquest_b_03.png","sigil":"DO","description":"DoomrendRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 17+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 75+Str*1 healing done to them for 5 sec, and generates Runic Power.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.23076923076923078,"basePoints":17,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18},{"kind":"damage","coefficient":1.4},{"kind":"trigger-spell","spellId":560361,"withValue":75},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800172,"level":11,"description":"DoomrendRank 1InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 17+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 75+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.23076923076923078,"basePoints":17,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18},{"kind":"damage","coefficient":1.4},{"kind":"trigger-spell","spellId":560361,"withValue":75},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":2,"spellId":502668,"level":20,"description":"DoomrendRank 2InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 34+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 100+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.34285714285714286,"basePoints":34,"dieSides":5,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"damage","coefficient":1.4},{"kind":"trigger-spell","spellId":560361,"withValue":100},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502669,"level":28,"description":"DoomrendRank 3InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 77+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 135+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.624031007751938,"basePoints":77,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32},{"kind":"damage","coefficient":1.4},{"kind":"trigger-spell","spellId":560361,"withValue":135},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":502670,"level":34,"description":"DoomrendRank 4InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 121+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 185+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.8571428571428571,"basePoints":121,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38},{"kind":"damage","coefficient":1.4},{"kind":"trigger-spell","spellId":560361,"withValue":185},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":502671,"level":40,"description":"DoomrendRank 5InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 159+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 245+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.006060606060606,"basePoints":159,"dieSides":15,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"damage","coefficient":1.4},{"kind":"trigger-spell","spellId":560361,"withValue":245},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":567531,"level":48,"description":"DoomrendRank 6InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 287+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 330+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.5873015873015872,"basePoints":287,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":52},{"kind":"damage","coefficient":1.4},{"kind":"trigger-spell","spellId":560361,"withValue":330},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]},{"rank":7,"spellId":567532,"level":54,"description":"DoomrendRank 7InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Rend an enemy dealing 140% Weapon Damage plus 408+0+AP*.35, causing you to apply a dark shield to them that absorbs the next 430+Str*1 healing done to them for 5 sec, and generates Runic Power.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.0603864734299515,"basePoints":408,"dieSides":38,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62},{"kind":"damage","coefficient":1.4},{"kind":"trigger-spell","spellId":560361,"withValue":430},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-30-dreadwake-108-803992","classId":"reaper","dbcSpellId":803992,"name":"Dreadwake","unlockLevel":11,"icon":"/assets/ui/spells/ability_argus_edgeofobliteration.png","sigil":"DR","description":"DreadwakeRank 130 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 5 Frost damage.","target":"hostile","range":{"min":0,"max":0},"radius":12,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803992,"level":11,"description":"DreadwakeRank 130 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 5 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":2,"spellId":503286,"level":18,"description":"DreadwakeRank 230 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 10 to 12 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":3,"spellId":503287,"level":26,"description":"DreadwakeRank 330 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 18 to 22 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":4,"spellId":503288,"level":34,"description":"DreadwakeRank 430 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 35 to 40 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":5,"spellId":503289,"level":42,"description":"DreadwakeRank 530 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 65 to 72 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":6,"spellId":503324,"level":50,"description":"DreadwakeRank 630 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 97 to 108 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]},{"rank":7,"spellId":503531,"level":58,"description":"DreadwakeRank 730 Runic Power InstantRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Generates 1 Reaped Soul Unleash a wave of souls upon enemies in a 12 yd cone, causing 80% Weapon Damage plus 135 to 149 Frost damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.8}]}]},{"id":"coa-30-hungering-scythe-108-502708","classId":"reaper","dbcSpellId":502708,"name":"Hungering Scythe","unlockLevel":11,"icon":"/assets/ui/spells/inv_artifact_thalkielsdiscord.png","sigil":"HS","description":"Hungering ScytheRank 220% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502708:effect:0:aura:227","name":"Hungering Scythe (Aura 227)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502708:proc:0:801097","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":128,"triggerSpellId":801097},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502708,"level":11,"description":"Hungering ScytheRank 220% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502708:effect:0:aura:227","name":"Hungering Scythe (Aura 227)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502708:proc:0:801097","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":128,"triggerSpellId":801097},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000}]},{"rank":3,"spellId":502709,"level":21,"description":"Hungering ScytheRank 320% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502709:effect:0:aura:227","name":"Hungering Scythe (Aura 227)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502709:proc:0:801097","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":128,"triggerSpellId":801097},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000}]},{"rank":4,"spellId":502710,"level":31,"description":"Hungering ScytheRank 420% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502710:effect:0:aura:227","name":"Hungering Scythe (Aura 227)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502710:proc:0:801097","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":128,"triggerSpellId":801097},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000}]},{"rank":5,"spellId":502711,"level":41,"description":"Hungering ScytheRank 520% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502711:effect:0:aura:227","name":"Hungering Scythe (Aura 227)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502711:proc:0:801097","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":128,"triggerSpellId":801097},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000}]},{"rank":6,"spellId":502712,"level":51,"description":"Hungering ScytheRank 620% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502712:effect:0:aura:227","name":"Hungering Scythe (Aura 227)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502712:proc:0:801097","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":128,"triggerSpellId":801097},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000}]},{"rank":7,"spellId":502713,"level":61,"description":"Hungering ScytheRank 720% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502713:effect:0:aura:227","name":"Hungering Scythe (Aura 227)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502713:proc:0:801097","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":128,"triggerSpellId":801097},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000}]},{"rank":8,"spellId":502714,"level":71,"description":"Hungering ScytheRank 820% of base Instant cast1 min cooldownYou awaken the dark and hungry spirit within your scythe. Every 1 sec for the next 10 sec, your scythe will feed upon nearby enemies, dealing 1 Shadow Damage. Each tick will also consume a small amount of your own health. This effect cannot be removed.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"health","amount":20,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502714:effect:0:aura:227","name":"Hungering Scythe (Aura 227)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502714:proc:0:801097","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801097}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":128,"triggerSpellId":801097},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":122206,"triggerSpellId":0,"durationMs":10000}]}]},{"id":"coa-30-red-wake-106-801041","classId":"reaper","dbcSpellId":801041,"name":"Red Wake","unlockLevel":13,"icon":"/assets/ui/spells/ability_revendreth_shaman.png","sigil":"RW","description":"Red WakeRank 1InstantDraw blood from up to 8 enemies within 20 yds, dealing 50+0+AP*0.18 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","target":"hostile","range":{"min":0,"max":20},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7803571465469542,"basePoints":50,"dieSides":10,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801041,"level":13,"description":"Red WakeRank 1InstantDraw blood from up to 8 enemies within 20 yds, dealing 50+0+AP*0.18 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.7803571465469542,"basePoints":50,"dieSides":10,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":18}]},{"rank":2,"spellId":502672,"level":20,"description":"Red WakeRank 2InstantDraw blood from up to 8 enemies within 20 yds, dealing 89+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.1798095339820498,"basePoints":89,"dieSides":15,"pointsPerLevel":1.3940000534057617,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":25}]},{"rank":3,"spellId":502673,"level":27,"description":"Red WakeRank 3InstantDraw blood from up to 8 enemies within 20 yds, dealing 132+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.545380955650693,"basePoints":132,"dieSides":22,"pointsPerLevel":1.934000015258789,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":32}]},{"rank":4,"spellId":502674,"level":34,"description":"Red WakeRank 4InstantDraw blood from up to 8 enemies within 20 yds, dealing 170+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.8205170015088554,"basePoints":170,"dieSides":28,"pointsPerLevel":2.4739999771118164,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":39}]},{"rank":5,"spellId":502675,"level":41,"description":"Red WakeRank 5InstantDraw blood from up to 8 enemies within 20 yds, dealing 221+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.1581785565330867,"basePoints":221,"dieSides":37,"pointsPerLevel":3.0139999389648438,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":46}]},{"rank":6,"spellId":502676,"level":48,"description":"Red WakeRank 6InstantDraw blood from up to 8 enemies within 20 yds, dealing 287+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.481968228779142,"basePoints":287,"dieSides":24,"pointsPerLevel":3.553999900817871,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":53}]},{"rank":7,"spellId":502677,"level":55,"description":"Red WakeRank 7InstantDraw blood from up to 8 enemies within 20 yds, dealing 335+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.731761868794759,"basePoints":335,"dieSides":28,"pointsPerLevel":4.093999862670898,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":60}]},{"rank":8,"spellId":502678,"level":62,"description":"Red WakeRank 8InstantDraw blood from up to 8 enemies within 20 yds, dealing 482+0+AP*0.15 Shadow Damage, ignoring resistances. Generates 5 Runic Power for each target struck.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.501333286235859,"basePoints":482,"dieSides":80,"pointsPerLevel":4.633999824523926,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":69}]}]},{"id":"coa-30-bane-107-503295","classId":"reaper","dbcSpellId":503295,"name":"Bane","unlockLevel":14,"icon":"/assets/ui/spells/spell_warlock_demonicportal_purple.png","sigil":"BA","description":"BaneRank 2Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 54 to 65 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":1.1846896533308358,"basePoints":54,"dieSides":12,"pointsPerLevel":3.111999988555908,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27},{"kind":"apply-aura","aura":{"id":"coa:503295:effect:1:aura:330","name":"Bane (Aura 330)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503295,"level":14,"description":"BaneRank 2Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 54 to 65 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":1.1846896533308358,"basePoints":54,"dieSides":12,"pointsPerLevel":3.111999988555908,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":27},{"kind":"apply-aura","aura":{"id":"coa:503295:effect:1:aura:330","name":"Bane (Aura 330)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":503296,"level":28,"description":"BaneRank 3Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 122 to 146 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":2.0424186203830925,"basePoints":122,"dieSides":25,"pointsPerLevel":4.624000072479248,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:503296:effect:1:aura:330","name":"Bane (Aura 330)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":503297,"level":41,"description":"BaneRank 4Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 222 to 264 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":2.91754758925665,"basePoints":222,"dieSides":43,"pointsPerLevel":6.0279998779296875,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":53},{"kind":"apply-aura","aura":{"id":"coa:503297:effect:1:aura:330","name":"Bane (Aura 330)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":127,"triggerSpellId":0}]},{"rank":5,"spellId":503298,"level":54,"description":"BaneRank 5Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 411 to 476 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":411,"dieSides":66,"pointsPerLevel":7.432000160217285,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":67},{"kind":"apply-aura","aura":{"id":"coa:503298:effect:1:aura:330","name":"Bane (Aura 330)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":127,"triggerSpellId":0}]},{"rank":6,"spellId":503299,"level":68,"description":"BaneRank 6Instant cast30 sec cooldownYou unleash a blast of dark magic upon an enemy, dealing 749 to 845 Shadow Damage and increasing your Critical Strike chance against them by 30% for 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":749,"dieSides":97,"pointsPerLevel":8.944000244140625,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:503299:effect:1:aura:330","name":"Bane (Aura 330)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-30-deathwind-108-800174","classId":"reaper","dbcSpellId":800174,"name":"Deathwind","unlockLevel":16,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DE","description":"DeathwindRank 130 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 11+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","target":"hostile","range":{"min":0,"max":20},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800174:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.12365591397849462,"basePoints":11,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":5,"intervalMs":2000,"tag":"spell-800174"},{"kind":"hot","coefficient":0.12365591397849462,"basePoints":11,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:800174:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800174:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":524287,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:800174:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800174,"level":16,"description":"DeathwindRank 130 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 11+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800174:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.12365591397849462,"basePoints":11,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":5,"intervalMs":2000,"tag":"spell-800174"},{"kind":"hot","coefficient":0.12365591397849462,"basePoints":11,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:800174:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800174:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":524287,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:800174:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502989,"level":24,"description":"DeathwindRank 230 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 18+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502989:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1623931623931624,"basePoints":18,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29,"ticks":5,"intervalMs":2000,"tag":"spell-502989"},{"kind":"hot","coefficient":0.1623931623931624,"basePoints":18,"dieSides":3,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502989:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502989:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502989:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502990,"level":31,"description":"DeathwindRank 330 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 25+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502990:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.19202898550724637,"basePoints":25,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":36,"ticks":5,"intervalMs":2000,"tag":"spell-502990"},{"kind":"hot","coefficient":0.19202898550724637,"basePoints":25,"dieSides":4,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":36,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502990:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502990:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502990:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502991,"level":38,"description":"DeathwindRank 430 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 39+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502991:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2610062893081761,"basePoints":39,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43,"ticks":5,"intervalMs":2000,"tag":"spell-502991"},{"kind":"hot","coefficient":0.2610062893081761,"basePoints":39,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502991:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502991:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502991:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502992,"level":45,"description":"DeathwindRank 530 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 50+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502992:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.2972222222222222,"basePoints":50,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":50,"ticks":5,"intervalMs":2000,"tag":"spell-502992"},{"kind":"hot","coefficient":0.2972222222222222,"basePoints":50,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":50,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502992:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502992:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502992:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502993,"level":52,"description":"DeathwindRank 630 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 63+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502993:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3383084577114428,"basePoints":63,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":57,"ticks":5,"intervalMs":2000,"tag":"spell-502993"},{"kind":"hot","coefficient":0.3383084577114428,"basePoints":63,"dieSides":11,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":57,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502993:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502993:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502993:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502994,"level":59,"description":"DeathwindRank 730 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 75+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502994:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3716216216216216,"basePoints":75,"dieSides":16,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":64,"ticks":5,"intervalMs":2000,"tag":"spell-502994"},{"kind":"hot","coefficient":0.3716216216216216,"basePoints":75,"dieSides":16,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":64,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502994:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502994:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502994:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502995,"level":66,"description":"DeathwindRank 8Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 89+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502995:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4094650205761317,"basePoints":89,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72,"ticks":5,"intervalMs":2000,"tag":"spell-502995"},{"kind":"hot","coefficient":0.4094650205761317,"basePoints":89,"dieSides":22,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":72,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502995:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502995:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502995:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":502996,"level":69,"description":"DeathwindRank 930 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 94+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502996:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4246031746031746,"basePoints":94,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74,"ticks":5,"intervalMs":2000,"tag":"spell-502996"},{"kind":"hot","coefficient":0.4246031746031746,"basePoints":94,"dieSides":27,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":69,"maxScalingLevel":74,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502996:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502996:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502996:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":502997,"level":72,"description":"DeathwindRank 1030 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 103+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502997:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4559386973180077,"basePoints":103,"dieSides":33,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":76,"ticks":5,"intervalMs":2000,"tag":"spell-502997"},{"kind":"hot","coefficient":0.4559386973180077,"basePoints":103,"dieSides":33,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":72,"maxScalingLevel":76,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502997:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502997:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502997:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":11,"spellId":502998,"level":75,"description":"DeathwindRank 1130 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 113+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502998:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.49074074074074076,"basePoints":113,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":75,"maxScalingLevel":82,"ticks":5,"intervalMs":2000,"tag":"spell-502998"},{"kind":"hot","coefficient":0.49074074074074076,"basePoints":113,"dieSides":40,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":75,"maxScalingLevel":82,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502998:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502998:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502998:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":12,"spellId":502999,"level":78,"description":"DeathwindRank 1230 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 133+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502999:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5591397849462365,"basePoints":133,"dieSides":47,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":83,"ticks":5,"intervalMs":2000,"tag":"spell-502999"},{"kind":"hot","coefficient":0.5591397849462365,"basePoints":133,"dieSides":47,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":83,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:502999:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502999:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:502999:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]},{"rank":13,"spellId":503000,"level":81,"description":"DeathwindRank 1330 Runic Power Instant castGenerates 1 Reaped Soul Create a cloud of mist at the target location for 10 sec. Every 2 sec, enemies in the area take 153+0+ShaP*.04+AP*.15 Frost damage, healing you for 25% of the damage dealt.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"runic-power","amount":30},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503000:effect:0:aura:53","name":"Deathwind (Aura 53)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.625,"basePoints":153,"dieSides":55,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":81,"maxScalingLevel":86,"ticks":5,"intervalMs":2000,"tag":"spell-503000"},{"kind":"hot","coefficient":0.625,"basePoints":153,"dieSides":55,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":81,"maxScalingLevel":86,"ticks":5,"intervalMs":2000},{"kind":"apply-aura","aura":{"id":"coa:503000:effect:1:aura:23","name":"Deathwind (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:503000:proc:1:582526","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":582526}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":582526},{"kind":"apply-aura","aura":{"id":"coa:503000:effect:2:aura:271","name":"Deathwind (Aura 271)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-30-crimson-harvest-106-502666","classId":"reaper","dbcSpellId":502666,"name":"Crimson Harvest","unlockLevel":28,"icon":"/assets/ui/spells/ability_revendreth_priest.png","sigil":"CH","description":"Crimson HarvestRank 2Instant cast30 sec cooldownTransfers 36 health every 1.5 sec from the target to the caster for 15 sec. Soul Infusion: Has a % increased tick rate.","target":"hostile","range":{"min":0,"max":20},"castMode":"channel","castTimeMs":15000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502666:effect:0:aura:53","name":"Crimson Harvest (Aura 53)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.725658889888793,"basePoints":36,"dieSides":1,"pointsPerLevel":2.057499885559082,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53,"ticks":10,"intervalMs":1500,"tag":"spell-502666"},{"kind":"hot","coefficient":0.725658889888793,"basePoints":36,"dieSides":1,"pointsPerLevel":2.057499885559082,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53,"ticks":10,"intervalMs":1500},{"kind":"apply-aura","aura":{"id":"coa:502666:effect:1:aura:118","name":"Crimson Harvest (Aura 118)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502666,"level":28,"description":"Crimson HarvestRank 2Instant cast30 sec cooldownTransfers 36 health every 1.5 sec from the target to the caster for 15 sec. Soul Infusion: Has a % increased tick rate.","castMode":"channel","castTimeMs":15000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502666:effect:0:aura:53","name":"Crimson Harvest (Aura 53)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.725658889888793,"basePoints":36,"dieSides":1,"pointsPerLevel":2.057499885559082,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53,"ticks":10,"intervalMs":1500,"tag":"spell-502666"},{"kind":"hot","coefficient":0.725658889888793,"basePoints":36,"dieSides":1,"pointsPerLevel":2.057499885559082,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":53,"ticks":10,"intervalMs":1500},{"kind":"apply-aura","aura":{"id":"coa:502666:effect:1:aura:118","name":"Crimson Harvest (Aura 118)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502667,"level":54,"description":"Crimson HarvestRank 3Instant cast30 sec cooldownTransfers 100 health every 1.5 sec from the target to the caster for 15 sec. Soul Infusion: Has a % increased tick rate.","castMode":"channel","castTimeMs":15000,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"runic-power","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502667:effect:0:aura:53","name":"Crimson Harvest (Aura 53)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":53,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.6036352258949464,"basePoints":100,"dieSides":1,"pointsPerLevel":8.12874984741211,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":80,"ticks":10,"intervalMs":1500,"tag":"spell-502667"},{"kind":"hot","coefficient":2.6036352258949464,"basePoints":100,"dieSides":1,"pointsPerLevel":8.12874984741211,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":80,"ticks":10,"intervalMs":1500},{"kind":"apply-aura","aura":{"id":"coa:502667:effect:1:aura:118","name":"Crimson Harvest (Aura 118)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}]}]}],"primalist":[{"id":"coa-tree-29362","classId":"primalist","dbcSpellId":800094,"name":"Bearskin","unlockLevel":1,"icon":"/assets/ui/spells/spell_druid_primaltenacity.png","sigil":"BE","description":"Reduces all damage taken by -60% and reduces the duration of root, stun, and incapacitate effects on you by -30% for 10 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"status","status":"sleep","durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:800094:effect:0:aura:87","name":"Bearskin (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800094:effect:1:aura:232","name":"Bearskin (Aura 232)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800094:effect:2:aura:232","name":"Bearskin (Aura 232)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":12,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800094,"level":1,"description":"Reduces all damage taken by -60% and reduces the duration of root, stun, and incapacitate effects on you by -30% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"status","status":"sleep","durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:800094:effect:0:aura:87","name":"Bearskin (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.6}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800094:effect:1:aura:232","name":"Bearskin (Aura 232)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800094:effect:2:aura:232","name":"Bearskin (Aura 232)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":232,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":29362},{"id":"coa-tree-29252","classId":"primalist","dbcSpellId":500692,"name":"Boulder Dash","unlockLevel":1,"icon":"/assets/ui/spells/custom_elementl(earth)_b_01_border.png","sigil":"BD","description":"Raise a boulder out of the ground and encase yourself within it, preventing you from attacking or casting spells. For 10 seconds, you roll forward at 70% increased movement speed, dealing 1 + 50% AP + 100% SP Physical damage to enemies you roll over, and you are immune to crowd control effects.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500692:effect:0:aura:23","name":"Boulder Dash (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500692:proc:0:500693","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500693}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500693},{"kind":"apply-aura","aura":{"id":"coa:500692:effect:1:aura:31","name":"Boulder Dash (Aura 31)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.7}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500692:effect:2:aura:241","name":"Boulder Dash (Aura 241)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500692,"level":1,"description":"Raise a boulder out of the ground and encase yourself within it, preventing you from attacking or casting spells. For 10 seconds, you roll forward at 70% increased movement speed, dealing 1 + 50% AP + 100% SP Physical damage to enemies you roll over, and you are immune to crowd control effects.","castMode":"instant","castTimeMs":0,"cooldownMs":180000,"gcdMs":1250,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500692:effect:0:aura:23","name":"Boulder Dash (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500692:proc:0:500693","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500693}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":500693},{"kind":"apply-aura","aura":{"id":"coa:500692:effect:1:aura:31","name":"Boulder Dash (Aura 31)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.7}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500692:effect:2:aura:241","name":"Boulder Dash (Aura 241)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":241,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29252},{"id":"coa-31-bountiful-boons-114-706203","classId":"primalist","dbcSpellId":706203,"name":"Bountiful Boons","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_giftofthewild.png","sigil":"BB","description":"Bountiful BoonsRank 1Increases the effectiveness of Boons and Instincts by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706203:effect:0:aura:108","name":"Bountiful Boons (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706203:effect:1:aura:108","name":"Bountiful Boons (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706203,"level":1,"description":"Bountiful BoonsRank 1Increases the effectiveness of Boons and Instincts by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706203:effect:0:aura:108","name":"Bountiful Boons (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706203:effect:1:aura:108","name":"Bountiful Boons (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]},{"rank":2,"spellId":706204,"level":1,"description":"Bountiful BoonsRank 2Increases the effectiveness of Boons and Instincts by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706204:effect:0:aura:108","name":"Bountiful Boons (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706204:effect:1:aura:108","name":"Bountiful Boons (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}]},{"id":"coa-tree-29299","classId":"primalist","dbcSpellId":806415,"name":"Bramblepatch","unlockLevel":1,"icon":"/assets/ui/spells/inv_eng_bombroot.png","sigil":"BR","description":"Grow a patch of brambles at your location for 12 seconds. Allies in the area are immune to grip and knockback effects. Enemies in the area are unable to leap, dash, or charge.","target":"hostile","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":807859,"withValue":500},{"kind":"apply-aura","aura":{"id":"coa:807859:effect:0:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":96,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807859:effect:1:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":29,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807859:effect:2:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":41,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806415:effect:1:aura:77","name":"Bramblepatch (Aura 77)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":77,"miscValue":6,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807120,"withValue":500},{"kind":"apply-aura","aura":{"id":"coa:807120:effect:0:aura:87","name":"Bramblepatch (Aura 87)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807120:effect:1:aura:107","name":"Bramblepatch (Aura 107)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.8}]},"sourceEffectType":27,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807120:effect:2:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":806415,"level":1,"description":"Grow a patch of brambles at your location for 12 seconds. Allies in the area are immune to grip and knockback effects. Enemies in the area are unable to leap, dash, or charge.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":807859,"withValue":500},{"kind":"apply-aura","aura":{"id":"coa:807859:effect:0:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":96,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807859:effect:1:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":29,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807859:effect:2:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":41,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806415:effect:1:aura:77","name":"Bramblepatch (Aura 77)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":77,"miscValue":6,"triggerSpellId":0},{"kind":"trigger-spell","spellId":807120,"withValue":500},{"kind":"apply-aura","aura":{"id":"coa:807120:effect:0:aura:87","name":"Bramblepatch (Aura 87)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807120:effect:1:aura:107","name":"Bramblepatch (Aura 107)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.8}]},"sourceEffectType":27,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807120:effect:2:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}]}],"talentEntryId":29299},{"id":"coa-31-cascading-restoration-114-706169","classId":"primalist","dbcSpellId":706169,"name":"Cascading Restoration","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_flourish.png","sigil":"CR","description":"Cascading RestorationRank 1Reduces the cost of Primal Wave by 5 and increases the radius by 2 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706169:effect:0:aura:107","name":"Cascading Restoration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706169:effect:1:aura:107","name":"Cascading Restoration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706169,"level":1,"description":"Cascading RestorationRank 1Reduces the cost of Primal Wave by 5 and increases the radius by 2 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706169:effect:0:aura:107","name":"Cascading Restoration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706169:effect:1:aura:107","name":"Cascading Restoration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}]},{"rank":2,"spellId":706170,"level":1,"description":"Cascading RestorationRank 2Reduces the cost of Primal Wave by 10 and increases the radius by 4 yds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706170:effect:0:aura:107","name":"Cascading Restoration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706170:effect:1:aura:107","name":"Cascading Restoration (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}]}]},{"id":"coa-tree-30591","classId":"primalist","dbcSpellId":504446,"name":"Earthmother's Pendant","unlockLevel":1,"icon":"/assets/ui/spells/_hearthstone_necklace_warrior.png","sigil":"ES","description":"With every strike, the Earthmother’s pendant restores what was lost, healing you equal to 10% of your damage dealt. Can only occur once every 0.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504446:effect:0:aura:354","name":"Earthmother's Pendant (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":524972}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504446,"level":1,"description":"With every strike, the Earthmother’s pendant restores what was lost, healing you equal to 10% of your damage dealt. Can only occur once every 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504446:effect:0:aura:354","name":"Earthmother's Pendant (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":524972}]}],"talentEntryId":30591},{"id":"coa-tree-29233","classId":"primalist","dbcSpellId":555723,"name":"Earthmother's Precision","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_naturetouchdecay.png","sigil":"ES","description":"Seismic Crash now increases the chance for allies to hit with all spells against the enemy by 3% for 15 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:555723:effect:0:aura:42","name":"Earthmother's Precision (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:555723:proc:0:555724","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":555724}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":555724}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":555723,"level":1,"description":"Seismic Crash now increases the chance for allies to hit with all spells against the enemy by 3% for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:555723:effect:0:aura:42","name":"Earthmother's Precision (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:555723:proc:0:555724","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":555724}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":555724}]}],"talentEntryId":29233},{"id":"coa-tree-4059","classId":"primalist","dbcSpellId":92149,"name":"Earthshaping","unlockLevel":1,"icon":"/assets/ui/spells/inv_custom_hearthstone_fire.png","sigil":"EA","description":"Level 10 Passive Casting Geode Barrage and your Seismic abilities now generate Earthshaping.EarthshapingEmpowers some of your abilities and increases your spell haste by 1% for 20 seconds, stacking 15 times. Additional applications do not refresh duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92149:effect:0:aura:42","name":"Earthshaping (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92149:proc:0:681072","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":681072}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":681072},{"kind":"apply-aura","aura":{"id":"coa:92149:effect:1:aura:4","name":"Earthshaping (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":5,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92149,"level":1,"description":"Level 10 Passive Casting Geode Barrage and your Seismic abilities now generate Earthshaping.EarthshapingEmpowers some of your abilities and increases your spell haste by 1% for 20 seconds, stacking 15 times. Additional applications do not refresh duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92149:effect:0:aura:42","name":"Earthshaping (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92149:proc:0:681072","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":681072}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":681072},{"kind":"apply-aura","aura":{"id":"coa:92149:effect:1:aura:4","name":"Earthshaping (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":5,"triggerSpellId":0}]}],"talentEntryId":4059},{"id":"coa-tree-12208","classId":"primalist","dbcSpellId":300729,"name":"Environmentalist","unlockLevel":1,"icon":"/assets/ui/spells/nhi_natureclover_border.png","sigil":"EN","description":"Reduces the cost of your spells and abilities by -5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300729:effect:0:aura:72","name":"Environmentalist (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":6,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":300729,"level":1,"description":"Reduces the cost of your spells and abilities by -5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300729:effect:0:aura:72","name":"Environmentalist (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":6,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}]}],"talentEntryId":12208},{"id":"coa-tree-29231","classId":"primalist","dbcSpellId":681281,"name":"Fae Presence","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_faerie_dragon.png","sigil":"FP","description":"Removes the reagent cost from Fae Dust and causes it to increase the target's stealth detection.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681281:effect:0:aura:107","name":"Fae Presence (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681281:effect:1:aura:256","name":"Fae Presence (Aura 256)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":256,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":681281,"level":1,"description":"Removes the reagent cost from Fae Dust and causes it to increase the target's stealth detection.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681281:effect:0:aura:107","name":"Fae Presence (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:681281:effect:1:aura:256","name":"Fae Presence (Aura 256)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":256,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29231},{"id":"coa-tree-30633","classId":"primalist","dbcSpellId":800145,"name":"Grip","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_stoneclawtotem.png","sigil":"GR","description":"Summon a stone hand to grip the target, incapacitating them for 40 seconds (8 sec vs. players). Damage dealt will break the effect.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"status","status":"sleep","durationMs":40000},{"kind":"apply-aura","aura":{"id":"coa:800145:effect:0:aura:12","name":"Grip (Aura 12)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800145:effect:1:aura:23","name":"Grip (Aura 23)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800145:proc:1:804315","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804315}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804315}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":800145,"level":1,"description":"Summon a stone hand to grip the target, incapacitating them for 40 seconds (8 sec vs. players). Damage dealt will break the effect.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"status","status":"sleep","durationMs":40000},{"kind":"apply-aura","aura":{"id":"coa:800145:effect:0:aura:12","name":"Grip (Aura 12)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800145:effect:1:aura:23","name":"Grip (Aura 23)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800145:proc:1:804315","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804315}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804315}]}],"talentEntryId":30633},{"id":"coa-tree-7108","classId":"primalist","dbcSpellId":503721,"name":"Grove Guardian","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_naturesguardian_border.png","sigil":"GG","description":"Mark a location as your Grove for 20 seconds. Allies within gain 30% movement speed and are healed for 404 + 25% AP every 5 sec, removing 1 poison and disease effect. Enemies within are slowed by -30% and take 504 + 45% AP Nature damage every 5 sec and are rooted for 2 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":504824},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:0:aura:3","name":"Grove Guardian (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":4,"basePoints":504,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"ticks":4,"intervalMs":5000,"tag":"spell-504824"},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:1:aura:23","name":"Grove Guardian (Aura 23)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504824:proc:1:504825","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504825}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":504825},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:2:aura:33","name":"Grove Guardian (Aura 33)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.3}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":505208},{"kind":"apply-aura","aura":{"id":"coa:505208:effect:0:aura:8","name":"Grove Guardian (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":4,"basePoints":404,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"ticks":4,"intervalMs":5000},{"kind":"apply-aura","aura":{"id":"coa:505208:effect:1:aura:23","name":"Grove Guardian (Aura 23)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:505208:proc:1:505209","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505209}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":505209},{"kind":"apply-aura","aura":{"id":"coa:505208:effect:2:aura:31","name":"Grove Guardian (Aura 31)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.3}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":503721,"level":1,"description":"Mark a location as your Grove for 20 seconds. Allies within gain 30% movement speed and are healed for 404 + 25% AP every 5 sec, removing 1 poison and disease effect. Enemies within are slowed by -30% and take 504 + 45% AP Nature damage every 5 sec and are rooted for 2 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":20,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":504824},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:0:aura:3","name":"Grove Guardian (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":4,"basePoints":504,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"ticks":4,"intervalMs":5000,"tag":"spell-504824"},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:1:aura:23","name":"Grove Guardian (Aura 23)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504824:proc:1:504825","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504825}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":504825},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:2:aura:33","name":"Grove Guardian (Aura 33)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.3}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":505208},{"kind":"apply-aura","aura":{"id":"coa:505208:effect:0:aura:8","name":"Grove Guardian (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":4,"basePoints":404,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"ticks":4,"intervalMs":5000},{"kind":"apply-aura","aura":{"id":"coa:505208:effect:1:aura:23","name":"Grove Guardian (Aura 23)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:505208:proc:1:505209","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505209}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":505209},{"kind":"apply-aura","aura":{"id":"coa:505208:effect:2:aura:31","name":"Grove Guardian (Aura 31)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.3}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":7108},{"id":"coa-tree-4060","classId":"primalist","dbcSpellId":92150,"name":"Grove Training","unlockLevel":1,"icon":"/assets/ui/spells/ui_darkshore_warfront_alliance_keeper_of_the_grove.png","sigil":"GT","description":"Level 10 Passive All melee damage, or healing done, now has a 10% chance to grant you Aftershock for 15 seconds.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92150:effect:0:aura:42","name":"Grove Training (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92150:proc:0:301086","triggers":["cast","heal"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301086}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":301086}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92150,"level":1,"description":"Level 10 Passive All melee damage, or healing done, now has a 10% chance to grant you Aftershock for 15 seconds.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92150:effect:0:aura:42","name":"Grove Training (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92150:proc:0:301086","triggers":["cast","heal"],"chance":0.1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301086}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":301086}]}],"talentEntryId":4060},{"id":"coa-tree-6445","classId":"primalist","dbcSpellId":706344,"name":"Heavy Handed","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_misc_06.png","sigil":"HH","description":"Hand of the Earthmother now increases the Armor of yourself and your target by 10% for 10 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706344:effect:0:aura:42","name":"Heavy Handed (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706344:proc:0:706345","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706345}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706345}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706344,"level":1,"description":"Hand of the Earthmother now increases the Armor of yourself and your target by 10% for 10 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706344:effect:0:aura:42","name":"Heavy Handed (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706344:proc:0:706345","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706345}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706345}]}],"talentEntryId":6445},{"id":"coa-31-improved-boons-114-706146","classId":"primalist","dbcSpellId":706146,"name":"Improved Boons","unlockLevel":1,"icon":"/assets/ui/spells/ability_hunter_onewithnature.png","sigil":"IB","description":"Improved BoonsRank 2Increases the effectiveness of Boons by 40%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706146:effect:0:aura:108","name":"Improved Boons (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706146:effect:1:aura:4","name":"Improved Boons (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706146,"level":1,"description":"Improved BoonsRank 2Increases the effectiveness of Boons by 40%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706146:effect:0:aura:108","name":"Improved Boons (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706146:effect:1:aura:4","name":"Improved Boons (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}]},{"id":"coa-tree-7326","classId":"primalist","dbcSpellId":806533,"name":"Keen Senses","unlockLevel":1,"icon":"/assets/ui/spells/5_assassinskill31_border.png","sigil":"KS","description":"Increases your critical strike chance and haste by 3%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806533:effect:0:aura:290","name":"Keen Senses (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806533:effect:1:aura:216","name":"Keen Senses (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806533:effect:2:aura:192","name":"Keen Senses (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806533,"level":1,"description":"Increases your critical strike chance and haste by 3%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806533:effect:0:aura:290","name":"Keen Senses (Aura 290)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806533:effect:1:aura:216","name":"Keen Senses (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806533:effect:2:aura:192","name":"Keen Senses (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":7326},{"id":"coa-31-lavabender-112-706206","classId":"primalist","dbcSpellId":706206,"name":"Lavabender","unlockLevel":1,"icon":"/assets/ui/spells/achievement_zone_firelands.png","sigil":"LA","description":"LavabenderRank 1Increases Fire Damage dealt by 3% and reduces the cost of Nature spells by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706206:effect:0:aura:79","name":"Lavabender (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"fire","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706206:effect:1:aura:72","name":"Lavabender (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706206:effect:2:aura:4","name":"Lavabender (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706206,"level":1,"description":"LavabenderRank 1Increases Fire Damage dealt by 3% and reduces the cost of Nature spells by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706206:effect:0:aura:79","name":"Lavabender (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"fire","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706206:effect:1:aura:72","name":"Lavabender (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706206:effect:2:aura:4","name":"Lavabender (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":706207,"level":1,"description":"LavabenderRank 2Increases Fire Damage dealt by 6% and reduces the cost of Nature spells by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706207:effect:0:aura:79","name":"Lavabender (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","school":"fire","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706207:effect:1:aura:72","name":"Lavabender (Aura 72)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":72,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706207:effect:2:aura:4","name":"Lavabender (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-4064","classId":"primalist","dbcSpellId":680395,"name":"Mountain Giant","unlockLevel":1,"icon":"/assets/ui/spells/spell_holy_devotion.png","sigil":"MG","description":"Level 10 Passive Auto attacks now have a 20% chance to grant you Aftershock.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680395:effect:0:aura:42","name":"Mountain Giant (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680395:proc:0:301086","triggers":["cast","hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301086}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":301086}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680395,"level":1,"description":"Level 10 Passive Auto attacks now have a 20% chance to grant you Aftershock.AftershockYour next Geode Barrage or Earthquake within 15 seconds is now instant cast and costs -75% less.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680395:effect:0:aura:42","name":"Mountain Giant (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:680395:proc:0:301086","triggers":["cast","hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":301086}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":301086}]}],"talentEntryId":4064},{"id":"coa-tree-7339","classId":"primalist","dbcSpellId":706167,"name":"Natural Efficiency","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_protectionformnature.png","sigil":"NE","description":"Whenever you are struck by a root, stun, or incapacitate effect you are now instantly healed for 4% of your maximum health.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706167:effect:0:aura:4","name":"Natural Efficiency (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":707806}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706167,"level":1,"description":"Whenever you are struck by a root, stun, or incapacitate effect you are now instantly healed for 4% of your maximum health.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706167:effect:0:aura:4","name":"Natural Efficiency (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":707806}]}],"talentEntryId":7339},{"id":"coa-31-power-of-ursol-110-706361","classId":"primalist","dbcSpellId":706361,"name":"Power of Ursol","unlockLevel":1,"icon":"/assets/ui/spells/custom_bear_paw_border.png","sigil":"PO","description":"Power of UrsolRank 1Reduces the cooldown of Bear's Maw by 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706361:effect:0:aura:107","name":"Power of Ursol (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706361:effect:1:aura:108","name":"Power of Ursol (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":706361,"level":1,"description":"Power of UrsolRank 1Reduces the cooldown of Bear's Maw by 2 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706361:effect:0:aura:107","name":"Power of Ursol (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706361:effect:1:aura:108","name":"Power of Ursol (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]},{"rank":2,"spellId":706362,"level":1,"description":"Power of UrsolRank 2Reduces the cooldown of Bear's Maw by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706362:effect:0:aura:107","name":"Power of Ursol (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706362:effect:1:aura:108","name":"Power of Ursol (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0}]}]},{"id":"coa-31-primal-defusion-114-706144","classId":"primalist","dbcSpellId":706144,"name":"Primal Defusion","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_abolishmagic.png","sigil":"PD","description":"Primal DefusionRank 2Reduces mana cost of Primal Infusion and increases healing by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706144:effect:0:aura:108","name":"Primal Defusion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706144:effect:1:aura:108","name":"Primal Defusion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706144:effect:2:aura:108","name":"Primal Defusion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706144,"level":1,"description":"Primal DefusionRank 2Reduces mana cost of Primal Infusion and increases healing by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706144:effect:0:aura:108","name":"Primal Defusion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706144:effect:1:aura:108","name":"Primal Defusion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706144:effect:2:aura:108","name":"Primal Defusion (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}]},{"id":"coa-tree-30689","classId":"primalist","dbcSpellId":504193,"name":"Primal Fury","unlockLevel":1,"icon":"/assets/ui/spells/nhi_earthtranquility_border.png","sigil":"PF","description":"You now passively generate 4 Rage every 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504193:effect:0:aura:24","name":"Primal Fury (Aura 24)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":40}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504193,"level":1,"description":"You now passively generate 4 Rage every 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504193:effect:0:aura:24","name":"Primal Fury (Aura 24)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":40}]}],"talentEntryId":30689},{"id":"coa-tree-12567","classId":"primalist","dbcSpellId":706171,"name":"Primal Strikes","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_unleashweapon_life.png","sigil":"PS","description":"Critical strikes with abilities that deal Physical damage now generate 3 Rage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706171:effect:0:aura:42","name":"Primal Strikes (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706171:proc:0:560970","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560970}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560970}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706171,"level":1,"description":"Critical strikes with abilities that deal Physical damage now generate 3 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706171:effect:0:aura:42","name":"Primal Strikes (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706171:proc:0:560970","triggers":["crit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560970}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560970}]}],"talentEntryId":12567},{"id":"coa-tree-6269","classId":"primalist","dbcSpellId":504229,"name":"Primal Totem","unlockLevel":1,"icon":"/assets/ui/spells/inv_relics_totemofrebirth.png","sigil":"PT","description":"Summon a Primal Totem that increases the primary stats of party and raid members by 20% within 40 yds for 15 seconds.","target":"hostile","range":{"min":0,"max":20},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"summon","creatureId":224861,"coefficient":0.08,"durationMs":15000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":504229,"level":1,"description":"Summon a Primal Totem that increases the primary stats of party and raid members by 20% within 40 yds for 15 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":600000,"gcdMs":1500,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"summon","creatureId":224861,"coefficient":0.08,"durationMs":15000}]}],"talentEntryId":6269},{"id":"primalist-protective-roar","classId":"primalist","dbcSpellId":800142,"name":"Protective Roar","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_kingofthejungle.png","sigil":"PR","description":"Protective RoarRank 14% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 13 health.","target":"hostile","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5,"basePoints":13,"dieSides":5,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0.5,"sourceLevel":1,"maxScalingLevel":10},{"kind":"apply-aura","aura":{"id":"coa:800142:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}],"source":"coa-progression","passive":true,"ranks":[{"rank":1,"spellId":800142,"level":1,"description":"Protective RoarRank 14% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 13 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":0.5,"basePoints":13,"dieSides":5,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0.5,"sourceLevel":1,"maxScalingLevel":10},{"kind":"apply-aura","aura":{"id":"coa:800142:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":2,"spellId":502741,"level":11,"description":"Protective RoarRank 24% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 29 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":0.8226666817298303,"basePoints":29,"dieSides":10,"pointsPerLevel":2.7880001068115234,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":20},{"kind":"apply-aura","aura":{"id":"coa:502741:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":3,"spellId":502742,"level":21,"description":"Protective RoarRank 34% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 60 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":1.3863703763043438,"basePoints":60,"dieSides":18,"pointsPerLevel":3.868000030517578,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":30},{"kind":"apply-aura","aura":{"id":"coa:502742:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":4,"spellId":502743,"level":31,"description":"Protective RoarRank 44% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 112 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":2.0281739027603813,"basePoints":112,"dieSides":30,"pointsPerLevel":4.947999954223633,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:502743:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":5,"spellId":502744,"level":41,"description":"Protective RoarRank 54% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 194 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":2.756833303542364,"basePoints":194,"dieSides":45,"pointsPerLevel":6.0279998779296875,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":50},{"kind":"apply-aura","aura":{"id":"coa:502744:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":6,"spellId":502745,"level":51,"description":"Protective RoarRank 64% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 419 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":419,"dieSides":63,"pointsPerLevel":7.107999801635742,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60},{"kind":"apply-aura","aura":{"id":"coa:502745:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":7,"spellId":502746,"level":61,"description":"Protective RoarRank 74% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 506 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":506,"dieSides":85,"pointsPerLevel":8.187999725341797,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70},{"kind":"apply-aura","aura":{"id":"coa:502746:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}]},{"rank":8,"spellId":502747,"level":71,"description":"Protective RoarRank 84% of base mana Instant1 hr cooldownRoar with noble tenacity, generating 20 Rage and healing all party and raid members within 30 yds for 781 health.","castMode":"instant","castTimeMs":0,"cooldownMs":6000000,"gcdMs":1500,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"heal","coefficient":4,"basePoints":781,"dieSides":110,"pointsPerLevel":9.267999649047852,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502747:effect:1:aura:87","name":"Protective Roar (Aura 87)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":200}]}]},{"id":"coa-tree-6665","classId":"primalist","dbcSpellId":561191,"name":"Rage Rolling","unlockLevel":1,"icon":"/assets/ui/spells/inv_ore_blackrock_ore.png","sigil":"RR","description":"Casting Boulder Dash now instantly generates 50 Rage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561191:effect:0:aura:42","name":"Rage Rolling (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:561191:proc:0:521230","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":521230}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":521230}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":561191,"level":1,"description":"Casting Boulder Dash now instantly generates 50 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561191:effect:0:aura:42","name":"Rage Rolling (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:561191:proc:0:521230","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":521230}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":521230}]}],"talentEntryId":6665},{"id":"coa-tree-6289","classId":"primalist","dbcSpellId":680446,"name":"Rolling Momentum","unlockLevel":1,"icon":"/assets/ui/spells/5_assassinskill26_border.png","sigil":"RM","description":"Increases the movement speed granted by Boulder Dash by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680446:effect:0:aura:107","name":"Rolling Momentum (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":680446,"level":1,"description":"Increases the movement speed granted by Boulder Dash by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680446:effect:0:aura:107","name":"Rolling Momentum (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}],"talentEntryId":6289},{"id":"coa-31-rumbler-none-560144","classId":"primalist","dbcSpellId":560144,"name":"Rumbler","unlockLevel":1,"icon":"/assets/ui/spells/inv_elementalearth2.png","sigil":"RU","description":"RumblerRank 2Gives Nature damage dealt a 12% chance to grant Groundshaker. Rumbler","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560144:effect:0:aura:42","name":"Rumbler (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560144:proc:0:804355","triggers":["hit"],"chance":0.12,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804355}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":1,"triggerSpellId":804355}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560144,"level":1,"description":"RumblerRank 2Gives Nature damage dealt a 12% chance to grant Groundshaker. Rumbler","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560144:effect:0:aura:42","name":"Rumbler (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:560144:proc:0:804355","triggers":["hit"],"chance":0.12,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804355}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":1,"triggerSpellId":804355}]}]},{"id":"coa-tree-4058","classId":"primalist","dbcSpellId":92148,"name":"Spirit Beast Master","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_ripandtear.png","sigil":"SB","description":"Level 10 Passive You may now tame beasts in Azeroth to aid you as a companion.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92148:effect:0:aura:42","name":"Spirit Beast Master (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92148:proc:0:806589","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806589}}}]},"recipient":"caster","sourceEffectType":119,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806589},{"kind":"apply-aura","aura":{"id":"coa:92148:effect:1:aura:108","name":"Spirit Beast Master (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92148:effect:2:aura:133","name":"Spirit Beast Master (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92148,"level":1,"description":"Level 10 Passive You may now tame beasts in Azeroth to aid you as a companion.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92148:effect:0:aura:42","name":"Spirit Beast Master (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92148:proc:0:806589","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":806589}}}]},"recipient":"caster","sourceEffectType":119,"sourceAuraType":42,"miscValue":0,"triggerSpellId":806589},{"kind":"apply-aura","aura":{"id":"coa:92148:effect:1:aura:108","name":"Spirit Beast Master (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92148:effect:2:aura:133","name":"Spirit Beast Master (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":133,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4058},{"id":"coa-31-stone-cold-none-560159","classId":"primalist","dbcSpellId":560159,"name":"Stone Cold","unlockLevel":1,"icon":"/assets/ui/spells/inv_custom_hearthstone_nature.png","sigil":"SC","description":"Stone ColdRank 2Increases your maximum health by 8%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560159:effect:0:aura:133","name":"Stone Cold (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":2,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560159,"level":1,"description":"Stone ColdRank 2Increases your maximum health by 8%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560159:effect:0:aura:133","name":"Stone Cold (Aura 133)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":133,"miscValue":2,"triggerSpellId":0}]}]},{"id":"coa-tree-6305","classId":"primalist","dbcSpellId":706201,"name":"Stonefaced","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_stonetablet_05.png","sigil":"ST","description":"Casting Seismic abilities now also grants 2 stacks of Earth's Rage.Earth's RageIncreases movement speed by 4% and haste by 2% for 8 seconds, stacking 5 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706201:effect:0:aura:42","name":"Stonefaced (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706201:proc:0:573215","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573215}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":573215},{"kind":"apply-aura","aura":{"id":"coa:706201:effect:1:aura:4","name":"Stonefaced (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706201:effect:2:aura:4","name":"Stonefaced (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706201,"level":1,"description":"Casting Seismic abilities now also grants 2 stacks of Earth's Rage.Earth's RageIncreases movement speed by 4% and haste by 2% for 8 seconds, stacking 5 times.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706201:effect:0:aura:42","name":"Stonefaced (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706201:proc:0:573215","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573215}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":573215},{"kind":"apply-aura","aura":{"id":"coa:706201:effect:1:aura:4","name":"Stonefaced (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706201:effect:2:aura:4","name":"Stonefaced (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":6305},{"id":"coa-tree-6262","classId":"primalist","dbcSpellId":504219,"name":"Therazane's Gift","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_giftearthmother.png","sigil":"TS","description":"Therazane's Rage now generates an additional 5 Rage and 5% additional mana.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504219:effect:0:aura:107","name":"Therazane's Gift (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504219:effect:1:aura:107","name":"Therazane's Gift (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":504219,"level":1,"description":"Therazane's Rage now generates an additional 5 Rage and 5% additional mana.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504219:effect:0:aura:107","name":"Therazane's Gift (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504219:effect:1:aura:107","name":"Therazane's Gift (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}],"talentEntryId":6262},{"id":"coa-31-tides-favor-none-500734","classId":"primalist","dbcSpellId":500734,"name":"Tide's Favor","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_throne_of_the_tides.png","sigil":"TS","description":"Tide's FavorRank 2Reduces the Rage cost of Hammer of Life by 0.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":500734,"level":1,"description":"Tide's FavorRank 2Reduces the Rage cost of Hammer of Life by 0.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-tree-30105","classId":"primalist","dbcSpellId":803980,"name":"Wildheart","unlockLevel":1,"icon":"/assets/ui/spells/spell_druid_ironbark.png","sigil":"WI","description":"The Earthmother marks you as her chosen one, reducing the cooldown of all other non-damaging spells and abilities by 5%, repeating every 2 sec for 15 seconds. Instantly restores 5% missing health, mana, and Rage to you, repeating every 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803980:effect:0:aura:23","name":"Wildheart (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803980:proc:0:807249","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807249}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807249},{"kind":"apply-aura","aura":{"id":"coa:803980:effect:1:aura:23","name":"Wildheart (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803980:proc:1:810040","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":810040}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":810040},{"kind":"apply-aura","aura":{"id":"coa:803980:effect:2:aura:239","name":"Wildheart (Aura 239)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":239,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":803980,"level":1,"description":"The Earthmother marks you as her chosen one, reducing the cooldown of all other non-damaging spells and abilities by 5%, repeating every 2 sec for 15 seconds. Instantly restores 5% missing health, mana, and Rage to you, repeating every 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803980:effect:0:aura:23","name":"Wildheart (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803980:proc:0:807249","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807249}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807249},{"kind":"apply-aura","aura":{"id":"coa:803980:effect:1:aura:23","name":"Wildheart (Aura 23)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803980:proc:1:810040","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":810040}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":810040},{"kind":"apply-aura","aura":{"id":"coa:803980:effect:2:aura:239","name":"Wildheart (Aura 239)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":239,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":30105},{"id":"primalist-primal-strike","classId":"primalist","dbcSpellId":805950,"name":"Primal Strike","unlockLevel":2,"icon":"/assets/ui/spells/ability_druid_catformattack.png","sigil":"PS","description":"Strike an enemy for ${$m1+$ppl1} Physical Damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1,"basePoints":11,"dieSides":2,"pointsPerLevel":4,"bonusPowerCoefficient":1,"sourceLevel":13}],"source":"coa-starter","passive":false,"ranks":[{"rank":1,"spellId":805950,"level":2,"description":"Strike an enemy for ${$m1+$ppl1} Physical Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1,"basePoints":11,"dieSides":2,"pointsPerLevel":4,"bonusPowerCoefficient":1,"sourceLevel":13}]}]},{"id":"coa-31-seismic-crash-112-803981","classId":"primalist","dbcSpellId":803981,"name":"Seismic Crash","unlockLevel":2,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SC","description":"Seismic CrashRank 124% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 2001 times, dealing ((1*1000/0.5)+1)*(11+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"cooldownGroup":"coa:seismic-spells","gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803981:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.22026149022812938,"basePoints":11,"dieSides":1,"pointsPerLevel":0.11666800081729889,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":14,"ticks":2,"intervalMs":500,"tag":"spell-803981"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803981,"level":2,"description":"Seismic CrashRank 124% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 2001 times, dealing ((1*1000/0.5)+1)*(11+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803981:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.22026149022812938,"basePoints":11,"dieSides":1,"pointsPerLevel":0.11666800081729889,"bonusPowerCoefficient":0,"sourceLevel":2,"maxScalingLevel":14,"ticks":2,"intervalMs":500,"tag":"spell-803981"}]},{"rank":2,"spellId":503258,"level":16,"description":"Seismic CrashRank 224% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 3334 times, dealing ((1*1000/0.3)+1)*(29+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503258:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.39136705603650823,"basePoints":29,"dieSides":1,"pointsPerLevel":0.462321013212204,"bonusPowerCoefficient":0,"sourceLevel":16,"maxScalingLevel":22,"ticks":3,"intervalMs":300,"tag":"spell-503258"}]},{"rank":3,"spellId":503259,"level":24,"description":"Seismic CrashRank 324% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 3334 times, dealing ((1*1000/0.3)+1)*(51+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503259:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.5468531266236917,"basePoints":51,"dieSides":1,"pointsPerLevel":0.5409089922904968,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29,"ticks":3,"intervalMs":300,"tag":"spell-503259"}]},{"rank":4,"spellId":503260,"level":30,"description":"Seismic CrashRank 424% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 3334 times, dealing ((1*1000/0.3)+1)*(71+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503260:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.736296373826486,"basePoints":71,"dieSides":1,"pointsPerLevel":0.9466670155525208,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36,"ticks":3,"intervalMs":300,"tag":"spell-503260"}]},{"rank":5,"spellId":503261,"level":38,"description":"Seismic CrashRank 524% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 4001 times, dealing ((1*1000/0.25)+1)*(77+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503261:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.643605945995019,"basePoints":77,"dieSides":1,"pointsPerLevel":0.6666669845581055,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44,"ticks":4,"intervalMs":250,"tag":"spell-503261"}]},{"rank":6,"spellId":503262,"level":46,"description":"Seismic CrashRank 624% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 4001 times, dealing ((1*1000/0.25)+1)*(111+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503262:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.9856551866062352,"basePoints":111,"dieSides":1,"pointsPerLevel":1.5081499814987183,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50,"ticks":4,"intervalMs":250,"tag":"spell-503262"}]},{"rank":7,"spellId":503263,"level":52,"description":"Seismic CrashRank 724% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 4001 times, dealing ((1*1000/0.25)+1)*(135+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503263:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.0153514449276142,"basePoints":135,"dieSides":1,"pointsPerLevel":1.328570008277893,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58,"ticks":4,"intervalMs":250,"tag":"spell-503263"}]},{"rank":8,"spellId":503264,"level":60,"description":"Seismic CrashRank 824% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 4001 times, dealing ((1*1000/0.25)+1)*(155+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503264:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.3056835386488173,"basePoints":155,"dieSides":1,"pointsPerLevel":2.3129799365997314,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":64,"ticks":4,"intervalMs":250,"tag":"spell-503264"}]},{"rank":9,"spellId":503265,"level":66,"description":"Seismic CrashRank 924% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 5001 times, dealing ((1*1000/0.2)+1)*(156+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503265:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1580246848824582,"basePoints":156,"dieSides":1,"pointsPerLevel":1.899999976158142,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":71,"ticks":5,"intervalMs":200,"tag":"spell-503265"}]},{"rank":10,"spellId":503266,"level":73,"description":"Seismic CrashRank 1024% of base mana Instant cast8 sec cooldownCreate stalactites that strike your enemy 5001 times, dealing ((1*1000/0.2)+1)*(178+SP*.10+AP*0.06) Physical damage over 1 sec. Generates 20 Rage. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":24,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503266:effect:0:aura:3","name":"Seismic Crash (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1072292174353744,"basePoints":178,"dieSides":1,"pointsPerLevel":1.5658700466156006,"bonusPowerCoefficient":0,"sourceLevel":73,"maxScalingLevel":80,"ticks":5,"intervalMs":200,"tag":"spell-503266"}]}]},{"id":"primalist-geode-barrage","classId":"primalist","dbcSpellId":502769,"name":"Geode Barrage","unlockLevel":6,"icon":"/assets/ui/spells/ability_rogue_throwingspecialization.png","sigil":"GB","description":"Geode BarrageRank 212% of base mana 2 sec castFling three stones at an enemy over 1 sec, each dealing 17+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","target":"hostile","range":{"min":0,"max":30},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502769:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502769:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502769,"level":6,"description":"Geode BarrageRank 212% of base mana 2 sec castFling three stones at an enemy over 1 sec, each dealing 17+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502769:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502769:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]},{"rank":3,"spellId":502770,"level":14,"description":"Geode BarrageRank 312% of base mana 2.2 sec castFling three stones at an enemy over 1 sec, each dealing 29+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2200,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502770:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502770:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]},{"rank":4,"spellId":502771,"level":22,"description":"Geode BarrageRank 412% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 51+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502771:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502771:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]},{"rank":5,"spellId":502772,"level":30,"description":"Geode BarrageRank 512% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 80+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502772:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502772:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]},{"rank":6,"spellId":502773,"level":38,"description":"Geode BarrageRank 612% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 105+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502773:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502773:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]},{"rank":7,"spellId":502774,"level":46,"description":"Geode BarrageRank 712% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 130+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502774:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502774:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]},{"rank":8,"spellId":502775,"level":54,"description":"Geode BarrageRank 812% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 160+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502775:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502775:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]},{"rank":9,"spellId":502776,"level":60,"description":"Geode BarrageRank 912% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 207+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502776:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502776:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]},{"rank":10,"spellId":502777,"level":68,"description":"Geode BarrageRank 1012% of base mana 2.5 sec castFling three stones at an enemy over 1 sec, each dealing 290+0+NatP*.23+AP*.09 Physical Damage and generating Rage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502777:effect:0:aura:227","name":"Geode Barrage (Aura 227)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502777:proc:0:803138","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803138}}}]},"sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":803138}]}]},{"id":"primalist-hand-of-the-earthmother","classId":"primalist","dbcSpellId":800135,"name":"Hand of the Earthmother","unlockLevel":6,"icon":"/assets/ui/spells/spell_shaman_spiritlink.png","sigil":"HO","description":"Hand of the EarthmotherRank 135 Rage Instant castRejuvenate an ally, healing them for 49+0+AP*0.2+Heal*0.3.","target":"friendly","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":0.8704761891137986,"basePoints":49,"dieSides":5,"pointsPerLevel":0.6399999856948853,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800135,"level":6,"description":"Hand of the EarthmotherRank 135 Rage Instant castRejuvenate an ally, healing them for 49+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":0.8704761891137986,"basePoints":49,"dieSides":5,"pointsPerLevel":0.6399999856948853,"bonusPowerCoefficient":0,"sourceLevel":6,"maxScalingLevel":12}]},{"rank":2,"spellId":502802,"level":14,"description":"Hand of the EarthmotherRank 235 Rage Instant castRejuvenate an ally, healing them for 112+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":1.5772413823796414,"basePoints":112,"dieSides":10,"pointsPerLevel":1.4800000190734863,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20}]},{"rank":3,"spellId":502803,"level":22,"description":"Hand of the EarthmotherRank 335 Rage Instant castRejuvenate an ally, healing them for 169+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":2.0340540559442193,"basePoints":169,"dieSides":16,"pointsPerLevel":2.240000009536743,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28}]},{"rank":4,"spellId":502804,"level":30,"description":"Hand of the EarthmotherRank 435 Rage Instant castRejuvenate an ally, healing them for 219+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":2.3533340948599357,"basePoints":219,"dieSides":24,"pointsPerLevel":2.906670093536377,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36}]},{"rank":5,"spellId":502805,"level":38,"description":"Hand of the EarthmotherRank 535 Rage Instant castRejuvenate an ally, healing them for 266+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":2.624317852955944,"basePoints":266,"dieSides":35,"pointsPerLevel":3.533329963684082,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44}]},{"rank":6,"spellId":502806,"level":46,"description":"Hand of the EarthmotherRank 635 Rage Instant castRejuvenate an ally, healing them for 315+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":2.9021137268816837,"basePoints":315,"dieSides":48,"pointsPerLevel":4.186669826507568,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52}]},{"rank":7,"spellId":502807,"level":54,"description":"Hand of the EarthmotherRank 735 Rage Instant castRejuvenate an ally, healing them for 376+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":4,"basePoints":376,"dieSides":63,"pointsPerLevel":15,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":56}]},{"rank":8,"spellId":502808,"level":58,"description":"Hand of the EarthmotherRank 835 Rage Instant castRejuvenate an ally, healing them for 1121+0+AP*0.2+Heal*0.3.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":35},"effects":[{"kind":"heal","coefficient":4,"basePoints":1121,"dieSides":81,"pointsPerLevel":4.480000019073486,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":66}]}]},{"id":"coa-31-primal-rush-482-500696","classId":"primalist","dbcSpellId":500696,"name":"Primal Rush","unlockLevel":10,"icon":"/assets/ui/spells/ability_druid_berserk.png","sigil":"PR","description":"Primal RushRank 110% of base mana Instant cast25 sec cooldownRush forward 20 yd through enemies in a line, dealing 40 Nature damage. Generates 20 Rage.","target":"hostile","range":{"min":0,"max":0},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1250,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"resource","amount":200},{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"damage","coefficient":0.6000000238418579,"basePoints":40,"dieSides":6,"pointsPerLevel":1.375,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":10,"maxScalingLevel":16}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500696,"level":10,"description":"Primal RushRank 110% of base mana Instant cast25 sec cooldownRush forward 20 yd through enemies in a line, dealing 40 Nature damage. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1250,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"resource","amount":200},{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"damage","coefficient":0.6000000238418579,"basePoints":40,"dieSides":6,"pointsPerLevel":1.375,"bonusPowerCoefficient":0.6000000238418579,"sourceLevel":10,"maxScalingLevel":16}]},{"rank":6,"spellId":502723,"level":50,"description":"Primal RushRank 610% of base mana Instant cast25 sec cooldownRush forward 20 yd through enemies in a line, dealing 463 Nature damage. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1250,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"resource","amount":200},{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"damage","coefficient":4,"basePoints":463,"dieSides":13,"pointsPerLevel":7.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":50,"maxScalingLevel":56}]},{"rank":7,"spellId":502724,"level":58,"description":"Primal RushRank 710% of base mana Instant cast25 sec cooldownRush forward 20 yd through enemies in a line, dealing 614 Nature damage. Generates 20 Rage.","castMode":"instant","castTimeMs":0,"cooldownMs":25000,"gcdMs":1250,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"resource","amount":200},{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"damage","coefficient":4,"basePoints":614,"dieSides":17,"pointsPerLevel":10.216699600219727,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":64}]}]},{"id":"coa-31-fury-of-the-wild-110-502748","classId":"primalist","dbcSpellId":502748,"name":"Fury of the Wild","unlockLevel":11,"icon":"/assets/ui/spells/druid_stagstatue01.png","sigil":"FO","description":"Fury of the WildRank 2Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502748:effect:0:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502748:effect:1:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":502748,"level":11,"description":"Fury of the WildRank 2Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502748:effect:0:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502748:effect:1:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]},{"rank":3,"spellId":502749,"level":21,"description":"Fury of the WildRank 3Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502749:effect:0:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502749:effect:1:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]},{"rank":4,"spellId":502750,"level":31,"description":"Fury of the WildRank 4Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502750:effect:0:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502750:effect:1:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]},{"rank":5,"spellId":502751,"level":41,"description":"Fury of the WildRank 5Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502751:effect:0:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502751:effect:1:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]},{"rank":6,"spellId":502752,"level":51,"description":"Fury of the WildRank 6Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502752:effect:0:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502752:effect:1:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]},{"rank":7,"spellId":502753,"level":61,"description":"Fury of the WildRank 7Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502753:effect:0:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502753:effect:1:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]},{"rank":8,"spellId":502754,"level":71,"description":"Fury of the WildRank 8Instant castIncreases the Critical Strike Damage Bonus of your Wildclaw ability by 50%, and reduces the Cooldown of your Primal Charge and Bear's Maw abilities by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:502754:effect:0:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502754:effect:1:aura:108","name":"Fury of the Wild (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":0,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]}]},{"id":"coa-31-quake-496-803974","classId":"primalist","dbcSpellId":803974,"name":"Quake","unlockLevel":11,"icon":"/assets/ui/spells/spell_shaman_earthquake.png","sigil":"QU","description":"QuakeRank 15% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 13+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":520463},{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.16666666666666666,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":803974,"level":11,"description":"QuakeRank 15% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 13+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":520463},{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.16666666666666666,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":18}]},{"rank":2,"spellId":503267,"level":20,"description":"QuakeRank 25% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 25+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":520463},{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.23809523809523808,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26}]},{"rank":3,"spellId":503268,"level":28,"description":"QuakeRank 35% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 43+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":520463},{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.3372093023255814,"basePoints":43,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32}]},{"rank":4,"spellId":504571,"level":34,"description":"QuakeRank 45% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 64+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":520463},{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.4387755102040816,"basePoints":64,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":40}]},{"rank":5,"spellId":505155,"level":42,"description":"QuakeRank 55% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 90+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":520463},{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.5292397660818714,"basePoints":90,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":46}]},{"rank":6,"spellId":505156,"level":48,"description":"QuakeRank 65% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 121+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":520463},{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.6428571428571429,"basePoints":121,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54}]},{"rank":7,"spellId":505157,"level":56,"description":"QuakeRank 75% of base mana InstantRequires Weapon 2 Charges, 8 sec recharge Stomp the ground, dealing Weapon Damage plus 167+0+NatP*.2+AP*.1 Nature damage to enemies within 8 yds and reduces their melee and ranged haste by 20% for 10 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":520463},{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.7863849765258216,"basePoints":167,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":66}]}]},{"id":"coa-31-seismic-spike-112-804433","classId":"primalist","dbcSpellId":804433,"name":"Seismic Spike","unlockLevel":12,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Seismic SpikeRank 123% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 58+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","target":"hostile","range":{"min":0,"max":20},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"cooldownGroup":"coa:seismic-spells","gcdMs":1250,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":58,"dieSides":4,"pointsPerLevel":1.4249999523162842,"bonusPowerCoefficient":1,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804433,"level":12,"description":"Seismic SpikeRank 123% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 58+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":58,"dieSides":4,"pointsPerLevel":1.4249999523162842,"bonusPowerCoefficient":1,"sourceLevel":12,"maxScalingLevel":16},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":2,"spellId":560171,"level":18,"description":"Seismic SpikeRank 223% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 79+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":79,"dieSides":6,"pointsPerLevel":1.9500000476837158,"bonusPowerCoefficient":1,"sourceLevel":18,"maxScalingLevel":22},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":3,"spellId":560172,"level":24,"description":"Seismic SpikeRank 323% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 109+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":109,"dieSides":9,"pointsPerLevel":1.7999999523162842,"bonusPowerCoefficient":1,"sourceLevel":24,"maxScalingLevel":30},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":4,"spellId":560173,"level":32,"description":"Seismic SpikeRank 423% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 153+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":153,"dieSides":13,"pointsPerLevel":2.533329963684082,"bonusPowerCoefficient":1,"sourceLevel":32,"maxScalingLevel":38},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":5,"spellId":560174,"level":40,"description":"Seismic SpikeRank 523% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 212+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":212,"dieSides":19,"pointsPerLevel":3.516669988632202,"bonusPowerCoefficient":1,"sourceLevel":40,"maxScalingLevel":46},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":6,"spellId":560175,"level":48,"description":"Seismic SpikeRank 623% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 296+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":296,"dieSides":27,"pointsPerLevel":4.916669845581055,"bonusPowerCoefficient":1,"sourceLevel":48,"maxScalingLevel":54},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]},{"rank":7,"spellId":582532,"level":56,"description":"Seismic SpikeRank 723% of base mana Instant cast8 sec cooldownBring forth a massive stalagmite from the ground beneath an enemy and up to 4 nearby enemies, dealing 413+0+NatP*.65+AP*0.065 Physical damage. Generates 4 Rage for each target struck. Shares a cooldown with other Seismic spells.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1250,"cost":{"resource":"mana","amount":23,"percentage":true},"effects":[{"kind":"damage","coefficient":1,"basePoints":413,"dieSides":80,"pointsPerLevel":5.150000095367432,"bonusPowerCoefficient":1,"sourceLevel":56,"maxScalingLevel":64},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}]}]},{"id":"coa-31-spirit-charge-114-800144","classId":"primalist","dbcSpellId":800144,"name":"Spirit Charge","unlockLevel":13,"icon":"/assets/ui/spells/ability_monk_pathofmists.png","sigil":"SC","description":"Spirit ChargeRank 116% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 53+0+Heal*0.2+AP*.2 and dealing 67+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","target":"hostile","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"heal","coefficient":0.5,"basePoints":53,"dieSides":2,"pointsPerLevel":1.1799999475479126,"bonusPowerCoefficient":0.5,"sourceLevel":13,"maxScalingLevel":22},{"kind":"damage","coefficient":0.8904761941660018,"basePoints":67,"dieSides":1,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":22}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800144,"level":13,"description":"Spirit ChargeRank 116% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 53+0+Heal*0.2+AP*.2 and dealing 67+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"heal","coefficient":0.5,"basePoints":53,"dieSides":2,"pointsPerLevel":1.1799999475479126,"bonusPowerCoefficient":0.5,"sourceLevel":13,"maxScalingLevel":22},{"kind":"damage","coefficient":0.8904761941660018,"basePoints":67,"dieSides":1,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":22}]},{"rank":2,"spellId":502809,"level":24,"description":"Spirit ChargeRank 216% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 72+0+Heal*0.2+AP*.2 and dealing 86+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"heal","coefficient":1.0063247843685312,"basePoints":72,"dieSides":2,"pointsPerLevel":1.8849999904632568,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":32},{"kind":"damage","coefficient":0.9572649572649573,"basePoints":86,"dieSides":2,"pointsPerLevel":1.0625,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":32}]},{"rank":3,"spellId":502810,"level":34,"description":"Spirit ChargeRank 316% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 99+0+Heal*0.2+AP*.2 and dealing 107+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"heal","coefficient":1.3082993241394458,"basePoints":99,"dieSides":2,"pointsPerLevel":2.7300000190734863,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42},{"kind":"damage","coefficient":1.0343537525254853,"basePoints":107,"dieSides":1,"pointsPerLevel":1.3250000476837158,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":42}]},{"rank":4,"spellId":502811,"level":44,"description":"Spirit ChargeRank 416% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 141+0+Heal*0.2+AP*.2 and dealing 152+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"heal","coefficient":1.6943502587787176,"basePoints":141,"dieSides":2,"pointsPerLevel":3.5999999046325684,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":52},{"kind":"damage","coefficient":1.3307909723055564,"basePoints":152,"dieSides":2,"pointsPerLevel":1.8875000476837158,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":52}]},{"rank":5,"spellId":504570,"level":54,"description":"Spirit ChargeRank 516% of base mana Instant cast30 sec cooldownCharge to an ally's aid, healing them for 204+0+Heal*0.2+AP*.2 and dealing 220+0+Heal*0.2+AP*.2 Nature damage to enemies within 5 yds of them.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1250,"cost":{"resource":"mana","amount":16,"percentage":true},"effects":[{"kind":"movement","movement":"charge","toward":"destination"},{"kind":"heal","coefficient":2.503141969874285,"basePoints":204,"dieSides":1,"pointsPerLevel":5.817599773406982,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62},{"kind":"damage","coefficient":1.7769323547105282,"basePoints":220,"dieSides":1,"pointsPerLevel":2.737499952316284,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":62}]}]},{"id":"coa-31-primal-shred-110-500940","classId":"primalist","dbcSpellId":500940,"name":"Primal Shred","unlockLevel":15,"icon":"/assets/ui/spells/ability_druid_freshwound.png","sigil":"PS","description":"Primal ShredRank 125 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(7+1.1 Points Per Level+AP*0.05) Physical damage over 21 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504669},{"kind":"apply-aura","aura":{"id":"coa:504669:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.10267857142857142,"basePoints":7,"dieSides":1,"pointsPerLevel":0.125,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":17,"ticks":7,"intervalMs":3000,"tag":"spell-504669"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500940,"level":15,"description":"Primal ShredRank 125 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(7+1.1 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504669},{"kind":"apply-aura","aura":{"id":"coa:504669:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.10267857142857142,"basePoints":7,"dieSides":1,"pointsPerLevel":0.125,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":17,"ticks":7,"intervalMs":3000,"tag":"spell-504669"}]},{"rank":2,"spellId":502725,"level":20,"description":"Primal ShredRank 225 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(10+1.2 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504670},{"kind":"apply-aura","aura":{"id":"coa:504670:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.12908502931103988,"basePoints":10,"dieSides":1,"pointsPerLevel":0.16666699945926666,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":23,"ticks":7,"intervalMs":3000,"tag":"spell-504670"}]},{"rank":3,"spellId":502726,"level":26,"description":"Primal ShredRank 325 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(14+1.2 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504671},{"kind":"apply-aura","aura":{"id":"coa:504671:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.15138895822068055,"basePoints":14,"dieSides":1,"pointsPerLevel":0.16666699945926666,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":29,"ticks":7,"intervalMs":3000,"tag":"spell-504671"}]},{"rank":4,"spellId":502727,"level":32,"description":"Primal ShredRank 425 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(18+1.3 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504672},{"kind":"apply-aura","aura":{"id":"coa:504672:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1959541843853135,"basePoints":18,"dieSides":1,"pointsPerLevel":0.29166701436042786,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":35,"ticks":7,"intervalMs":3000,"tag":"spell-504672"}]},{"rank":5,"spellId":502728,"level":38,"description":"Primal ShredRank 525 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/$5046731)*(25+1.4 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504673},{"kind":"apply-aura","aura":{"id":"coa:504673:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24919871794871795,"basePoints":25,"dieSides":1,"pointsPerLevel":0.375,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":41,"ticks":7,"intervalMs":3000,"tag":"spell-504673"}]},{"rank":6,"spellId":502729,"level":44,"description":"Primal ShredRank 625 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(34+1.5 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504674},{"kind":"apply-aura","aura":{"id":"coa:504674:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3086684964511586,"basePoints":34,"dieSides":1,"pointsPerLevel":0.45833298563957214,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":47,"ticks":7,"intervalMs":3000,"tag":"spell-504674"}]},{"rank":7,"spellId":502730,"level":50,"description":"Primal ShredRank 725 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(45+1.5 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504675},{"kind":"apply-aura","aura":{"id":"coa:504675:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3513453973767658,"basePoints":45,"dieSides":1,"pointsPerLevel":0.45833298563957214,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":53,"ticks":7,"intervalMs":3000,"tag":"spell-504675"}]},{"rank":8,"spellId":502731,"level":56,"description":"Primal ShredRank 825 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(56+1.5 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504676},{"kind":"apply-aura","aura":{"id":"coa:504676:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.38670625814369747,"basePoints":56,"dieSides":1,"pointsPerLevel":0.45833298563957214,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":61,"ticks":7,"intervalMs":3000,"tag":"spell-504676"}]},{"rank":9,"spellId":502732,"level":60,"description":"Primal ShredRank 925 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(76+1.5 Points Per Level+AP*0.05) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"trigger-spell","spellId":504684},{"kind":"apply-aura","aura":{"id":"coa:504684:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4819443533817927,"basePoints":76,"dieSides":1,"pointsPerLevel":0.45833298563957214,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":61,"ticks":7,"intervalMs":3000,"tag":"spell-504684"}]},{"rank":10,"spellId":502733,"level":68,"description":"Primal ShredRank 1025 Rage InstantCommand your pet to shred up to 5 enemies within 8 yds, causing them to bleed, dealing (21*1000/3)*(7+1.1 Points Per Level+AP*0.08) Physical damage over 21 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1250,"cost":{"resource":"rage","amount":25},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502733:effect:1:aura:3","name":"Primal Shred (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.2027052377601226,"basePoints":355,"dieSides":1,"pointsPerLevel":2.8452000617980957,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":80,"ticks":1,"intervalMs":2000,"tag":"spell-502733"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500945,"durationMs":0}]}]},{"id":"coa-31-sacred-grove-114-502820","classId":"primalist","dbcSpellId":502820,"name":"Sacred Grove","unlockLevel":21,"icon":"/assets/ui/spells/achievement_reputation_guardiansofcenarius.png","sigil":"SG","description":"Sacred GroveRank 235% of base mana 2 sec cast6 min cooldownSummon a magical tree to encompass your body, rooting you, preventing you from dealing damage for 15 sec, and instantly healing up to 12 allies for 2472. While active, a Sacred Grove is created in a radius around you. Up to 12 allies in the grove take 0% reduced damage, 25% increased healing received, and regain 3% of maximum health and 3% of maximum mana every 2 sec.","target":"hostile","range":{"min":0,"max":40},"castMode":"cast","castTimeMs":2000,"cooldownMs":360000,"gcdMs":1250,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":4,"basePoints":2472,"dieSides":10,"pointsPerLevel":3.007999897003174,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:502820:effect:1:aura:26","name":"Sacred Grove (Aura 26)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502820:effect:2:aura:79","name":"Sacred Grove (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502820,"level":21,"description":"Sacred GroveRank 235% of base mana 2 sec cast6 min cooldownSummon a magical tree to encompass your body, rooting you, preventing you from dealing damage for 15 sec, and instantly healing up to 12 allies for 2472. While active, a Sacred Grove is created in a radius around you. Up to 12 allies in the grove take 0% reduced damage, 25% increased healing received, and regain 3% of maximum health and 3% of maximum mana every 2 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":360000,"gcdMs":1250,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":4,"basePoints":2472,"dieSides":10,"pointsPerLevel":3.007999897003174,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":40},{"kind":"apply-aura","aura":{"id":"coa:502820:effect:1:aura:26","name":"Sacred Grove (Aura 26)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502820:effect:2:aura:79","name":"Sacred Grove (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]},{"rank":3,"spellId":502821,"level":41,"description":"Sacred GroveRank 335% of base mana 2 sec cast6 min cooldownSummon a magical tree to encompass your body, rooting you, preventing you from dealing damage for 15 sec, and instantly healing up to 12 allies for 2759. While active, a Sacred Grove is created in a radius around you. Up to 12 allies in the grove take 0% reduced damage, 25% increased healing received, and regain 3% of maximum health and 3% of maximum mana every 2 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":360000,"gcdMs":1250,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":4,"basePoints":2759,"dieSides":25,"pointsPerLevel":4.736000061035156,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":60},{"kind":"apply-aura","aura":{"id":"coa:502821:effect:1:aura:26","name":"Sacred Grove (Aura 26)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502821:effect:2:aura:79","name":"Sacred Grove (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]},{"rank":4,"spellId":502822,"level":61,"description":"Sacred GroveRank 435% of base mana 2 sec cast6 min cooldownSummon a magical tree to encompass your body, rooting you, preventing you from dealing damage for 15 sec, and instantly healing up to 12 allies for 3042. While active, a Sacred Grove is created in a radius around you. Up to 12 allies in the grove take 0% reduced damage, 25% increased healing received, and regain 3% of maximum health and 3% of maximum mana every 2 sec.","castMode":"cast","castTimeMs":2000,"cooldownMs":360000,"gcdMs":1250,"cost":{"resource":"mana","amount":35,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":4,"basePoints":3042,"dieSides":48,"pointsPerLevel":6.464000225067139,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":80},{"kind":"apply-aura","aura":{"id":"coa:502822:effect:1:aura:26","name":"Sacred Grove (Aura 26)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502822:effect:2:aura:79","name":"Sacred Grove (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}]}]},{"id":"coa-31-primal-pulse-114-800177","classId":"primalist","dbcSpellId":800177,"name":"Primal Pulse","unlockLevel":27,"icon":"/assets/ui/spells/ability_demonhunter_chaosnova.png","sigil":"PP","description":"Primal PulseRank 120 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 132.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0.23999999463558197,"basePoints":132,"dieSides":13,"pointsPerLevel":2.619999885559082,"bonusPowerCoefficient":0.23999999463558197,"sourceLevel":27,"maxScalingLevel":31}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800177,"level":27,"description":"Primal PulseRank 120 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 132.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":0.23999999463558197,"basePoints":132,"dieSides":13,"pointsPerLevel":2.619999885559082,"bonusPowerCoefficient":0.23999999463558197,"sourceLevel":27,"maxScalingLevel":31}]},{"rank":2,"spellId":502812,"level":33,"description":"Primal PulseRank 220 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 156.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.0374992059336767,"basePoints":156,"dieSides":3,"pointsPerLevel":4.13332986831665,"bonusPowerCoefficient":0,"sourceLevel":33,"maxScalingLevel":36}]},{"rank":3,"spellId":502813,"level":38,"description":"Primal PulseRank 320 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 181.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.2981132531316026,"basePoints":181,"dieSides":5,"pointsPerLevel":4.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":41}]},{"rank":4,"spellId":502814,"level":43,"description":"Primal PulseRank 420 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 206.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.55498167564129,"basePoints":206,"dieSides":8,"pointsPerLevel":5.466670036315918,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":46}]},{"rank":5,"spellId":502815,"level":48,"description":"Primal PulseRank 520 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 231.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":2.808993828990472,"basePoints":231,"dieSides":12,"pointsPerLevel":6.13332986831665,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":51}]},{"rank":6,"spellId":502816,"level":53,"description":"Primal PulseRank 620 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 266.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":3.176634837599362,"basePoints":266,"dieSides":16,"pointsPerLevel":7.066669940948486,"bonusPowerCoefficient":0,"sourceLevel":53,"maxScalingLevel":56}]},{"rank":7,"spellId":502817,"level":58,"description":"Primal PulseRank 720 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 301.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":3.538812785388128,"basePoints":301,"dieSides":21,"pointsPerLevel":8,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":61}]},{"rank":8,"spellId":502818,"level":63,"description":"Primal PulseRank 820 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 451.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":451,"dieSides":27,"pointsPerLevel":12,"bonusPowerCoefficient":0,"sourceLevel":63,"maxScalingLevel":66}]},{"rank":9,"spellId":502819,"level":68,"description":"Primal PulseRank 920 Rage Instant cast10 sec cooldownPulse with elemental power, healing up to 5 allies within 8 yds for 812.","castMode":"instant","castTimeMs":0,"cooldownMs":10000,"gcdMs":1250,"cost":{"resource":"rage","amount":20},"effects":[{"kind":"heal","coefficient":4,"basePoints":812,"dieSides":34,"pointsPerLevel":8.800000190734863,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":73}]}]}],"runemaster":[{"id":"coa-32-ancient-carvings-117-705616","classId":"runemaster","dbcSpellId":705616,"name":"Ancient Carvings","unlockLevel":1,"icon":"/assets/ui/spells/inv_relics_6orunestone_ogremissive.png","sigil":"AC","description":"Ancient CarvingsRank 2InstantReduces the cooldown of Words by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705616:effect:0:aura:108","name":"Ancient Carvings (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705616:effect:1:aura:4","name":"Ancient Carvings (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705616:effect:2:aura:4","name":"Ancient Carvings (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705616,"level":1,"description":"Ancient CarvingsRank 2InstantReduces the cooldown of Words by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705616:effect:0:aura:108","name":"Ancient Carvings (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705616:effect:1:aura:4","name":"Ancient Carvings (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705616:effect:2:aura:4","name":"Ancient Carvings (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-tree-29226","classId":"runemaster","dbcSpellId":806797,"name":"Ancient Teachings","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_potentspirit.png","sigil":"AT","description":"Increases the effectiveness of Etching of the Dextrous by 20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806797:effect:0:aura:216","name":"Ancient Teachings (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806797:effect:1:aura:192","name":"Ancient Teachings (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806797:effect:2:aura:108","name":"Ancient Teachings (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806797,"level":1,"description":"Increases the effectiveness of Etching of the Dextrous by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806797:effect:0:aura:216","name":"Ancient Teachings (Aura 216)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806797:effect:1:aura:192","name":"Ancient Teachings (Aura 192)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806797:effect:2:aura:108","name":"Ancient Teachings (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0}]}],"talentEntryId":29226},{"id":"coa-32-arcane-imprisonment-116-705629","classId":"runemaster","dbcSpellId":705629,"name":"Arcane Imprisonment","unlockLevel":1,"icon":"/assets/ui/spells/spell_priest_void_blast.png","sigil":"AI","description":"Arcane ImprisonmentRank 2Reduces the cooldown of Sorcerer's Cage by 4 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705629:effect:0:aura:107","name":"Arcane Imprisonment (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705629:effect:1:aura:4","name":"Arcane Imprisonment (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705629:effect:2:aura:4","name":"Arcane Imprisonment (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705629,"level":1,"description":"Arcane ImprisonmentRank 2Reduces the cooldown of Sorcerer's Cage by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705629:effect:0:aura:107","name":"Arcane Imprisonment (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705629:effect:1:aura:4","name":"Arcane Imprisonment (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705629:effect:2:aura:4","name":"Arcane Imprisonment (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-32-arcane-wrath-none-520060","classId":"runemaster","dbcSpellId":520060,"name":"Arcane Wrath","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_arcane02.png","sigil":"AW","description":"Arcane WrathRank 2Increases the damage of Spellwrath by 10% and the critical strike chance by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520060:effect:0:aura:108","name":"Arcane Wrath (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520060:effect:1:aura:107","name":"Arcane Wrath (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":520060,"level":1,"description":"Arcane WrathRank 2Increases the damage of Spellwrath by 10% and the critical strike chance by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520060:effect:0:aura:108","name":"Arcane Wrath (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520060:effect:1:aura:107","name":"Arcane Wrath (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}]}]},{"id":"runemaster-augurs-shield","classId":"runemaster","dbcSpellId":804126,"name":"Augur's Shield","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_prismaticcloak.png","sigil":"AS","description":"Augur's ShieldRank 1Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 10% for 8 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804126:effect:0:aura:87","name":"Augur's Shield (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804126:effect:1:aura:4","name":"Augur's Shield (Aura 4)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":3,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":20,"percentage":true}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":804126,"level":1,"description":"Augur's ShieldRank 1Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 10% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804126:effect:0:aura:87","name":"Augur's Shield (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804126:effect:1:aura:4","name":"Augur's Shield (Aura 4)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":3,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0},{"kind":"resource","amount":20,"percentage":true}]},{"rank":2,"spellId":503391,"level":17,"description":"Augur's ShieldRank 27% of base mana Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 13% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503391:effect:0:aura:87","name":"Augur's Shield (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.13}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520416},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":20},{"kind":"resource","amount":20,"percentage":true}]},{"rank":3,"spellId":503392,"level":33,"description":"Augur's ShieldRank 37% of base mana Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 16% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503392:effect:0:aura:87","name":"Augur's Shield (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.16}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520416},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":20},{"kind":"resource","amount":20,"percentage":true}]},{"rank":4,"spellId":503393,"level":49,"description":"Augur's ShieldRank 47% of base mana Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 20% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503393:effect:0:aura:87","name":"Augur's Shield (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520416},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":20},{"kind":"resource","amount":20,"percentage":true}]},{"rank":5,"spellId":503394,"level":65,"description":"Augur's ShieldRank 57% of base mana Instant cast40 sec cooldownRegenerates 20% maximum mana and reduces damage taken by 25% for 8 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":40000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503394:effect:0:aura:87","name":"Augur's Shield (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520416},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":20},{"kind":"resource","amount":20,"percentage":true}]}]},{"id":"coa-tree-34612","classId":"runemaster","dbcSpellId":520237,"name":"Blade Rift","unlockLevel":1,"icon":"/assets/ui/spells/5_magicresistance_border.png","sigil":"BR","description":"While stealthed, using Warpdagger now increases your Magic Damage dealt by 10% for 8 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520237:effect:0:aura:42","name":"Blade Rift (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:520237:proc:0:520238","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520238}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520238}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520237,"level":1,"description":"While stealthed, using Warpdagger now increases your Magic Damage dealt by 10% for 8 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520237:effect:0:aura:42","name":"Blade Rift (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:520237:proc:0:520238","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":520238}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":520238}]}],"talentEntryId":34612},{"id":"coa-tree-29637","classId":"runemaster","dbcSpellId":801086,"name":"Convergence","unlockLevel":1,"icon":"/assets/ui/spells/nhi_arcaneaid_border.png","sigil":"CO","description":"For 15 seconds, the next 10 Weapon Engravings you trigger will now deal an additional 348 + 30% SP + 20% AP Elemental Damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801086:effect:0:aura:42","name":"Convergence (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801086:proc:0:560241","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560241}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560241},{"kind":"apply-aura","aura":{"id":"coa:801086:effect:1:aura:4","name":"Convergence (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801086,"level":1,"description":"For 15 seconds, the next 10 Weapon Engravings you trigger will now deal an additional 348 + 30% SP + 20% AP Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":90000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801086:effect:0:aura:42","name":"Convergence (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801086:proc:0:560241","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":560241}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":560241},{"kind":"apply-aura","aura":{"id":"coa:801086:effect:1:aura:4","name":"Convergence (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29637},{"id":"coa-tree-6483","classId":"runemaster","dbcSpellId":706523,"name":"Decoder","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_magicartifact_10.png","sigil":"DE","description":"Your Elemental Burst and Runeblade now have a 20% chance to instantly trigger your Weapon Engravings.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706523:effect:0:aura:354","name":"Decoder (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":707152},{"kind":"apply-aura","aura":{"id":"coa:706523:effect:1:aura:42","name":"Decoder (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706523:proc:1:681241","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":681241}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":681241},{"kind":"apply-aura","aura":{"id":"coa:706523:effect:2:aura:42","name":"Decoder (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706523:proc:2:681500","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":681500}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":681500}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":706523,"level":1,"description":"Your Elemental Burst and Runeblade now have a 20% chance to instantly trigger your Weapon Engravings.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706523:effect:0:aura:354","name":"Decoder (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":707152},{"kind":"apply-aura","aura":{"id":"coa:706523:effect:1:aura:42","name":"Decoder (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706523:proc:1:681241","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":681241}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":681241},{"kind":"apply-aura","aura":{"id":"coa:706523:effect:2:aura:42","name":"Decoder (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:706523:proc:2:681500","triggers":["hit"],"chance":0.2,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":681500}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":681500}]}],"talentEntryId":6483},{"id":"coa-32-devour-mana-116-800104","classId":"runemaster","dbcSpellId":800104,"name":"Devour Mana","unlockLevel":1,"icon":"/assets/ui/spells/_soulsdevourer_blue.png","sigil":"DM","description":"Devour ManaRank 1Instant cast12 sec cooldownDestroys 15 to 19 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource-drain","amount":15,"burn":true}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800104,"level":1,"description":"Devour ManaRank 1Instant cast12 sec cooldownDestroys 15 to 19 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource-drain","amount":15,"burn":true}]},{"rank":2,"spellId":502619,"level":17,"description":"Devour ManaRank 2Instant cast12 sec cooldownDestroys 37 to 45 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource-drain","amount":37,"burn":true}]},{"rank":3,"spellId":502620,"level":33,"description":"Devour ManaRank 3Instant cast12 sec cooldownDestroys 87 to 104 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource-drain","amount":87,"burn":true}]},{"rank":4,"spellId":502621,"level":49,"description":"Devour ManaRank 4Instant cast12 sec cooldownDestroys 184 to 214 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource-drain","amount":184,"burn":true}]},{"rank":5,"spellId":502622,"level":65,"description":"Devour ManaRank 5Instant cast12 sec cooldownDestroys 362 to 410 of the enemy's mana. For each mana point burned, the enemy takes 1.25 Arcane Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":12000,"gcdMs":1000,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource-drain","amount":362,"burn":true}]}]},{"id":"coa-tree-34647","classId":"runemaster","dbcSpellId":707149,"name":"Elemental Secrets","unlockLevel":1,"icon":"/assets/ui/spells/novart_books_(7)_border.png","sigil":"ES","description":"Increases the cooldown of Speed Rune by 30 sec, but it now applies stealth to allies who walk on the pathway for the duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707149:effect:0:aura:107","name":"Elemental Secrets (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707149,"level":1,"description":"Increases the cooldown of Speed Rune by 30 sec, but it now applies stealth to allies who walk on the pathway for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707149:effect:0:aura:107","name":"Elemental Secrets (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":300}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":34647},{"id":"coa-tree-34616","classId":"runemaster","dbcSpellId":707413,"name":"Elements of Fury","unlockLevel":1,"icon":"/assets/ui/spells/ability_shaman_echooftheelements.png","sigil":"EO","description":"Your Palm Sigils now affect 1 additional instance of damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707413:effect:0:aura:107","name":"Elements of Fury (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707413:effect:1:aura:107","name":"Elements of Fury (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707413,"level":1,"description":"Your Palm Sigils now affect 1 additional instance of damage.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707413:effect:0:aura:107","name":"Elements of Fury (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707413:effect:1:aura:107","name":"Elements of Fury (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":34616},{"id":"coa-32-everfrost-scroll-119-801090","classId":"runemaster","dbcSpellId":801090,"name":"Everfrost Scroll","unlockLevel":1,"icon":"/assets/ui/spells/trade_engineering.png","sigil":"ES","description":"Everfrost ScrollRank 15% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801090:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801090:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801090,"level":1,"description":"Everfrost ScrollRank 15% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801090:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801090:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":2,"spellId":502634,"level":9,"description":"Everfrost ScrollRank 25% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502634:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502634:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":3,"spellId":502635,"level":17,"description":"Everfrost ScrollRank 35% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502635:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502635:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":4,"spellId":502636,"level":25,"description":"Everfrost ScrollRank 45% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502636:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502636:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":5,"spellId":502637,"level":33,"description":"Everfrost ScrollRank 55% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502637:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502637:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":6,"spellId":502638,"level":41,"description":"Everfrost ScrollRank 65% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502638:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502638:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":7,"spellId":502639,"level":49,"description":"Everfrost ScrollRank 75% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502639:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502639:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":8,"spellId":502640,"level":57,"description":"Everfrost ScrollRank 85% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502640:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502640:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":9,"spellId":502641,"level":65,"description":"Everfrost ScrollRank 95% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502641:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502641:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]},{"rank":10,"spellId":502642,"level":73,"description":"Everfrost ScrollRank 105% of base mana Instant cast1 min cooldownStun an enemy target for 3.5 sec, increasing Frost damage they take from you by 20% for the duration.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":5,"percentage":true},"effects":[{"kind":"trigger-spell","spellId":500285},{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502642:effect:1:aura:271","name":"Everfrost Scroll (Aura 271)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:502642:effect:2:aura:12","name":"Everfrost Scroll (Aura 12)","disposition":"debuff","durationMs":3500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":456703,"triggerSpellId":500285}]}]},{"id":"coa-32-frozen-inferno-119-705571","classId":"runemaster","dbcSpellId":705571,"name":"Frozen Inferno","unlockLevel":1,"icon":"/assets/ui/spells/spell_fireresistancetotem_01.png","sigil":"FI","description":"Frozen InfernoRank 2Increases Fire and Frost damage dealt by 6%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705571:effect:0:aura:79","name":"Frozen Inferno (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":20,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705571:effect:1:aura:4","name":"Frozen Inferno (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705571:effect:2:aura:4","name":"Frozen Inferno (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705571,"level":1,"description":"Frozen InfernoRank 2Increases Fire and Frost damage dealt by 6%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705571:effect:0:aura:79","name":"Frozen Inferno (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":20,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705571:effect:1:aura:4","name":"Frozen Inferno (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705571:effect:2:aura:4","name":"Frozen Inferno (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-tree-31102","classId":"runemaster","dbcSpellId":807842,"name":"Glacial Rune","unlockLevel":1,"icon":"/assets/ui/spells/nhi_icespectator_border.png","sigil":"GR","description":"Place a rune at the target location that explodes after 1 sec with frigid magic, dealing 128 + 30% SP Frost damage to enemies inside and freezing them in place for 40 seconds (8 sec vs players). Damage caused may interrupt the effect.","target":"hostile","range":{"min":0,"max":30},"radius":8,"castMode":"cast","castTimeMs":1250,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807842:effect:0:aura:23","name":"Glacial Rune (Aura 23)","disposition":"buff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:807842:proc:0:805730","triggers":["periodic"],"chance":0.6,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805730}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805730}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":807842,"level":1,"description":"Place a rune at the target location that explodes after 1 sec with frigid magic, dealing 128 + 30% SP Frost damage to enemies inside and freezing them in place for 40 seconds (8 sec vs players). Damage caused may interrupt the effect.","castMode":"cast","castTimeMs":1250,"cooldownMs":20000,"gcdMs":1500,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807842:effect:0:aura:23","name":"Glacial Rune (Aura 23)","disposition":"buff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:807842:proc:0:805730","triggers":["periodic"],"chance":0.6,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805730}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":805730}]}],"talentEntryId":31102},{"id":"coa-tree-30728","classId":"runemaster","dbcSpellId":520229,"name":"Granite Resolve","unlockLevel":1,"icon":"/assets/ui/spells/nhi_earthtranquility_border.png","sigil":"GR","description":"Become hard as stone, reducing your Physical damage taken by -30% for 8 seconds. Usable while stunned.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520229:effect:0:aura:87","name":"Granite Resolve (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":520229,"level":1,"description":"Become hard as stone, reducing your Physical damage taken by -30% for 8 seconds. Usable while stunned.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520229:effect:0:aura:87","name":"Granite Resolve (Aura 87)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":30728},{"id":"coa-32-improved-fastcast-116-705637","classId":"runemaster","dbcSpellId":705637,"name":"Improved Fastcast","unlockLevel":1,"icon":"/assets/ui/spells/ability_demonhunter_consumemagic.png","sigil":"IF","description":"Improved FastcastRank 2Reduces the cooldown of Fastcast by 4 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705637:effect:0:aura:107","name":"Improved Fastcast (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705637:effect:1:aura:4","name":"Improved Fastcast (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705637:effect:2:aura:4","name":"Improved Fastcast (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705637,"level":1,"description":"Improved FastcastRank 2Reduces the cooldown of Fastcast by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705637:effect:0:aura:107","name":"Improved Fastcast (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705637:effect:1:aura:4","name":"Improved Fastcast (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705637:effect:2:aura:4","name":"Improved Fastcast (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-32-improved-primordial-blast-116-705607","classId":"runemaster","dbcSpellId":705607,"name":"Improved Primordial Blast","unlockLevel":1,"icon":"/assets/ui/spells/spell_shaman_spectraltransformation.png","sigil":"IP","description":"Improved Primordial BlastRank 2Reduces the cooldown of Primordial Blast by 4 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705607:effect:0:aura:107","name":"Improved Primordial Blast (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705607:effect:1:aura:4","name":"Improved Primordial Blast (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705607:effect:2:aura:4","name":"Improved Primordial Blast (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705607,"level":1,"description":"Improved Primordial BlastRank 2Reduces the cooldown of Primordial Blast by 4 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705607:effect:0:aura:107","name":"Improved Primordial Blast (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705607:effect:1:aura:4","name":"Improved Primordial Blast (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705607:effect:2:aura:4","name":"Improved Primordial Blast (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-tree-29166","classId":"runemaster","dbcSpellId":705562,"name":"Ley Constitution","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_mindtwisting.png","sigil":"LC","description":"Your Armor contribution from items is increased by 30%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705562:effect:0:aura:142","name":"Ley Constitution (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705562,"level":1,"description":"Your Armor contribution from items is increased by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705562:effect:0:aura:142","name":"Ley Constitution (Aura 142)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":29166},{"id":"coa-tree-30327","classId":"runemaster","dbcSpellId":705546,"name":"Magic Feeder","unlockLevel":1,"icon":"/assets/ui/spells/ability_racial_shadowmeld.png","sigil":"MF","description":"Your Leyfeed now steals 1 additional magic effect from the target.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705546:effect:0:aura:107","name":"Magic Feeder (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705546,"level":1,"description":"Your Leyfeed now steals 1 additional magic effect from the target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705546:effect:0:aura:107","name":"Magic Feeder (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":30327},{"id":"coa-tree-6378","classId":"runemaster","dbcSpellId":705605,"name":"Master Engraver","unlockLevel":1,"icon":"/assets/ui/spells/inv_blacksmithing_greatersharpeningstone.png","sigil":"ME","description":"Increases the chance to trigger your Weapon Engravings by 5%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705605:effect:0:aura:107","name":"Master Engraver (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705605,"level":1,"description":"Increases the chance to trigger your Weapon Engravings by 5%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705605:effect:0:aura:107","name":"Master Engraver (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}]}],"talentEntryId":6378},{"id":"coa-tree-34609","classId":"runemaster","dbcSpellId":804531,"name":"Master of Runes","unlockLevel":1,"icon":"/assets/ui/spells/inv_custom_rune.png","sigil":"MO","description":"Reduces the cooldown of your Rune spells by -25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804531:effect:0:aura:108","name":"Master of Runes (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":804531,"level":1,"description":"Reduces the cooldown of your Rune spells by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804531:effect:0:aura:108","name":"Master of Runes (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":34609},{"id":"coa-tree-34607","classId":"runemaster","dbcSpellId":802669,"name":"Mind Over Matter","unlockLevel":1,"icon":"/assets/ui/spells/spell_arcane_mindmastery.png","sigil":"MO","description":"Increases the duration of Ley Lock by 0.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802669:effect:0:aura:107","name":"Mind Over Matter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":802669,"level":1,"description":"Increases the duration of Ley Lock by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802669:effect:0:aura:107","name":"Mind Over Matter (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":34607},{"id":"coa-tree-6477","classId":"runemaster","dbcSpellId":800757,"name":"Mind Wrath","unlockLevel":1,"icon":"/assets/ui/spells/nhi_corruptionmind_border.png","sigil":"MW","description":"Your Ley Lock now interrupts 1 additional enemy near your primary target.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800757:effect:0:aura:107","name":"Mind Wrath (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":800757,"level":1,"description":"Your Ley Lock now interrupts 1 additional enemy near your primary target.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800757:effect:0:aura:107","name":"Mind Wrath (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}]}],"talentEntryId":6477},{"id":"coa-tree-11647","classId":"runemaster","dbcSpellId":707653,"name":"Nomad's Scroll","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_scroll_07_b.png","sigil":"NS","description":"Swapping to Runic Tattoos: Air now instantly dispels 1 movement slowing effect on you.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707653:effect:0:aura:42","name":"Nomad's Scroll (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707653:proc:0:712452","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712452}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":712452}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":707653,"level":1,"description":"Swapping to Runic Tattoos: Air now instantly dispels 1 movement slowing effect on you.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707653:effect:0:aura:42","name":"Nomad's Scroll (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:707653:proc:0:712452","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712452}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":712452}]}],"talentEntryId":11647},{"id":"coa-32-portal-hopper-116-705553","classId":"runemaster","dbcSpellId":705553,"name":"Portal Hopper","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_teleport.png","sigil":"PH","description":"Portal HopperRank 3InstantReduces the cooldown of Warp by 6 sec and Ley Walk by 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705553:effect:0:aura:107","name":"Portal Hopper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-60}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705553:effect:1:aura:107","name":"Portal Hopper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705553:effect:2:aura:107","name":"Portal Hopper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":3,"spellId":705553,"level":1,"description":"Portal HopperRank 3InstantReduces the cooldown of Warp by 6 sec and Ley Walk by 3 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705553:effect:0:aura:107","name":"Portal Hopper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-60}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705553:effect:1:aura:107","name":"Portal Hopper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705553:effect:2:aura:107","name":"Portal Hopper (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-tree-29228","classId":"runemaster","dbcSpellId":500296,"name":"Power Engraving","unlockLevel":1,"icon":"/assets/ui/spells/ability_deathknight_hungeringruneblade.png","sigil":"PE","description":"Create a Power Engraving beneath you for 20 seconds, granting 20% increased Magic Damage dealt and 20% increased critical strike chance to up to 5 allies standing in the area.","target":"self","range":{"min":0,"max":0},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500296:effect:0:aura:79","name":"Power Engraving (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"sourceEffectType":27,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500296:effect:1:aura:290","name":"Power Engraving (Aura 290)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":290,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500296:effect:2:aura:21","name":"Power Engraving (Aura 21)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":21,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500296,"level":1,"description":"Create a Power Engraving beneath you for 20 seconds, granting 20% increased Magic Damage dealt and 20% increased critical strike chance to up to 5 allies standing in the area.","castMode":"instant","castTimeMs":0,"cooldownMs":300000,"gcdMs":1500,"cost":{"resource":"mana","amount":18,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500296:effect:0:aura:79","name":"Power Engraving (Aura 79)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"sourceEffectType":27,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500296:effect:1:aura:290","name":"Power Engraving (Aura 290)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":290,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500296:effect:2:aura:21","name":"Power Engraving (Aura 21)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":21,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29228},{"id":"coa-32-power-of-air-62-705696","classId":"runemaster","dbcSpellId":705696,"name":"Power of Air","unlockLevel":1,"icon":"/assets/ui/spells/sha_inv_elemental_primal_shadow.png","sigil":"PO","description":"Power of AirRank 1Increases the damage your Air Elemental deals by 20%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"apply-aura","aura":{"id":"coa:705696:effect:1:aura:79","name":"Power of Air (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705696:effect:2:aura:4","name":"Power of Air (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705696,"level":1,"description":"Power of AirRank 1Increases the damage your Air Elemental deals by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"apply-aura","aura":{"id":"coa:705696:effect:1:aura:79","name":"Power of Air (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705696:effect:2:aura:4","name":"Power of Air (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":705697,"level":1,"description":"Power of AirRank 2Instant castIncreases the damage your Air Elemental deals by 12%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"apply-aura","aura":{"id":"coa:705697:effect:1:aura:79","name":"Power of Air (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.12}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705697:effect:2:aura:4","name":"Power of Air (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":705698,"level":1,"description":"Power of AirRank 3Instant castIncreases the damage your Air Elemental deals by 18%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1},{"kind":"apply-aura","aura":{"id":"coa:705698:effect:1:aura:79","name":"Power of Air (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.18}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705698:effect:2:aura:4","name":"Power of Air (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-33375","classId":"runemaster","dbcSpellId":705636,"name":"Primal Rune","unlockLevel":1,"icon":"/assets/ui/spells/ability_druid_fortifiedbark.png","sigil":"PR","description":"Granite Resolve now reduces damage taken by an additional -10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705636:effect:0:aura:107","name":"Primal Rune (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705636,"level":1,"description":"Granite Resolve now reduces damage taken by an additional -10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705636:effect:0:aura:107","name":"Primal Rune (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}]}],"talentEntryId":33375},{"id":"coa-32-primordial-glyphs-116-705602","classId":"runemaster","dbcSpellId":705602,"name":"Primordial Glyphs","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_rune_15.png","sigil":"PG","description":"Primordial GlyphsRank 2Increases Fire and Frost Damage dealt by 4%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705602:effect:0:aura:79","name":"Primordial Glyphs (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":20,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705602:effect:1:aura:4","name":"Primordial Glyphs (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705602:effect:2:aura:4","name":"Primordial Glyphs (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705602,"level":1,"description":"Primordial GlyphsRank 2Increases Fire and Frost Damage dealt by 4%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705602:effect:0:aura:79","name":"Primordial Glyphs (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":20,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705602:effect:1:aura:4","name":"Primordial Glyphs (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705602:effect:2:aura:4","name":"Primordial Glyphs (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-32-primordial-power-116-705557","classId":"runemaster","dbcSpellId":705557,"name":"Primordial Power","unlockLevel":1,"icon":"/assets/ui/spells/spell_mage_overpowered.png","sigil":"PP","description":"Primordial PowerRank 2InstantIncreases spell critical strike damage by 100%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705557:effect:0:aura:163","name":"Primordial Power (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705557:effect:1:aura:4","name":"Primordial Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705557:effect:2:aura:4","name":"Primordial Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705557,"level":1,"description":"Primordial PowerRank 2InstantIncreases spell critical strike damage by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705557:effect:0:aura:163","name":"Primordial Power (Aura 163)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"critical-damage","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":163,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705557:effect:1:aura:4","name":"Primordial Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705557:effect:2:aura:4","name":"Primordial Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-tree-34614","classId":"runemaster","dbcSpellId":520054,"name":"Primordialism","unlockLevel":1,"icon":"/assets/ui/spells/spell_nature_astralrecalgroup.png","sigil":"PR","description":"Increases your critical strike chance by 10% for 5 seconds after leaving Runeshroud.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520054:effect:0:aura:4","name":"Primordialism (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":520054,"level":1,"description":"Increases your critical strike chance by 10% for 5 seconds after leaving Runeshroud.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520054:effect:0:aura:4","name":"Primordialism (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34614},{"id":"coa-32-prismatic-blade-119-804127","classId":"runemaster","dbcSpellId":804127,"name":"Prismatic Blade","unlockLevel":1,"icon":"/assets/ui/spells/inv_sword_76.png","sigil":"PB","description":"Prismatic BladeRank 19% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804127,"level":1,"description":"Prismatic BladeRank 19% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1}]},{"rank":2,"spellId":503384,"level":11,"description":"Prismatic BladeRank 29% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503384:effect:1:aura:87","name":"Prismatic Blade (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]},{"rank":3,"spellId":503385,"level":21,"description":"Prismatic BladeRank 39% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503385:effect:1:aura:87","name":"Prismatic Blade (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]},{"rank":4,"spellId":503386,"level":31,"description":"Prismatic BladeRank 49% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503386:effect:1:aura:87","name":"Prismatic Blade (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]},{"rank":5,"spellId":503387,"level":41,"description":"Prismatic BladeRank 59% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503387:effect:1:aura:87","name":"Prismatic Blade (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]},{"rank":6,"spellId":503388,"level":51,"description":"Prismatic BladeRank 69% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503388:effect:1:aura:87","name":"Prismatic Blade (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]},{"rank":7,"spellId":503389,"level":61,"description":"Prismatic BladeRank 79% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503389:effect:1:aura:87","name":"Prismatic Blade (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]},{"rank":8,"spellId":503390,"level":71,"description":"Prismatic BladeRank 89% of base mana Instant20 sec cooldownStrike an enemy for Weapon Damage plus 2 as Arcane, and cycle your Attunement twice.","castMode":"instant","castTimeMs":0,"cooldownMs":20000,"gcdMs":1000,"cost":{"resource":"mana","amount":9,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:503390:effect:1:aura:87","name":"Prismatic Blade (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}]}]},{"id":"coa-32-quickslinger-116-705626","classId":"runemaster","dbcSpellId":705626,"name":"Quickslinger","unlockLevel":1,"icon":"/assets/ui/spells/ability_mage_arcanebarrage_nightborne.png","sigil":"QU","description":"QuickslingerRank 2Reduces the cast time of Primordial Blast by 0.5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705626:effect:0:aura:107","name":"Quickslinger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705626:effect:1:aura:107","name":"Quickslinger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705626:effect:2:aura:4","name":"Quickslinger (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705626,"level":1,"description":"QuickslingerRank 2Reduces the cast time of Primordial Blast by 0.5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705626:effect:0:aura:107","name":"Quickslinger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705626:effect:1:aura:107","name":"Quickslinger (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705626:effect:2:aura:4","name":"Quickslinger (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-tree-4063","classId":"runemaster","dbcSpellId":92154,"name":"Riftblade","unlockLevel":1,"icon":"/assets/ui/spells/trade_archaeology_zinrokh_sword.png","sigil":"RI","description":"Level 10 Passive Your Primordial Blast and Smolder now refresh a charge of Runeblade. In addition, every 3rd Runeblade now restores 388 + 30% AP mana, increased by 20% while Runic Tattoos: Water is active.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92154:effect:0:aura:4","name":"Riftblade (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92154:effect:1:aura:42","name":"Riftblade (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92154:proc:1:500468","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500468}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500468}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92154,"level":1,"description":"Level 10 Passive Your Primordial Blast and Smolder now refresh a charge of Runeblade. In addition, every 3rd Runeblade now restores 388 + 30% AP mana, increased by 20% while Runic Tattoos: Water is active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92154:effect:0:aura:4","name":"Riftblade (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92154:effect:1:aura:42","name":"Riftblade (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:92154:proc:1:500468","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500468}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500468}]}],"talentEntryId":4063},{"id":"coa-32-runesleeve-116-706383","classId":"runemaster","dbcSpellId":706383,"name":"Runesleeve","unlockLevel":1,"icon":"/assets/ui/spells/inv_inscription_tarot_6omeleecard.png","sigil":"RU","description":"RunesleeveRank 2Ace of Runes makes Thaumaturgy incur a 8 sec reduced cooldown.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706383:effect:0:aura:107","name":"Runesleeve (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-80}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":706383,"level":1,"description":"RunesleeveRank 2Ace of Runes makes Thaumaturgy incur a 8 sec reduced cooldown.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706383:effect:0:aura:107","name":"Runesleeve (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-80}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}]}]},{"id":"coa-tree-34580","classId":"runemaster","dbcSpellId":705621,"name":"Runic Affinity","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_rune_05.png","sigil":"RA","description":"Increases the duration of Zenith by 6 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705621:effect:0:aura:107","name":"Runic Affinity (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":60}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705621,"level":1,"description":"Increases the duration of Zenith by 6 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705621:effect:0:aura:107","name":"Runic Affinity (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":60}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":34580},{"id":"coa-tree-34617","classId":"runemaster","dbcSpellId":705583,"name":"Runic Breakout","unlockLevel":1,"icon":"/assets/ui/spells/spell_shadow_teleport.png","sigil":"RB","description":"Abilities requiring Runeshroud can now be used for 3 sec and have no cast time after Runeshroud breaks.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705583:effect:0:aura:4","name":"Runic Breakout (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705583,"level":1,"description":"Abilities requiring Runeshroud can now be used for 3 sec and have no cast time after Runeshroud breaks.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705583:effect:0:aura:4","name":"Runic Breakout (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":34617},{"id":"coa-32-runic-devastation-117-705544","classId":"runemaster","dbcSpellId":705544,"name":"Runic Devastation","unlockLevel":1,"icon":"/assets/ui/spells/ability_shaman_astralshift.png","sigil":"RD","description":"Runic DevastationRank 2InstantIncreases the damage caused by Displace Familiar and Runic Pulse by 20%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705544:effect:0:aura:108","name":"Runic Devastation (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":705544,"level":1,"description":"Runic DevastationRank 2InstantIncreases the damage caused by Displace Familiar and Runic Pulse by 20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"focus","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705544:effect:0:aura:108","name":"Runic Devastation (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-tree-34615","classId":"runemaster","dbcSpellId":705563,"name":"Shroudwalker","unlockLevel":1,"icon":"/assets/ui/spells/ability_rogue_shroudofconcealment.png","sigil":"SH","description":"Your Warpdagger now incurs no cooldown if used while your Runeshroud is active.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705563:effect:0:aura:107","name":"Shroudwalker (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-250}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705563:effect:1:aura:4","name":"Shroudwalker (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705563:effect:2:aura:4","name":"Shroudwalker (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705563,"level":1,"description":"Your Warpdagger now incurs no cooldown if used while your Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705563:effect:0:aura:107","name":"Shroudwalker (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-250}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705563:effect:1:aura:4","name":"Shroudwalker (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":0,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705563:effect:2:aura:4","name":"Shroudwalker (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}],"talentEntryId":34615},{"id":"coa-tree-6485","classId":"runemaster","dbcSpellId":705586,"name":"Sigilist","unlockLevel":1,"icon":"/assets/ui/spells/inv_ascend_runestone_05.png","sigil":"SI","description":"After using a Palm Sigil, the duration of your crowd control effects is increased by 20%. Reduces the cast time of all Palm Sigils by -0.5 sec and increases the duration of your Palm Sigil buffs by 50%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705586:effect:0:aura:42","name":"Sigilist (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705586:proc:0:706525","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706525}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":4,"triggerSpellId":706525},{"kind":"apply-aura","aura":{"id":"coa:705586:effect:1:aura:107","name":"Sigilist (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705586:effect:2:aura:108","name":"Sigilist (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705586,"level":1,"description":"After using a Palm Sigil, the duration of your crowd control effects is increased by 20%. Reduces the cast time of all Palm Sigils by -0.5 sec and increases the duration of your Palm Sigil buffs by 50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705586:effect:0:aura:42","name":"Sigilist (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:705586:proc:0:706525","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706525}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":4,"triggerSpellId":706525},{"kind":"apply-aura","aura":{"id":"coa:705586:effect:1:aura:107","name":"Sigilist (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705586:effect:2:aura:108","name":"Sigilist (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":6485},{"id":"coa-tree-30158","classId":"runemaster","dbcSpellId":801103,"name":"Speed Rune","unlockLevel":1,"icon":"/assets/ui/spells/runeofspeed.png","sigil":"SR","description":"Conjure a path of runes in the direction you are facing for 10 seconds, increasing the movement speed of allies by 70%. This effect can persist for a short duration after leaving the runic path.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801103:effect:0:aura:23","name":"Speed Rune (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801103:proc:0:572134","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572134}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572134}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":801103,"level":1,"description":"Conjure a path of runes in the direction you are facing for 10 seconds, increasing the movement speed of allies by 70%. This effect can persist for a short duration after leaving the runic path.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":14,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801103:effect:0:aura:23","name":"Speed Rune (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801103:proc:0:572134","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":572134}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":572134}]}],"talentEntryId":30158},{"id":"coa-tree-34663","classId":"runemaster","dbcSpellId":705554,"name":"Speedy Attuner","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magicspeed_border.png","sigil":"SA","description":"Increases your movement speed by 8% and reduces the mana cost of your Runic Tattoos by -25%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705554:effect:0:aura:31","name":"Speedy Attuner (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705554:effect:1:aura:108","name":"Speedy Attuner (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":705554,"level":1,"description":"Increases your movement speed by 8% and reduces the mana cost of your Runic Tattoos by -25%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705554:effect:0:aura:31","name":"Speedy Attuner (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.08}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705554:effect:1:aura:108","name":"Speedy Attuner (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]},{"rank":2,"spellId":707746,"level":1,"description":"Increases your movement speed by 15% and reduces the mana cost of your Runic Tattoos by -50%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707746:effect:0:aura:31","name":"Speedy Attuner (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707746:effect:1:aura:108","name":"Speedy Attuner (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}]}],"talentEntryId":34663},{"id":"coa-32-spellbrand-none-560052","classId":"runemaster","dbcSpellId":560052,"name":"Spellbrand","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_wizardmark.png","sigil":"SP","description":"SpellbrandRank 2Increases the damage caused by Elemental Burst by 10% and allows Runic Brand to affect 4 additional enemies.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560052:effect:0:aura:108","name":"Spellbrand (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560052:effect:1:aura:107","name":"Spellbrand (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":2,"spellId":560052,"level":1,"description":"SpellbrandRank 2Increases the damage caused by Elemental Burst by 10% and allows Runic Brand to affect 4 additional enemies.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560052:effect:0:aura:108","name":"Spellbrand (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560052:effect:1:aura:107","name":"Spellbrand (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":17,"triggerSpellId":0}]}]},{"id":"coa-32-symbols-of-power-117-705613","classId":"runemaster","dbcSpellId":705613,"name":"Symbols of Power","unlockLevel":1,"icon":"/assets/ui/spells/novart_magicspell_(17)_border.png","sigil":"SO","description":"Symbols of PowerRank 1Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 15%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705613:effect:0:aura:107","name":"Symbols of Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705613,"level":33,"description":"Symbols of PowerRank 1Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 15%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705613:effect:0:aura:107","name":"Symbols of Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]},{"rank":2,"spellId":705614,"level":1,"description":"Symbols of PowerRank 2Increases the damage of Fist of the Ancients while you have Weapon Engraving: Fire active by 30%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705614:effect:0:aura:107","name":"Symbols of Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":12,"triggerSpellId":0}]}]},{"id":"coa-tree-9210","classId":"runemaster","dbcSpellId":806718,"name":"Unbound","unlockLevel":1,"icon":"/assets/ui/spells/inv_azerite_explosion.png","sigil":"UN","description":"Reduces the duration of harmful magic and curse effects on you by -20%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806718:effect:0:aura:245","name":"Unbound (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806718:effect:1:aura:245","name":"Unbound (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":806718,"level":1,"description":"Reduces the duration of harmful magic and curse effects on you by -20%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806718:effect:0:aura:245","name":"Unbound (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806718:effect:1:aura:245","name":"Unbound (Aura 245)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":9210},{"id":"coa-tree-34610","classId":"runemaster","dbcSpellId":804232,"name":"Warding Rune","unlockLevel":1,"icon":"/assets/ui/spells/inv_qiraj_jewelglyphed.png","sigil":"WR","description":"Engrave anti-magic runes around you, removing all harmful magic effects and causing harmful magic effects to have no duration when cast on you for 6 seconds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804232:effect:0:aura:245","name":"Warding Rune (Aura 245)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":1,"triggerSpellId":0},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":100}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":804232,"level":1,"description":"Engrave anti-magic runes around you, removing all harmful magic effects and causing harmful magic effects to have no duration when cast on you for 6 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":120000,"gcdMs":1500,"cost":{"resource":"mana","amount":27,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804232:effect:0:aura:245","name":"Warding Rune (Aura 245)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":245,"miscValue":1,"triggerSpellId":0},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":100}]}],"talentEntryId":34610},{"id":"coa-tree-29218","classId":"runemaster","dbcSpellId":500287,"name":"Warpdagger","unlockLevel":1,"icon":"/assets/ui/spells/warpblade.png","sigil":"WA","description":"Toss an enchanted dagger forward in a line. Upon reactivation, you instantly teleport to the location of the dagger and deal 124 + 44% SP + 20% AP Elemental Damage to nearby enemies. Usable while stealthed.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500606},{"kind":"summon","creatureId":51335,"coefficient":0.08,"durationMs":20000}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":500287,"level":1,"description":"Toss an enchanted dagger forward in a line. Upon reactivation, you instantly teleport to the location of the dagger and deal 124 + 44% SP + 20% AP Elemental Damage to nearby enemies. Usable while stealthed.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":500,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":500606},{"kind":"summon","creatureId":51335,"coefficient":0.08,"durationMs":20000}]}],"talentEntryId":29218},{"id":"coa-tree-34649","classId":"runemaster","dbcSpellId":560992,"name":"Warpmaster","unlockLevel":1,"icon":"/assets/ui/spells/achievement_dungeon_ulduarraid_archway_01.png","sigil":"WA","description":"Reduces the cooldown of Warpdagger by -5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560992:effect:0:aura:107","name":"Warpmaster (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":560992,"level":1,"description":"Reduces the cooldown of Warpdagger by -5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560992:effect:0:aura:107","name":"Warpmaster (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-50}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}]}],"talentEntryId":34649},{"id":"coa-tree-30173","classId":"runemaster","dbcSpellId":807376,"name":"Wind Walker","unlockLevel":1,"icon":"/assets/ui/spells/spell_frost_windwalkon.png","sigil":"WW","description":"While Runic Tattoos: Air is active, the remaining cooldown of Rune spells is reduced by 5% every 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807376:effect:0:aura:23","name":"Wind Walker (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807376:proc:0:807746","triggers":["periodic"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807746}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807746},{"kind":"apply-aura","aura":{"id":"coa:807376:effect:1:aura:23","name":"Wind Walker (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807376:proc:1:807529","triggers":["periodic"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807529}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807529}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":807376,"level":1,"description":"While Runic Tattoos: Air is active, the remaining cooldown of Rune spells is reduced by 5% every 5 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807376:effect:0:aura:23","name":"Wind Walker (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807376:proc:0:807746","triggers":["periodic"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807746}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807746},{"kind":"apply-aura","aura":{"id":"coa:807376:effect:1:aura:23","name":"Wind Walker (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:807376:proc:1:807529","triggers":["periodic"],"chance":0.05,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807529}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":807529}]}],"talentEntryId":30173},{"id":"coa-32-words-of-power-117-705611","classId":"runemaster","dbcSpellId":705611,"name":"Words of Power","unlockLevel":1,"icon":"/assets/ui/spells/_runesauvagepourpre.png","sigil":"WO","description":"Words of PowerRank 1Increases the critical strike chance of Words by 10%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705611:effect:0:aura:107","name":"Words of Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":705610},{"kind":"apply-aura","aura":{"id":"coa:705611:effect:1:aura:4","name":"Words of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705611:effect:2:aura:4","name":"Words of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":true,"source":"coa-progression","ranks":[{"rank":1,"spellId":705611,"level":1,"description":"Words of PowerRank 1Increases the critical strike chance of Words by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705611:effect:0:aura:107","name":"Words of Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":705610},{"kind":"apply-aura","aura":{"id":"coa:705611:effect:1:aura:4","name":"Words of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705611:effect:2:aura:4","name":"Words of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]},{"rank":2,"spellId":705612,"level":1,"description":"Words of PowerRank 2InstantIncreases the critical strike chance of Words by 10%.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705612:effect:0:aura:107","name":"Words of Power (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":705610},{"kind":"apply-aura","aura":{"id":"coa:705612:effect:1:aura:4","name":"Words of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705612:effect:2:aura:4","name":"Words of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}]}]},{"id":"coa-tree-29521","classId":"runemaster","dbcSpellId":712325,"name":"Zenith","unlockLevel":1,"icon":"/assets/ui/spells/custom_t_nhance_rpg_icons_magickeeper_border.png","sigil":"ZE","description":"For 6 seconds, your runic tattoos flare up, increasing your chance to trigger your Weapon Engravings by 100%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712325:effect:0:aura:107","name":"Zenith (Aura 107)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:712325:effect:1:aura:87","name":"Zenith (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:712325:effect:2:aura:138","name":"Zenith (Aura 138)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-tree","ranks":[{"rank":1,"spellId":712325,"level":1,"description":"For 6 seconds, your runic tattoos flare up, increasing your chance to trigger your Weapon Engravings by 100%.","castMode":"instant","castTimeMs":0,"cooldownMs":45000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712325:effect:0:aura:107","name":"Zenith (Aura 107)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:712325:effect:1:aura:87","name":"Zenith (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"physical","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:712325:effect:2:aura:138","name":"Zenith (Aura 138)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":29521},{"id":"runemaster-primordial-blast","classId":"runemaster","dbcSpellId":800732,"name":"Primordial Blast","unlockLevel":2,"icon":"/assets/ui/spells/spell_frostfire_orb.png","sigil":"PB","description":"Primordial BlastRank 122% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 25+0+SP*.66+AP*.22 Elemental Damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4300000071525574,"basePoints":25,"dieSides":3,"pointsPerLevel":1.4057600498199463,"bonusPowerCoefficient":0.4300000071525574,"sourceLevel":2,"maxScalingLevel":6}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":800732,"level":2,"description":"Primordial BlastRank 122% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 25+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":0.4300000071525574,"basePoints":25,"dieSides":3,"pointsPerLevel":1.4057600498199463,"bonusPowerCoefficient":0.4300000071525574,"sourceLevel":2,"maxScalingLevel":6}]},{"rank":2,"spellId":502823,"level":8,"description":"Primordial BlastRank 222% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 58+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0794133310732634,"basePoints":58,"dieSides":10,"pointsPerLevel":1.497439980506897,"bonusPowerCoefficient":0,"sourceLevel":8,"maxScalingLevel":18}]},{"rank":3,"spellId":502824,"level":20,"description":"Primordial BlastRank 322% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 144+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7712076232546852,"basePoints":144,"dieSides":22,"pointsPerLevel":1.5738400220870972,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":30}]},{"rank":4,"spellId":502825,"level":32,"description":"Primordial BlastRank 422% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 242+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":2.2134751664831285,"basePoints":242,"dieSides":42,"pointsPerLevel":1.5499999523162842,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":42}]},{"rank":5,"spellId":502826,"level":44,"description":"Primordial BlastRank 522% of base mana Instant cast8 sec cooldownLaunch a primordial missile at an enemy, dealing 306+0+SP*.66+AP*.22 Elemental Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":8000,"gcdMs":1000,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3501694808572027,"basePoints":306,"dieSides":52,"pointsPerLevel":1.9199999570846558,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":54}]}]},{"id":"coa-32-unleash-essences-119-502591","classId":"runemaster","dbcSpellId":502591,"name":"Unleash Essences","unlockLevel":7,"icon":"/assets/ui/spells/ability_paladin_bladeofjusticeblue.png","sigil":"UE","description":"Unleash EssencesRank 210% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 12 to 14 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":502591,"level":7,"description":"Unleash EssencesRank 210% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 12 to 14 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":3,"spellId":502592,"level":13,"description":"Unleash EssencesRank 310% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 19 to 22 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":4,"spellId":502593,"level":19,"description":"Unleash EssencesRank 410% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 30 to 35 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":5,"spellId":502594,"level":26,"description":"Unleash EssencesRank 510% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 48 to 56 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":6,"spellId":502595,"level":32,"description":"Unleash EssencesRank 610% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 69 to 80 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":7,"spellId":502596,"level":38,"description":"Unleash EssencesRank 710% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 97 to 111 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":8,"spellId":502597,"level":44,"description":"Unleash EssencesRank 810% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 134 to 152 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":9,"spellId":502598,"level":50,"description":"Unleash EssencesRank 910% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 182 to 204 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":10,"spellId":502599,"level":56,"description":"Unleash EssencesRank 1010% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 244 to 271 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":11,"spellId":502600,"level":63,"description":"Unleash EssencesRank 1110% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 337 to 370 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":12,"spellId":502601,"level":69,"description":"Unleash EssencesRank 1210% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 443 to 482 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]},{"rank":13,"spellId":502602,"level":75,"description":"Unleash EssencesRank 1310% of base mana Instant2.5 sec cooldownRequires Daggers, Fist Weapons, One-Handed Axes, One-Handed Maces, One-Handed Swords, Polearms, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Causes 578 to 623 Arcane Damage and unleashes your current Essence Combination to trigger a Lost Page effect based on the combination. Refer to individual Lost Page passives for available combinations.","castMode":"instant","castTimeMs":0,"cooldownMs":2500,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"trigger-spell","spellId":804102},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}]}]},{"id":"coa-32-inscription-permafrost-119-503423","classId":"runemaster","dbcSpellId":503423,"name":"Inscription: Permafrost","unlockLevel":9,"icon":"/assets/ui/spells/nhi_icestone_border.png","sigil":"IP","description":"Inscription: PermafrostRank 27% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503423:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503423:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":2,"spellId":503423,"level":9,"description":"Inscription: PermafrostRank 27% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503423:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503423:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503424,"level":17,"description":"Inscription: PermafrostRank 37% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503424:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503424:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503425,"level":25,"description":"Inscription: PermafrostRank 47% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503425:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503425:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503426,"level":33,"description":"Inscription: PermafrostRank 57% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503426:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503426:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503427,"level":41,"description":"Inscription: PermafrostRank 67% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503427:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503427:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503428,"level":49,"description":"Inscription: PermafrostRank 77% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503428:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503428:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503429,"level":57,"description":"Inscription: PermafrostRank 87% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503429:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503429:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":503430,"level":65,"description":"Inscription: PermafrostRank 97% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503430:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503430:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]},{"rank":10,"spellId":503431,"level":73,"description":"Inscription: PermafrostRank 107% of base mana Instant cast1 min cooldownIncapacitates an enemy for 8 sec. Taking damage will break the effect. Usable while stealthed and has a 0% reduced cooldown while Runeshroud is active.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503431:effect:1:aura:12","name":"Inscription: Permafrost (Aura 12)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503431:effect:2:aura:294","name":"Inscription: Permafrost (Aura 294)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":294,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-32-displace-familiar-117-800741","classId":"runemaster","dbcSpellId":800741,"name":"Displace Familiar","unlockLevel":10,"icon":"/assets/ui/spells/_enslavespell_arcane.png","sigil":"DF","description":"Displace FamiliarRank 17% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 8 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","target":"hostile","range":{"min":0,"max":40},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:800741:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800741:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800741,"level":10,"description":"Displace FamiliarRank 17% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 8 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:800741:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800741:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]},{"rank":2,"spellId":502845,"level":17,"description":"Displace FamiliarRank 27% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 16 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1500,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:502845:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502845:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]},{"rank":3,"spellId":502846,"level":22,"description":"Displace FamiliarRank 37% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 36 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:502846:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502846:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]},{"rank":4,"spellId":502847,"level":28,"description":"Displace FamiliarRank 47% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 63 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:502847:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502847:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]},{"rank":5,"spellId":502848,"level":37,"description":"Displace FamiliarRank 57% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 104 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:502848:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502848:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]},{"rank":6,"spellId":502849,"level":45,"description":"Displace FamiliarRank 67% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 158 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:502849:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502849:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]},{"rank":7,"spellId":502850,"level":54,"description":"Displace FamiliarRank 77% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 244 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:502850:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502850:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]},{"rank":8,"spellId":502851,"level":63,"description":"Displace FamiliarRank 87% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 367 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:502851:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502851:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]},{"rank":9,"spellId":502852,"level":72,"description":"Displace FamiliarRank 97% of base mana Instant cast5 sec cooldownCommand your Familiar to warp to the target location, dealing 542 Arcane Damage, where it will remain for 8 sec pulsing with Energy every 2 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling. Runic Pulse Deals 18 Arcane Damage up to 8 nearby enemies and restores 8% of Runic Familar's health.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":7,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"movement","movement":"teleport","toward":"target"},{"kind":"trigger-spell","spellId":800740},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671},{"kind":"apply-aura","aura":{"id":"coa:502852:effect:2:aura:227","name":"Displace Familiar (Aura 227)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:502852:proc:2:804701","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804701}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":227,"miscValue":0,"triggerSpellId":804701}]}]},{"id":"coa-32-elder-magi-rune-119-500253","classId":"runemaster","dbcSpellId":500253,"name":"Elder Magi Rune","unlockLevel":10,"icon":"/assets/ui/spells/_runeorcpurple.png","sigil":"EM","description":"Elder Magi RuneRank 110% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 7 to 8 Arcane damage and increases all Arcane damage they take from you by 15% for 15 sec.","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.2849999964237213,"basePoints":7,"dieSides":2,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0.2849999964237213,"sourceLevel":10,"maxScalingLevel":10},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:500253:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500253,"level":10,"description":"Elder Magi RuneRank 110% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 7 to 8 Arcane damage and increases all Arcane damage they take from you by 15% for 15 sec.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.2849999964237213,"basePoints":7,"dieSides":2,"pointsPerLevel":0.6000000238418579,"bonusPowerCoefficient":0.2849999964237213,"sourceLevel":10,"maxScalingLevel":10},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:500253:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}]},{"rank":2,"spellId":502643,"level":11,"description":"Elder Magi RuneRank 210% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 15 to 18 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.35898077487945557,"basePoints":15,"dieSides":4,"pointsPerLevel":1.0455000400543213,"bonusPowerCoefficient":0,"sourceLevel":11,"maxScalingLevel":20},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:502643:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}]},{"rank":3,"spellId":502644,"level":21,"description":"Elder Magi RuneRank 310% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 28 to 34 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.5690787059289438,"basePoints":28,"dieSides":7,"pointsPerLevel":1.4505000114440918,"bonusPowerCoefficient":0,"sourceLevel":21,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:502644:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}]},{"rank":4,"spellId":502645,"level":31,"description":"Elder Magi RuneRank 410% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 44 to 54 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":0.7718876773032589,"basePoints":44,"dieSides":11,"pointsPerLevel":1.8554999828338623,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":40},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:502645:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}]},{"rank":5,"spellId":502646,"level":41,"description":"Elder Magi RuneRank 510% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 76 to 92 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0516696316855294,"basePoints":76,"dieSides":17,"pointsPerLevel":2.260499954223633,"bonusPowerCoefficient":0,"sourceLevel":41,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:502646:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}]},{"rank":6,"spellId":502647,"level":51,"description":"Elder Magi RuneRank 610% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 123 to 146 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.365861091950927,"basePoints":123,"dieSides":24,"pointsPerLevel":2.6654999256134033,"bonusPowerCoefficient":0,"sourceLevel":51,"maxScalingLevel":60},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:502647:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}]},{"rank":7,"spellId":502648,"level":61,"description":"Elder Magi RuneRank 710% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 194 to 211 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.7096512882333053,"basePoints":194,"dieSides":18,"pointsPerLevel":3.070499897003174,"bonusPowerCoefficient":0,"sourceLevel":61,"maxScalingLevel":70},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:502648:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}]},{"rank":8,"spellId":502649,"level":71,"description":"Elder Magi RuneRank 810% of base mana Instant cast1 min cooldownBlasts enemies within $a1yd for 299 to 326 Arcane damage and increases all Arcane damage they take from you by 15% for until cancelled.","castMode":"instant","castTimeMs":0,"cooldownMs":60000,"gcdMs":1500,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.167676385983016,"basePoints":299,"dieSides":28,"pointsPerLevel":3.4755001068115234,"bonusPowerCoefficient":0,"sourceLevel":71,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":500282},{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"trigger-spell","spellId":520417},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2},{"kind":"apply-aura","aura":{"id":"coa:502649:effect:2:aura:271","name":"Elder Magi Rune (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0.15}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0}]}]},{"id":"coa-tree-4062","classId":"runemaster","dbcSpellId":92153,"name":"Fists of Power","unlockLevel":10,"icon":"/assets/ui/spells/novart_magicspell_(14)_border.png","sigil":"FO","description":"Level 10 Passive Runeblade now strikes your target an additional time for 50% of the damage dealt with your offhand weapon.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92153:effect:0:aura:4","name":"Fists of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92153,"level":10,"description":"Level 10 Passive Runeblade now strikes your target an additional time for 50% of the damage dealt with your offhand weapon.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:92153:effect:0:aura:4","name":"Fists of Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}]}],"talentEntryId":4062},{"id":"coa-tree-4061","classId":"runemaster","dbcSpellId":92152,"name":"Frost Glyph","unlockLevel":10,"icon":"/assets/ui/spells/70_inscription_vantus_rune_azure.png","sigil":"FG","description":"Level 10 Passive Using Elemental Burst and Primordial Blast now grants you Frost Glyph. Frost GlyphUnleash: Deals 437 Frost Damage and slows movement speed by -30% for 4 seconds.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92152:effect:0:aura:4","name":"Frost Glyph (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92152:effect:1:aura:107","name":"Frost Glyph (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92152:effect:2:aura:353","name":"Frost Glyph (Aura 353)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0}],"passive":true,"source":"coa-tree","ranks":[{"rank":1,"spellId":92152,"level":10,"description":"Level 10 Passive Using Elemental Burst and Primordial Blast now grants you Frost Glyph. Frost GlyphUnleash: Deals 437 Frost Damage and slows movement speed by -30% for 4 seconds.","castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":1500,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:92152:effect:0:aura:4","name":"Frost Glyph (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92152:effect:1:aura:107","name":"Frost Glyph (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":5,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:92152:effect:2:aura:353","name":"Frost Glyph (Aura 353)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0}]}],"talentEntryId":4061},{"id":"coa-32-glyphic-ruin-116-801179","classId":"runemaster","dbcSpellId":801179,"name":"Glyphic Ruin","unlockLevel":10,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GR","description":"Glyphic RuinRank 110% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 82+0+SP*1 Elemental Damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.48485333442688,"basePoints":82,"dieSides":20,"pointsPerLevel":1.9864000082015991,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801179,"level":10,"description":"Glyphic RuinRank 110% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 82+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":1.48485333442688,"basePoints":82,"dieSides":20,"pointsPerLevel":1.9864000082015991,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":18},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":2,"spellId":520067,"level":20,"description":"Glyphic RuinRank 210% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 153+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.2932190486363004,"basePoints":153,"dieSides":36,"pointsPerLevel":3.514400005340576,"bonusPowerCoefficient":0,"sourceLevel":20,"maxScalingLevel":26},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":3,"spellId":520068,"level":28,"description":"Glyphic RuinRank 310% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 222+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.660207460092944,"basePoints":222,"dieSides":52,"pointsPerLevel":3.416670083999634,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":4,"spellId":520069,"level":36,"description":"Glyphic RuinRank 410% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 270+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.676471392313639,"basePoints":270,"dieSides":70,"pointsPerLevel":2.916670083999634,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":42},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":5,"spellId":520070,"level":44,"description":"Glyphic RuinRank 510% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 311+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":2.8826750254226945,"basePoints":311,"dieSides":90,"pointsPerLevel":3.516669988632202,"bonusPowerCoefficient":0,"sourceLevel":44,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":6,"spellId":572119,"level":52,"description":"Glyphic RuinRank 610% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 360+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":3.22636815920398,"basePoints":360,"dieSides":110,"pointsPerLevel":4.5,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":7,"spellId":572120,"level":60,"description":"Glyphic RuinRank 710% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 457+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":3.4022222476535373,"basePoints":457,"dieSides":135,"pointsPerLevel":4.025000095367432,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":8,"spellId":572121,"level":70,"description":"Glyphic RuinRank 810% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 633+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":633,"dieSides":150,"pointsPerLevel":6.550000190734863,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":76},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":9,"spellId":572122,"level":78,"description":"Glyphic RuinRank 910% of base mana 2.5 sec castUnleash your active Glyph effect on an enemy and deal 789+0+SP*1 Elemental Damage.","castMode":"cast","castTimeMs":2500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":10,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":789,"dieSides":162,"pointsPerLevel":24.049999237060547,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":520882},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]}]},{"id":"coa-32-smolder-119-801087","classId":"runemaster","dbcSpellId":801087,"name":"Smolder","unlockLevel":11,"icon":"/assets/ui/spells/uico_fire_spell_02_border.png","sigil":"SM","description":"SmolderRank 16% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 19 Fire Damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801087:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":801087,"level":11,"description":"SmolderRank 16% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 19 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801087:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":2,"spellId":502623,"level":18,"description":"SmolderRank 26% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 37 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502623:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":3,"spellId":502624,"level":26,"description":"SmolderRank 36% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 65 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502624:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":4,"spellId":502625,"level":34,"description":"SmolderRank 46% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 100 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502625:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":5,"spellId":502626,"level":42,"description":"SmolderRank 56% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 146 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502626:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":6,"spellId":502627,"level":50,"description":"SmolderRank 66% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 219 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502627:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":7,"spellId":502628,"level":58,"description":"SmolderRank 76% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 329 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502628:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":8,"spellId":502629,"level":66,"description":"SmolderRank 86% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 448 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502629:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":9,"spellId":502630,"level":72,"description":"SmolderRank 96% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 568 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502630:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":10,"spellId":502631,"level":80,"description":"SmolderRank 106% of base mana Instant6 sec cooldownRequires Polearms, Staves, Two-Handed Axes, Two-Handed Maces, Two-Handed Swords Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 712 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502631:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":11,"spellId":502632,"level":88,"description":"SmolderRank 116% of base mana Instant6 sec cooldownRequires Daggers Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 885 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502632:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]},{"rank":12,"spellId":502633,"level":82,"description":"SmolderRank 126% of base mana Instant6 sec cooldownRequires One-Handed Axes, Two-Handed Axes Ignite your blade and strike an enemy, dealing 140% Weapon Damage plus 1094 Fire Damage.","castMode":"instant","castTimeMs":0,"cooldownMs":6000,"gcdMs":1000,"cost":{"resource":"mana","amount":6,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:502633:effect:1:aura:271","name":"Smolder (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":126,"triggerSpellId":0},{"kind":"damage","coefficient":1.4}]}]},{"id":"runemaster-elemental-burst","classId":"runemaster","dbcSpellId":502828,"name":"Elemental Burst","unlockLevel":14,"icon":"/assets/ui/spells/nhi_arcanebolt_border.png","sigil":"EB","description":"Elemental BurstRank 212% of base mana 2 sec castBlasts an enemy for 65+0+SP*.55+AP*.05 Elemental Damage.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.2766278255944965,"basePoints":65,"dieSides":11,"pointsPerLevel":2.9333300590515137,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20}],"source":"coa-progression","passive":false,"ranks":[{"rank":2,"spellId":502828,"level":14,"description":"Elemental BurstRank 212% of base mana 2 sec castBlasts an enemy for 65+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.2766278255944965,"basePoints":65,"dieSides":11,"pointsPerLevel":2.9333300590515137,"bonusPowerCoefficient":0,"sourceLevel":14,"maxScalingLevel":20}]},{"rank":3,"spellId":502829,"level":22,"description":"Elemental BurstRank 312% of base mana 2 sec castBlasts an enemy for 92+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3946871886382233,"basePoints":92,"dieSides":11,"pointsPerLevel":2.627739906311035,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":28}]},{"rank":4,"spellId":502830,"level":30,"description":"Elemental BurstRank 412% of base mana 2 sec castBlasts an enemy for 140+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8178992730599863,"basePoints":140,"dieSides":19,"pointsPerLevel":3.2138800621032715,"bonusPowerCoefficient":0,"sourceLevel":30,"maxScalingLevel":36}]},{"rank":5,"spellId":502831,"level":38,"description":"Elemental BurstRank 512% of base mana 2 sec castBlasts an enemy for 175+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.8625762117733746,"basePoints":175,"dieSides":21,"pointsPerLevel":2.924989938735962,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":44}]},{"rank":6,"spellId":502832,"level":46,"description":"Elemental BurstRank 612% of base mana 2 sec castBlasts an enemy for 213+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.940437134497804,"basePoints":213,"dieSides":23,"pointsPerLevel":2.8499999046325684,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":52}]},{"rank":7,"spellId":502833,"level":54,"description":"Elemental BurstRank 712% of base mana 2 sec castBlasts an enemy for 275+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.897826111834982,"basePoints":275,"dieSides":27,"pointsPerLevel":5.775000095367432,"bonusPowerCoefficient":0,"sourceLevel":54,"maxScalingLevel":58}]},{"rank":8,"spellId":502834,"level":60,"description":"Elemental BurstRank 812% of base mana 2 sec castBlasts an enemy for 393+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.084444393581814,"basePoints":393,"dieSides":39,"pointsPerLevel":4.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":66}]},{"rank":9,"spellId":502835,"level":68,"description":"Elemental BurstRank 912% of base mana 2 sec castBlasts an enemy for 459+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":459,"dieSides":51,"pointsPerLevel":9.699999809265137,"bonusPowerCoefficient":0,"sourceLevel":68,"maxScalingLevel":72}]},{"rank":10,"spellId":502836,"level":74,"description":"Elemental BurstRank 1012% of base mana 2 sec castBlasts an enemy for 549+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":549,"dieSides":55,"pointsPerLevel":24.049999237060547,"bonusPowerCoefficient":0,"sourceLevel":74,"maxScalingLevel":76}]},{"rank":11,"spellId":502837,"level":78,"description":"Elemental BurstRank 1112% of base mana 2 sec castBlasts an enemy for 2716+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":2716,"dieSides":55,"pointsPerLevel":2.700000047683716,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":78}]},{"rank":12,"spellId":502838,"level":80,"description":"Elemental BurstRank 1212% of base mana 2 sec castBlasts an enemy for 3311+0+SP*.55+AP*.05 Elemental Damage.","castMode":"cast","castTimeMs":2000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":3311,"dieSides":55,"pointsPerLevel":2.700000047683716,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80}]}]},{"id":"coa-32-frigid-blast-116-500118","classId":"runemaster","dbcSpellId":500118,"name":"Frigid Blast","unlockLevel":17,"icon":"/assets/ui/spells/skill_icon_skill40_border.png","sigil":"FB","description":"Blast an enemy with frigid runic magic, dealing cond(gt(SPFR, SPA), 40+0+SPFR*0.65, 40+0+SPA*0.65) Frost damage and applying Frigid Fusion. Frigid Fusion (Aura)Accumulate 20% of your damage dealt to the target over 6 seconds. After the duration, deal it as Frost Damage to the target.","target":"hostile","range":{"min":0,"max":35},"castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8157066528995832,"basePoints":40,"dieSides":8,"pointsPerLevel":2.0475199222564697,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":500118,"level":17,"description":"Blast an enemy with frigid runic magic, dealing cond(gt(SPFR, SPA), 40+0+SPFR*0.65, 40+0+SPA*0.65) Frost damage and applying Frigid Fusion. Frigid Fusion (Aura)Accumulate 20% of your damage dealt to the target over 6 seconds. After the duration, deal it as Frost Damage to the target.","castMode":"cast","castTimeMs":1500,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8157066528995832,"basePoints":40,"dieSides":8,"pointsPerLevel":2.0475199222564697,"bonusPowerCoefficient":0,"sourceLevel":17,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":502853,"level":24,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0264950450668988,"basePoints":73,"dieSides":12,"pointsPerLevel":1.7333300113677979,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":502854,"level":32,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.0258621324038675,"basePoints":90,"dieSides":16,"pointsPerLevel":1.473330020904541,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":38},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":502855,"level":40,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.2268679069750237,"basePoints":108,"dieSides":20,"pointsPerLevel":2.1233301162719727,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":46},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":502856,"level":48,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":1.27999999031188,"basePoints":132,"dieSides":25,"pointsPerLevel":2.0399999618530273,"bonusPowerCoefficient":0,"sourceLevel":48,"maxScalingLevel":54},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":502857,"level":56,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.282159599340018,"basePoints":158,"dieSides":30,"pointsPerLevel":5.599999904632568,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":502858,"level":60,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.500000006357829,"basePoints":441,"dieSides":37,"pointsPerLevel":1.725000023841858,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":68},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":502859,"level":70,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":2.7522866436079436,"basePoints":501,"dieSides":41,"pointsPerLevel":2.583329916000366,"bonusPowerCoefficient":0,"sourceLevel":70,"maxScalingLevel":76},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":9,"spellId":502860,"level":78,"description":"Blast an enemy with frigid runic magic, dealing $?s707654[${$cond($gt($spfr, $spa), $m1+0+$spfr*1.65, $m1+0+$spa*1.65)}][${$cond($gt($spfr, $spa), $m1+0+$spfr*.65, $m1+0+$spa*.65)}] Frost damage and applying Frigid Fusion. @s:803225:0@","castMode":"cast","castTimeMs":2000,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":15,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":569,"dieSides":43,"pointsPerLevel":8.600000381469727,"bonusPowerCoefficient":0,"sourceLevel":78,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":803225},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-32-warp-shift-117-800120","classId":"runemaster","dbcSpellId":800120,"name":"Warp Shift","unlockLevel":17,"icon":"/assets/ui/spells/spell_nature_massteleport.png","sigil":"WS","description":"Warp ShiftRank 112% of base mana Instant cast30 sec cooldownDeal 45 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.40400001406669617,"basePoints":45,"dieSides":4,"pointsPerLevel":0.8199999928474426,"bonusPowerCoefficient":0.40400001406669617,"sourceLevel":17,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":520525,"withValue":50},{"kind":"movement","movement":"teleport","toward":"target"}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":800120,"level":17,"description":"Warp ShiftRank 112% of base mana Instant cast30 sec cooldownDeal 45 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.40400001406669617,"basePoints":45,"dieSides":4,"pointsPerLevel":0.8199999928474426,"bonusPowerCoefficient":0.40400001406669617,"sourceLevel":17,"maxScalingLevel":22},{"kind":"trigger-spell","spellId":520525,"withValue":50},{"kind":"movement","movement":"teleport","toward":"target"}]},{"rank":2,"spellId":502659,"level":24,"description":"Warp ShiftRank 212% of base mana Instant cast30 sec cooldownDeal 64 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":0.8585983015533186,"basePoints":64,"dieSides":7,"pointsPerLevel":1.3940000534057617,"bonusPowerCoefficient":0,"sourceLevel":24,"maxScalingLevel":29},{"kind":"trigger-spell","spellId":520525,"withValue":0},{"kind":"movement","movement":"teleport","toward":"target"}]},{"rank":3,"spellId":502660,"level":31,"description":"Warp ShiftRank 312% of base mana Instant cast30 sec cooldownDeal 79 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.046768119369728,"basePoints":79,"dieSides":12,"pointsPerLevel":1.934000015258789,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":36},{"kind":"trigger-spell","spellId":520525,"withValue":0},{"kind":"movement","movement":"teleport","toward":"target"}]},{"rank":4,"spellId":502661,"level":38,"description":"Warp ShiftRank 412% of base mana Instant cast30 sec cooldownDeal 104 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.3019622586808115,"basePoints":104,"dieSides":19,"pointsPerLevel":2.4739999771118164,"bonusPowerCoefficient":0,"sourceLevel":38,"maxScalingLevel":43},{"kind":"trigger-spell","spellId":520525,"withValue":0},{"kind":"movement","movement":"teleport","toward":"target"}]},{"rank":5,"spellId":502662,"level":45,"description":"Warp ShiftRank 512% of base mana Instant cast30 sec cooldownDeal 122 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.5062777625189887,"basePoints":122,"dieSides":28,"pointsPerLevel":3.0139999389648438,"bonusPowerCoefficient":0,"sourceLevel":45,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":520525,"withValue":0},{"kind":"movement","movement":"teleport","toward":"target"}]},{"rank":6,"spellId":502663,"level":52,"description":"Warp ShiftRank 612% of base mana Instant cast30 sec cooldownDeal 157 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":1.797552213146912,"basePoints":157,"dieSides":40,"pointsPerLevel":3.553999900817871,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":57},{"kind":"trigger-spell","spellId":520525,"withValue":0},{"kind":"movement","movement":"teleport","toward":"target"}]},{"rank":7,"spellId":502664,"level":59,"description":"Warp ShiftRank 712% of base mana Instant cast30 sec cooldownDeal 246 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":2.4340540439158946,"basePoints":246,"dieSides":54,"pointsPerLevel":4.539999961853027,"bonusPowerCoefficient":0,"sourceLevel":59,"maxScalingLevel":64},{"kind":"trigger-spell","spellId":520525,"withValue":0},{"kind":"movement","movement":"teleport","toward":"target"}]},{"rank":8,"spellId":502665,"level":66,"description":"Warp ShiftRank 812% of base mana Instant cast30 sec cooldownDeal 379 Arcane damage to an enemy, swapping you and your familiar's position with theirs.","castMode":"instant","castTimeMs":0,"cooldownMs":30000,"gcdMs":1000,"cost":{"resource":"mana","amount":12,"percentage":true},"effects":[{"kind":"damage","coefficient":3.0596707818930042,"basePoints":379,"dieSides":70,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":66,"maxScalingLevel":73},{"kind":"trigger-spell","spellId":520525,"withValue":0},{"kind":"movement","movement":"teleport","toward":"target"}]}]},{"id":"coa-32-palm-sigil-arcane-119-805380","classId":"runemaster","dbcSpellId":805380,"name":"Palm Sigil: Arcane","unlockLevel":20,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Palm Sigil: ArcaneRank 14% of base mana 1.5 sec cast Requires StealthEngrave an arcane rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal an additional 5% of the damage dealt as Arcane damage every 3 sec for 12 sec and silences the target for 3 sec. Usable while moving.","target":"hostile","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805380:effect:0:aura:354","name":"Palm Sigil: Arcane (Aura 354)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807819},{"kind":"apply-aura","aura":{"id":"coa:805380:effect:1:aura:290","name":"Palm Sigil: Arcane (Aura 290)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805380:effect:2:aura:108","name":"Palm Sigil: Arcane (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805380,"level":20,"description":"Palm Sigil: ArcaneRank 14% of base mana 1.5 sec cast Requires StealthEngrave an arcane rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal an additional 5% of the damage dealt as Arcane damage every 3 sec for 12 sec and silences the target for 3 sec. Usable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805380:effect:0:aura:354","name":"Palm Sigil: Arcane (Aura 354)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807819},{"kind":"apply-aura","aura":{"id":"coa:805380:effect:1:aura:290","name":"Palm Sigil: Arcane (Aura 290)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805380:effect:2:aura:108","name":"Palm Sigil: Arcane (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":2,"spellId":807322,"level":34,"description":"Palm Sigil: ArcaneRank 24% of base mana 1.5 sec cast Requires StealthEngrave an arcane rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal an additional 8% of the damage dealt as Arcane damage every 3 sec for 12 sec and silences the target for 3 sec. Usable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807322:effect:0:aura:354","name":"Palm Sigil: Arcane (Aura 354)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807819},{"kind":"apply-aura","aura":{"id":"coa:807322:effect:1:aura:290","name":"Palm Sigil: Arcane (Aura 290)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807322:effect:2:aura:108","name":"Palm Sigil: Arcane (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]},{"rank":3,"spellId":807323,"level":50,"description":"Palm Sigil: ArcaneRank 34% of base mana 1.5 sec cast Requires StealthEngrave an arcane rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal an additional 10% of the damage dealt as Arcane damage every 3 sec for 12 sec and silences the target for 3 sec. Usable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807323:effect:0:aura:354","name":"Palm Sigil: Arcane (Aura 354)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807819},{"kind":"apply-aura","aura":{"id":"coa:807323:effect:1:aura:290","name":"Palm Sigil: Arcane (Aura 290)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807323:effect:2:aura:108","name":"Palm Sigil: Arcane (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}]}]},{"id":"coa-32-scrying-orb-481-804674","classId":"runemaster","dbcSpellId":804674,"name":"Scrying Orb","unlockLevel":22,"icon":"/assets/ui/spells/spell_druid_momentofclarity.png","sigil":"SO","description":"Scrying OrbRank 122% of base mana ChanneledConjure a Scrying Orb for 1 min that you can control directly and see through.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"summon","creatureId":50038,"coefficient":0.08,"durationMs":60000},{"kind":"apply-aura","aura":{"id":"coa:804674:effect:1:aura:4","name":"Scrying Orb (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804674:effect:2:aura:4","name":"Scrying Orb (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804674,"level":22,"description":"Scrying OrbRank 122% of base mana ChanneledConjure a Scrying Orb for 1 min that you can control directly and see through.","castMode":"cast","castTimeMs":5000,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":22,"percentage":true},"effects":[{"kind":"summon","creatureId":50038,"coefficient":0.08,"durationMs":60000},{"kind":"apply-aura","aura":{"id":"coa:804674:effect:1:aura:4","name":"Scrying Orb (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804674:effect:2:aura:4","name":"Scrying Orb (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"runemaster-runed-cascade","classId":"runemaster","dbcSpellId":804128,"name":"Runed Cascade","unlockLevel":27,"icon":"/assets/ui/spells/nhi_arcanebeam_border.png","sigil":"RC","description":"Runed CascadeRank 111% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 133 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","target":"hostile","range":{"min":0,"max":40},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":2.0341276857588024,"basePoints":133,"dieSides":28,"pointsPerLevel":4.066669940948486,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"source":"coa-progression","passive":false,"ranks":[{"rank":1,"spellId":804128,"level":27,"description":"Runed CascadeRank 111% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 133 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":2.0341276857588024,"basePoints":133,"dieSides":28,"pointsPerLevel":4.066669940948486,"bonusPowerCoefficient":0,"sourceLevel":27,"maxScalingLevel":30},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":2,"spellId":503395,"level":32,"description":"Runed CascadeRank 211% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 167 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":2.3494081970647716,"basePoints":167,"dieSides":1,"pointsPerLevel":5.13332986831665,"bonusPowerCoefficient":0,"sourceLevel":32,"maxScalingLevel":35},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":3,"spellId":503396,"level":37,"description":"Runed CascadeRank 311% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 208 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":2.85128207390125,"basePoints":208,"dieSides":1,"pointsPerLevel":6.400000095367432,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":40},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":4,"spellId":503397,"level":42,"description":"Runed CascadeRank 411% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 269 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":3.6035096464101333,"basePoints":269,"dieSides":1,"pointsPerLevel":8.266670227050781,"bonusPowerCoefficient":0,"sourceLevel":42,"maxScalingLevel":45},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":5,"spellId":503398,"level":47,"description":"Runed CascadeRank 511% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 307 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":3.975268769007857,"basePoints":307,"dieSides":1,"pointsPerLevel":9.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":47,"maxScalingLevel":50},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":6,"spellId":503399,"level":52,"description":"Runed CascadeRank 611% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 360 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":360,"dieSides":1,"pointsPerLevel":11.066699981689453,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":55},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":7,"spellId":503400,"level":57,"description":"Runed CascadeRank 711% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 476 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":476,"dieSides":1,"pointsPerLevel":11.399999618530273,"bonusPowerCoefficient":0,"sourceLevel":57,"maxScalingLevel":60},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]},{"rank":8,"spellId":503401,"level":62,"description":"Runed CascadeRank 811% of base mana Instant cast5 sec cooldownBlast up to 10 enemies within 8 yds of the enemy target for 1081 Spellfire Damage, and applies Spellwrath to all affected enemies. Always applies the maximum amount of Spellwrath stacks.","castMode":"instant","castTimeMs":0,"cooldownMs":5000,"gcdMs":1000,"cost":{"resource":"mana","amount":11,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1081,"dieSides":1,"pointsPerLevel":4.974999904632568,"bonusPowerCoefficient":0,"sourceLevel":62,"maxScalingLevel":70},{"kind":"trigger-spell","spellId":524988},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}]}]},{"id":"coa-32-thaumaturgy-116-804550","classId":"runemaster","dbcSpellId":804550,"name":"Thaumaturgy","unlockLevel":29,"icon":"/assets/ui/spells/spell_nature_elementalprecision_2.png","sigil":"TH","description":"ThaumaturgyRank 18% of base mana Instant cast15 sec cooldownBlast an enemy for 67+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9204943116867181,"basePoints":67,"dieSides":2,"pointsPerLevel":1.8622499704360962,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":804551},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":804550,"level":29,"description":"ThaumaturgyRank 18% of base mana Instant cast15 sec cooldownBlast an enemy for 67+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9204943116867181,"basePoints":67,"dieSides":2,"pointsPerLevel":1.8622499704360962,"bonusPowerCoefficient":0,"sourceLevel":29,"maxScalingLevel":34},{"kind":"trigger-spell","spellId":804551},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":2,"spellId":520071,"level":36,"description":"ThaumaturgyRank 28% of base mana Instant cast15 sec cooldownBlast an enemy for 98+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":0.9452365925109464,"basePoints":98,"dieSides":7,"pointsPerLevel":1.2116999626159668,"bonusPowerCoefficient":0,"sourceLevel":36,"maxScalingLevel":44},{"kind":"trigger-spell","spellId":804551},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":3,"spellId":520072,"level":46,"description":"ThaumaturgyRank 38% of base mana Instant cast15 sec cooldownBlast an enemy for 117+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":1.005859986029036,"basePoints":117,"dieSides":12,"pointsPerLevel":1.3385299444198608,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":54},{"kind":"trigger-spell","spellId":804551},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":4,"spellId":520073,"level":56,"description":"ThaumaturgyRank 48% of base mana Instant cast15 sec cooldownBlast an enemy for 165+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":2.2450703723889562,"basePoints":165,"dieSides":17,"pointsPerLevel":5.449999809265137,"bonusPowerCoefficient":0,"sourceLevel":56,"maxScalingLevel":58},{"kind":"trigger-spell","spellId":804551},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":5,"spellId":520074,"level":60,"description":"ThaumaturgyRank 58% of base mana Instant cast15 sec cooldownBlast an enemy for 523+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":2.6811555629306367,"basePoints":523,"dieSides":24,"pointsPerLevel":1.1460000276565552,"bonusPowerCoefficient":0,"sourceLevel":60,"maxScalingLevel":74},{"kind":"trigger-spell","spellId":804551},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":6,"spellId":520075,"level":76,"description":"ThaumaturgyRank 68% of base mana Instant cast15 sec cooldownBlast an enemy for 590+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":590,"dieSides":34,"pointsPerLevel":8.199999809265137,"bonusPowerCoefficient":0,"sourceLevel":76,"maxScalingLevel":78},{"kind":"trigger-spell","spellId":804551},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]},{"rank":7,"spellId":520076,"level":80,"description":"ThaumaturgyRank 78% of base mana Instant cast15 sec cooldownBlast an enemy for 1318+0+ArcP*.41+AP*0.1 Arcane damage and unleash your active Glyph effect.","castMode":"instant","castTimeMs":0,"cooldownMs":15000,"gcdMs":1000,"cost":{"resource":"mana","amount":8,"percentage":true},"effects":[{"kind":"damage","coefficient":4,"basePoints":1318,"dieSides":48,"pointsPerLevel":1.8641599416732788,"bonusPowerCoefficient":0,"sourceLevel":80,"maxScalingLevel":80},{"kind":"trigger-spell","spellId":804551},{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}]}]},{"id":"coa-32-palm-sigil-frost-119-805381","classId":"runemaster","dbcSpellId":805381,"name":"Palm Sigil: Frost","unlockLevel":34,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Palm Sigil: FrostRank 14% of base mana 1.5 sec cast Requires StealthEngrave a frost rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal 30% of the damage dealt as Frost damage and slow the enemy's movement speed by 70% for 8 sec. Usable while moving.","target":"hostile","range":{"min":0,"max":0},"castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805381:effect:0:aura:354","name":"Palm Sigil: Frost (Aura 354)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807825},{"kind":"apply-aura","aura":{"id":"coa:805381:effect:1:aura:42","name":"Palm Sigil: Frost (Aura 42)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:805381:proc:1:808022","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":808022}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":808022}],"passive":false,"source":"coa-progression","ranks":[{"rank":1,"spellId":805381,"level":34,"description":"Palm Sigil: FrostRank 14% of base mana 1.5 sec cast Requires StealthEngrave a frost rune into your palm, causing your next instance of direct Magic damage within 6 sec to deal 30% of the damage dealt as Frost damage and slow the enemy's movement speed by 70% for 8 sec. Usable while moving.","castMode":"cast","castTimeMs":1500,"cooldownMs":0,"gcdMs":1000,"cost":{"resource":"mana","amount":4,"percentage":true},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805381:effect:0:aura:354","name":"Palm Sigil: Frost (Aura 354)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":807825},{"kind":"apply-aura","aura":{"id":"coa:805381:effect:1:aura:42","name":"Palm Sigil: Frost (Aura 42)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:805381:proc:1:808022","triggers":["cast"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":808022}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":808022}]}]}]},"resourcesByClass":{"barbarian":{"type":"energy","name":"Energy","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"witch-doctor":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"felsworn":{"type":"rage","name":"Felfury","color":"#a330c9","maximum":100,"initial":0,"regenerationPerSecond":5},"witch-hunter":{"type":"rage","name":"Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"stormbringer":{"type":"mana","name":"Mana / Static","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"knight-of-xoroth":{"type":"rage","name":"Deathfire","color":"#d64747","maximum":100,"initial":0,"regenerationPerSecond":5},"guardian":{"type":"energy","name":"Energy","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"templar":{"type":"energy","name":"Energy / Holy Runes","color":"#00d989","maximum":100,"initial":100,"regenerationPerSecond":10},"bloodmage":{"type":"rage","name":"Sanguine Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"ranger":{"type":"energy","name":"Focus","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"chronomancer":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"necromancer":{"type":"mana","name":"Mana / Runic Power","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"pyromancer":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"cultist":{"type":"mana","name":"Mana / Insanity","color":"#6950a1","maximum":100,"initial":100,"regenerationPerSecond":4},"starcaller":{"type":"mana","name":"Mana","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4},"sun-cleric":{"type":"mana","name":"Solar Mana","color":"#dcae35","maximum":100,"initial":100,"regenerationPerSecond":4},"tinker":{"type":"energy","name":"Energy / Ammunition","color":"#d8c43f","maximum":100,"initial":100,"regenerationPerSecond":10},"venomancer":{"type":"mana","name":"Venom","color":"#65a43a","maximum":100,"initial":100,"regenerationPerSecond":4},"reaper":{"type":"mana","name":"Souls","color":"#6950a1","maximum":100,"initial":100,"regenerationPerSecond":4},"primalist":{"type":"rage","name":"Primal Rage","color":"#b74439","maximum":100,"initial":0,"regenerationPerSecond":5},"runemaster":{"type":"mana","name":"Mana / Runes","color":"#397dcc","maximum":100,"initial":100,"regenerationPerSecond":4}},"triggeredAbilitiesBySpellId":{"1604":{"id":"coa-triggered-1604","classId":"pyromancer","dbcSpellId":1604,"name":"Dazed","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DA","description":"A concussive strike dismounts the target and reduces movement speed by $s1%.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:1604:effect:0:aura:33","name":"Dazed (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.5},{"kind":"dispel-mechanic","mechanic":21,"maxCount":1}],"passive":false,"source":"coa-progression"},"32991":{"id":"coa-triggered-32991","classId":"stormbringer","dbcSpellId":32991,"name":"Nature Cast Visual","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"NC","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"35764":{"id":"coa-triggered-35764","classId":"starcaller","dbcSpellId":35764,"name":"Astral Armor Visual","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AA","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"radius":1,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"48108":{"id":"coa-triggered-48108","classId":"sun-cleric","dbcSpellId":48108,"name":"Hot Streak","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HS","description":"Your next Pyroblast spell is instant cast.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:48108:effect:0:aura:108","name":"Hot Streak (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:48108:effect:1:aura:4","name":"Hot Streak (Aura 4)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:48108:effect:2:aura:107","name":"Hot Streak (Aura 107)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":2,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"65633":{"id":"coa-triggered-65633","classId":"chronomancer","dbcSpellId":65633,"name":"Arcane Cast Visual","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AC","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"70452":{"id":"coa-triggered-70452","classId":"starcaller","dbcSpellId":70452,"name":"Frost Cast","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FC","description":"Inflicts Frost damage to an enemy and reduces its movement speed for $d.","target":"hostile","range":{"min":0,"max":80},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"102203":{"id":"coa-triggered-102203","classId":"ranger","dbcSpellId":102203,"name":"Skirmisher","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SK","description":"|cFF66DDFFLevel 10 Passive|r Increases the tick rate and damage of |cffffffffToxic Dart|r by $500022s1%, but reduces its duration by $500022s2%. In addition, you may now cast all ranged abilities while moving.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:102203:effect:0:aura:313","name":"Skirmisher (Aura 313)","disposition":"buff","durationMs":11000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":313,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"102208":{"id":"coa-triggered-102208","classId":"templar","dbcSpellId":102208,"name":"Sacred Restraint","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"Cannot be targeted by |cFFFFFFFFTestaments|R.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:102208:effect:0:aura:77","name":"Sacred Restraint (Aura 77)","disposition":"debuff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":25,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"284683":{"id":"coa-triggered-284683","classId":"sun-cleric","dbcSpellId":284683,"name":"Firefall","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FI","description":"You summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing $983391s1 Fire damage. Also causes $983393s1 Fire damage to all other enemies within $983393a1 yards of the enemy target. Maximum 20 stars. Lasts $983392d.","target":"hostile","range":{"min":0,"max":0},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"284684":{"id":"coa-triggered-284684","classId":"sun-cleric","dbcSpellId":284684,"name":"Firefall","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FI","description":"You summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing $983395s1 Fire damage. Also causes $983397s1 Fire damage to all other enemies within $983397a1 yards of the enemy target. Maximum 20 stars. Lasts $983396d.","target":"hostile","range":{"min":0,"max":0},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"284685":{"id":"coa-triggered-284685","classId":"sun-cleric","dbcSpellId":284685,"name":"Firefall","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FI","description":"You summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing $983399s1 Fire damage. Also causes $983401s1 Fire damage to all other enemies within $983401a1 yards of the enemy target. Maximum 20 stars. Lasts $983400d.","target":"hostile","range":{"min":0,"max":0},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"300394":{"id":"coa-triggered-300394","classId":"knight-of-xoroth","dbcSpellId":300394,"name":"Boiling Blood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BB","description":"Healing received increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:300394:effect:0:aura:319","name":"Boiling Blood (Aura 319)","disposition":"buff","durationMs":6000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":319,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"300469":{"id":"coa-triggered-300469","classId":"felsworn","dbcSpellId":300469,"name":"Illidari Barrier","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IB","description":"Absorbs ${$w1} damage.","target":"hostile","range":{"min":0,"max":0},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:300469:effect:0:aura:69","name":"Illidari Barrier (Aura 69)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:300469:absorb:0","amount":200,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"300831":{"id":"coa-triggered-300831","classId":"stormbringer","dbcSpellId":300831,"name":"Gale Disturbance","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GD","description":"Placeholder Description","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:300831:effect:0:aura:4","name":"Gale Disturbance (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"300851":{"id":"coa-triggered-300851","classId":"ranger","dbcSpellId":300851,"name":"Echoes of War","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EO","description":"Your Toxic Dart can now be used outside of Elude and its tick rate, damage, and duration is increased by $s1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"301006":{"id":"coa-triggered-301006","classId":"sun-cleric","dbcSpellId":301006,"name":"Blessed Armor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BA","description":"Spell Power increased by ${$W1}.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301006:effect:0:aura:345","name":"Blessed Armor (Aura 345)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":345,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"301086":{"id":"coa-triggered-301086","classId":"primalist","dbcSpellId":301086,"name":"Aftershock","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AF","description":"Your next |cffffffffGeode Barrage|r or |cffffffffEarthquake|r within $301086d is now instant cast and costs $s3% less.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301086:effect:0:aura:108","name":"Aftershock (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301086:effect:1:aura:108","name":"Aftershock (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301086:effect:2:aura:108","name":"Aftershock (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.75}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"301220":{"id":"coa-triggered-301220","classId":"stormbringer","dbcSpellId":301220,"name":"Thunder Grip","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TG","description":"Prevents enemies from mounting, fleeing, and increasing their movement speed above normal movement speed for $301220d.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301220:effect:0:aura:92","name":"Thunder Grip (Aura 92)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":92,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301220:effect:1:aura:191","name":"Thunder Grip (Aura 191)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.07}]},"sourceEffectType":6,"sourceAuraType":191,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"301273":{"id":"coa-triggered-301273","classId":"bloodmage","dbcSpellId":301273,"name":"Nightmare","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"NI","description":"While above 50% maximum health, abilities that cost Rage now consume $704257s2% of your maximum health to damage or heal your target for an additional $301273s1% of the value.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:301273:effect:0:aura:354","name":"Nightmare (Aura 354)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":303013},{"kind":"apply-aura","aura":{"id":"coa:301273:effect:1:aura:42","name":"Nightmare (Aura 42)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:301273:proc:1:704257","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":704257}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":704257}],"passive":false,"source":"coa-progression"},"301328":{"id":"coa-triggered-301328","classId":"starcaller","dbcSpellId":301328,"name":"Moonwalk","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MO","description":"Increases your movement speed by $s1% at night.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:301328:effect:0:aura:31","name":"Moonwalk (Aura 31)","disposition":"buff","durationMs":11000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"301337":{"id":"coa-triggered-301337","classId":"necromancer","dbcSpellId":301337,"name":"Foul Contagion","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FC","description":"Damage dealt by |cffffffffCrypt Swarm|r and |cffffffffLichfrost|r now extends the duration of |cffffffffFlesh to Worms|r on the target by 1 sec.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":500338,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"301341":{"id":"coa-triggered-301341","classId":"sun-cleric","dbcSpellId":301341,"name":"Pure Light","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PL","description":"While above 80% health you now deal $s1% increased damage and healing.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:301341:effect:0:aura:79","name":"Pure Light (Aura 79)","disposition":"buff","durationMs":11000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:301341:effect:1:aura:136","name":"Pure Light (Aura 136)","disposition":"buff","durationMs":11000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"301982":{"id":"coa-triggered-301982","classId":"cultist","dbcSpellId":301982,"name":"Void-Touched","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VT","description":"Marks the ally for $d, stacking $301982u times. When you cast |cffffffffGaze of C'Thun|r, all stacks are consumed to heal all allies affected by |cffffffffVoid-Touched|r for ${$301983m1+$301983ppl1+$BH*0.35}, increased based on how many stacks were on them.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:301982:effect:0:aura:283","name":"Void-Touched (Aura 283)","disposition":"buff","durationMs":30000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"302597":{"id":"coa-triggered-302597","classId":"necromancer","dbcSpellId":302597,"name":"Study of Death","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SO","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":805029,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"355461":{"id":"coa-triggered-355461","classId":"reaper","dbcSpellId":355461,"name":"Energize Runic Power","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ER","description":"Gain 10 Runic Power $s1","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":70}],"passive":false,"source":"coa-progression"},"359009":{"id":"coa-triggered-359009","classId":"reaper","dbcSpellId":359009,"name":"Energize Runic Power +14-25","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ER","description":"Gain $s1 Runic Power","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":140}],"passive":false,"source":"coa-progression"},"359018":{"id":"coa-triggered-359018","classId":"reaper","dbcSpellId":359018,"name":"Energize Runic Power +2","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ER","description":"Gain 10 Runic Power","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"359019":{"id":"coa-triggered-359019","classId":"reaper","dbcSpellId":359019,"name":"Energize Runic Power +5","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ER","description":"Gain 10 Runic Power","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":50}],"passive":false,"source":"coa-progression"},"359505":{"id":"coa-triggered-359505","classId":"reaper","dbcSpellId":359505,"name":"Energize Runic Power +30","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ER","description":"Gain 10 Runic Power","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":300}],"passive":false,"source":"coa-progression"},"451267":{"id":"coa-triggered-451267","classId":"pyromancer","dbcSpellId":451267,"name":"Melt","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ME","description":"Deals $s1 Fire Damage.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.2808888929861563,"basePoints":6,"dieSides":1,"pointsPerLevel":1.3960000276565552,"bonusPowerCoefficient":0,"sourceLevel":12}],"passive":false,"source":"coa-progression"},"500006":{"id":"coa-triggered-500006","classId":"barbarian","dbcSpellId":500006,"name":"Impaled","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IM","description":"Bleeding for ${$w1} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500006:effect:0:aura:3","name":"Impaled (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":17,"triggerSpellId":0},{"kind":"dot","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"ticks":6,"intervalMs":1000,"tag":"spell-500006"}],"passive":false,"source":"coa-progression"},"500149":{"id":"coa-triggered-500149","classId":"sun-cleric","dbcSpellId":500149,"name":"Solar Power","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"You may unleash |cFFFF9800Dawn|r at 20 stacks. @s:804584:0@","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500149:effect:0:aura:4","name":"Solar Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500149:effect:1:aura:108","name":"Solar Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500159":{"id":"coa-triggered-500159","classId":"witch-hunter","dbcSpellId":500159,"name":"Boltslinger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"500220":{"id":"coa-triggered-500220","classId":"tinker","dbcSpellId":500220,"name":"Rocket Launcher","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RL","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":17}],"passive":false,"source":"coa-progression"},"500256":{"id":"coa-triggered-500256","classId":"guardian","dbcSpellId":500256,"name":"Motivation","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MO","description":"Some of your abilities consume |cff66ccffMotivation|r to perform an additional effect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:500256:effect:1:aura:136","name":"Motivation (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500256:effect:2:aura:79","name":"Motivation (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500282":{"id":"coa-triggered-500282","classId":"runemaster","dbcSpellId":500282,"name":"Palm Sigil: Earth","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500282:effect:0:aura:4","name":"Palm Sigil: Earth (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":560233},{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"apply-aura","aura":{"id":"coa:520417:effect:0:aura:216","name":"CoA General Spell Haste Debuff (Aura 216)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520417},{"kind":"apply-aura","aura":{"id":"coa:520417:effect:0:aura:216","name":"CoA General Spell Haste Debuff (Aura 216)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2}],"passive":false,"source":"coa-progression"},"500285":{"id":"coa-triggered-500285","classId":"runemaster","dbcSpellId":500285,"name":"Frost Sigil","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FS","description":"You may hold up to 3 Sigils in total, comprised of any combination.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500285:effect:0:aura:4","name":"Frost Sigil (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":803020},{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500292":{"id":"coa-triggered-500292","classId":"stormbringer","dbcSpellId":500292,"name":"Kiss of the Clouds","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"KO","description":"Absorbs ${$w1} damage.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:500292:effect:0:aura:69","name":"Kiss of the Clouds (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:500292:absorb:0","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500308":{"id":"coa-triggered-500308","classId":"venomancer","dbcSpellId":500308,"name":"Warpchill","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WA","description":"Stunned.","target":"hostile","range":{"min":0,"max":500},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500308:effect:0:aura:12","name":"Warpchill (Aura 12)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500363":{"id":"coa-triggered-500363","classId":"reaper","dbcSpellId":500363,"name":"Reaped Soul","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RS","description":"At 3 stacks you are granted |cff5ee2ffSoul Infusion|r, allowing the use of powerful abilities.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":504034},{"kind":"apply-aura","aura":{"id":"coa:504034:effect:0:aura:79","name":"Spectral Affinity (Aura 79)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500363:effect:1:aura:107","name":"Reaped Soul (Aura 107)","disposition":"buff","durationMs":300000010,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805077},{"kind":"apply-aura","aura":{"id":"coa:805077:effect:0:aura:4","name":"Soul Fragment (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805078,"withValue":100},{"kind":"trigger-spell","spellId":500363}],"passive":false,"source":"coa-progression"},"500374":{"id":"coa-triggered-500374","classId":"reaper","dbcSpellId":500374,"name":"Murder Secondary Visual","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"500468":{"id":"coa-triggered-500468","classId":"runemaster","dbcSpellId":500468,"name":"Riftblade Runemaster","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RR","description":"|cFFFFFFFFPrimordial Blast|r now refreshes a charge of |cFFFFFFFFRuneblade|r and the critical strike chance of |cffffffffRuneblade|r is increased by $s2%. In addition, critical strikes now regenerate mana.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500468:effect:0:aura:4","name":"Riftblade Runemaster (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500481":{"id":"coa-triggered-500481","classId":"reaper","dbcSpellId":500481,"name":"Tormented Souls","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TS","description":"Reduces all direct damage you take by $s1% and heals you for ${$500482m1+$500482ppl1+$AP*.058+$STA*.24}, removing 1 stack. Lasts $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:0:aura:87","name":"Tormented Souls (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500481:effect:1:aura:42","name":"Tormented Souls (Aura 42)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:500481:proc:1:500482","triggers":["heal"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":500482}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":500482},{"kind":"trigger-spell","spellId":355461},{"kind":"resource","amount":70}],"passive":false,"source":"coa-progression"},"500482":{"id":"coa-triggered-500482","classId":"reaper","dbcSpellId":500482,"name":"Tormented Soul","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TS","description":"Absorbs the next attack made against you.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.2,"basePoints":10,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"500493":{"id":"coa-triggered-500493","classId":"guardian","dbcSpellId":500493,"name":"Raise Shield","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RS","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"500516":{"id":"coa-triggered-500516","classId":"necromancer","dbcSpellId":500516,"name":"Plaguebomb","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PL","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"500531":{"id":"coa-triggered-500531","classId":"felsworn","dbcSpellId":500531,"name":"Fel Scales (Tyrant)","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FS","description":"Gain Armor and magic resistance based on dodge rating.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500531:effect:0:aura:22","name":"Fel Scales (Tyrant) (Aura 22)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500531:effect:1:aura:22","name":"Fel Scales (Tyrant) (Aura 22)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":22,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500606":{"id":"coa-triggered-500606","classId":"runemaster","dbcSpellId":500606,"name":"Warpdagger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WA","description":"Activate this ability to teleport to your |cffffffffWarpdagger|r and damage all enemies around you upon arrival for ${$500495m1+$500495ppl1+$AP*.2+$SP*.44} Elemental Damage. Usable while stealthed.","target":"self","range":{"min":0,"max":0},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"summon","creatureId":51335,"coefficient":0.08,"durationMs":20000}],"passive":false,"source":"coa-progression"},"500690":{"id":"coa-triggered-500690","classId":"templar","dbcSpellId":500690,"name":"Ascetic Abdication","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AA","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.01,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":3,"triggerSpellId":0,"durationMs":0},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["disease"],"maxCount":1}],"passive":false,"source":"coa-progression"},"500693":{"id":"coa-triggered-500693","classId":"primalist","dbcSpellId":500693,"name":"Boulder Dash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BD","description":"Stomps the ground, dealing $s1 Physical damage to nearby enemies, knocking them up.","target":"hostile","range":{"min":0,"max":0},"radius":4,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":40,"triggerSpellId":0,"durationMs":1000},{"kind":"apply-aura","aura":{"id":"coa:500693:effect:2:aura:263","name":"Boulder Dash (Aura 263)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":263,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500706":{"id":"coa-triggered-500706","classId":"cultist","dbcSpellId":500706,"name":"Insanity","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IN","description":"$?s805120[You find peace in your inner turmoil.][Reaching 100 |cffcfa6ffInsanity|r will cause you to enter |cffffffffTotal Madness|r! Your sentience naturally fights against the Old God's influence, causing you to lose $500728q1 |cffcfa6ffInsanity|r every $500727t1 sec while not in combat.@s:803061:0@]","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500906":{"id":"coa-triggered-500906","classId":"knight-of-xoroth","dbcSpellId":500906,"name":"Demonfire","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DE","description":"Consumed to empower abilities. Stacks $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"500917":{"id":"coa-triggered-500917","classId":"barbarian","dbcSpellId":500917,"name":"Add Carnage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AC","description":"Being torn to shreds.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"500991":{"id":"coa-triggered-500991","classId":"necromancer","dbcSpellId":500991,"name":"Grave March","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GM","description":"Command your |cFFFFFFFFUndead|r to focus their attacks on the target enemy. Usable while casting or channeling.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1000}],"passive":false,"source":"coa-progression"},"501383":{"id":"coa-triggered-501383","classId":"witch-hunter","dbcSpellId":501383,"name":"Vicious Mockery","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VM","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14}],"passive":false,"source":"coa-progression"},"501535":{"id":"coa-triggered-501535","classId":"guardian","dbcSpellId":501535,"name":"Counter Stance","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"You are granted 8 charges of |cffffffffCounter Stance|r, increasing your chance to block by $s1% and your block value by $s3% for $d and dealing $s2 damage to attackers whenever you take Physical Damage or block a physical attack. Each attack expends a charge.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":2.9878787647594107,"basePoints":239,"dieSides":1,"pointsPerLevel":6.349999904632568,"bonusPowerCoefficient":0,"sourceLevel":40}],"passive":false,"source":"coa-progression"},"503215":{"id":"coa-triggered-503215","classId":"guardian","dbcSpellId":503215,"name":"DEPRECATED","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DE","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"503549":{"id":"coa-triggered-503549","classId":"tinker","dbcSpellId":503549,"name":"I'm The Creator Now","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IM","description":"Attack and spell power increased.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503549:effect:0:aura:344","name":"I'm The Creator Now (Aura 344)","disposition":"buff","durationMs":30000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:503549:effect:1:aura:345","name":"I'm The Creator Now (Aura 345)","disposition":"buff","durationMs":30000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":345,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"503626":{"id":"coa-triggered-503626","classId":"witch-doctor","dbcSpellId":503626,"name":"Hexfire Wrath","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HW","description":"Your Malefic Wrath has transformed into Hexfire Wrath!","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:503626:effect:0:aura:4","name":"Hexfire Wrath (Aura 4)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"503695":{"id":"coa-triggered-503695","classId":"cultist","dbcSpellId":503695,"name":"Reduce 20 Insanity","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RI","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500706},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:0:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:1:aura:317","name":"Insanity (Aura 317)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":317,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500706:effect:2:aura:108","name":"Insanity (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"503826":{"id":"coa-triggered-503826","classId":"chronomancer","dbcSpellId":503826,"name":"Anomaly Spike","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals ${$cond($gt($spa, $sps), $m1*$+$spa*.25, $m1*$+$sps*.25)} Chromatic Damage.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.788888888888889,"basePoints":161,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15},{"kind":"trigger-spell","spellId":504725},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"503946":{"id":"coa-triggered-503946","classId":"chronomancer","dbcSpellId":503946,"name":"Empowerment Chaos CD refresh","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EC","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reduce","abilityName":"Timerend","amountPercent":0.1},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Chromatic Shard","amountPercent":0.1},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Melt Reality","amountPercent":0.1}],"passive":false,"source":"coa-progression"},"503953":{"id":"coa-triggered-503953","classId":"venomancer","dbcSpellId":503953,"name":"Enduring Exoskeleton","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EE","description":"Generates 2 Rage on hit","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":20},{"kind":"utility","action":"class-script","effectType":166,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-progression"},"504034":{"id":"coa-triggered-504034","classId":"reaper","dbcSpellId":504034,"name":"Spectral Affinity","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SA","description":"Damage increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504034:effect:0:aura:79","name":"Spectral Affinity (Aura 79)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504035":{"id":"coa-triggered-504035","classId":"reaper","dbcSpellId":504035,"name":"Dark Passage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DP","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":800845,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-progression"},"504137":{"id":"coa-triggered-504137","classId":"bloodmage","dbcSpellId":504137,"name":"Saturating Sutures","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Reduces the cost of your next |cffffffffSanguine Mend|r by $s1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504137:effect:0:aura:108","name":"Saturating Sutures (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504211":{"id":"coa-triggered-504211","classId":"venomancer","dbcSpellId":504211,"name":"Surprise Strategy","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Increases the healing of your next Shadra's Prayer by ${$w1}% and makes it instant cast.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504211:effect:0:aura:108","name":"Surprise Strategy (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504211:effect:1:aura:108","name":"Surprise Strategy (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":22,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504211:effect:2:aura:108","name":"Surprise Strategy (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504247":{"id":"coa-triggered-504247","classId":"witch-hunter","dbcSpellId":504247,"name":"Energize 5 Rage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ER","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"resource","amount":50}],"passive":false,"source":"coa-progression"},"504291":{"id":"coa-triggered-504291","classId":"bloodmage","dbcSpellId":504291,"name":"Mortal Wounds","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MW","description":"Bleeding for ${$504291m1*$+$AP*0.01+$SP*0.05} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504291:effect:0:aura:3","name":"Mortal Wounds (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4146341463414634,"basePoints":51,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":26,"ticks":6,"intervalMs":1000,"tag":"spell-504291"}],"passive":false,"source":"coa-progression"},"504346":{"id":"coa-triggered-504346","classId":"venomancer","dbcSpellId":504346,"name":"Toxic Stride","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TS","description":"Immune to silence and interrupt effects. Can cast while moving.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504346:effect:0:aura:77","name":"Toxic Stride (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":9,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504346:effect:1:aura:313","name":"Toxic Stride (Aura 313)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":313,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504346:effect:2:aura:77","name":"Toxic Stride (Aura 77)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":26,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504377":{"id":"coa-triggered-504377","classId":"venomancer","dbcSpellId":504377,"name":"Curse of Shadra","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"The Venomancer will deal additional damage to you with some abilities.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504377:effect:0:aura:4","name":"Curse of Shadra (Aura 4)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504390":{"id":"coa-triggered-504390","classId":"reaper","dbcSpellId":504390,"name":"+1 Reaped Souls","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RS","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":500363},{"kind":"trigger-spell","spellId":504034},{"kind":"apply-aura","aura":{"id":"coa:504034:effect:0:aura:79","name":"Spectral Affinity (Aura 79)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500363:effect:1:aura:107","name":"Reaped Soul (Aura 107)","disposition":"buff","durationMs":300000010,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805077},{"kind":"apply-aura","aura":{"id":"coa:805077:effect:0:aura:4","name":"Soul Fragment (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805078,"withValue":100}],"passive":false,"source":"coa-progression"},"504551":{"id":"coa-triggered-504551","classId":"bloodmage","dbcSpellId":504551,"name":"Blood Rush","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BR","description":"Increases your haste by $s1% for $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504551:effect:0:aura:216","name":"Blood Rush (Aura 216)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504551:effect:1:aura:192","name":"Blood Rush (Aura 192)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504586":{"id":"coa-triggered-504586","classId":"guardian","dbcSpellId":504586,"name":"High Guard","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HG","description":"Your next |cffffffffHeavy Blow|r within $504586d triggers no cooldown.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504586:effect:0:aura:4","name":"High Guard (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:504586:effect:1:aura:108","name":"High Guard (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504631":{"id":"coa-triggered-504631","classId":"starcaller","dbcSpellId":504631,"name":"Cosmic Wrath","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CW","description":"Damage dealt increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504631:effect:0:aura:79","name":"Cosmic Wrath (Aura 79)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504669":{"id":"coa-triggered-504669","classId":"primalist","dbcSpellId":504669,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504669:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.10267857142857142,"basePoints":7,"dieSides":1,"pointsPerLevel":0.125,"bonusPowerCoefficient":0,"sourceLevel":13,"maxScalingLevel":17,"ticks":7,"intervalMs":3000,"tag":"spell-504669"}],"passive":false,"source":"coa-progression"},"504670":{"id":"coa-triggered-504670","classId":"primalist","dbcSpellId":504670,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504670:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.12908502931103988,"basePoints":10,"dieSides":1,"pointsPerLevel":0.16666699945926666,"bonusPowerCoefficient":0,"sourceLevel":19,"maxScalingLevel":23,"ticks":7,"intervalMs":3000,"tag":"spell-504670"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500945,"durationMs":21000}],"passive":false,"source":"coa-progression"},"504671":{"id":"coa-triggered-504671","classId":"primalist","dbcSpellId":504671,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504671:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.15138895822068055,"basePoints":14,"dieSides":1,"pointsPerLevel":0.16666699945926666,"bonusPowerCoefficient":0,"sourceLevel":25,"maxScalingLevel":29,"ticks":7,"intervalMs":3000,"tag":"spell-504671"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500945,"durationMs":21000}],"passive":false,"source":"coa-progression"},"504672":{"id":"coa-triggered-504672","classId":"primalist","dbcSpellId":504672,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504672:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.1959541843853135,"basePoints":18,"dieSides":1,"pointsPerLevel":0.29166701436042786,"bonusPowerCoefficient":0,"sourceLevel":31,"maxScalingLevel":35,"ticks":7,"intervalMs":3000,"tag":"spell-504672"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500945,"durationMs":21000}],"passive":false,"source":"coa-progression"},"504673":{"id":"coa-triggered-504673","classId":"primalist","dbcSpellId":504673,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504673:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24919871794871795,"basePoints":25,"dieSides":1,"pointsPerLevel":0.375,"bonusPowerCoefficient":0,"sourceLevel":37,"maxScalingLevel":41,"ticks":7,"intervalMs":3000,"tag":"spell-504673"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500945,"durationMs":21000}],"passive":false,"source":"coa-progression"},"504674":{"id":"coa-triggered-504674","classId":"primalist","dbcSpellId":504674,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504674:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3086684964511586,"basePoints":34,"dieSides":1,"pointsPerLevel":0.45833298563957214,"bonusPowerCoefficient":0,"sourceLevel":43,"maxScalingLevel":47,"ticks":7,"intervalMs":3000,"tag":"spell-504674"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500945,"durationMs":21000}],"passive":false,"source":"coa-progression"},"504675":{"id":"coa-triggered-504675","classId":"primalist","dbcSpellId":504675,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504675:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3513453973767658,"basePoints":45,"dieSides":1,"pointsPerLevel":0.45833298563957214,"bonusPowerCoefficient":0,"sourceLevel":49,"maxScalingLevel":53,"ticks":7,"intervalMs":3000,"tag":"spell-504675"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":500945,"durationMs":21000}],"passive":false,"source":"coa-progression"},"504676":{"id":"coa-triggered-504676","classId":"primalist","dbcSpellId":504676,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504676:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.38670625814369747,"basePoints":56,"dieSides":1,"pointsPerLevel":0.45833298563957214,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":61,"ticks":7,"intervalMs":3000,"tag":"spell-504676"}],"passive":false,"source":"coa-progression"},"504684":{"id":"coa-triggered-504684","classId":"primalist","dbcSpellId":504684,"name":"Primal Shred","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","target":"hostile","range":{"min":0,"max":5},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:504684:effect:0:aura:3","name":"Primal Shred (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.4819443533817927,"basePoints":76,"dieSides":1,"pointsPerLevel":0.45833298563957214,"bonusPowerCoefficient":0,"sourceLevel":55,"maxScalingLevel":61,"ticks":7,"intervalMs":3000,"tag":"spell-504684"}],"passive":false,"source":"coa-progression"},"504725":{"id":"coa-triggered-504725","classId":"chronomancer","dbcSpellId":504725,"name":"Fatebreaker","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FA","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"504824":{"id":"coa-triggered-504824","classId":"primalist","dbcSpellId":504824,"name":"Grove Guardian","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GG","description":"Mark a location as your |cffffffffGrove|r for 20 sec. Enemies inside have their movement speed slowed by 30% and are periodically damaged and rooted for 3 sec. Allies inside have their movement speed increased by 30% and are periodically healed and have 1 movement impairing effect dispelled from them.","target":"hostile","range":{"min":0,"max":20},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:0:aura:3","name":"Grove Guardian (Aura 3)","disposition":"buff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":4,"basePoints":504,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"ticks":4,"intervalMs":5000,"tag":"spell-504824"},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:1:aura:23","name":"Grove Guardian (Aura 23)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:504824:proc:1:504825","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":504825}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":504825},{"kind":"apply-aura","aura":{"id":"coa:504824:effect:2:aura:33","name":"Grove Guardian (Aura 33)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.3}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504825":{"id":"coa-triggered-504825","classId":"primalist","dbcSpellId":504825,"name":"Grove Guardian","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GG","description":"Mark a location as your |cffffffffGrove|r for 20 sec. Enemies inside have their movement speed slowed by 30% and are periodically damaged and rooted for 3 sec. Allies inside have their movement speed increased by 30% and are periodically healed and have 1 movement impairing effect dispelled from them.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:504825:effect:0:aura:26","name":"Grove Guardian (Aura 26)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"504858":{"id":"coa-triggered-504858","classId":"sun-cleric","dbcSpellId":504858,"name":"Energize 5% Missing","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EM","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":5,"percentage":true}],"passive":false,"source":"coa-progression"},"505169":{"id":"coa-triggered-505169","classId":"bloodmage","dbcSpellId":505169,"name":"Blood Bond","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BB","description":"Movement speed increased by $s1%.","target":"friendly","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:505169:effect:0:aura:31","name":"Blood Bond (Aura 31)","disposition":"buff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"505203":{"id":"coa-triggered-505203","classId":"venomancer","dbcSpellId":505203,"name":"Shadra's Vigil","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"The next 5 instances of periodic healing by you on this target will heal them for an additional $s1% of the value.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:505203:effect:0:aura:4","name":"Shadra's Vigil (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"505208":{"id":"coa-triggered-505208","classId":"primalist","dbcSpellId":505208,"name":"Grove Guardian","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GG","description":"Mark a location as your |cffffffffGrove|r for 20 sec. Enemies inside have their movement speed slowed by 30% and are periodically damaged and rooted for 3 sec. Allies inside have their movement speed increased by 30% and are periodically healed and have 1 movement impairing effect dispelled from them.","target":"self","range":{"min":0,"max":0},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:505208:effect:0:aura:8","name":"Grove Guardian (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":4,"basePoints":404,"dieSides":8,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1,"ticks":4,"intervalMs":5000},{"kind":"apply-aura","aura":{"id":"coa:505208:effect:1:aura:23","name":"Grove Guardian (Aura 23)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:505208:proc:1:505209","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505209}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":505209},{"kind":"apply-aura","aura":{"id":"coa:505208:effect:2:aura:31","name":"Grove Guardian (Aura 31)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.3}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"505209":{"id":"coa-triggered-505209","classId":"primalist","dbcSpellId":505209,"name":"Grove Guardian","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GG","description":"Mark a location as your |cffffffffGrove|r for 20 sec. Enemies inside have their movement speed slowed by 30% and are periodically damaged and rooted for 3 sec. Allies inside have their movement speed increased by 30% and are periodically healed and have 1 movement impairing effect dispelled from them.","target":"friendly","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["disease"],"maxCount":1},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["poison"],"maxCount":1}],"passive":false,"source":"coa-progression"},"505325":{"id":"coa-triggered-505325","classId":"bloodmage","dbcSpellId":505325,"name":"Blood Bond","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BB","description":"Generates $/10;s1 Rage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"resource","amount":10},{"kind":"utility","action":"class-script","effectType":181,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"threat","mode":"redirect","amount":1}],"passive":false,"source":"coa-progression"},"505342":{"id":"coa-triggered-505342","classId":"sun-cleric","dbcSpellId":505342,"name":"Blinded","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BL","description":"Chance to miss on your next attack increased by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:505342:effect:0:aura:54","name":"Blinded (Aura 54)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:505342:effect:1:aura:42","name":"Blinded (Aura 42)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:505342:proc:1:505346","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505346}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":505346}],"passive":false,"source":"coa-progression"},"505346":{"id":"coa-triggered-505346","classId":"sun-cleric","dbcSpellId":505346,"name":"Blinded","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BL","description":"Chance to miss on your next attack increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":164,"auraType":0,"miscValue":0,"triggerSpellId":505342,"durationMs":0}],"passive":false,"source":"coa-progression"},"506637":{"id":"coa-triggered-506637","classId":"sun-cleric","dbcSpellId":506637,"name":"Blind","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BL","description":"Chance to miss on your next attack increased by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":505342},{"kind":"apply-aura","aura":{"id":"coa:505342:effect:0:aura:54","name":"Blinded (Aura 54)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:505342:effect:1:aura:42","name":"Blinded (Aura 42)","disposition":"debuff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:505342:proc:1:505346","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":505346}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":505346}],"passive":false,"source":"coa-progression"},"506640":{"id":"coa-triggered-506640","classId":"bloodmage","dbcSpellId":506640,"name":"Bloodmage Blood Shard Generate 1","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BB","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"520021":{"id":"coa-triggered-520021","classId":"knight-of-xoroth","dbcSpellId":520021,"name":"Infernal Steel","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IS","description":"Your next Hellmaw will tick ${$w1}% faster and costs ${$w2}% less Rage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520021:effect:0:aura:108","name":"Infernal Steel (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520021:effect:1:aura:108","name":"Infernal Steel (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520096":{"id":"coa-triggered-520096","classId":"runemaster","dbcSpellId":520096,"name":"Unleashed Frost Glyph","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"UF","description":"Deals $s1 Frost Damage and slows movement speed by $520110s1% for $520110d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"apply-aura","aura":{"id":"coa:520108:effect:0:aura:26","name":"Overloaded Frost Glyph (Aura 26)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520108:effect:1:aura:26","name":"Overloaded Frost Glyph (Aura 26)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520097":{"id":"coa-triggered-520097","classId":"runemaster","dbcSpellId":520097,"name":"Unleashed Flame Glyph","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"UF","description":"Deals $s1 Fire Damage and an additional $o2 Fire Damage over $d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"}],"passive":false,"source":"coa-progression"},"520098":{"id":"coa-triggered-520098","classId":"runemaster","dbcSpellId":520098,"name":"Unleashed Arcane Glyph","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"UA","description":"Deals Arcane damage in an area.","target":"hostile","range":{"min":0,"max":50000},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}],"passive":false,"source":"coa-progression"},"520108":{"id":"coa-triggered-520108","classId":"runemaster","dbcSpellId":520108,"name":"Overloaded Frost Glyph","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"OF","description":"Freeze an enemy in place for $d. At the end of this duration, their movement speed is reduced by $520109s1% for $520109d. Does not break on damage taken.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520108:effect:0:aura:26","name":"Overloaded Frost Glyph (Aura 26)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520108:effect:1:aura:26","name":"Overloaded Frost Glyph (Aura 26)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520219":{"id":"coa-triggered-520219","classId":"pyromancer","dbcSpellId":520219,"name":"Cataclysm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CA","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"damage","coefficient":0.391304347826087,"basePoints":11,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":8},{"kind":"trigger-spell","spellId":520868},{"kind":"trigger-spell","spellId":1604},{"kind":"apply-aura","aura":{"id":"coa:1604:effect:0:aura:33","name":"Dazed (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.5},{"kind":"dispel-mechanic","mechanic":21,"maxCount":1}],"passive":false,"source":"coa-progression"},"520220":{"id":"coa-triggered-520220","classId":"pyromancer","dbcSpellId":520220,"name":"Cataclysm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CA","description":"Immune to damage.","target":"hostile","range":{"min":0,"max":50000},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"knockback","toward":"away"},{"kind":"trigger-spell","spellId":520868},{"kind":"trigger-spell","spellId":1604},{"kind":"apply-aura","aura":{"id":"coa:1604:effect:0:aura:33","name":"Dazed (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.5},{"kind":"dispel-mechanic","mechanic":21,"maxCount":1},{"kind":"damage","coefficient":0.28888888888888886,"basePoints":11,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"520238":{"id":"coa-triggered-520238","classId":"runemaster","dbcSpellId":520238,"name":"Blade Rift","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BR","description":"Your Magic Damage is increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520238:effect:0:aura:79","name":"Blade Rift (Aura 79)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520258":{"id":"coa-triggered-520258","classId":"felsworn","dbcSpellId":520258,"name":"Demonic Embrace","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DE","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"resource","amount":50}],"passive":false,"source":"coa-progression"},"520261":{"id":"coa-triggered-520261","classId":"felsworn","dbcSpellId":520261,"name":"Recently Dodged","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RD","description":"You recently dodged an attack.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520261:effect:0:aura:4","name":"Recently Dodged (Aura 4)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520265":{"id":"coa-triggered-520265","classId":"witch-hunter","dbcSpellId":520265,"name":"Vengeful Intent","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VI","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.75},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression"},"520315":{"id":"coa-triggered-520315","classId":"bloodmage","dbcSpellId":520315,"name":"Heartbreak","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HE","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40}],"passive":false,"source":"coa-progression"},"520332":{"id":"coa-triggered-520332","classId":"cultist","dbcSpellId":520332,"name":"Gaze of C'Thun","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"Deals $s1 shadow damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804095:effect:0:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":0,"percentage":true}],"passive":false,"source":"coa-progression"},"520333":{"id":"coa-triggered-520333","classId":"cultist","dbcSpellId":520333,"name":"Gaze of C'Thun","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"Heals target for $s1.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804095:effect:0:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":0,"percentage":true},{"kind":"trigger-spell","spellId":807344},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807344:effect:0:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520334":{"id":"coa-triggered-520334","classId":"cultist","dbcSpellId":520334,"name":"Gaze of C'Thun Damage Trigger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":520332,"withValue":0},{"kind":"damage","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804095:effect:0:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":0,"percentage":true}],"passive":false,"source":"coa-progression"},"520335":{"id":"coa-triggered-520335","classId":"cultist","dbcSpellId":520335,"name":"Gaze of C'Thun Heal Trigger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":520333,"withValue":0},{"kind":"heal","coefficient":0.800000011920929,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.800000011920929,"sourceLevel":4},{"kind":"trigger-spell","spellId":804095},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804095:effect:0:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":0,"percentage":true},{"kind":"trigger-spell","spellId":807344},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807344:effect:0:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520406":{"id":"coa-triggered-520406","classId":"starcaller","dbcSpellId":520406,"name":"Second Moon","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"After 10 stacks, next Scattered Star unleashed will call down a comet.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520406:effect:0:aura:4","name":"Second Moon (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":10,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520416":{"id":"coa-triggered-520416","classId":"runemaster","dbcSpellId":520416,"name":"Primordial Cloak Trigger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PC","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["magic"],"maxCount":20}],"passive":false,"source":"coa-progression"},"520417":{"id":"coa-triggered-520417","classId":"runemaster","dbcSpellId":520417,"name":"CoA General Spell Haste Debuff","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CG","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520417:effect:0:aura:216","name":"CoA General Spell Haste Debuff (Aura 216)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520418":{"id":"coa-triggered-520418","classId":"cultist","dbcSpellId":520418,"name":"Withered","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WI","description":"Attack speed reduced by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520418:effect:0:aura:192","name":"Withered (Aura 192)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":6000}],"passive":false,"source":"coa-progression"},"520458":{"id":"coa-triggered-520458","classId":"chronomancer","dbcSpellId":520458,"name":"Infinite Shield","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IS","description":"You will heal for ${$m1+0+$SP*.28} health when you take damage.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.867579908675799,"basePoints":190,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58}],"passive":false,"source":"coa-progression"},"520459":{"id":"coa-triggered-520459","classId":"bloodmage","dbcSpellId":520459,"name":"Night Hunter's Howl","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"NH","description":"Movement slowed by $500124s2%.","target":"hostile","range":{"min":0,"max":8},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520459:effect:0:aura:33","name":"Night Hunter's Howl (Aura 33)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":6000,"magnitude":0.05}],"passive":false,"source":"coa-progression"},"520463":{"id":"coa-triggered-520463","classId":"primalist","dbcSpellId":520463,"name":"Quake","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"QU","description":"Attack speed reduced by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520463:effect:0:aura:192","name":"Quake (Aura 192)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520496":{"id":"coa-triggered-520496","classId":"stormbringer","dbcSpellId":520496,"name":"Pressure Release","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PR","description":"You were Dispelled.","target":"hostile","range":{"min":0,"max":40},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dispel-mechanic","mechanic":11,"maxCount":1},{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["poison"],"maxCount":2}],"passive":false,"source":"coa-progression"},"520525":{"id":"coa-triggered-520525","classId":"runemaster","dbcSpellId":520525,"name":"Warp Shift (Familiar)","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WS","description":"Teleports familiar alongside you when using Warp Shift on enemy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"teleport","toward":"target"}],"passive":false,"source":"coa-progression"},"520533":{"id":"coa-triggered-520533","classId":"reaper","dbcSpellId":520533,"name":"Painbringer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PA","description":"Deals Shadow Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":570097},{"kind":"damage","coefficient":4,"basePoints":420,"dieSides":1,"pointsPerLevel":8,"bonusPowerCoefficient":0,"sourceLevel":30},{"kind":"apply-aura","aura":{"id":"coa:570097:effect:1:aura:79","name":"Masochistic Rage (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520545":{"id":"coa-triggered-520545","classId":"ranger","dbcSpellId":520545,"name":"Guile of the Ranger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"Your |cffffffffInstinct|r now additionally increases your critical strike rating by $s1% of your Agility.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520545:effect:0:aura:220","name":"Guile of the Ranger (Aura 220)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"combat-rating:1664","operation":"flat","value":20}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":220,"miscValue":1664,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520648":{"id":"coa-triggered-520648","classId":"sun-cleric","dbcSpellId":520648,"name":"Circle of Valor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"No client tooltip is available.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1.1111111111111112,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"520683":{"id":"coa-triggered-520683","classId":"cultist","dbcSpellId":520683,"name":"Tales of Woe","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TO","description":"Restores $s1% of your missing mana and grants you a shield absorbing ${$m2+0+$SP*.2} damage for $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"resource","amount":1,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:520683:effect:1:aura:69","name":"Tales of Woe (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:520683:absorb:1","amount":23,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520774":{"id":"coa-triggered-520774","classId":"cultist","dbcSpellId":520774,"name":"Tales of Woe","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TO","description":"Regenerates $s1% missing mana and grants you a shield absorbing ${$m1+0+$SP*.2} damage for $d, stacking $u times. While the shield holds, 100% of your mana regeneration continues while casting.","target":"hostile","range":{"min":0,"max":50000},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":520683},{"kind":"shield","coefficient":1,"durationMs":10000},{"kind":"resource","amount":1,"percentage":true},{"kind":"apply-aura","aura":{"id":"coa:520683:effect:1:aura:69","name":"Tales of Woe (Aura 69)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:520683:absorb:1","amount":23,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520791":{"id":"coa-triggered-520791","classId":"ranger","dbcSpellId":520791,"name":"Guise","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GU","description":"Instantly generates 5 stacks of |cff8fff7aAdvantage|r and reveals nearby stealthed enemies for $d. Usable while stealthed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":804329},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804329},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520832":{"id":"coa-triggered-520832","classId":"felsworn","dbcSpellId":520832,"name":"Felwrath","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FE","description":"|cff32cd32Consumes 2 Felfury|r Blast an enemy and all enemies near them with fel magic, dealing ${$m1+0+$SP*0.4} Shadowflame Damage. |cff32cd32Inner Demon|r: Striking at least 5 enemies with this spell causes it to deal an additional ${$520832m1+$520832ppl1+$SP*.1} Shadowflame Damage over $520832d, stacking $520832u times.","target":"hostile","range":{"min":0,"max":30},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:520832:effect:0:aura:3","name":"Felwrath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.37333333333333335,"basePoints":8,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":6,"intervalMs":1000,"tag":"spell-520832"},{"kind":"apply-aura","aura":{"id":"coa:520832:effect:1:aura:3","name":"Felwrath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24000000635782878,"basePoints":6,"dieSides":1,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":3,"intervalMs":2000,"tag":"spell-520832"},{"kind":"apply-aura","aura":{"id":"coa:520832:effect:2:aura:271","name":"Felwrath (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"520839":{"id":"coa-triggered-520839","classId":"bloodmage","dbcSpellId":520839,"name":"Purify Blood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PB","description":"Direct damage will deal additional damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:520839:effect:0:aura:231","name":"Purify Blood (Aura 231)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:520839:proc:0:573273","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573273}}}]},"sourceEffectType":6,"sourceAuraType":231,"miscValue":0,"triggerSpellId":573273},{"kind":"trigger-spell","spellId":573255},{"kind":"apply-aura","aura":{"id":"coa:573255:effect:0:aura:4","name":"Exhaustion (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":573254}],"passive":false,"source":"coa-progression"},"520868":{"id":"coa-triggered-520868","classId":"pyromancer","dbcSpellId":520868,"name":"Cataclysm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CA","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":1604},{"kind":"apply-aura","aura":{"id":"coa:1604:effect:0:aura:33","name":"Dazed (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.5},{"kind":"dispel-mechanic","mechanic":21,"maxCount":1}],"passive":false,"source":"coa-progression"},"520877":{"id":"coa-triggered-520877","classId":"reaper","dbcSpellId":520877,"name":"Painbringer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PA","description":"Deals Shadow Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":570097,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"520882":{"id":"coa-triggered-520882","classId":"runemaster","dbcSpellId":520882,"name":"Unleash Glyphs","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"UG","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"apply-aura","aura":{"id":"coa:520108:effect:0:aura:26","name":"Overloaded Frost Glyph (Aura 26)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520108:effect:1:aura:26","name":"Overloaded Frost Glyph (Aura 26)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}],"passive":false,"source":"coa-progression"},"521214":{"id":"coa-triggered-521214","classId":"chronomancer","dbcSpellId":521214,"name":"Tripping the Rift","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TT","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":706973,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"521230":{"id":"coa-triggered-521230","classId":"primalist","dbcSpellId":521230,"name":"Energize +50 Rage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ER","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"resource","amount":500}],"passive":false,"source":"coa-progression"},"521232":{"id":"coa-triggered-521232","classId":"witch-hunter","dbcSpellId":521232,"name":"Energize +30 Rage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ER","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"resource","amount":300}],"passive":false,"source":"coa-progression"},"524616":{"id":"coa-triggered-524616","classId":"templar","dbcSpellId":524616,"name":"Tyr's Guard Trigger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TS","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":1397742},{"kind":"summon","creatureId":50250,"coefficient":0.08,"durationMs":20000},{"kind":"trigger-spell","spellId":1397742},{"kind":"summon","creatureId":50250,"coefficient":0.08,"durationMs":20000},{"kind":"trigger-spell","spellId":1397742},{"kind":"summon","creatureId":50250,"coefficient":0.08,"durationMs":20000}],"passive":false,"source":"coa-progression"},"524632":{"id":"coa-triggered-524632","classId":"felsworn","dbcSpellId":524632,"name":"Reckoning","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"Increases damage dealt by ${$w1}%. Stacks $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524632:effect:0:aura:87","name":"Reckoning (Aura 87)","disposition":"buff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.02}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:524632:effect:1:aura:79","name":"Reckoning (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524633":{"id":"coa-triggered-524633","classId":"felsworn","dbcSpellId":524633,"name":"Felguard","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FE","description":"Damage taken reduced by ${$w1}%. Stacks $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524633:effect:0:aura:87","name":"Felguard (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524635":{"id":"coa-triggered-524635","classId":"felsworn","dbcSpellId":524635,"name":"Illidari Exhaustion","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IE","description":"Can no longer benefit from Illidari Barrier.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524635:effect:0:aura:4","name":"Illidari Exhaustion (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524659":{"id":"coa-triggered-524659","classId":"ranger","dbcSpellId":524659,"name":"Wild Strike Advantage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WS","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":804329},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524797":{"id":"coa-triggered-524797","classId":"guardian","dbcSpellId":524797,"name":"Motivation: Pulverizing","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MP","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":800288,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:524797:effect:1:aura:108","name":"Motivation: Pulverizing (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524819":{"id":"coa-triggered-524819","classId":"pyromancer","dbcSpellId":524819,"name":"Dragonscales","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DR","description":"Damage taken reduced by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524819:effect:0:aura:87","name":"Dragonscales (Aura 87)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524860":{"id":"coa-triggered-524860","classId":"ranger","dbcSpellId":524860,"name":"Advantage buffer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AB","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":804329},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524912":{"id":"coa-triggered-524912","classId":"knight-of-xoroth","dbcSpellId":524912,"name":"Add 1 Demonfire","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AD","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":500906},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:0:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:1:aura:108","name":"Demonfire (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500906:effect:2:aura:107","name":"Demonfire (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":30}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524931":{"id":"coa-triggered-524931","classId":"guardian","dbcSpellId":524931,"name":"Honorable Demeanor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HD","description":"Strength and Stamina increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:524931:effect:0:aura:137","name":"Honorable Demeanor (Aura 137)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"strength","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:524931:effect:1:aura:137","name":"Honorable Demeanor (Aura 137)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"stamina","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":2,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"524988":{"id":"coa-triggered-524988","classId":"runemaster","dbcSpellId":524988,"name":"Spellwrath","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"Can be consumed by |cFFFFFFFFElemental Burst|r$?s804561[ and |cffffffffPrimordial Pulse|r][] to deal $524987s1 Spellfrost Damage and grant you 1 |cFFFFFFFFInscribed Rune|r.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:524988:effect:0:aura:4","name":"Spellwrath (Aura 4)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"525004":{"id":"coa-triggered-525004","classId":"necromancer","dbcSpellId":525004,"name":"Life Force","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LF","description":"Used to summon undead minions.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525004:effect:0:aura:226","name":"Life Force (Aura 226)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:226"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":226,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525004:effect:1:aura:87","name":"Life Force (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:525004:effect:2:aura:79","name":"Life Force (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"525027":{"id":"coa-triggered-525027","classId":"felsworn","dbcSpellId":525027,"name":"Mark of Chaos","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MO","description":"Increases the next instance of direct spell or ability damage within by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525027:effect:0:aura:108","name":"Mark of Chaos (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"525042":{"id":"coa-triggered-525042","classId":"felsworn","dbcSpellId":525042,"name":"Felstrider","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FE","description":"Energy regeneration increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525042:effect:0:aura:110","name":"Felstrider (Aura 110)","disposition":"buff","durationMs":5000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"resource","resource":"mana","property":"regeneration","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":110,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"525050":{"id":"coa-triggered-525050","classId":"chronomancer","dbcSpellId":525050,"name":"End of Time","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EO","description":"Magic Damage taken is increased by ${$w2}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":503826},{"kind":"damage","coefficient":1.788888888888889,"basePoints":161,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15},{"kind":"trigger-spell","spellId":504725},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"apply-aura","aura":{"id":"coa:525050:effect:1:aura:79","name":"End of Time (Aura 79)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"525066":{"id":"coa-triggered-525066","classId":"cultist","dbcSpellId":525066,"name":"Twisted Seal","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TS","description":"Silenced.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525066:effect:0:aura:27","name":"Twisted Seal (Aura 27)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"525067":{"id":"coa-triggered-525067","classId":"cultist","dbcSpellId":525067,"name":"Crystalline Reflection","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CR","description":"No client tooltip is available.","target":"friendly","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:525067:effect:0:aura:108","name":"Crystalline Reflection (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":28,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"525379":{"id":"coa-triggered-525379","classId":"necromancer","dbcSpellId":525379,"name":"Animate: Zombie","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AZ","description":"Summons a |cffffffffZombie|r to fight for you for $525379d. These minions cause periodic Nature Damage to nearby enemies while active.","target":"hostile","range":{"min":0,"max":50000},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"summon","creatureId":503031,"coefficient":0.08,"durationMs":15000},{"kind":"utility","action":"class-script","effectType":168,"auraType":4,"miscValue":117151,"triggerSpellId":0,"durationMs":15000}],"passive":false,"source":"coa-progression"},"527873":{"id":"coa-triggered-527873","classId":"venomancer","dbcSpellId":527873,"name":"Venoxis Fang","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VF","description":"Blank Placeholder","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:527873:effect:0:aura:108","name":"Venoxis Fang (Aura 108)","disposition":"buff","durationMs":6000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"531129":{"id":"coa-triggered-531129","classId":"necromancer","dbcSpellId":531129,"name":"Overwhelming Forces","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"OF","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":2,"percentage":true},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"531131":{"id":"coa-triggered-531131","classId":"necromancer","dbcSpellId":531131,"name":"Overwhelming Forces","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"OF","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":531129},{"kind":"resource","amount":2,"percentage":true},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"542238":{"id":"coa-triggered-542238","classId":"guardian","dbcSpellId":542238,"name":"Glory","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GL","description":"|cFF66DDFFLevel 10 Passive|r Your |cffffffffRam|r now grants you a stack of |cffffffffGlory|r for $802302d. At 3 stacks, your next |cffffffffRam|r within $802303d deals $802303s1% increased damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:542238:effect:0:aura:107","name":"Glory (Aura 107)","disposition":"buff","durationMs":11000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:542238:effect:1:aura:108","name":"Glory (Aura 108)","disposition":"buff","durationMs":11000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"542265":{"id":"coa-triggered-542265","classId":"guardian","dbcSpellId":542265,"name":"Glory","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GL","description":"|cFF66DDFFLevel 10 Passive|r Your |cffffffffRam|r now grants you a stack of |cffffffffGlory|r for $802302d. At 3 stacks, your next |cffffffffRam|r within $802303d deals $802303s1% increased damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:542265:effect:0:aura:108","name":"Glory (Aura 108)","disposition":"buff","durationMs":11000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":13,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"555724":{"id":"coa-triggered-555724","classId":"primalist","dbcSpellId":555724,"name":"Earthmother's Precision","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ES","description":"Chance to hit this target with spells increased by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:555724:effect:0:aura:186","name":"Earthmother's Precision (Aura 186)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":186,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560233":{"id":"coa-triggered-560233","classId":"runemaster","dbcSpellId":560233,"name":"Palm Sigil: Earth","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Casting speed reduced by ${$w1}%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":520417,"withValue":-30},{"kind":"apply-aura","aura":{"id":"coa:520417:effect:0:aura:216","name":"CoA General Spell Haste Debuff (Aura 216)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520417},{"kind":"apply-aura","aura":{"id":"coa:520417:effect:0:aura:216","name":"CoA General Spell Haste Debuff (Aura 216)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"dispel","mode":"steal","relationship":"hostile","categories":["magic"],"maxCount":2}],"passive":false,"source":"coa-progression"},"560241":{"id":"coa-triggered-560241","classId":"runemaster","dbcSpellId":560241,"name":"Convergence","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"Deals $s1 damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.7268518518518519,"basePoints":348,"dieSides":51,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":57},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":83245,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"560347":{"id":"coa-triggered-560347","classId":"sun-cleric","dbcSpellId":560347,"name":"Circle of Valor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"Diverting ${$w1}% of damage taken to the Sun Cleric. Healing for $520648s1 every $520647t1 sec.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560347:effect:0:aura:81","name":"Circle of Valor (Aura 81)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","redirectDamagePercent":0.3,"dispelCategory":"magic"},"recipient":"caster","scope":"party","sourceEffectType":35,"sourceAuraType":81,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560361":{"id":"coa-triggered-560361","classId":"reaper","dbcSpellId":560361,"name":"Doomrend","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DO","description":"Absorbs the next ${$w1} healing done to this target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560361:effect:0:aura:301","name":"Doomrend (Aura 301)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":301,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560421":{"id":"coa-triggered-560421","classId":"reaper","dbcSpellId":560421,"name":"Murder","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MU","description":"Chance to hit reduced by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560421:effect:0:aura:54","name":"Murder (Aura 54)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"hit","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":54,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560460":{"id":"coa-triggered-560460","classId":"barbarian","dbcSpellId":560460,"name":"Torpedo","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TO","description":"Movement speed increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560460:effect:0:aura:31","name":"Torpedo (Aura 31)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-progression"},"560480":{"id":"coa-triggered-560480","classId":"bloodmage","dbcSpellId":560480,"name":"Eternal - Level 50 Passive","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EL","description":"|cFF66DDFFLevel 50 Passive|r","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560480:effect:0:aura:107","name":"Eternal - Level 50 Passive (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560496":{"id":"coa-triggered-560496","classId":"ranger","dbcSpellId":560496,"name":"Snatch","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SN","description":"Reduces the cooldown of Hail of Arrows.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"dispel-mechanic","mechanic":3,"maxCount":1}],"passive":false,"source":"coa-progression"},"560514":{"id":"coa-triggered-560514","classId":"guardian","dbcSpellId":560514,"name":"Tempo","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TE","description":"Critical strike chance increased by $s1%, stacking $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560514:effect:0:aura:290","name":"Tempo (Aura 290)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560521":{"id":"coa-triggered-560521","classId":"barbarian","dbcSpellId":560521,"name":"Born in Blood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BI","description":"Battle fuels your vitality, restoring $o1 health and $o2 Energy over $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560521:effect:0:aura:8","name":"Born in Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":3,"triggerSpellId":0},{"kind":"hot","coefficient":0.13333333333333333,"basePoints":5,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":3,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:560521:effect:1:aura:24","name":"Born in Blood (Aura 24)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":3,"triggerSpellId":0},{"kind":"resource","amount":9},{"kind":"apply-aura","aura":{"id":"coa:560521:effect:2:aura:79","name":"Born in Blood (Aura 79)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560554":{"id":"coa-triggered-560554","classId":"barbarian","dbcSpellId":560554,"name":"Blood Loss","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BL","description":"Removes bleed effects","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"dispel-mechanic","mechanic":15,"maxCount":10}],"passive":false,"source":"coa-progression"},"560582":{"id":"coa-triggered-560582","classId":"runemaster","dbcSpellId":560582,"name":"Replenishment","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"Restores $504332s1% maximum mana every 5 sec to allies within $a1 yds for $d.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560582:effect:0:aura:24","name":"Replenishment (Aura 24)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":3}],"passive":false,"source":"coa-progression"},"560589":{"id":"coa-triggered-560589","classId":"bloodmage","dbcSpellId":560589,"name":"Enraging Wound","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EW","description":"Deals $s1 Shadow Damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.3484848484848485,"basePoints":46,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":29},{"kind":"heal","coefficient":0.3484848484848485,"basePoints":46,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":29}],"passive":false,"source":"coa-progression"},"560607":{"id":"coa-triggered-560607","classId":"necromancer","dbcSpellId":560607,"name":"Vampiric Aura","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VA","description":"Undead minions heal you for ${$w2}% of the damage they deal.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:560607:effect:0:aura:4","name":"Vampiric Aura (Aura 4)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:560607:effect:1:aura:354","name":"Vampiric Aura (Aura 354)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":190,"sourceAuraType":354,"miscValue":0,"triggerSpellId":561095}],"passive":false,"source":"coa-progression"},"560624":{"id":"coa-triggered-560624","classId":"necromancer","dbcSpellId":560624,"name":"Frigid","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FR","description":"Movement speed reduced by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560624:effect:0:aura:33","name":"Frigid (Aura 33)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":2000,"magnitude":0.3}],"passive":false,"source":"coa-progression"},"560790":{"id":"coa-triggered-560790","classId":"tinker","dbcSpellId":560790,"name":"Resourceful Tech","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RT","description":"Armor increased by ${$w1}%.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560790:effect:0:aura:101","name":"Resourceful Tech (Aura 101)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560916":{"id":"coa-triggered-560916","classId":"barbarian","dbcSpellId":560916,"name":"Dauntless","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DA","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":2},{"kind":"dispel-mechanic","mechanic":11,"maxCount":1}],"passive":false,"source":"coa-progression"},"560943":{"id":"coa-triggered-560943","classId":"cultist","dbcSpellId":560943,"name":"Mind Rot","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MR","description":"Chance to be struck by spells increased by ${$s1}%. Resource costs increased by $560714s1%. Dispelling this effect increases the Cultist's critical strike chance by $560947s1% for $560947d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:560943:effect:0:aura:186","name":"Mind Rot (Aura 186)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"spell-hit","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":186,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"560962":{"id":"coa-triggered-560962","classId":"ranger","dbcSpellId":560962,"name":"Wild Strike (Off Hand)","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WS","description":"Deals $m1% Weapon Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression"},"560970":{"id":"coa-triggered-560970","classId":"primalist","dbcSpellId":560970,"name":"Primal Strike","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Generates $/10;s1 Rage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"resource","amount":30}],"passive":false,"source":"coa-progression"},"561005":{"id":"coa-triggered-561005","classId":"ranger","dbcSpellId":561005,"name":"Dream Flower","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DF","description":"When an ally runs over the flower, they consume it to heal for $561007s2% maximum health and gain $561007s1% increased movement speed for $561007d.","target":"hostile","range":{"min":0,"max":50000},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"summon","creatureId":454239,"coefficient":0.08,"durationMs":10000},{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":804715,"triggerSpellId":0,"durationMs":10000},{"kind":"trigger-spell","spellId":707539},{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707539:effect:0:aura:4","name":"Highlander (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"561020":{"id":"coa-triggered-561020","classId":"barbarian","dbcSpellId":561020,"name":"Berserker Axe","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BA","description":"Armor reduced by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"561136":{"id":"coa-triggered-561136","classId":"witch-doctor","dbcSpellId":561136,"name":"Spirit","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"Regenerates ${$m2+$ppl2} health and mana, repeating every $T2 sec$?s707335[and increases your movement speed by $561071s1%][] for $d, stacking $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561136:effect:0:aura:24","name":"Spirit (Aura 24)","disposition":"buff","durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":6},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:1:aura:8","name":"Spirit (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":-2,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0.10000000149011612,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":60,"ticks":3,"intervalMs":4000},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:2:aura:23","name":"Spirit (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:561136:proc:2:561298","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":561298}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":561298}],"passive":false,"source":"coa-progression"},"561298":{"id":"coa-triggered-561298","classId":"witch-doctor","dbcSpellId":561298,"name":"Spirit Visual Stack Checker","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SV","description":"Will check for amount of stacks and do some crazy visual stuff to make it all work","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561298:effect:0:aura:4","name":"Spirit Visual Stack Checker (Aura 4)","disposition":"buff","durationMs":500,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"561303":{"id":"coa-triggered-561303","classId":"bloodmage","dbcSpellId":561303,"name":"Cursed Ground","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CG","description":"Increases the damage of |cFFFFFFFFSanguine Rupture|r by $s1% and causes it to curse the ground, dealing Shadow Damage to enemies inside equal to 100% of the damage dealt over 4 sec.","target":"hostile","range":{"min":0,"max":50000},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:561303:effect:0:aura:3","name":"Cursed Ground (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1109677386540238,"basePoints":87,"dieSides":1,"pointsPerLevel":1.0199999809265137,"bonusPowerCoefficient":0,"sourceLevel":16,"ticks":4,"intervalMs":500,"tag":"spell-561303"}],"passive":false,"source":"coa-progression"},"561304":{"id":"coa-triggered-561304","classId":"bloodmage","dbcSpellId":561304,"name":"Cursed Ground","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CG","description":"Increases the damage of |cFFFFFFFFSanguine Rupture|r by $s1% and causes it to curse the ground when you strike at least 5 enemies, dealing $561303o1 Shadow Damage over $561303d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":561303},{"kind":"apply-aura","aura":{"id":"coa:561303:effect:0:aura:3","name":"Cursed Ground (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":1.1109677386540238,"basePoints":87,"dieSides":1,"pointsPerLevel":1.0199999809265137,"bonusPowerCoefficient":0,"sourceLevel":16,"ticks":4,"intervalMs":500,"tag":"spell-561303"}],"passive":false,"source":"coa-progression"},"562029":{"id":"coa-triggered-562029","classId":"knight-of-xoroth","dbcSpellId":562029,"name":"Defiance Pet Aura","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DP","description":"Increased health and damage based on the Knight of Xoroth's Strength. $h% chance to launch a Firebolt on hit.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:562029:effect:0:aura:13","name":"Defiance Pet Aura (Aura 13)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","school":"physical","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":13,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:562029:effect:1:aura:34","name":"Defiance Pet Aura (Aura 34)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":34,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"562323":{"id":"coa-triggered-562323","classId":"barbarian","dbcSpellId":562323,"name":"Face Smasher","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FS","description":"Abilities that consume |cffffffffCarnage|r now reduce the cooldown of |cffffffffBarbaric Rage|r and |cffffffffAvatar of War|r by $/1000;s1 and |cfffffffffSpear of Sen'jin|r and |cffffffffMaximum Carnage|r by $/1000;s2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":801768,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":801549,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"567560":{"id":"coa-triggered-567560","classId":"stormbringer","dbcSpellId":567560,"name":"Conduction","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"Deals ${$cond($gt($spfr, $spn), $567560m1*$+$spfr*.585, $567560m1*$+$spn*.35)} Frost Damage, increased by $567573s1% for each stack of |cff4fd1c5Conductive|r consumed.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":2.6933333333333334,"basePoints":202,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"570097":{"id":"coa-triggered-570097","classId":"reaper","dbcSpellId":570097,"name":"Masochistic Rage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MR","description":"Damage dealt increased by $s1%.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":420,"dieSides":1,"pointsPerLevel":8,"bonusPowerCoefficient":0,"sourceLevel":30},{"kind":"apply-aura","aura":{"id":"coa:570097:effect:1:aura:79","name":"Masochistic Rage (Aura 79)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"570126":{"id":"coa-triggered-570126","classId":"witch-doctor","dbcSpellId":570126,"name":"Soothing Juju","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SJ","description":"Soothing Juju costs ${$w1}% more Mana.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570126:effect:0:aura:108","name":"Soothing Juju (Aura 108)","disposition":"buff","durationMs":3000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.11}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"570131":{"id":"coa-triggered-570131","classId":"necromancer","dbcSpellId":570131,"name":"Crypt Plague","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CP","description":"Deals ${$m1+0+$SP*0.06} Plague Damage every $t sec for $d, stacking $u times. Additional applications do not refresh duration.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570131:effect:0:aura:3","name":"Crypt Plague (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0.32600000500679016,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":5,"intervalMs":2000,"tag":"spell-570131"}],"passive":false,"source":"coa-progression"},"570132":{"id":"coa-triggered-570132","classId":"necromancer","dbcSpellId":570132,"name":"Add 1 Crypt Plague","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AC","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":570131},{"kind":"apply-aura","aura":{"id":"coa:570131:effect:0:aura:3","name":"Crypt Plague (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":10000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"disease"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0.32600000500679016,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":5,"intervalMs":2000,"tag":"spell-570131"},{"kind":"trigger-spell","spellId":802913},{"kind":"apply-aura","aura":{"id":"coa:802913:effect:0:aura:271","name":"Plagued (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":301337}],"passive":false,"source":"coa-progression"},"570339":{"id":"coa-triggered-570339","classId":"stormbringer","dbcSpellId":570339,"name":"Arm of Thorim","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AO","description":"Stunned.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:570339:effect:0:aura:12","name":"Arm of Thorim (Aura 12)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"570724":{"id":"coa-triggered-570724","classId":"barbarian","dbcSpellId":570724,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"572053":{"id":"coa-triggered-572053","classId":"tinker","dbcSpellId":572053,"name":"Bomb Toss","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BT","description":"Armor reduced by ${$w1}%.","target":"hostile","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572053:effect:0:aura:101","name":"Bomb Toss (Aura 101)","disposition":"debuff","durationMs":15000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"572058":{"id":"coa-triggered-572058","classId":"venomancer","dbcSpellId":572058,"name":"Venomtip Poison","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VP","description":"Attack speed reduced by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572058:effect:0:aura:192","name":"Venomtip Poison (Aura 192)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"572065":{"id":"coa-triggered-572065","classId":"cultist","dbcSpellId":572065,"name":"Split Mind","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":164,"auraType":4,"miscValue":0,"triggerSpellId":805801,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:572065:effect:1:aura:108","name":"Split Mind (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"572132":{"id":"coa-triggered-572132","classId":"felsworn","dbcSpellId":572132,"name":"Oblivion","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"OB","description":"Obliterate an enemy with both weapons, dealing Weapon Damage plus ${$m1+0+$AP*0.35} Shadowflame Damage, absorbing ${$m2+0+$AGI*0.45} healing received by the target stacking $u times. Only usable on enemies below 35% health. |cffffffff(Combo)|r After using |cffffffffDoomscar|r: Your next |cffffffffOblivion|r is usable regardless of target's health. |cffffffff(Combo)|r After using |cffffffffAnnihilan Strike|r: Your next |cffffffffOblivion|r triggers no cooldown.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.8645833333333334,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"bonusPowerCoefficient":0,"sourceLevel":17},{"kind":"apply-aura","aura":{"id":"coa:572132:effect:1:aura:4","name":"Oblivion (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"572134":{"id":"coa-triggered-572134","classId":"runemaster","dbcSpellId":572134,"name":"Speed Rune","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":572136},{"kind":"apply-aura","aura":{"id":"coa:572136:effect:0:aura:23","name":"Speed Rune (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:572136:proc:0:802725","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802725}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":802725},{"kind":"apply-aura","aura":{"id":"coa:572136:effect:1:aura:23","name":"Speed Rune (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:572136:proc:1:706736","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706736}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706736},{"kind":"trigger-spell","spellId":572135},{"kind":"apply-aura","aura":{"id":"coa:572135:effect:0:aura:107","name":"Speed Rune (Aura 107)","disposition":"buff","durationMs":2000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"572135":{"id":"coa-triggered-572135","classId":"runemaster","dbcSpellId":572135,"name":"Speed Rune","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"radius":4,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572135:effect:0:aura:107","name":"Speed Rune (Aura 107)","disposition":"buff","durationMs":2000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"572136":{"id":"coa-triggered-572136","classId":"runemaster","dbcSpellId":572136,"name":"Speed Rune","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"Movement speed increased by ${$w1}%.","target":"hostile","range":{"min":0,"max":100},"radius":4,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572136:effect:0:aura:23","name":"Speed Rune (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:572136:proc:0:802725","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":802725}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":802725},{"kind":"apply-aura","aura":{"id":"coa:572136:effect:1:aura:23","name":"Speed Rune (Aura 23)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:572136:proc:1:706736","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706736}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706736}],"passive":false,"source":"coa-progression"},"572315":{"id":"coa-triggered-572315","classId":"starcaller","dbcSpellId":572315,"name":"Consume Scattered Stars","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"Deals ${$804995m1+$804995ppl1} additional Arcane Damage and regenerates $804994s2% maximum mana for each |cffffffffScattered Star|R consumed.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"trigger-spell","spellId":804716},{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}],"passive":false,"source":"coa-progression"},"572407":{"id":"coa-triggered-572407","classId":"venomancer","dbcSpellId":572407,"name":"Myotoxin","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MY","description":"Inject an enemy with myotoxins, removing $s1 enrage effect, repeating every $t1 sec for $d.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["enrage"],"maxCount":1}],"passive":false,"source":"coa-progression"},"572611":{"id":"coa-triggered-572611","classId":"guardian","dbcSpellId":572611,"name":"Sound of War","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":572612},{"kind":"damage","coefficient":0.9466666666666667,"basePoints":71,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"572612":{"id":"coa-triggered-572612","classId":"guardian","dbcSpellId":572612,"name":"Sound of War","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.9466666666666667,"basePoints":71,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"572782":{"id":"coa-triggered-572782","classId":"felsworn","dbcSpellId":572782,"name":"Chaotic","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CH","description":"Your damage dealt is increased by ${$w1}%","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:572782:effect:0:aura:79","name":"Chaotic (Aura 79)","disposition":"buff","durationMs":8000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"572806":{"id":"coa-triggered-572806","classId":"pyromancer","dbcSpellId":572806,"name":"Ember","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EM","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"trigger-spell","spellId":707480},{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680367},{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"572851":{"id":"coa-triggered-572851","classId":"chronomancer","dbcSpellId":572851,"name":"Mind Melt","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Melt reality, dealing ${($d*1000/$T1)*($m1+0+$SP*0.12)} Shadowfrost Damage to an enemy and increasing their periodic damage taken by 1%, stacking 20 times, over $d. While active, periodic damage dealt to the target is replicated for 40% of the value to all enemies within 5 yds of them.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:572851:effect:0:aura:214","name":"Mind Melt (Aura 214)","disposition":"debuff","durationMs":null,"maxStacks":5,"stackBehavior":"add"},"sourceEffectType":6,"sourceAuraType":214,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:572851:effect:1:aura:137","name":"Mind Melt (Aura 137)","disposition":"debuff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":-0.03}]},"sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"573050":{"id":"coa-triggered-573050","classId":"reaper","dbcSpellId":573050,"name":"Soul Harvest","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SH","description":"Blasts your target for ${$m1+0+$AP*0.05+$sps*0.1} Shadow Damage, healing for 100% of the damage dealt.","target":"hostile","range":{"min":0,"max":5},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":2},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":2}],"passive":false,"source":"coa-progression"},"573131":{"id":"coa-triggered-573131","classId":"necromancer","dbcSpellId":573131,"name":"Rotting Flesh","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RF","description":"Damage dealt increased by $s1% for $d, stacking $u times.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573131:effect:0:aura:79","name":"Rotting Flesh (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:573131:effect:1:aura:4","name":"Rotting Flesh (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":10,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"573215":{"id":"coa-triggered-573215","classId":"primalist","dbcSpellId":573215,"name":"Stonefaced","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ST","description":"Increases movement speed by $s1% and melee haste by $s2% for $d, stacking $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":806068},{"kind":"apply-aura","aura":{"id":"coa:806068:effect:0:aura:31","name":"Earth's Rage (Aura 31)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806068:effect:1:aura:138","name":"Earth's Rage (Aura 138)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680472},{"kind":"apply-aura","aura":{"id":"coa:680472:effect:0:aura:47","name":"Call of the Mountain (Aura 47)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680472:effect:1:aura:87","name":"Call of the Mountain (Aura 87)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680472,"withValue":100},{"kind":"apply-aura","aura":{"id":"coa:680472:effect:0:aura:47","name":"Call of the Mountain (Aura 47)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680472:effect:1:aura:87","name":"Call of the Mountain (Aura 87)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"573255":{"id":"coa-triggered-573255","classId":"bloodmage","dbcSpellId":573255,"name":"Exhaustion","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EX","description":"Cannot benefit from Surge of Might, Clanlord's Totem, Command Aura, General's Presence, Neptulon's Wrath, Purify Blood or Celestial Resonance.","target":"friendly","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:573255:effect:0:aura:4","name":"Exhaustion (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":573254}],"passive":false,"source":"coa-progression"},"573273":{"id":"coa-triggered-573273","classId":"bloodmage","dbcSpellId":573273,"name":"Purify Blood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PB","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"573311":{"id":"coa-triggered-573311","classId":"cultist","dbcSpellId":573311,"name":"Eldritch Command","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EC","description":"Unleashing an Energy blast.","target":"hostile","range":{"min":0,"max":40},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.3793103448275862,"basePoints":12,"dieSides":1,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":14}],"passive":false,"source":"coa-progression"},"573312":{"id":"coa-triggered-573312","classId":"cultist","dbcSpellId":573312,"name":"Eldritch Command","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EC","description":"Unleashing an Energy blast.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":573311},{"kind":"damage","coefficient":0.3793103448275862,"basePoints":12,"dieSides":1,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":14}],"passive":false,"source":"coa-progression"},"577977":{"id":"coa-triggered-577977","classId":"barbarian","dbcSpellId":577977,"name":"Savage Cadence","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SC","description":"Extends the duration of Unbridled Rage by $/1000;s1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":801761,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"578112":{"id":"coa-triggered-578112","classId":"witch-doctor","dbcSpellId":578112,"name":"WD Channel Marker (Self)","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WC","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:578112:effect:0:aura:353","name":"WD Channel Marker (Self) (Aura 353)","disposition":"buff","durationMs":2500,"maxStacks":50,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":353,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"578277":{"id":"coa-triggered-578277","classId":"barbarian","dbcSpellId":578277,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"578278":{"id":"coa-triggered-578278","classId":"barbarian","dbcSpellId":578278,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"578279":{"id":"coa-triggered-578279","classId":"barbarian","dbcSpellId":578279,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"578280":{"id":"coa-triggered-578280","classId":"barbarian","dbcSpellId":578280,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"578281":{"id":"coa-triggered-578281","classId":"barbarian","dbcSpellId":578281,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"578282":{"id":"coa-triggered-578282","classId":"barbarian","dbcSpellId":578282,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"578283":{"id":"coa-triggered-578283","classId":"barbarian","dbcSpellId":578283,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"578284":{"id":"coa-triggered-578284","classId":"barbarian","dbcSpellId":578284,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"578285":{"id":"coa-triggered-578285","classId":"barbarian","dbcSpellId":578285,"name":"Smash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SM","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":1.5}],"passive":false,"source":"coa-progression"},"582526":{"id":"coa-triggered-582526","classId":"reaper","dbcSpellId":582526,"name":"Spirit Realm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"Healing taken increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:582526:effect:0:aura:319","name":"Spirit Realm (Aura 319)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":319,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"582766":{"id":"coa-triggered-582766","classId":"bloodmage","dbcSpellId":582766,"name":"Fleshbending","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FL","description":"Critical strike chance increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:582766:effect:0:aura:290","name":"Fleshbending (Aura 290)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"582824":{"id":"coa-triggered-582824","classId":"ranger","dbcSpellId":582824,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582824:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"582825":{"id":"coa-triggered-582825","classId":"ranger","dbcSpellId":582825,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582825:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"582826":{"id":"coa-triggered-582826","classId":"ranger","dbcSpellId":582826,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582826:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"582827":{"id":"coa-triggered-582827","classId":"ranger","dbcSpellId":582827,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582827:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"582828":{"id":"coa-triggered-582828","classId":"ranger","dbcSpellId":582828,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582828:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"582829":{"id":"coa-triggered-582829","classId":"ranger","dbcSpellId":582829,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582829:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"582830":{"id":"coa-triggered-582830","classId":"ranger","dbcSpellId":582830,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:582830:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"583275":{"id":"coa-triggered-583275","classId":"ranger","dbcSpellId":583275,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"592009":{"id":"coa-triggered-592009","classId":"chronomancer","dbcSpellId":592009,"name":"Ahead of the Game","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AO","description":"At 10 stacks, you gain spell power for $592010d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:592009:effect:0:aura:4","name":"Ahead of the Game (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":10,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"630869":{"id":"coa-triggered-630869","classId":"venomancer","dbcSpellId":630869,"name":"Rejuvenating Venom","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RV","description":"Heal a random ally within $630869a1 yds of your target for ${$630869m1*$+$bh*0.092} over $630869d.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:630869:effect:0:aura:8","name":"Rejuvenating Venom (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.7988505747126436,"basePoints":67,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14,"ticks":3,"intervalMs":2000}],"passive":false,"source":"coa-progression"},"652375":{"id":"coa-triggered-652375","classId":"bloodmage","dbcSpellId":652375,"name":"Hypovolemic Shock","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["enrage"],"maxCount":1}],"passive":false,"source":"coa-progression"},"653210":{"id":"coa-triggered-653210","classId":"runemaster","dbcSpellId":653210,"name":"Weapon Engraving: Fire","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WE","description":"Explodes after $d, dealing ${$m1+0+$AP*.075+$spfi*.2} Fire Damage per stack. Additional applications do not refresh the duration.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:653210:effect:0:aura:3","name":"Weapon Engraving: Fire (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":3000,"maxStacks":100,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3517647070043227,"basePoints":16,"dieSides":1,"pointsPerLevel":0.9700000286102295,"bonusPowerCoefficient":0,"sourceLevel":2,"ticks":1,"intervalMs":3000,"tag":"spell-653210"},{"kind":"apply-aura","aura":{"id":"coa:653210:effect:1:aura:23","name":"Weapon Engraving: Fire (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":100,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:653210:proc:1:653227","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":653227}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":653227}],"passive":false,"source":"coa-progression"},"653217":{"id":"coa-triggered-653217","classId":"runemaster","dbcSpellId":653217,"name":"Weapon Engraving: Ice","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WE","description":"Deals ${$m3+0+$SP*.22+$AP*.08} Frost Damage and slows the target's movement speed by $653231s1% for $d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.21587301814366902,"basePoints":4,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":6}],"passive":false,"source":"coa-progression"},"653227":{"id":"coa-triggered-653227","classId":"runemaster","dbcSpellId":653227,"name":"Firebrand","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FI","description":"Explodes after $d, dealing ${$m1+0+$AP*.29+$spfi*.71} Fire Damage per stack. Additional applications do not refresh the duration.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"653254":{"id":"coa-triggered-653254","classId":"tinker","dbcSpellId":653254,"name":"Concussion","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"Your target is unable to critically strike and their total primary attributes are reduced by $s2% for $d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:653254:effect:0:aura:290","name":"Concussion (Aura 290)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:653254:effect:1:aura:137","name":"Concussion (Aura 137)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":-0.05}]},"sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"653261":{"id":"coa-triggered-653261","classId":"runemaster","dbcSpellId":653261,"name":"Weapon Engraving: Water","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WE","description":"Drains ${$m3+0} mana from your target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.13636363636363635,"basePoints":13,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18},{"kind":"trigger-spell","spellId":560582},{"kind":"apply-aura","aura":{"id":"coa:560582:effect:0:aura:24","name":"Replenishment (Aura 24)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":3},{"kind":"resource-drain","amount":31,"burn":false}],"passive":false,"source":"coa-progression"},"653263":{"id":"coa-triggered-653263","classId":"runemaster","dbcSpellId":653263,"name":"Weapon Engraving: Arcane","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WE","description":"Deals ${$m1+0+$SP*.3+$AP*0.05} Arcane Damage to an enemy and reduces their healing received by $s2% for $d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.6888888782925076,"basePoints":53,"dieSides":3,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":30},{"kind":"apply-aura","aura":{"id":"coa:653263:effect:1:aura:118","name":"Weapon Engraving: Arcane (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"653272":{"id":"coa-triggered-653272","classId":"runemaster","dbcSpellId":653272,"name":"Weapon Engraving: Earth","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WE","description":"Deals ${$m1*$+$AP*0.0875+$spn*0.115} Nature Damage to up to $i enemies within $a1 yds of your target.","target":"hostile","range":{"min":0,"max":50000},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.14942528735632185,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14}],"passive":false,"source":"coa-progression"},"680217":{"id":"coa-triggered-680217","classId":"knight-of-xoroth","dbcSpellId":680217,"name":"Hellbreaker","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HE","description":"Immune to roots and snares.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680217:effect:0:aura:77","name":"Hellbreaker (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680217:effect:1:aura:77","name":"Hellbreaker (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","controlImmunities":["root"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":7,"triggerSpellId":0},{"kind":"dispel-mechanic","mechanic":11,"maxCount":1}],"passive":false,"source":"coa-progression"},"680227":{"id":"coa-triggered-680227","classId":"witch-hunter","dbcSpellId":680227,"name":"Knight of the Flame","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"KO","description":"Increases the critical strike chance of your next |cFFFFFFFFSearing Blade|r by $s1% and its critical damage by $s2% for $d, stacking $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680227:effect:0:aura:107","name":"Knight of the Flame (Aura 107)","disposition":"buff","durationMs":10000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680227:effect:1:aura:108","name":"Knight of the Flame (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680244":{"id":"coa-triggered-680244","classId":"witch-hunter","dbcSpellId":680244,"name":"Quickdraw","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"QU","description":"Your next |cFFFFFFFFDarkslayer|r within $d is instant cast$?s503669[ and guaranteed to critically strike][].","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680244:effect:0:aura:4","name":"Quickdraw (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680244:effect:1:aura:107","name":"Quickdraw (Aura 107)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680367":{"id":"coa-triggered-680367","classId":"pyromancer","dbcSpellId":680367,"name":"Lifebinder's Fire","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LS","description":"Reduces the cooldown of Lifebinder's Fire by $/1000;s1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680367:effect:0:aura:118","name":"Lifebinder's Fire (Aura 118)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":800796,"triggerSpellId":0,"durationMs":8000}],"passive":false,"source":"coa-progression"},"680370":{"id":"coa-triggered-680370","classId":"pyromancer","dbcSpellId":680370,"name":"Ignis Ultimatus","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IU","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"radius":50,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":804,"dieSides":15,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60}],"passive":false,"source":"coa-progression"},"680371":{"id":"coa-triggered-680371","classId":"pyromancer","dbcSpellId":680371,"name":"Ignis Ultimatus","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IU","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"radius":50,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1084,"dieSides":15,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60}],"passive":false,"source":"coa-progression"},"680372":{"id":"coa-triggered-680372","classId":"pyromancer","dbcSpellId":680372,"name":"Ignis Ultimatus","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IU","description":"No client tooltip is available.","target":"any","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":680370},{"kind":"heal","coefficient":4,"basePoints":804,"dieSides":15,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60},{"kind":"trigger-spell","spellId":680371},{"kind":"damage","coefficient":4,"basePoints":1084,"dieSides":15,"pointsPerLevel":5,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60},{"kind":"utility","action":"class-script","effectType":164,"auraType":0,"miscValue":0,"triggerSpellId":804301,"durationMs":0}],"passive":false,"source":"coa-progression"},"680441":{"id":"coa-triggered-680441","classId":"primalist","dbcSpellId":680441,"name":"Earthshaping","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EA","description":"Empowers some of your abilities and increases your spell haste by $680441s1% for $680441d, stacking $680441u times. Additional applications do not refresh duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680441:effect:0:aura:216","name":"Earthshaping (Aura 216)","disposition":"buff","durationMs":20000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680441:effect:1:aura:108","name":"Earthshaping (Aura 108)","disposition":"buff","durationMs":20000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680472":{"id":"coa-triggered-680472","classId":"primalist","dbcSpellId":680472,"name":"Call of the Mountain","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"Increases your parry chance by $s1% and reduces damage taken by $s2%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680472:effect:0:aura:47","name":"Call of the Mountain (Aura 47)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680472:effect:1:aura:87","name":"Call of the Mountain (Aura 87)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680701":{"id":"coa-triggered-680701","classId":"sun-cleric","dbcSpellId":680701,"name":"Revelation","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"No client tooltip is available.","target":"friendly","range":{"min":0,"max":45},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.1,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"apply-aura","aura":{"id":"coa:680701:effect:1:aura:31","name":"Revelation (Aura 31)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.5}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680702":{"id":"coa-triggered-680702","classId":"sun-cleric","dbcSpellId":680702,"name":"Revelation","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"Rooted.","target":"hostile","range":{"min":0,"max":45},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680702:effect:0:aura:26","name":"Revelation (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680727":{"id":"coa-triggered-680727","classId":"knight-of-xoroth","dbcSpellId":680727,"name":"Forgehammer Effect","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FE","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":803889,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"680790":{"id":"coa-triggered-680790","classId":"starcaller","dbcSpellId":680790,"name":"Nightborne Armements","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"NA","description":"Damage taken reduced by ${$w1}%.","target":"self","range":{"min":0,"max":0},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680790:effect:0:aura:87","name":"Nightborne Armements (Aura 87)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680842":{"id":"coa-triggered-680842","classId":"pyromancer","dbcSpellId":680842,"name":"Circle of Fire","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"Incapacitated.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":3.84111111164093,"basePoints":172,"dieSides":1,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"apply-aura","aura":{"id":"coa:680842:effect:1:aura:5","name":"Circle of Fire (Aura 5)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"confuse"},"sourceEffectType":6,"sourceAuraType":5,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":681265,"withValue":50},{"kind":"apply-aura","aura":{"id":"coa:681265:effect:0:aura:4","name":"Circle of Fire (Aura 4)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680843":{"id":"coa-triggered-680843","classId":"chronomancer","dbcSpellId":680843,"name":"Recovering","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"Healing received increased by ${$w1}%.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:680843:effect:0:aura:118","name":"Recovering (Aura 118)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.06}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"680886":{"id":"coa-triggered-680886","classId":"sun-cleric","dbcSpellId":680886,"name":"Guidance: Touch of Light","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GT","description":"Heals your |cFFFFFFFFGuided|r ally for ${$m1+$PPL1+$SP*0.85} and an additional ${$m2+$PPL2+$SP*0.12} every $680887t1 over $680887d. Only usable on allies with |cffffffffSolar Guidance|r active.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.4399999976158142,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.4399999976158142,"sourceLevel":15}],"passive":false,"source":"coa-progression"},"680887":{"id":"coa-triggered-680887","classId":"sun-cleric","dbcSpellId":680887,"name":"Guidance: Touch of Light","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GT","description":"Heals your |cFFFFFFFFGuided|r ally for ${$m1+$PPL1+$SP*0.85} and an additional ${$m2+$PPL2+$SP*0.12} every $680887t1 over $680887d. Only usable on allies with |cffffffffSolar Guidance|r active.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:680887:effect:0:aura:8","name":"Guidance: Touch of Light (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15,"ticks":42,"intervalMs":500}],"passive":false,"source":"coa-progression"},"680893":{"id":"coa-triggered-680893","classId":"sun-cleric","dbcSpellId":680893,"name":"Blessing of Absolution","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":804252,"withValue":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}],"passive":false,"source":"coa-progression"},"681072":{"id":"coa-triggered-681072","classId":"primalist","dbcSpellId":681072,"name":"Seismic Tremor +2","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ST","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":680441},{"kind":"apply-aura","aura":{"id":"coa:680441:effect:0:aura:216","name":"Earthshaping (Aura 216)","disposition":"buff","durationMs":20000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680441:effect:1:aura:108","name":"Earthshaping (Aura 108)","disposition":"buff","durationMs":20000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"681170":{"id":"coa-triggered-681170","classId":"templar","dbcSpellId":681170,"name":"Recently Parried or Dodged","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RP","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681170:effect:0:aura:4","name":"Recently Parried or Dodged (Aura 4)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"681241":{"id":"coa-triggered-681241","classId":"runemaster","dbcSpellId":681241,"name":"Firebrand Conditioned Proc","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FC","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":653210},{"kind":"apply-aura","aura":{"id":"coa:653210:effect:0:aura:3","name":"Weapon Engraving: Fire (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":3000,"maxStacks":100,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.3517647070043227,"basePoints":16,"dieSides":1,"pointsPerLevel":0.9700000286102295,"bonusPowerCoefficient":0,"sourceLevel":2,"ticks":1,"intervalMs":3000,"tag":"spell-653210"},{"kind":"apply-aura","aura":{"id":"coa:653210:effect:1:aura:23","name":"Weapon Engraving: Fire (Aura 23)","disposition":"debuff","durationMs":3000,"maxStacks":100,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:653210:proc:1:653227","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":653227}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":653227}],"passive":false,"source":"coa-progression"},"681265":{"id":"coa-triggered-681265","classId":"pyromancer","dbcSpellId":681265,"name":"Circle of Fire","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"Cannot be affected by Circle of Fire again.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:681265:effect:0:aura:4","name":"Circle of Fire (Aura 4)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"681317":{"id":"coa-triggered-681317","classId":"sun-cleric","dbcSpellId":681317,"name":"Gavel of Grace","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":1}],"passive":false,"source":"coa-progression"},"681500":{"id":"coa-triggered-681500","classId":"runemaster","dbcSpellId":681500,"name":"Decoder Trigger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DT","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":5000},{"kind":"trigger-spell","spellId":653272},{"kind":"damage","coefficient":0.14942528735632185,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14},{"kind":"trigger-spell","spellId":681528},{"kind":"trigger-spell","spellId":653217},{"kind":"damage","coefficient":0.21587301814366902,"basePoints":4,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":653263},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.6888888782925076,"basePoints":53,"dieSides":3,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":30},{"kind":"apply-aura","aura":{"id":"coa:653263:effect:1:aura:118","name":"Weapon Engraving: Arcane (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":653261},{"kind":"damage","coefficient":0.13636363636363635,"basePoints":13,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18},{"kind":"trigger-spell","spellId":560582},{"kind":"resource-drain","amount":31,"burn":false}],"passive":false,"source":"coa-progression"},"681528":{"id":"coa-triggered-681528","classId":"runemaster","dbcSpellId":681528,"name":"Decoder Trigger2","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DT","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":653217},{"kind":"damage","coefficient":0.21587301814366902,"basePoints":4,"dieSides":1,"pointsPerLevel":1.600000023841858,"bonusPowerCoefficient":0,"sourceLevel":6},{"kind":"trigger-spell","spellId":653263},{"kind":"heal","coefficient":1},{"kind":"damage","coefficient":0.6888888782925076,"basePoints":53,"dieSides":3,"pointsPerLevel":1.2999999523162842,"bonusPowerCoefficient":0,"sourceLevel":30},{"kind":"apply-aura","aura":{"id":"coa:653263:effect:1:aura:118","name":"Weapon Engraving: Arcane (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.3}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":653261},{"kind":"damage","coefficient":0.13636363636363635,"basePoints":13,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":18},{"kind":"trigger-spell","spellId":560582},{"kind":"apply-aura","aura":{"id":"coa:560582:effect:0:aura:24","name":"Replenishment (Aura 24)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":3},{"kind":"resource-drain","amount":31,"burn":false}],"passive":false,"source":"coa-progression"},"685029":{"id":"coa-triggered-685029","classId":"bloodmage","dbcSpellId":685029,"name":"Blood-Cursed Weapons","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BC","description":"Casting |cffffffffCrimson Tide|r now increases the haste of all party and raid members by 5% for 15 sec.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:685029:effect:0:aura:216","name":"Blood-Cursed Weapons (Aura 216)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:685029:effect:1:aura:192","name":"Blood-Cursed Weapons (Aura 192)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"704157":{"id":"coa-triggered-704157","classId":"guardian","dbcSpellId":704157,"name":"Press the Attack","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PT","description":"Deals $s2% Weapon Damage plus $s2.","target":"hostile","range":{"min":0,"max":50000},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression"},"704202":{"id":"coa-triggered-704202","classId":"stormbringer","dbcSpellId":704202,"name":"Updraft","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"UP","description":"Movement speed increased and resource costs reduced.","target":"hostile","range":{"min":0,"max":50000},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704202:effect:0:aura:31","name":"Updraft (Aura 31)","disposition":"debuff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.25}]},"sourceEffectType":27,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"704218":{"id":"coa-triggered-704218","classId":"stormbringer","dbcSpellId":704218,"name":"Updraft","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"UP","description":"Movement speed slowed and resource costs increased.","target":"hostile","range":{"min":0,"max":50000},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704218:effect:0:aura:4","name":"Updraft (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":27,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"704257":{"id":"coa-triggered-704257","classId":"bloodmage","dbcSpellId":704257,"name":"Self Damage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SD","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":174,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"704301":{"id":"coa-triggered-704301","classId":"cultist","dbcSpellId":704301,"name":"Instill Despair","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ID","description":"Steals $s1 life.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.14666666719648574,"basePoints":4,"dieSides":4,"pointsPerLevel":1.100000023841858,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"heal","coefficient":0.14666666719648574,"basePoints":4,"dieSides":4,"pointsPerLevel":1.100000023841858,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"704321":{"id":"coa-triggered-704321","classId":"ranger","dbcSpellId":704321,"name":"Lethal Cunning","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LC","description":"Generating 1 Archery Point and $s2 Focus every $t1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704321:effect:0:aura:23","name":"Lethal Cunning (Aura 23)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:704321:proc:0:524860","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":524860}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":524860},{"kind":"apply-aura","aura":{"id":"coa:704321:effect:1:aura:24","name":"Lethal Cunning (Aura 24)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":2,"triggerSpellId":0},{"kind":"resource","amount":60}],"passive":false,"source":"coa-progression"},"704341":{"id":"coa-triggered-704341","classId":"ranger","dbcSpellId":704341,"name":"Survival Potion","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"Removing $704341s2 poison effects every $t1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":1},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["disease"],"maxCount":1},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["poison"],"maxCount":1}],"passive":false,"source":"coa-progression"},"704342":{"id":"coa-triggered-704342","classId":"witch-hunter","dbcSpellId":704342,"name":"Witchbane","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WI","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":32},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"704358":{"id":"coa-triggered-704358","classId":"reaper","dbcSpellId":704358,"name":"Ghastly Form","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GF","description":"Absorbs ${$w1} damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":6000},{"kind":"apply-aura","aura":{"id":"coa:704358:effect:0:aura:69","name":"Ghastly Form (Aura 69)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:704358:absorb:0","amount":30,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"704414":{"id":"coa-triggered-704414","classId":"guardian","dbcSpellId":704414,"name":"Fearsome Leader","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FL","description":"Reduces the cooldown of Linebreaker by $/1000;s1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":800313,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"704564":{"id":"coa-triggered-704564","classId":"sun-cleric","dbcSpellId":704564,"name":"Warmth","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WA","description":"Health increased by ${$w1}.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704564:effect:0:aura:34","name":"Warmth (Aura 34)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"maximum-health","operation":"flat","value":290}]},"sourceEffectType":6,"sourceAuraType":34,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"704857":{"id":"coa-triggered-704857","classId":"pyromancer","dbcSpellId":704857,"name":"Stoke","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ST","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704857:effect:0:aura:4","name":"Stoke (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"704865":{"id":"coa-triggered-704865","classId":"pyromancer","dbcSpellId":704865,"name":"Phoenix Handler","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PH","description":"Reduces the cooldown of the pet's next Binding Flames by ${$w1}%.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704865:effect:0:aura:23","name":"Phoenix Handler (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:704865:proc:0:706856","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706856}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706856}],"passive":false,"source":"coa-progression"},"704911":{"id":"coa-triggered-704911","classId":"sun-cleric","dbcSpellId":704911,"name":"Sunlight","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SU","description":"Heals nearby allies for $s1.","target":"friendly","range":{"min":0,"max":40},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.5066666666666667,"basePoints":25,"dieSides":7,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"704926":{"id":"coa-triggered-704926","classId":"sun-cleric","dbcSpellId":704926,"name":"Bastion of Hope","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BO","description":"Reduces the cooldown of |cffffffffVengeful Slam|r by $/1000;s1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:704926:effect:0:aura:137","name":"Bastion of Hope (Aura 137)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"all-primary","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":-1,"triggerSpellId":0},{"kind":"resource","amount":15}],"passive":false,"source":"coa-progression"},"705130":{"id":"coa-triggered-705130","classId":"felsworn","dbcSpellId":705130,"name":"Hateforged Barrier","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HB","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.02,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"705309":{"id":"coa-triggered-705309","classId":"templar","dbcSpellId":705309,"name":"Binding Scripture","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BS","description":"$s1% of all damage taken by the target is redirected to the Templar.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705309:effect:0:aura:81","name":"Binding Scripture (Aura 81)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","redirectDamagePercent":0.1,"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":81,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"705381":{"id":"coa-triggered-705381","classId":"guardian","dbcSpellId":705381,"name":"Shield Combatant","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SC","description":"Attack Power increased.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:705381:effect:0:aura:99","name":"Shield Combatant (Aura 99)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"flat","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":99,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705381:effect:1:aura:4","name":"Shield Combatant (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:705381:effect:2:aura:4","name":"Shield Combatant (Aura 4)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"705753":{"id":"coa-triggered-705753","classId":"necromancer","dbcSpellId":705753,"name":"Tears of Lordaeron","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TO","description":"Generates $/10;s1 Runic Power.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":9,"percentage":true},{"kind":"resource","amount":3,"percentage":true}],"passive":false,"source":"coa-progression"},"705821":{"id":"coa-triggered-705821","classId":"tinker","dbcSpellId":705821,"name":"Rocket Pack","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RP","description":"Reduces the remaining cooldown of Rockadier by $/1000;s1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":801827,"triggerSpellId":0,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:705821:effect:2:aura:4","name":"Rocket Pack (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"705845":{"id":"coa-triggered-705845","classId":"witch-doctor","dbcSpellId":705845,"name":"Overflowing Juju","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"OJ","description":"Your next Bad Juju triggers a $/1000;s2 sec reduced cooldown.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reset","abilityName":"Bad Juju"},{"kind":"apply-aura","aura":{"id":"coa:705845:effect:1:aura:107","name":"Overflowing Juju (Aura 107)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-80}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":11,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706000":{"id":"coa-triggered-706000","classId":"venomancer","dbcSpellId":706000,"name":"Weakening Venom","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WV","description":"Deals ${$706000m2+$706000ppl2+$SP*.125} Shadow Damage and reduces attack power by ${-($m1+0)}.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706000:effect:0:aura:344","name":"Weakening Venom (Aura 344)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.3666666701987938,"basePoints":18,"dieSides":4,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":12}],"passive":false,"source":"coa-progression"},"706032":{"id":"coa-triggered-706032","classId":"venomancer","dbcSpellId":706032,"name":"Rot Lich","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RL","description":"Your next |cffffffffSerpent's Fang|r within $706032d is free of cost.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706032:effect:0:aura:108","name":"Rot Lich (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"cooldown-reset","mode":"reset","abilityName":"Serpent's Fang"},{"kind":"apply-aura","aura":{"id":"coa:706032:effect:2:aura:313","name":"Rot Lich (Aura 313)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":313,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706302":{"id":"coa-triggered-706302","classId":"starcaller","dbcSpellId":706302,"name":"Lunar Phase Proc","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LP","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":802985},{"kind":"apply-aura","aura":{"id":"coa:802985:effect:0:aura:108","name":"Lunar Phase (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802985:effect:1:aura:140","name":"Lunar Phase (Aura 140)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":140,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802985:effect:2:aura:4","name":"Lunar Phase (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":164,"auraType":0,"miscValue":0,"triggerSpellId":800386,"durationMs":0}],"passive":false,"source":"coa-progression"},"706345":{"id":"coa-triggered-706345","classId":"primalist","dbcSpellId":706345,"name":"Heavy Handed","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HH","description":"Armor increased.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706345:effect:0:aura:142","name":"Heavy Handed (Aura 142)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706345:effect:1:aura:142","name":"Heavy Handed (Aura 142)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":142,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706525":{"id":"coa-triggered-706525","classId":"runemaster","dbcSpellId":706525,"name":"Sigilist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SI","description":"After using a |cffffffffSigil|r, the duration of your crowd control effects is increased by $s1% and the effectiveness of your |cfffffffBrands|r unleashed by your |cffffffffWeapon Engravings|r is increased by $s2% for $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706525:effect:0:aura:108","name":"Sigilist (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706525:effect:1:aura:108","name":"Sigilist (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":8,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706525:effect:2:aura:4","name":"Sigilist (Aura 4)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":34,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706535":{"id":"coa-triggered-706535","classId":"tinker","dbcSpellId":706535,"name":"Generate 3 Scrap","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GS","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801816},{"kind":"apply-aura","aura":{"id":"coa:801816:effect:0:aura:107","name":"Scrap (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801816:effect:1:aura:108","name":"Scrap (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801816:effect:2:aura:107","name":"Scrap (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706613":{"id":"coa-triggered-706613","classId":"bloodmage","dbcSpellId":706613,"name":"Thirst","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TH","description":"Generates $/10;681202s1 Rage and then increases the health costs of your spells by $s1%$?s504252[, your critical strike chance with |cffffffffAtherann's Anguish|r by $504252s1%][] and increases their damage by $s3%. Stacks $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706613:effect:0:aura:108","name":"Thirst (Aura 108)","disposition":"buff","durationMs":20000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706613:effect:1:aura:108","name":"Thirst (Aura 108)","disposition":"buff","durationMs":20000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706613:effect:2:aura:108","name":"Thirst (Aura 108)","disposition":"buff","durationMs":20000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706623":{"id":"coa-triggered-706623","classId":"bloodmage","dbcSpellId":706623,"name":"Blood Rituals","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BR","description":"Healed whenever the Bloodmage uses Bloodmoon Blast. Lasts $d.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:0:aura:4","name":"Blood Rituals (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706623:effect:1:aura:87","name":"Blood Rituals (Aura 87)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706696":{"id":"coa-triggered-706696","classId":"tinker","dbcSpellId":706696,"name":"Rocket Bombardment","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RB","description":"Deals $s1 Fire Damage, increased by $s2% for each subsequent Rocket Cluster.","target":"hostile","range":{"min":0,"max":50000},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1,"basePoints":19,"dieSides":5,"pointsPerLevel":3.690000057220459,"bonusPowerCoefficient":1,"sourceLevel":31},{"kind":"apply-aura","aura":{"id":"coa:706696:effect:1:aura:271","name":"Rocket Bombardment (Aura 271)","disposition":"debuff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.25}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706697":{"id":"coa-triggered-706697","classId":"tinker","dbcSpellId":706697,"name":"Rocket Bombardment","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RB","description":"Sentry Turrets fire Rocket Clusters when they attack.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706697:effect:0:aura:42","name":"Rocket Bombardment (Aura 42)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:706697:proc:0:706696","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706696}}}]},"sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":706696},{"kind":"apply-aura","aura":{"id":"coa:706697:effect:1:aura:108","name":"Rocket Bombardment (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706698":{"id":"coa-triggered-706698","classId":"tinker","dbcSpellId":706698,"name":"Rocket Bombardment","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RB","description":"Sentry Turrets fire Rocket Clusters when they attack.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706698:effect:0:aura:23","name":"Rocket Bombardment (Aura 23)","disposition":"buff","durationMs":500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:706698:proc:0:706697","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":706697}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":23,"miscValue":0,"triggerSpellId":706697}],"passive":false,"source":"coa-progression"},"706736":{"id":"coa-triggered-706736","classId":"runemaster","dbcSpellId":706736,"name":"Elemental Secrets","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ES","description":"Stealthed.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706736:effect:0:aura:16","name":"Elemental Secrets (Aura 16)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["stealth"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":16,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706736:effect:1:aura:262","name":"Elemental Secrets (Aura 262)","disposition":"buff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706763":{"id":"coa-triggered-706763","classId":"ranger","dbcSpellId":706763,"name":"Knockout","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"KN","description":"cleanses dots","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":500},{"kind":"dispel-mechanic","mechanic":15,"maxCount":10},{"kind":"dispel","mode":"cleanse","relationship":"friendly","categories":["poison"],"maxCount":10}],"passive":false,"source":"coa-progression"},"706774":{"id":"coa-triggered-706774","classId":"chronomancer","dbcSpellId":706774,"name":"Fabric of Time","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FO","description":"Your next Aeon triggers with no cooldown.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706774:effect:0:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706774:effect:1:aura:108","name":"Fabric of Time (Aura 108)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706856":{"id":"coa-triggered-706856","classId":"pyromancer","dbcSpellId":706856,"name":"Kael's Command","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"KS","description":"Heals allies around your Phoenix for $s1.","target":"self","range":{"min":0,"max":0},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":4,"basePoints":205,"dieSides":2,"pointsPerLevel":12.300000190734863,"bonusPowerCoefficient":0,"sourceLevel":27}],"passive":false,"source":"coa-progression"},"706874":{"id":"coa-triggered-706874","classId":"pyromancer","dbcSpellId":706874,"name":"Infernus","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IN","description":"Dealing Fire Damage over time.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706874:effect:0:aura:3","name":"Infernus (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.493333333333333,"basePoints":187,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":6,"intervalMs":3000,"tag":"spell-706874"},{"kind":"apply-aura","aura":{"id":"coa:706874:effect:1:aura:271","name":"Infernus (Aura 271)","disposition":"debuff","durationMs":18000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706895":{"id":"coa-triggered-706895","classId":"pyromancer","dbcSpellId":706895,"name":"Obliteration","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"OB","description":"Movement speed and spell haste increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706895:effect:0:aura:216","name":"Obliteration (Aura 216)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706895:effect:1:aura:31","name":"Obliteration (Aura 31)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706913":{"id":"coa-triggered-706913","classId":"cultist","dbcSpellId":706913,"name":"Withered","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WI","description":"Reduces your periodic healing taken by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:706913:effect:0:aura:259","name":"Withered (Aura 259)","disposition":"debuff","durationMs":5000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":259,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"706932":{"id":"coa-triggered-706932","classId":"cultist","dbcSpellId":706932,"name":"Hallucination","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HA","description":"Slip into the shadows and increase your movement speed by $503652s1%, creating a copy of yourself for $d. Casting does not break the effect however it will drop off at the end of your cast.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:706932:effect:0:aura:4","name":"Hallucination (Aura 4)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":422,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:706932:effect:1:aura:4","name":"Hallucination (Aura 4)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"summon","creatureId":840000,"coefficient":0.08,"durationMs":3000}],"passive":false,"source":"coa-progression"},"706984":{"id":"coa-triggered-706984","classId":"starcaller","dbcSpellId":706984,"name":"Slipstream","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SL","description":"Heals for $s1 and consumes a Bathe stack.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"trigger-spell","spellId":804523},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:0:aura:4","name":"Bathe (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:1:aura:118","name":"Bathe (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:2:aura:283","name":"Bathe (Aura 283)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add"},"sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707131":{"id":"coa-triggered-707131","classId":"knight-of-xoroth","dbcSpellId":707131,"name":"Dread","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DR","description":"At 10 stacks, your next |cffffffffMeatsaw|r transforms into |cffffffffAnnihilation|r for 8 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707131:effect:0:aura:4","name":"Dread (Aura 4)","disposition":"buff","durationMs":60000,"maxStacks":10,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707133":{"id":"coa-triggered-707133","classId":"necromancer","dbcSpellId":707133,"name":"Diabolical","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DI","description":"|cffffffffUnholy Command|r now applies 3 stacks of |cffffffffDiabolical|r, stacking $u times, to the enemy for $d. Your Undead minions attacks can consume the stacks to deal additional Shadow Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707133:effect:0:aura:108","name":"Diabolical (Aura 108)","disposition":"buff","durationMs":30000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707133:effect:1:aura:42","name":"Diabolical (Aura 42)","disposition":"buff","durationMs":30000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:707133:proc:1:707737","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707737}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707737}],"passive":false,"source":"coa-progression"},"707219":{"id":"coa-triggered-707219","classId":"stormbringer","dbcSpellId":707219,"name":"Altered Course","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AC","description":"|cffffffffDischarge|r now increases your movement speed by 20% for 3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707219:effect:0:aura:31","name":"Altered Course (Aura 31)","disposition":"buff","durationMs":6000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707266":{"id":"coa-triggered-707266","classId":"tinker","dbcSpellId":707266,"name":"Freeze Bomb","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FB","description":"Movement speed reduced by $S1%. Stacks $u times.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707266:effect:0:aura:33","name":"Freeze Bomb (Aura 33)","disposition":"debuff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":10000,"magnitude":0.15}],"passive":false,"source":"coa-progression"},"707312":{"id":"coa-triggered-707312","classId":"chronomancer","dbcSpellId":707312,"name":"The Bieko Effect","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TB","description":"While |cfffffffHasten|r is active the cooldowns of |cffffffffDimensional Divergence|r, |cfffffffBacktrack|r, and |cfffffffTimeguard|r are reduced by 10% every 2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dimensional Divergence","amountPercent":0.1},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Temporal Anomaly","amountPercent":0.1},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Temporal Focus","amountPercent":0.1}],"passive":false,"source":"coa-progression"},"707421":{"id":"coa-triggered-707421","classId":"necromancer","dbcSpellId":707421,"name":"Tundra Warriors","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TW","description":"For $d, the critical strike chance of your Undead minions is increased by $s1%, stacking $u times.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707421:effect:0:aura:290","name":"Tundra Warriors (Aura 290)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":190,"sourceAuraType":290,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707422":{"id":"coa-triggered-707422","classId":"witch-doctor","dbcSpellId":707422,"name":"Malefic Spirits","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":806288,"withValue":250},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression"},"707480":{"id":"coa-triggered-707480","classId":"pyromancer","dbcSpellId":707480,"name":"Fire and Brimstone","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FA","description":"Generating an |cffffffffEmber|r now increases the damage of |cffffffffEmber|r spenders by 2% for 10 sec, stacking 5 times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707480:effect:0:aura:108","name":"Fire and Brimstone (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707518":{"id":"coa-triggered-707518","classId":"felsworn","dbcSpellId":707518,"name":"Felwracked","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FE","description":"Every 2nd |cffffffffTwin Slice|r or |cffffffffFel Fireball|r now generates 1 additional |cff32cd32Felfury|r.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707518:effect:0:aura:4","name":"Felwracked (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707539":{"id":"coa-triggered-707539","classId":"ranger","dbcSpellId":707539,"name":"Highlander","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HI","description":"At $u stacks, your next |cffffffffFalconstrike|r within $712427d deals $712427s2% increased damage and reduces the enemy's healing received by $712428s1% for $712428d.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707539:effect:0:aura:4","name":"Highlander (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707724":{"id":"coa-triggered-707724","classId":"starcaller","dbcSpellId":707724,"name":"Starshatter","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ST","description":"Consumes 2 Felfury Sunder the ground infront of you in a $a3 yd line, causing 3 explosions one after another that deal Chaos Damage to enemies in a 5 yd radius. Inner Demon: Creates a |cffffffffFissure|r in each blast radius, dealing damage over time.","target":"hostile","range":{"min":0,"max":0},"radius":4,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":707725},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707725:effect:0:aura:23","name":"Starshatter (Aura 23)","disposition":"buff","durationMs":500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:707725:proc:0:712461","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712461}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":712461},{"kind":"trigger-spell","spellId":712462},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:712462:effect:0:aura:107","name":"Starshatter (Aura 107)","disposition":"buff","durationMs":500,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.07}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":64,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"707725":{"id":"coa-triggered-707725","classId":"starcaller","dbcSpellId":707725,"name":"Starshatter","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ST","description":"Consumes 2 Felfury Sunder the ground infront of you in a $a1 yd line, causing 3 explosions one after another that deal Chaos Damage to enemies in a 5 yd radius. Inner Demon: Creates a |cffffffffFissure|r in each blast radius, dealing damage over time.","target":"hostile","range":{"min":0,"max":50000},"radius":4,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707725:effect:0:aura:23","name":"Starshatter (Aura 23)","disposition":"buff","durationMs":500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:707725:proc:0:712461","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712461}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":712461}],"passive":false,"source":"coa-progression"},"707737":{"id":"coa-triggered-707737","classId":"necromancer","dbcSpellId":707737,"name":"Diabolical","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DI","description":"Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":707133},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707133:effect:0:aura:108","name":"Diabolical (Aura 108)","disposition":"buff","durationMs":30000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:707133:effect:1:aura:42","name":"Diabolical (Aura 42)","disposition":"buff","durationMs":30000,"maxStacks":15,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:707133:proc:1:707737","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707737}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":707737}],"passive":false,"source":"coa-progression"},"707776":{"id":"coa-triggered-707776","classId":"sun-cleric","dbcSpellId":707776,"name":"Miraculous","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MI","description":"|cFF66DDFFLevel 50 Passive|r Increases your block value by $s1% of your Intellect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707776:effect:0:aura:150","name":"Miraculous (Aura 150)","disposition":"buff","durationMs":11000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"block-value","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":150,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707821":{"id":"coa-triggered-707821","classId":"guardian","dbcSpellId":707821,"name":"Favor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FA","description":"At 20 stacks your next auto attack will deal an additional 500% Weapon Damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:707821:effect:0:aura:42","name":"Favor (Aura 42)","disposition":"buff","durationMs":60000,"maxStacks":20,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:707821:proc:0:712682","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":712682}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":712682}],"passive":false,"source":"coa-progression"},"707822":{"id":"coa-triggered-707822","classId":"guardian","dbcSpellId":707822,"name":"Heroism","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HE","description":"Whenever you reach 3 stacks of |cFFFFFFFFGlory|r or 20 stacks of |cFFFFFFFFFavor|r, your next 2 |cFFFFFFFFPulverizes|r or |cFFFFFFFFBroad Sweeps|r within 10 sec are free of cost.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:707822:effect:0:aura:108","name":"Heroism (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"707896":{"id":"coa-triggered-707896","classId":"templar","dbcSpellId":707896,"name":"Oath Chain","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"OC","description":"Allows you to hold Oath buffs.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":704576,"triggerSpellId":704576,"durationMs":0}],"passive":false,"source":"coa-progression"},"712371":{"id":"coa-triggered-712371","classId":"chronomancer","dbcSpellId":712371,"name":"The Bieko Effect","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TB","description":"While |cffffffffHasten|r is active the cooldowns of |cffffffffDimensional Divergence|r, |cffffffffMend Timeline|r, and |cffffffffTemporal Focus|r are reduced by $707312s1% every $712371t1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712371:effect:0:aura:23","name":"The Bieko Effect (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","procs":[{"id":"coa:712371:proc:0:707312","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":707312}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":707312}],"passive":false,"source":"coa-progression"},"712452":{"id":"coa-triggered-712452","classId":"runemaster","dbcSpellId":712452,"name":"Nomad's Scroll","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"NS","description":"Swapping to |cffffffffRunic Tattoos: Air|r now instantly clear any movement slowing effects on you.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"dispel-mechanic","mechanic":11,"maxCount":1}],"passive":false,"source":"coa-progression"},"712454":{"id":"coa-triggered-712454","classId":"chronomancer","dbcSpellId":712454,"name":"Maker of Realities","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MO","description":"Casting |cffffffffHasten|r now also always reduces the cast time of your healing spells by an additional $s1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:712454:effect:0:aura:108","name":"Maker of Realities (Aura 108)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"712461":{"id":"coa-triggered-712461","classId":"starcaller","dbcSpellId":712461,"name":"Starshatter","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ST","description":"Consumes 2 Felfury Sunder the ground infront of you in a $a3 yd line, causing 3 explosions one after another that deal Chaos Damage to enemies in a 5 yd radius. Inner Demon: Creates a |cffffffffFissure|r in each blast radius, dealing damage over time.","target":"hostile","range":{"min":0,"max":50000},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:712461:effect:0:aura:12","name":"Starshatter (Aura 12)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804378},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:0:aura:271","name":"Scattered Stars (Aura 271)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:1:aura:308","name":"Scattered Stars (Aura 308)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:2:aura:330","name":"Scattered Stars (Aura 330)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":64,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"712462":{"id":"coa-triggered-712462","classId":"starcaller","dbcSpellId":712462,"name":"Starshatter","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ST","description":"Consumes 2 Felfury Sunder the ground infront of you in a $a3 yd line, causing 3 explosions one after another that deal Chaos Damage to enemies in a 5 yd radius. Inner Demon: Creates a |cffffffffFissure|r in each blast radius, dealing damage over time.","target":"hostile","range":{"min":0,"max":0},"radius":4,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:712462:effect:0:aura:107","name":"Starshatter (Aura 107)","disposition":"buff","durationMs":500,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.07}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":6,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"712476":{"id":"coa-triggered-712476","classId":"guardian","dbcSpellId":712476,"name":"Favor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FA","description":"At 20 stacks your next auto attack will deal an additional 500% Weapon Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":5}],"passive":false,"source":"coa-progression"},"712682":{"id":"coa-triggered-712682","classId":"guardian","dbcSpellId":712682,"name":"Favor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FA","description":"At 20 stacks your next auto attack will deal an additional 500% Weapon Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":712476},{"kind":"damage","coefficient":5},{"kind":"trigger-spell","spellId":707822},{"kind":"apply-aura","aura":{"id":"coa:707822:effect:0:aura:108","name":"Heroism (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"783102":{"id":"coa-triggered-783102","classId":"barbarian","dbcSpellId":783102,"name":"Entrails","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EN","description":"Agility increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:783102:effect:0:aura:137","name":"Entrails (Aura 137)","disposition":"buff","durationMs":8000,"maxStacks":10,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"agility","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800001":{"id":"coa-triggered-800001","classId":"venomancer","dbcSpellId":800001,"name":"Claw Strike","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"Every 6th Claw Strike applies your Fang Venom effects.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:800001:effect:1:aura:107","name":"Claw Strike (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":6,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":3,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"resource","amount":200}],"passive":false,"source":"coa-progression"},"800020":{"id":"coa-triggered-800020","classId":"stormbringer","dbcSpellId":800020,"name":"Thunder Fist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TF","description":"Deals $s1 Nature Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.6824324324324325,"basePoints":373,"dieSides":2,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":59}],"passive":false,"source":"coa-progression"},"800208":{"id":"coa-triggered-800208","classId":"felsworn","dbcSpellId":800208,"name":"Immolation","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IM","description":"Deals Fire Damage to up to $i nearby enemies.","target":"hostile","range":{"min":0,"max":50000},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.20000000298023224,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.20000000298023224,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:800208:effect:1:aura:344","name":"Immolation (Aura 344)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800343":{"id":"coa-triggered-800343","classId":"necromancer","dbcSpellId":800343,"name":"Crypt Swarm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"Summons several crypt scarabs to attack the caster's target.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6}],"passive":false,"source":"coa-progression"},"800344":{"id":"coa-triggered-800344","classId":"necromancer","dbcSpellId":800344,"name":"Crypt Swarm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"$s2","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":30}],"passive":false,"source":"coa-progression"},"800396":{"id":"coa-triggered-800396","classId":"starcaller","dbcSpellId":800396,"name":"Drowned","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DR","description":"Frost damage taken increased by $s1%","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800396:effect:0:aura:87","name":"Drowned (Aura 87)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"frost","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":16,"triggerSpellId":0},{"kind":"trigger-spell","spellId":706302},{"kind":"trigger-spell","spellId":802985},{"kind":"apply-aura","aura":{"id":"coa:802985:effect:0:aura:108","name":"Lunar Phase (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802985:effect:1:aura:140","name":"Lunar Phase (Aura 140)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":140,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802985:effect:2:aura:4","name":"Lunar Phase (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800406":{"id":"coa-triggered-800406","classId":"stormbringer","dbcSpellId":800406,"name":"Body of Lightning","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BO","description":"Infuse an ally with lightning for $d, regenerating $s2% of their maximum mana every $t2 sec. While active, damage dealt now deals an additional ${$800406m1*$+$spn*.15} Nature Damage to up to $800406i enemies. Usable while stunned.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.15000000596046448,"basePoints":75,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":14}],"passive":false,"source":"coa-progression"},"800491":{"id":"coa-triggered-800491","classId":"bloodmage","dbcSpellId":800491,"name":"Endless Thirst","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ET","description":"Unleashes a |cffffffffVicious Bite|r attack at 3 stacks.@s:804855:0@","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"800498":{"id":"coa-triggered-800498","classId":"starcaller","dbcSpellId":800498,"name":"Cosmic Presence","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CP","description":"Stunned.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800498:effect:0:aura:12","name":"Cosmic Presence (Aura 12)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800507":{"id":"coa-triggered-800507","classId":"starcaller","dbcSpellId":800507,"name":"Aspect of the Stars","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AO","description":"Deals $s1 Arcane Damage.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":6}],"passive":false,"source":"coa-progression"},"800579":{"id":"coa-triggered-800579","classId":"sun-cleric","dbcSpellId":800579,"name":"Light's Protection","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LS","description":"Absorbing up to ${$w1} magic damage.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800616":{"id":"coa-triggered-800616","classId":"sun-cleric","dbcSpellId":800616,"name":"Purging Flames","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PF","description":"Deals ${$m2+0+$spfi*0.07+$AP*0.0358} Fire Damage every $t2 sec for $d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800616:effect:0:aura:4","name":"Purging Flames (Aura 4)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800616:effect:1:aura:3","name":"Purging Flames (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.29333333333333333,"basePoints":12,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":3,"intervalMs":1000,"tag":"spell-800616"},{"kind":"apply-aura","aura":{"id":"coa:800616:effect:2:aura:271","name":"Purging Flames (Aura 271)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800671":{"id":"coa-triggered-800671","classId":"runemaster","dbcSpellId":800671,"name":"Runic Pulse","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RP","description":"Deals ${$m1+0} Arcane Damage up to $i nearby enemies and restores $s2% of Runic Familar's health.","target":"hostile","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.05000000074505806,"basePoints":18,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0.05000000074505806,"sourceLevel":10},{"kind":"heal","coefficient":0,"percentMaxHealth":0.08,"basePoints":8,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.7979999780654907,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"800722":{"id":"coa-triggered-800722","classId":"sun-cleric","dbcSpellId":800722,"name":"Angelic Presence","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AP","description":"Your next |cffffffffIllumination|r within $d is instant cast and free of cost.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800722:effect:0:aura:108","name":"Angelic Presence (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800722:effect:1:aura:108","name":"Angelic Presence (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800722:effect:2:aura:354","name":"Angelic Presence (Aura 354)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":802598}],"passive":false,"source":"coa-progression"},"800740":{"id":"coa-triggered-800740","classId":"runemaster","dbcSpellId":800740,"name":"Linger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LI","description":"Stationary. Triggers a Runic Pulse every $t3 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800740:effect:0:aura:26","name":"Linger (Aura 26)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:1:aura:103","name":"Linger (Aura 103)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"threat","operation":"percent","value":-0.9}]},"sourceEffectType":6,"sourceAuraType":103,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800740:effect:2:aura:23","name":"Linger (Aura 23)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:800740:proc:2:800671","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800671}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800671}],"passive":false,"source":"coa-progression"},"800775":{"id":"coa-triggered-800775","classId":"bloodmage","dbcSpellId":800775,"name":"Sanguine Rupture","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"Deals $s1 Shadow Damage and generates 5 Rage.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":3},{"kind":"trigger-spell","spellId":802496},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"apply-aura","aura":{"id":"coa:802496:effect:1:aura:79","name":"Sanguine Rupture (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"dealt","school":"shadow","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":32,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800786":{"id":"coa-triggered-800786","classId":"bloodmage","dbcSpellId":800786,"name":"Sacrificial Rite","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"Healing done increased by ${$w1}%. Healing for ${$w2} every $t2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800786:effect:0:aura:136","name":"Sacrificial Rite (Aura 136)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800786:effect:1:aura:8","name":"Sacrificial Rite (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.9954337899543378,"basePoints":102,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":58,"ticks":10,"intervalMs":1500}],"passive":false,"source":"coa-progression"},"800791":{"id":"coa-triggered-800791","classId":"pyromancer","dbcSpellId":800791,"name":"Ignite","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IG","description":"IgniteRank 112% of base mana 1.5 sec castGenerates 10 Heat Per Tick Burn an enemy, inflicting 112 Fire damage over 21 sec. If Ignite is dispelled it will cause 111+16.0 Points Per Level+FireP*1.5 Fire damage to the dispeller. Castable while moving.","target":"hostile","range":{"min":0,"max":35},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800791:effect:0:aura:3","name":"Ignite (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.09000000357627869,"basePoints":16,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.09000000357627869,"sourceLevel":13,"maxScalingLevel":16,"ticks":7,"intervalMs":3000,"tag":"spell-800791"},{"kind":"apply-aura","aura":{"id":"coa:800791:effect:1:aura:271","name":"Ignite (Aura 271)","disposition":"debuff","durationMs":21000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800810":{"id":"coa-triggered-800810","classId":"pyromancer","dbcSpellId":800810,"name":"Burning Brand","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BB","description":"${$w2} Fire damage every $t2 seconds.","target":"hostile","range":{"min":0,"max":50000},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":1},{"kind":"apply-aura","aura":{"id":"coa:800810:effect:1:aura:3","name":"Burning Brand (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.18000000715255737,"basePoints":16,"dieSides":5,"pointsPerLevel":0.3199999928474426,"bonusPowerCoefficient":0.18000000715255737,"sourceLevel":1,"ticks":6,"intervalMs":2000,"tag":"spell-800810"},{"kind":"trigger-spell","spellId":806375},{"kind":"apply-aura","aura":{"id":"coa:806375:effect:0:aura:12","name":"Dragonflame Crash (Aura 12)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"control":{"kind":"stun"},"sourceEffectType":3,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"800843":{"id":"coa-triggered-800843","classId":"venomancer","dbcSpellId":800843,"name":"Skulk","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SK","description":"Skulk through the shadows, entering stealth. Lasts until cancelled. While stealthed, |cffffffffVenom Fang|r$?s807600[ or |cFFFFFFFFWidow's Kiss|r][] has no cost and deals ${$800906m1+$800906ppl1}% increased damage, scaling with your level.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800843:effect:0:aura:23","name":"Skulk (Aura 23)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","procs":[{"id":"coa:800843:proc:0:800906","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":800906}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":800906},{"kind":"apply-aura","aura":{"id":"coa:800843:effect:1:aura:16","name":"Skulk (Aura 16)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["stealth"],"dispelCategory":"poison"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":16,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800843:effect:2:aura:31","name":"Skulk (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800868":{"id":"coa-triggered-800868","classId":"venomancer","dbcSpellId":800868,"name":"Blightcaps","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BL","description":"Healing taken reduced by $S1%. Stacks $u times.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:800868:effect:0:aura:118","name":"Blightcaps (Aura 118)","disposition":"debuff","durationMs":10000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800874":{"id":"coa-triggered-800874","classId":"venomancer","dbcSpellId":800874,"name":"Shadra's Favor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"No client tooltip is available.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":1,"percentage":true},{"kind":"resource","amount":8},{"kind":"resource","amount":40}],"passive":false,"source":"coa-progression"},"800906":{"id":"coa-triggered-800906","classId":"venomancer","dbcSpellId":800906,"name":"Tunneling","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TU","description":"Tunneling ability effects are active.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:800906:effect:0:aura:108","name":"Tunneling (Aura 108)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800906:effect:1:aura:108","name":"Tunneling (Aura 108)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.8}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800906:effect:2:aura:108","name":"Tunneling (Aura 108)","disposition":"buff","durationMs":60000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"800923":{"id":"coa-triggered-800923","classId":"venomancer","dbcSpellId":800923,"name":"Wrapped","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WR","description":"Movement speed reduced by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"800951":{"id":"coa-triggered-800951","classId":"barbarian","dbcSpellId":800951,"name":"Battle Rhythm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BR","description":"Grants 5 Energy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":5},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"800993":{"id":"coa-triggered-800993","classId":"guardian","dbcSpellId":800993,"name":"Motivation: Knight's Valor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MK","description":"Gain a shield that absorbs up to ${$m1+0+$STA*0.25+$STR*0.25} damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801009":{"id":"coa-triggered-801009","classId":"tinker","dbcSpellId":801009,"name":"Sticky Bomb Explosion","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SB","description":"Deals ${$m1+0+$AP*0.0525+$spfi*0.107381} Fire Damage to up to $i enemies within $a1 yds.","target":"hostile","range":{"min":0,"max":50000},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"trigger-spell","spellId":560790},{"kind":"apply-aura","aura":{"id":"coa:560790:effect:0:aura:101","name":"Resourceful Tech (Aura 101)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801064":{"id":"coa-triggered-801064","classId":"knight-of-xoroth","dbcSpellId":801064,"name":"Suffuse","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SU","description":"Restores ${$w1} health every $t1 sec.$?s[ Damage taken reduced by ${$w2}%.][]","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801064:effect:0:aura:8","name":"Suffuse (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.5,"basePoints":10,"dieSides":2,"pointsPerLevel":1.850000023841858,"bonusPowerCoefficient":0.5,"sourceLevel":10,"ticks":1,"intervalMs":3000},{"kind":"apply-aura","aura":{"id":"coa:801064:effect:1:aura:87","name":"Suffuse (Aura 87)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801064:effect:2:aura:31","name":"Suffuse (Aura 31)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801097":{"id":"coa-triggered-801097","classId":"reaper","dbcSpellId":801097,"name":"Hungering Scythe","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.30000001192092896,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.30000001192092896,"sourceLevel":58}],"passive":false,"source":"coa-progression"},"801160":{"id":"coa-triggered-801160","classId":"guardian","dbcSpellId":801160,"name":"Advance Scaler","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Advance Scaler","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801160:effect:0:aura:107","name":"Advance Scaler (Aura 107)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801218":{"id":"coa-triggered-801218","classId":"guardian","dbcSpellId":801218,"name":"Press the Attack","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PT","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801220},{"kind":"trigger-spell","spellId":704157},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75},{"kind":"damage","coefficient":1},{"kind":"resource-drain","amount":10,"burn":true}],"passive":false,"source":"coa-progression"},"801220":{"id":"coa-triggered-801220","classId":"guardian","dbcSpellId":801220,"name":"Press the Attack","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PT","description":"Damage Taken from the caster's next Standard of Valiance or Inspiring Strike increased by $s3%. Stacks up to 5 times.","target":"hostile","range":{"min":0,"max":100},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":704157},{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.75},{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression"},"801254":{"id":"coa-triggered-801254","classId":"chronomancer","dbcSpellId":801254,"name":"Gravity Bomb","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GB","description":"Pulls enemies within $a2 yards into a gravity well, dealing $s1 damage to enemies within $a1 yards.","target":"hostile","range":{"min":0,"max":50000},"radius":15,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"movement","movement":"teleport","toward":"destination"}],"passive":false,"source":"coa-progression"},"801260":{"id":"coa-triggered-801260","classId":"chronomancer","dbcSpellId":801260,"name":"Babify","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BA","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.03,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"801265":{"id":"coa-triggered-801265","classId":"chronomancer","dbcSpellId":801265,"name":"Waves of Time","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WO","description":"Movement speed reduced by ${$w3}%.","target":"hostile","range":{"min":0,"max":20},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"apply-aura","aura":{"id":"coa:801265:effect:2:aura:33","name":"Waves of Time (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.5}],"passive":false,"source":"coa-progression"},"801282":{"id":"coa-triggered-801282","classId":"chronomancer","dbcSpellId":801282,"name":"Gravity Bomb","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GB","description":"Pulls enemies within $a1 yards into a gravity well, dealing $s1 damage to enemies within $a1 yards.","target":"hostile","range":{"min":0,"max":50000},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":967,"dieSides":1,"pointsPerLevel":6,"bonusPowerCoefficient":0,"sourceLevel":58,"maxScalingLevel":60}],"passive":false,"source":"coa-progression"},"801401":{"id":"coa-triggered-801401","classId":"starcaller","dbcSpellId":801401,"name":"Aspect of the Goddess","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AO","description":"Heals for $s1.","target":"hostile","range":{"min":0,"max":100},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.5237179520802621,"basePoints":31,"dieSides":2,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"apply-aura","aura":{"id":"coa:801401:effect:1:aura:283","name":"Aspect of the Goddess (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801409":{"id":"coa-triggered-801409","classId":"templar","dbcSpellId":801409,"name":"Benediction","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BE","description":"Armor increased by ${$w1}.","target":"friendly","range":{"min":0,"max":35},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801409:effect:0:aura:22","name":"Benediction (Aura 22)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":85}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801450":{"id":"coa-triggered-801450","classId":"templar","dbcSpellId":801450,"name":"Zealotry","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ZE","description":"Deals $s2% off-hand Weapon Damage as Holy Damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"damage","coefficient":0.4}],"passive":false,"source":"coa-progression"},"801471":{"id":"coa-triggered-801471","classId":"ranger","dbcSpellId":801471,"name":"Pinpoint Accuracy","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PA","description":"Generates $s1 Focus.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":4}],"passive":false,"source":"coa-progression"},"801482":{"id":"coa-triggered-801482","classId":"templar","dbcSpellId":801482,"name":"Downfall","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DO","description":"You heal for $s1% of all damage dealt for $d. After the duration, you gain |cffffffffRedemption|r.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801482:effect:0:aura:354","name":"Downfall (Aura 354)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":803331},{"kind":"apply-aura","aura":{"id":"coa:801482:effect:1:aura:23","name":"Downfall (Aura 23)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:801482:proc:1:801483","triggers":["periodic"],"chance":1,"charges":10,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":801483}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":801483}],"passive":false,"source":"coa-progression"},"801483":{"id":"coa-triggered-801483","classId":"templar","dbcSpellId":801483,"name":"Redemption","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"Increases attack speed by $s1% and you heal for $s3% of all damage dealt for $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801483:effect:0:aura:138","name":"Redemption (Aura 138)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801483:effect:1:aura:49","name":"Redemption (Aura 49)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"dodge","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":49,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801483:effect:2:aura:354","name":"Redemption (Aura 354)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":127,"triggerSpellId":803331}],"passive":false,"source":"coa-progression"},"801501":{"id":"coa-triggered-801501","classId":"templar","dbcSpellId":801501,"name":"Silverhand Incantation","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SI","description":"Chant a silverhand incantation and toss a holy hammer at your target, instantly pulling you to them and removing |cffffffffSacred Restraint|r from you and them if they are an ally. Upon reaching your target you deal ${$m1+$ppl1+$AP*2} Holy Damage to all nearby enemies and heal nearby allies for the same amount.","target":"hostile","range":{"min":0,"max":0},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58}],"passive":false,"source":"coa-progression"},"801503":{"id":"coa-triggered-801503","classId":"guardian","dbcSpellId":801503,"name":"Destroy Standard","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DS","description":"No client tooltip is available.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":174,"auraType":0,"miscValue":200,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"801504":{"id":"coa-triggered-801504","classId":"guardian","dbcSpellId":801504,"name":"Reclaim Standards","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RS","description":"Removes your placed |cFFFFFFFFStandard|r.","target":"hostile","range":{"min":0,"max":50000},"radius":200,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":801503}],"passive":false,"source":"coa-progression"},"801582":{"id":"coa-triggered-801582","classId":"sun-cleric","dbcSpellId":801582,"name":"Censure","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CE","description":"Shackle an enemy with chains of light, preventing mounting, fleeing, or increasing their movement speed above normal movement speed for $806697d.","target":"hostile","range":{"min":0,"max":30},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":806697},{"kind":"apply-aura","aura":{"id":"coa:806697:effect:0:aura:92","name":"Chains of Light (Aura 92)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":92,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806697:effect:1:aura:191","name":"Chains of Light (Aura 191)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.07}]},"sourceEffectType":6,"sourceAuraType":191,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806697:effect:2:aura:77","name":"Chains of Light (Aura 77)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":21,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801727":{"id":"coa-triggered-801727","classId":"necromancer","dbcSpellId":801727,"name":"Deathchill","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DE","description":"Damage from the Necromancer's Frost spells increased by $s1%. At 10 stacks, apply |cffffffffIcy Tomb|r.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20}],"passive":false,"source":"coa-progression"},"801729":{"id":"coa-triggered-801729","classId":"necromancer","dbcSpellId":801729,"name":"Lich Blast","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LB","description":"|cffffffffConsumes Deathchill Stacks|r Deals ${$m3+0} Shadowfrost Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":164,"auraType":4,"miscValue":0,"triggerSpellId":801727,"durationMs":0},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20}],"passive":false,"source":"coa-progression"},"801745":{"id":"coa-triggered-801745","classId":"tinker","dbcSpellId":801745,"name":"Air Strike","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Burn the target for $s1.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":1226,"dieSides":43,"pointsPerLevel":12,"bonusPowerCoefficient":0,"sourceLevel":58}],"passive":false,"source":"coa-progression"},"801747":{"id":"coa-triggered-801747","classId":"necromancer","dbcSpellId":801747,"name":"Permafrost","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PE","description":"Affected enemy is considered Frozen.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801747:effect:0:aura:262","name":"Permafrost (Aura 262)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801751":{"id":"coa-triggered-801751","classId":"necromancer","dbcSpellId":801751,"name":"Icequake Trigger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IT","description":"You strike all enemies within $a1yd that are affected by |cffffffffDeathchill|r with an icy blast, dealing ${$801757m1+($pl*4)} Frost damage to them and their nearby allies, and consuming 1 stack of |cffffffffDeathchill|r.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":801757,"withValue":0},{"kind":"damage","coefficient":0.6499999761581421,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"bonusPowerCoefficient":0.6499999761581421,"sourceLevel":1},{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729}],"passive":false,"source":"coa-progression"},"801757":{"id":"coa-triggered-801757","classId":"necromancer","dbcSpellId":801757,"name":"Icequake","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IC","description":"Blast the target with a frigid wind dealing $s1 Frost damage to all enemies within 10 yards.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.6499999761581421,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"bonusPowerCoefficient":0.6499999761581421,"sourceLevel":1},{"kind":"trigger-spell","spellId":801727},{"kind":"apply-aura","aura":{"id":"coa:801727:effect:0:aura:271","name":"Deathchill (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.01}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.17,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"trigger-spell","spellId":801729},{"kind":"resource","amount":40},{"kind":"damage","coefficient":1.9761904580252512,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"bonusPowerCoefficient":0,"sourceLevel":20}],"passive":false,"source":"coa-progression"},"801797":{"id":"coa-triggered-801797","classId":"witch-doctor","dbcSpellId":801797,"name":"Shadow Puppet","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561136},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:0:aura:24","name":"Spirit (Aura 24)","disposition":"buff","durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":6},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:1:aura:8","name":"Spirit (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":-2,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":0.10000000149011612,"bonusPowerCoefficient":0,"sourceLevel":10,"maxScalingLevel":60,"ticks":3,"intervalMs":4000},{"kind":"apply-aura","aura":{"id":"coa:561136:effect:2:aura:23","name":"Spirit (Aura 23)","disposition":"buff","durationMs":12000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:561136:proc:2:561298","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":561298}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":561298}],"passive":false,"source":"coa-progression"},"801816":{"id":"coa-triggered-801816","classId":"tinker","dbcSpellId":801816,"name":"Scrap","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SC","description":"Used to power some of your more exotic creations!","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:801816:effect:0:aura:107","name":"Scrap (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":10}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801816:effect:1:aura:108","name":"Scrap (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:801816:effect:2:aura:107","name":"Scrap (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801891":{"id":"coa-triggered-801891","classId":"felsworn","dbcSpellId":801891,"name":"Felwrath","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FE","description":"Causes ${$801893m1+$801893ppl1} Shadowflame Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:801891:effect:0:aura:4","name":"Felwrath (Aura 4)","disposition":"buff","durationMs":500,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"801913":{"id":"coa-triggered-801913","classId":"felsworn","dbcSpellId":801913,"name":"Annihilan Strike","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Unleash a devastating attack, dealing $s2% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.1}],"passive":false,"source":"coa-progression"},"801914":{"id":"coa-triggered-801914","classId":"felsworn","dbcSpellId":801914,"name":"Annihilan Strike (Offhand)","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Unleash a devastating attack, dealing $s2% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.1}],"passive":false,"source":"coa-progression"},"802097":{"id":"coa-triggered-802097","classId":"witch-doctor","dbcSpellId":802097,"name":"Vol’jin’s Vigil","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VJ","description":"Reduces damage taken by $s1%, stacking $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.02,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"802128":{"id":"coa-triggered-802128","classId":"necromancer","dbcSpellId":802128,"name":"Noxious Corpserot","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"NC","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}],"passive":false,"source":"coa-progression"},"802228":{"id":"coa-triggered-802228","classId":"chronomancer","dbcSpellId":802228,"name":"Time Out!","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TO","description":"Regenerating mana, unable to act. Damage you take is reduced, but direct damage taken has a chance to end this effect.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:0:aura:87","name":"Time Out! (Aura 87)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802228:effect:1:aura:12","name":"Time Out! (Aura 12)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802270":{"id":"coa-triggered-802270","classId":"witch-hunter","dbcSpellId":802270,"name":"Burrow Bolt","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BB","description":"Pulls the target to the caster.","target":"hostile","range":{"min":0,"max":40},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"pull","toward":"caster"},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"pull","toward":"destination"},{"kind":"interrupt","lockoutMs":1000}],"passive":false,"source":"coa-progression"},"802302":{"id":"coa-triggered-802302","classId":"guardian","dbcSpellId":802302,"name":"Glory","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GL","description":"At 3 stacks, your next Ram deals 150% increased damage.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802302:effect:0:aura:4","name":"Glory (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802496":{"id":"coa-triggered-802496","classId":"bloodmage","dbcSpellId":802496,"name":"Sanguine Rupture","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"Deals $s1 Shadow Damage and generates $s2 Rage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"resource","amount":20},{"kind":"apply-aura","aura":{"id":"coa:802496:effect:1:aura:79","name":"Sanguine Rupture (Aura 79)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"dealt","school":"shadow","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":32,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802600":{"id":"coa-triggered-802600","classId":"chronomancer","dbcSpellId":802600,"name":"Waves of Time","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WO","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"knockback","toward":"away"}],"passive":false,"source":"coa-progression"},"802704":{"id":"coa-triggered-802704","classId":"witch-doctor","dbcSpellId":802704,"name":"Shadowflare","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SH","description":"Create a shadow volley in a $a1 yd radius at target location, every $t1 sec, shadow magic rains down dealing ${$m1+0+$sps*.22+$RAP*.09} Shadow Damage to up to $802704i enemies. Enemies who die to |cFFFFFFFFShadowflare|r grant you a |cFFFFFFFFSpirit|r.@s:561068:0@","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":16}],"passive":false,"source":"coa-progression"},"802725":{"id":"coa-triggered-802725","classId":"runemaster","dbcSpellId":802725,"name":"Speed Rune","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"Movement speed increased by ${$w1}%.","target":"friendly","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802725:effect:0:aura:31","name":"Speed Rune (Aura 31)","disposition":"buff","durationMs":1500,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.7}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802729":{"id":"coa-triggered-802729","classId":"cultist","dbcSpellId":802729,"name":"Eldritch Command","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EC","description":"Unleashing an Energy blast.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802729:effect:0:aura:23","name":"Eldritch Command (Aura 23)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:802729:proc:0:573312","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":573312}}}]},"recipient":"caster","sourceEffectType":190,"sourceAuraType":23,"miscValue":0,"triggerSpellId":573312},{"kind":"apply-aura","aura":{"id":"coa:802729:effect:1:aura:4","name":"Eldritch Command (Aura 4)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802745":{"id":"coa-triggered-802745","classId":"witch-doctor","dbcSpellId":802745,"name":"Shadow Puppet","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SP","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"802760":{"id":"coa-triggered-802760","classId":"barbarian","dbcSpellId":802760,"name":"Born Killer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BK","description":"Dealing damage to this target reduces their movement speed by $s1% for $d, stacking 4 times. At 4 stacks, the next instance of damage will knock the spear off and lodge it into the ground, boosting morale, and reducing the duration of fear and stun effects on allies within 15 yds by 20% for 8 sec.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:802760:effect:0:aura:280","name":"Born Killer (Aura 280)","disposition":"buff","durationMs":5000,"maxStacks":20,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"armor-penetration","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":280,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802760:effect:1:aura:31","name":"Born Killer (Aura 31)","disposition":"buff","durationMs":5000,"maxStacks":20,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802804":{"id":"coa-triggered-802804","classId":"pyromancer","dbcSpellId":802804,"name":"Echo of Nozdormu","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EO","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reduce","abilityName":"Inferno Barrier","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Meteor","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Dragon Leap","amountPercent":0.05}],"passive":false,"source":"coa-progression"},"802825":{"id":"coa-triggered-802825","classId":"venomancer","dbcSpellId":802825,"name":"Ambush Predator","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AP","description":"|cffffffffLeg Strike|r now increases the damage dealt by subsequent |cffffffffLegstrikes|r by $s1 and causes them to generates 20 additional Rage for $d, stacking $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":806154,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"802871":{"id":"coa-triggered-802871","classId":"guardian","dbcSpellId":802871,"name":"Grand Entrance","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GE","description":"Leap toward your target.","target":"hostile","range":{"min":0,"max":30},"radius":2,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"movement","movement":"leap","toward":"destination"},{"kind":"utility","action":"class-script","effectType":193,"auraType":0,"miscValue":0,"triggerSpellId":802874,"durationMs":1000}],"passive":false,"source":"coa-progression"},"802892":{"id":"coa-triggered-802892","classId":"guardian","dbcSpellId":802892,"name":"Brace","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BR","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":800993},{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:0:aura:69","name":"Motivation: Knight's Valor (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800993:absorb:0","amount":50,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:1:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:800993:effect:2:aura:108","name":"Motivation: Knight's Valor (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.25}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":164,"auraType":0,"miscValue":0,"triggerSpellId":500256,"durationMs":0}],"passive":false,"source":"coa-progression"},"802903":{"id":"coa-triggered-802903","classId":"witch-doctor","dbcSpellId":802903,"name":"Afflict Random Hex","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AR","description":"Afflict the target with a random Witch Doctor Hex.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":184,"auraType":0,"miscValue":0,"triggerSpellId":801693,"durationMs":0}],"passive":false,"source":"coa-progression"},"802913":{"id":"coa-triggered-802913","classId":"necromancer","dbcSpellId":802913,"name":"Plagued","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PL","description":"Affected by a Necromancer Plague.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802913:effect:0:aura:271","name":"Plagued (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"disease","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000}],"passive":false,"source":"coa-progression"},"802926":{"id":"coa-triggered-802926","classId":"witch-doctor","dbcSpellId":802926,"name":"Mark of Malice","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MO","description":"Reduces healing the target receives by $s2% for $d.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":8000},{"kind":"apply-aura","aura":{"id":"coa:802926:effect:1:aura:118","name":"Mark of Malice (Aura 118)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802941":{"id":"coa-triggered-802941","classId":"sun-cleric","dbcSpellId":802941,"name":"Solar Embrace Effect","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SE","description":"Add 1 solar power if target has Solar Embrace","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":164,"auraType":0,"miscValue":1,"triggerSpellId":500151,"durationMs":0},{"kind":"trigger-spell","spellId":804098},{"kind":"trigger-spell","spellId":500149},{"kind":"apply-aura","aura":{"id":"coa:500149:effect:0:aura:4","name":"Solar Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500149:effect:1:aura:108","name":"Solar Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802947":{"id":"coa-triggered-802947","classId":"sun-cleric","dbcSpellId":802947,"name":"Divine Vision Effect","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DV","description":"No client tooltip is available.","target":"friendly","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":800579},{"kind":"shield","coefficient":1,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:800579:effect:0:aura:69","name":"Light's Protection (Aura 69)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:800579:absorb:0","amount":26,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"802985":{"id":"coa-triggered-802985","classId":"starcaller","dbcSpellId":802985,"name":"Lunar Phase","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LP","description":"Passively gain 1 stack every $524781t1 sec. At 4 stacks you can activate |cffffffffLunar Eclipse|r.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:802985:effect:0:aura:108","name":"Lunar Phase (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802985:effect:1:aura:140","name":"Lunar Phase (Aura 140)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":140,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:802985:effect:2:aura:4","name":"Lunar Phase (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":4,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803019":{"id":"coa-triggered-803019","classId":"runemaster","dbcSpellId":803019,"name":"Remove Essences","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"803020":{"id":"coa-triggered-803020","classId":"runemaster","dbcSpellId":803020,"name":"Sigil Counter","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SC","description":"HIDE CLIENTSIDE","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803020:effect:0:aura:4","name":"Sigil Counter (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":3,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803094":{"id":"coa-triggered-803094","classId":"cultist","dbcSpellId":803094,"name":"Refresh Insanity","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RI","description":"Refresh Insanity","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"803101":{"id":"coa-triggered-803101","classId":"stormbringer","dbcSpellId":803101,"name":"Refresh Static","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RS","description":"Refresh Static","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"803102":{"id":"coa-triggered-803102","classId":"stormbringer","dbcSpellId":803102,"name":"Static","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ST","description":"Some spells require |cffcc99ffStatic|r to be used. While out of combat, your |cffcc99ffStatic|r will begin to fizzle out.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803105":{"id":"coa-triggered-803105","classId":"ranger","dbcSpellId":803105,"name":"Viper's Bite","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VS","description":"Delivers 3 quick weapon attacks over $d to an enemy target, each dealing $803015s1 Physical Damage. Each strike will consume 1 stack of Venomstrike from the target to deal additional Nature Damage.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.85}],"passive":false,"source":"coa-progression"},"803109":{"id":"coa-triggered-803109","classId":"ranger","dbcSpellId":803109,"name":"Assaulted","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Deals $s1 Physical Damage to an enemy target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:803109:effect:1:aura:187","name":"Assaulted (Aura 187)","disposition":"debuff","durationMs":null,"maxStacks":3,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"critical-strike","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":187,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":583275},{"kind":"damage","coefficient":1},{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"803123":{"id":"coa-triggered-803123","classId":"ranger","dbcSpellId":803123,"name":"Snatch","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SN","description":"Disarm the enemy, removing all weapons, shield or other equipment carried for $d.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803123:effect:0:aura:4","name":"Snatch (Aura 4)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803123:effect:1:aura:254","name":"Snatch (Aura 254)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":254,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803123:effect:2:aura:67","name":"Snatch (Aura 67)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"disarm"},"sourceEffectType":6,"sourceAuraType":67,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803131":{"id":"coa-triggered-803131","classId":"guardian","dbcSpellId":803131,"name":"Spiked Reinforcement","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SR","description":"Deals $s1 Physical Damage","target":"hostile","range":{"min":0,"max":15},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.13710144982821698,"basePoints":5,"dieSides":2,"pointsPerLevel":0.4950000047683716,"bonusPowerCoefficient":0,"sourceLevel":8},{"kind":"apply-aura","aura":{"id":"coa:803131:effect:1:aura:271","name":"Spiked Reinforcement (Aura 271)","disposition":"debuff","durationMs":null,"maxStacks":10,"stackBehavior":"add","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0},{"kind":"threat","mode":"flat","amount":25}],"passive":false,"source":"coa-progression"},"803135":{"id":"coa-triggered-803135","classId":"guardian","dbcSpellId":803135,"name":"Recuperation","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":2}],"passive":false,"source":"coa-progression"},"803138":{"id":"coa-triggered-803138","classId":"primalist","dbcSpellId":803138,"name":"Geode Barrage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GB","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"803170":{"id":"coa-triggered-803170","classId":"templar","dbcSpellId":803170,"name":"Sacred Slam","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Deals Weapon Damage|r plus $s1.","target":"hostile","range":{"min":0,"max":50000},"radius":4,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1}],"passive":false,"source":"coa-progression"},"803178":{"id":"coa-triggered-803178","classId":"venomancer","dbcSpellId":803178,"name":"Envenomed Weapons","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EW","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.23000000417232513,"basePoints":3,"dieSides":2,"pointsPerLevel":0.10000000149011612,"bonusPowerCoefficient":0.23000000417232513,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"803186":{"id":"coa-triggered-803186","classId":"knight-of-xoroth","dbcSpellId":803186,"name":"Claw Grab","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CG","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":60},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"pull","toward":"destination"},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120614,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"803204":{"id":"coa-triggered-803204","classId":"venomancer","dbcSpellId":803204,"name":"Toxflinger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"803218":{"id":"coa-triggered-803218","classId":"venomancer","dbcSpellId":803218,"name":"Toxic Sludge","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TS","description":"Place a toxic pool on the ground for $d, instantly |cffff4500Burning|r enemies inside for ${$m3+0} Nature Damage. Enemies in the pool take ${$m1+0} Nature Damage every $t1 sec, and have $803218s1% reduced movement speed.$?s705991[ Allies in the pool are healed for $802355s1 every $802355t1 sec and take $802355s2% increased healing.][]","target":"hostile","range":{"min":0,"max":0},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803218:effect:0:aura:33","name":"Toxic Sludge (Aura 33)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.5}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":12000,"magnitude":0.5}],"passive":false,"source":"coa-progression"},"803225":{"id":"coa-triggered-803225","classId":"runemaster","dbcSpellId":803225,"name":"Frigid Fusion","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FF","description":"Accumulate $?s707654[30%][20%] of your damage dealt to the target over $d. After the duration, deal it as Frost Damage to the target.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:0:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":572338},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:1:aura:69","name":"Frigid Fusion (Aura 69)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:803225:absorb:1","amount":1,"perStack":false}]},"sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803225:effect:2:aura:4","name":"Frigid Fusion (Aura 4)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803288":{"id":"coa-triggered-803288","classId":"ranger","dbcSpellId":803288,"name":"Briar Veil","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BV","description":"Heals for $s1% maximum health and restores $s2 Focus.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.02,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"resource","amount":5}],"passive":false,"source":"coa-progression"},"803293":{"id":"coa-triggered-803293","classId":"guardian","dbcSpellId":803293,"name":"Grand Entrance","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GE","description":"Leap into the air, becoming immune to crowd control effects, and then crash back down with incredible speed at your enemy. Upon landing, deal $802874s1% Weapon Damage to enemies in the impact area, plus an additional ${$802874m3+$802874ppl3+$AP*0.2575} over 3 sec, and knock them into the air.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"movement","movement":"leap","toward":"away"},{"kind":"apply-aura","aura":{"id":"coa:803293:effect:1:aura:105","name":"Grand Entrance (Aura 105)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["slow-fall"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":105,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803293:effect:2:aura:147","name":"Grand Entrance (Aura 147)","disposition":"buff","durationMs":2000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":147,"miscValue":1735,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803422":{"id":"coa-triggered-803422","classId":"witch-hunter","dbcSpellId":803422,"name":"Flames of Sin","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FO","description":"Your auto attacks now deal an additional ${$w1}% of the damage dealt as Fire Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803422:effect:0:aura:354","name":"Flames of Sin (Aura 354)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":802850},{"kind":"apply-aura","aura":{"id":"coa:803422:effect:1:aura:23","name":"Flames of Sin (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803422:proc:1:680227","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680227}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":680227},{"kind":"apply-aura","aura":{"id":"coa:803422:effect:2:aura:107","name":"Flames of Sin (Aura 107)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803479":{"id":"coa-triggered-803479","classId":"felsworn","dbcSpellId":803479,"name":"Felwrath","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FE","description":"Causes ${$801893m1+$801893ppl1} Shadowflame Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":520832},{"kind":"apply-aura","aura":{"id":"coa:520832:effect:0:aura:3","name":"Felwrath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.37333333333333335,"basePoints":8,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":6,"intervalMs":1000,"tag":"spell-520832"},{"kind":"apply-aura","aura":{"id":"coa:520832:effect:1:aura:3","name":"Felwrath (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":3,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.24000000635782878,"basePoints":6,"dieSides":1,"pointsPerLevel":1.2000000476837158,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":3,"intervalMs":2000,"tag":"spell-520832"},{"kind":"apply-aura","aura":{"id":"coa:520832:effect:2:aura:271","name":"Felwrath (Aura 271)","disposition":"debuff","durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803529":{"id":"coa-triggered-803529","classId":"venomancer","dbcSpellId":803529,"name":"Green Salve","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GS","description":"No client tooltip is available.","target":"friendly","range":{"min":0,"max":50000},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0.17333333333333334,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":10}],"passive":false,"source":"coa-progression"},"803538":{"id":"coa-triggered-803538","classId":"venomancer","dbcSpellId":803538,"name":"Mending Mist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1.3199999968210856,"basePoints":96,"dieSides":1,"pointsPerLevel":1.5199999809265137,"bonusPowerCoefficient":0,"sourceLevel":15,"maxScalingLevel":20}],"passive":false,"source":"coa-progression"},"803539":{"id":"coa-triggered-803539","classId":"venomancer","dbcSpellId":803539,"name":"Mending Mist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1.9290090165696703,"basePoints":149,"dieSides":1,"pointsPerLevel":2.9600000381469727,"bonusPowerCoefficient":0,"sourceLevel":22,"maxScalingLevel":26}],"passive":false,"source":"coa-progression"},"803540":{"id":"coa-triggered-803540","classId":"venomancer","dbcSpellId":803540,"name":"Mending Mist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":2.232868231544199,"basePoints":185,"dieSides":1,"pointsPerLevel":3.680000066757202,"bonusPowerCoefficient":0,"sourceLevel":28,"maxScalingLevel":32}],"passive":false,"source":"coa-progression"},"803541":{"id":"coa-triggered-803541","classId":"venomancer","dbcSpellId":803541,"name":"Mending Mist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":2.4982313233978894,"basePoints":219,"dieSides":1,"pointsPerLevel":4.360000133514404,"bonusPowerCoefficient":0,"sourceLevel":34,"maxScalingLevel":38}],"passive":false,"source":"coa-progression"},"803542":{"id":"coa-triggered-803542","classId":"venomancer","dbcSpellId":803542,"name":"Mending Mist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":2.608484903971354,"basePoints":260,"dieSides":1,"pointsPerLevel":4.260000228881836,"bonusPowerCoefficient":0,"sourceLevel":40,"maxScalingLevel":44}],"passive":false,"source":"coa-progression"},"803543":{"id":"coa-triggered-803543","classId":"venomancer","dbcSpellId":803543,"name":"Mending Mist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":2.754754045621945,"basePoints":287,"dieSides":1,"pointsPerLevel":4.71999979019165,"bonusPowerCoefficient":0,"sourceLevel":46,"maxScalingLevel":50}],"passive":false,"source":"coa-progression"},"803544":{"id":"coa-triggered-803544","classId":"venomancer","dbcSpellId":803544,"name":"Mending Mist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":2.9385075070964755,"basePoints":314,"dieSides":1,"pointsPerLevel":5.320000171661377,"bonusPowerCoefficient":0,"sourceLevel":52,"maxScalingLevel":56}],"passive":false,"source":"coa-progression"},"803545":{"id":"coa-triggered-803545","classId":"venomancer","dbcSpellId":803545,"name":"Mending Mist","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MM","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":3.1598173515981736,"basePoints":692,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58}],"passive":false,"source":"coa-progression"},"803710":{"id":"coa-triggered-803710","classId":"witch-hunter","dbcSpellId":803710,"name":"Flames of Sin","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":803422},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:803422:effect:0:aura:354","name":"Flames of Sin (Aura 354)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":354,"miscValue":0,"triggerSpellId":802850},{"kind":"apply-aura","aura":{"id":"coa:803422:effect:1:aura:23","name":"Flames of Sin (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:803422:proc:1:680227","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":680227}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":680227},{"kind":"apply-aura","aura":{"id":"coa:803422:effect:2:aura:107","name":"Flames of Sin (Aura 107)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":18,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":803422,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"803722":{"id":"coa-triggered-803722","classId":"bloodmage","dbcSpellId":803722,"name":"Cursed Blood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CB","description":"Reduces Arcane, Fire, Frost, Nature and Shadow resistances by ${-($m1)}. Magic Damage taken increased by ${$w2}%.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803722:effect:0:aura:22","name":"Cursed Blood (Aura 22)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:all","operation":"flat","value":-20}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":126,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803722:effect:1:aura:87","name":"Cursed Blood (Aura 87)","disposition":"debuff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.02}]},"sourceEffectType":6,"sourceAuraType":87,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803779":{"id":"coa-triggered-803779","classId":"necromancer","dbcSpellId":803779,"name":"Ice Barrage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IB","description":"Unleash a relentless volley of glacial shards, dealing ${$m1+0+$SP*.35} Frost Damage every $t1 sec for $d. At the end of the duration, you entomb your target in ice, freezing them for $804328d.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":6,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11}],"passive":false,"source":"coa-progression"},"803841":{"id":"coa-triggered-803841","classId":"felsworn","dbcSpellId":803841,"name":"Annihilation","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AN","description":"Unleash an immense amount of felfire at an enemy, dealing ${$m1+0+$SP*0.35} Fire Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":27}],"passive":false,"source":"coa-progression"},"803958":{"id":"coa-triggered-803958","classId":"guardian","dbcSpellId":803958,"name":"Inspiration","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IN","description":"Increases attack power and spell power by $s1, scaling with Spirit for $d. Does not stack with similar effects.","target":"self","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803958:effect:0:aura:345","name":"Inspiration (Aura 345)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":345,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803958:effect:1:aura:344","name":"Inspiration (Aura 344)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","scope":"party","sourceEffectType":65,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"803962":{"id":"coa-triggered-803962","classId":"guardian","dbcSpellId":803962,"name":"Little Drummer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LD","description":"Removes a harmful magic effect.","target":"hostile","range":{"min":0,"max":0},"radius":40,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"dispel","mode":"purge","relationship":"hostile","categories":["curse"],"maxCount":1},{"kind":"resource","amount":10}],"passive":false,"source":"coa-progression"},"803965":{"id":"coa-triggered-803965","classId":"guardian","dbcSpellId":803965,"name":"Hero's Decree","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HS","description":"Attack power reduced by $s1.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:803965:effect:0:aura:99","name":"Hero's Decree (Aura 99)","disposition":"debuff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"flat","value":-50}]},"sourceEffectType":6,"sourceAuraType":99,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804007":{"id":"coa-triggered-804007","classId":"knight-of-xoroth","dbcSpellId":804007,"name":"Hellish Flames","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HF","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.20653153311561895,"basePoints":35,"dieSides":5,"pointsPerLevel":0.15000000596046448,"bonusPowerCoefficient":0,"sourceLevel":59}],"passive":false,"source":"coa-progression"},"804011":{"id":"coa-triggered-804011","classId":"knight-of-xoroth","dbcSpellId":804011,"name":"Hellish Rebuke","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HR","description":"Deals ${$m2+0} Fire Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.4,"basePoints":6,"dieSides":1,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":15}],"passive":false,"source":"coa-progression"},"804025":{"id":"coa-triggered-804025","classId":"witch-hunter","dbcSpellId":804025,"name":"Slayer of Darkness","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":0.15000000596046448,"basePoints":151,"dieSides":12,"pointsPerLevel":0,"bonusPowerCoefficient":0.15000000596046448,"sourceLevel":58}],"passive":false,"source":"coa-progression"},"804044":{"id":"coa-triggered-804044","classId":"stormbringer","dbcSpellId":804044,"name":"Add 5 Static","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804055":{"id":"coa-triggered-804055","classId":"runemaster","dbcSpellId":804055,"name":"Displace Familiar","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DF","description":"|cffffffffConsumes 1 |cffffffffInscribed Rune|r Command your |cffffffffFamiliar|r to warp to the target location, dealing ${$m3+$ppl3} Arcane Damage, where it will remain for $800740d pulsing with energy every $800740t3 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling.@s:800671:0@","target":"hostile","range":{"min":0,"max":100},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.17466666380564372,"basePoints":3,"dieSides":2,"pointsPerLevel":0.9599999785423279,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:804055:effect:1:aura:33","name":"Displace Familiar (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.05}],"passive":false,"source":"coa-progression"},"804069":{"id":"coa-triggered-804069","classId":"witch-hunter","dbcSpellId":804069,"name":"Slayer's Mark Stack Adder","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":804068},{"kind":"apply-aura","aura":{"id":"coa:804068:effect:0:aura:308","name":"Slayer's Mark (Aura 308)","disposition":"debuff","durationMs":8000,"maxStacks":8,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804068:effect:1:aura:41","name":"Slayer's Mark (Aura 41)","disposition":"debuff","durationMs":8000,"maxStacks":8,"stackBehavior":"add","utilityTags":["reveal-stealth"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":5,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804073},{"kind":"apply-aura","aura":{"id":"coa:804073:effect:0:aura:23","name":"Slayer's Mark Periodic (Aura 23)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804073:proc:0:804069","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804069}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804069}],"passive":false,"source":"coa-progression"},"804073":{"id":"coa-triggered-804073","classId":"witch-hunter","dbcSpellId":804073,"name":"Slayer's Mark Periodic","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804073:effect:0:aura:23","name":"Slayer's Mark Periodic (Aura 23)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804073:proc:0:804069","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804069}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804069}],"passive":false,"source":"coa-progression"},"804076":{"id":"coa-triggered-804076","classId":"pyromancer","dbcSpellId":804076,"name":"Meteor","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ME","description":"Calls down a meteor in an $a1 yd area, dealing ${$m1+0+$SP*1.25} Flamestrike Damage to up to $i enemies and stunning them for $300985d1.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":1,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"804084":{"id":"coa-triggered-804084","classId":"stormbringer","dbcSpellId":804084,"name":"Add 10 Static","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":803102},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:0:aura:107","name":"Static (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:1:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":18,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:803102:effect:2:aura:108","name":"Static (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":100,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804091":{"id":"coa-triggered-804091","classId":"bloodmage","dbcSpellId":804091,"name":"Monstrous Hunger","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MH","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":800491},{"kind":"heal","coefficient":0,"percentMaxHealth":0.03,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"804092":{"id":"coa-triggered-804092","classId":"bloodmage","dbcSpellId":804092,"name":"Bloodmoon Blast","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BB","description":"$s2","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":1,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":40}],"passive":false,"source":"coa-progression"},"804095":{"id":"coa-triggered-804095","classId":"cultist","dbcSpellId":804095,"name":"Gaze of C'Thun","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"Blasts an enemy with the power of the Old God C'Thun, dealing |cff01cdfeShadow Damage|r and reducing the target's |cffff8100Attack Speed|r by |cfffeff9e$s1%|r for |cfffeff9e$d|r. Damage dealt increased by $500706s1% for each stack of |cfffeff9eInsanity|r. Regenerates |cfffeff9e$s2%|r of your maximum |cff01cdfeMana|r.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804095:effect:0:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"]},"sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":0,"percentage":true},{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":801153,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"804096":{"id":"coa-triggered-804096","classId":"starcaller","dbcSpellId":804096,"name":"Mana Regeneration","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"MR","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":2,"percentage":true}],"passive":false,"source":"coa-progression"},"804098":{"id":"coa-triggered-804098","classId":"sun-cleric","dbcSpellId":804098,"name":"Gain 1 Solar Power","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GS","description":"Grants 1 |cfffeff9eSolar Power|r.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500149},{"kind":"apply-aura","aura":{"id":"coa:500149:effect:0:aura:4","name":"Solar Power (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":7,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500149:effect:1:aura:108","name":"Solar Power (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":20,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804102":{"id":"coa-triggered-804102","classId":"runemaster","dbcSpellId":804102,"name":"Riftblade","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RI","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":100},{"kind":"apply-aura","aura":{"id":"coa:804102:effect:2:aura:23","name":"Riftblade (Aura 23)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804102:proc:2:803019","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":803019}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":803019}],"passive":false,"source":"coa-progression"},"804107":{"id":"coa-triggered-804107","classId":"witch-doctor","dbcSpellId":804107,"name":"Dark Jujubolt","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DJ","description":"Sends a bolt of dark juju at an enemy, dealing |cff01cdfe$s1 Shadow Damage|r. After casting this spell, your |cffb0f67aHealing|r Done will be reduced by |cfffeff9e$804107s3%|r for $804107d. |cFFFF00FFThis ability |cfffeff9eInvokes|r the Loa Hir'eek.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"apply-aura","aura":{"id":"coa:804107:effect:1:aura:136","name":"Dark Jujubolt (Aura 136)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"healing","direction":"done","operation":"percent","value":-0.4}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":136,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804110":{"id":"coa-triggered-804110","classId":"ranger","dbcSpellId":804110,"name":"Power Shots","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Quick Shots and Heartseekers deal an additional ${$w2}% Ranged Weapon Damage and generate a bonus Archery Point. Heartseekers affected by this also fire at a ${$w1}% increased rate.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:0:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:1:aura:108","name":"Power Shots (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804110:effect:2:aura:42","name":"Power Shots (Aura 42)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804110:proc:2:805974","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":805974}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":805974}],"passive":false,"source":"coa-progression"},"804112":{"id":"coa-triggered-804112","classId":"necromancer","dbcSpellId":804112,"name":"Lichfrost","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LI","description":"Generates $/10;s2 |cff01cdfeRunic Power|r.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":16,"triggerSpellId":0,"durationMs":0},{"kind":"resource","amount":62}],"passive":false,"source":"coa-progression"},"804114":{"id":"coa-triggered-804114","classId":"cultist","dbcSpellId":804114,"name":"Blade of N'Zoth","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BO","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":32,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"804153":{"id":"coa-triggered-804153","classId":"cultist","dbcSpellId":804153,"name":"Black Blood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BB","description":"Heals nearby allies for $s2.","target":"self","range":{"min":0,"max":0},"radius":30,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804153:effect:0:aura:8","name":"Black Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":8,"miscValue":0,"triggerSpellId":0},{"kind":"hot","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11,"ticks":5,"intervalMs":3000}],"passive":false,"source":"coa-progression"},"804170":{"id":"coa-triggered-804170","classId":"knight-of-xoroth","dbcSpellId":804170,"name":"Hellseed Ritual","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HR","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"804252":{"id":"coa-triggered-804252","classId":"sun-cleric","dbcSpellId":804252,"name":"Blessing of Absolution","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BO","description":"Deals $s1 Holy Damage in a cone.","target":"hostile","range":{"min":0,"max":50000},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"threat","mode":"flat","amount":15}],"passive":false,"source":"coa-progression"},"804301":{"id":"coa-triggered-804301","classId":"pyromancer","dbcSpellId":804301,"name":"Flamecasting","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FL","description":"Increases your spell haste by $s2%$?s706859[ and Spirit by $706859s1%][] for $d. Stacks $u times. Additional applications do not refresh duration.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804301:effect:0:aura:137","name":"Flamecasting (Aura 137)","disposition":"buff","durationMs":15000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"spirit","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":137,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804301:effect:1:aura:216","name":"Flamecasting (Aura 216)","disposition":"buff","durationMs":15000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804301:effect:2:aura:108","name":"Flamecasting (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":15,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804312":{"id":"coa-triggered-804312","classId":"reaper","dbcSpellId":804312,"name":"Soul Harvester","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SH","description":"After killing an enemy you generate $/10;359018s1 Runic Power every $t2 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":10000},{"kind":"apply-aura","aura":{"id":"coa:804312:effect:1:aura:23","name":"Soul Harvester (Aura 23)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804312:proc:1:359018","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":359018}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":359018},{"kind":"apply-aura","aura":{"id":"coa:804312:effect:2:aura:94","name":"Soul Harvester (Aura 94)","disposition":"buff","durationMs":10000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":94,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804315":{"id":"coa-triggered-804315","classId":"primalist","dbcSpellId":804315,"name":"Rapid Regeneration","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RR","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.02,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"resource","amount":2,"percentage":true}],"passive":false,"source":"coa-progression"},"804328":{"id":"coa-triggered-804328","classId":"necromancer","dbcSpellId":804328,"name":"Frozen","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FR","description":"Stuns an enemy for $d and deals Physical Damage equal to $s2% of their Maximum Health.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804328:effect:0:aura:26","name":"Frozen (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804328:effect:1:aura:26","name":"Frozen (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804328:effect:2:aura:4","name":"Frozen (Aura 4)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804329":{"id":"coa-triggered-804329","classId":"ranger","dbcSpellId":804329,"name":"Advantage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AD","description":"Consumed by some abilities to boost their effectivness.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804329:effect:0:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:1:aura:107","name":"Advantage (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":40}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804329:effect:2:aura:108","name":"Advantage (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804341":{"id":"coa-triggered-804341","classId":"barbarian","dbcSpellId":804341,"name":"You Want Axe?","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"YW","description":"Refreshes 3 charges of |cffffffffBerserker Axe|r and your next 3 casts now consume a stack to cost $s2% less Energy for $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":187,"auraType":0,"miscValue":60,"triggerSpellId":0,"durationMs":12000},{"kind":"apply-aura","aura":{"id":"coa:804341:effect:1:aura:108","name":"You Want Axe? (Aura 108)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804346":{"id":"coa-triggered-804346","classId":"knight-of-xoroth","dbcSpellId":804346,"name":"Hellfire Skin","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HS","description":"Damage taken reduced by ${$w1}%. Fire Damage reduced by an additional ${$w2}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804346:effect:0:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804346:effect:1:aura:87","name":"Hellfire Skin (Aura 87)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"fire","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":4,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804347":{"id":"coa-triggered-804347","classId":"barbarian","dbcSpellId":804347,"name":"Savagery","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SA","description":"Heals you for ${$m1+0+$AP*0.11}.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":560521},{"kind":"apply-aura","aura":{"id":"coa:560521:effect:0:aura:8","name":"Born in Blood (Aura 8)","disposition":"buff","hideFromAuraStrip":true,"durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":8,"miscValue":3,"triggerSpellId":0},{"kind":"hot","coefficient":0.13333333333333333,"basePoints":5,"dieSides":1,"pointsPerLevel":0.5,"bonusPowerCoefficient":0,"sourceLevel":10,"ticks":3,"intervalMs":1000},{"kind":"apply-aura","aura":{"id":"coa:560521:effect:1:aura:24","name":"Born in Blood (Aura 24)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":24,"miscValue":3,"triggerSpellId":0},{"kind":"resource","amount":9},{"kind":"apply-aura","aura":{"id":"coa:560521:effect:2:aura:79","name":"Born in Blood (Aura 79)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804349":{"id":"coa-triggered-804349","classId":"felsworn","dbcSpellId":804349,"name":"Betray","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BE","description":"Damage taken reduced by ${$w2}%.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"804355":{"id":"coa-triggered-804355","classId":"primalist","dbcSpellId":804355,"name":"Rumbler","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RU","description":"At 2 stacks Geode Barrage transforms into Seismic Lance.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804355:effect:0:aura:4","name":"Rumbler (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":2,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804372":{"id":"coa-triggered-804372","classId":"felsworn","dbcSpellId":804372,"name":"Self Damage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SD","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":174,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"804378":{"id":"coa-triggered-804378","classId":"starcaller","dbcSpellId":804378,"name":"Scattered Stars","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Can be consumed by spells to deal additional Arcane Damage.$?s704797[ and increases your Arcane Damage dealt by $704797s1%.][] Lasts $d, stacking $u times.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:0:aura:271","name":"Scattered Stars (Aura 271)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:1:aura:308","name":"Scattered Stars (Aura 308)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:2:aura:330","name":"Scattered Stars (Aura 330)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":64,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804457":{"id":"coa-triggered-804457","classId":"bloodmage","dbcSpellId":804457,"name":"Worn Out","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WO","description":"You are worn out and can no longer benefit from powerful raid-wide haste auras.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804457:effect:0:aura:4","name":"Worn Out (Aura 4)","disposition":"debuff","durationMs":300000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804488":{"id":"coa-triggered-804488","classId":"chronomancer","dbcSpellId":804488,"name":"Sands of Time","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SO","description":"Reduces the cast time of |cffffffffEpoch|r by $s1% for $d, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804488:effect:0:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:1:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":21,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804488:effect:2:aura:108","name":"Sands of Time (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":6,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804523":{"id":"coa-triggered-804523","classId":"starcaller","dbcSpellId":804523,"name":"Bathe","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BA","description":"Healing Taken increased by ${$w2}%.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:0:aura:4","name":"Bathe (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:1:aura:118","name":"Bathe (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:2:aura:283","name":"Bathe (Aura 283)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add"},"sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804536":{"id":"coa-triggered-804536","classId":"necromancer","dbcSpellId":804536,"name":"Ray of Rot","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RO","description":"Diseases tick ${$w1}% faster and deal ${$w2}% increased damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"804551":{"id":"coa-triggered-804551","classId":"runemaster","dbcSpellId":804551,"name":"Thaumaturgy","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TH","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":520096},{"kind":"damage","coefficient":4,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":520108},{"kind":"apply-aura","aura":{"id":"coa:520108:effect:0:aura:26","name":"Overloaded Frost Glyph (Aura 26)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:520108:effect:1:aura:26","name":"Overloaded Frost Glyph (Aura 26)","disposition":"debuff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":520097},{"kind":"damage","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13},{"kind":"apply-aura","aura":{"id":"coa:520097:effect:1:aura:3","name":"Unleashed Flame Glyph (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":2.9761904761904763,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13,"ticks":3,"intervalMs":2000,"tag":"spell-520097"},{"kind":"trigger-spell","spellId":520098},{"kind":"damage","coefficient":3.066666666666667,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":15}],"passive":false,"source":"coa-progression"},"804592":{"id":"coa-triggered-804592","classId":"stormbringer","dbcSpellId":804592,"name":"Electrocutioner","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EL","description":"Resets the cooldown of |cffffffffElectrocute|r and makes your next usable regardless of the target's health percentage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804592:effect:0:aura:262","name":"Electrocutioner (Aura 262)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":262,"miscValue":0,"triggerSpellId":0},{"kind":"cooldown-reset","mode":"reset","abilityName":"Electrocute"},{"kind":"apply-aura","aura":{"id":"coa:804592:effect:2:aura:108","name":"Electrocutioner (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804679":{"id":"coa-triggered-804679","classId":"chronomancer","dbcSpellId":804679,"name":"Reverse Wound","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RW","description":"No client tooltip is available.","target":"friendly","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":800857,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"804701":{"id":"coa-triggered-804701","classId":"runemaster","dbcSpellId":804701,"name":"Displace Familiar","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DF","description":"|cffffffffConsumes 1 |cffffffffInscribed Rune|r Command your |cffffffffFamiliar|r to warp to the target location where it will remain for $800740d pulsing with Energy every $800740t3 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling.@s:800671:0@","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":804055,"withValue":0},{"kind":"damage","coefficient":0.17466666380564372,"basePoints":3,"dieSides":2,"pointsPerLevel":0.9599999785423279,"bonusPowerCoefficient":0,"sourceLevel":10},{"kind":"apply-aura","aura":{"id":"coa:804055:effect:1:aura:33","name":"Displace Familiar (Aura 33)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":4000,"magnitude":0.05}],"passive":false,"source":"coa-progression"},"804716":{"id":"coa-triggered-804716","classId":"starcaller","dbcSpellId":804716,"name":"Consume Scattered Stars","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CS","description":"Deals ${$804995m1+$SP*0.182183} Arcane Damage and restores $804994s2% maximum mana for each |cff66ccffScattered Star|R.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804716:effect:0:aura:23","name":"Consume Scattered Stars (Aura 23)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804716:proc:0:804995","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804995}}}]},"sourceEffectType":6,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804995}],"passive":false,"source":"coa-progression"},"804857":{"id":"coa-triggered-804857","classId":"bloodmage","dbcSpellId":804857,"name":"Blood Trail","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BT","description":"Bloodmage gain stacking movement speed and damage in Blood Trails.","target":"hostile","range":{"min":0,"max":100},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":27,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":30000},{"kind":"apply-aura","aura":{"id":"coa:804857:effect:1:aura:23","name":"Blood Trail (Aura 23)","disposition":"debuff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","procs":[{"id":"coa:804857:proc:1:804859","triggers":["periodic"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":804859}}}]},"sourceEffectType":27,"sourceAuraType":23,"miscValue":0,"triggerSpellId":804859},{"kind":"utility","action":"class-script","effectType":27,"auraType":0,"miscValue":0,"triggerSpellId":805264,"durationMs":30000}],"passive":false,"source":"coa-progression"},"804859":{"id":"coa-triggered-804859","classId":"bloodmage","dbcSpellId":804859,"name":"Trail of Blood","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TO","description":"Movement speed cannot be reduced below $s1%. Movement speed increased by $s3%. Damage dealt increased by $s2%.","target":"friendly","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804859:effect:0:aura:305","name":"Trail of Blood (Aura 305)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":305,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804859:effect:1:aura:79","name":"Trail of Blood (Aura 79)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.05}]},"sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804859:effect:2:aura:31","name":"Trail of Blood (Aura 31)","disposition":"buff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.2}]},"sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804862":{"id":"coa-triggered-804862","classId":"barbarian","dbcSpellId":804862,"name":"Jawbreaker","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"JA","description":"Melee and ranged haste increased by $s1%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804862:effect:0:aura:192","name":"Jawbreaker (Aura 192)","disposition":"buff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.3}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"resource","amount":15}],"passive":false,"source":"coa-progression"},"804871":{"id":"coa-triggered-804871","classId":"pyromancer","dbcSpellId":804871,"name":"Forceblast","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FO","description":"Knocks the target back.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"movement","movement":"knockback","toward":"away"}],"passive":false,"source":"coa-progression"},"804972":{"id":"coa-triggered-804972","classId":"venomancer","dbcSpellId":804972,"name":"Brood Mark","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BM","description":"Can be consumed to add an additional effect to the Venomancer's abilities.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804972:effect:0:aura:108","name":"Brood Mark (Aura 108)","disposition":"buff","durationMs":15000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804972:effect:1:aura:107","name":"Brood Mark (Aura 107)","disposition":"buff","durationMs":15000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804972:effect:2:aura:107","name":"Brood Mark (Aura 107)","disposition":"buff","durationMs":15000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":23,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804995":{"id":"coa-triggered-804995","classId":"starcaller","dbcSpellId":804995,"name":"Scattered Star","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"You call a small comet down from the sky, dealing ${$m1+0} Arcane Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.1798506254951159,"basePoints":7,"dieSides":2,"pointsPerLevel":1.132830023765564,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"trigger-spell","spellId":801401},{"kind":"heal","coefficient":0.5237179520802621,"basePoints":31,"dieSides":2,"pointsPerLevel":0.8500000238418579,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"apply-aura","aura":{"id":"coa:801401:effect:1:aura:283","name":"Aspect of the Goddess (Aura 283)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804378},{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:0:aura:271","name":"Scattered Stars (Aura 271)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","school":"arcane","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":64,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:1:aura:308","name":"Scattered Stars (Aura 308)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":308,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804378:effect:2:aura:330","name":"Scattered Stars (Aura 330)","disposition":"debuff","durationMs":30000,"maxStacks":4,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":330,"miscValue":64,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"804996":{"id":"coa-triggered-804996","classId":"starcaller","dbcSpellId":804996,"name":"Shooting Star","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:804996:effect:0:aura:77","name":"Shooting Star (Aura 77)","disposition":"buff","durationMs":5000,"maxStacks":120,"stackBehavior":"add","controlImmunities":["root"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":77,"miscValue":11,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804996:effect:1:aura:108","name":"Shooting Star (Aura 108)","disposition":"buff","durationMs":5000,"maxStacks":120,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804996:effect:2:aura:4","name":"Shooting Star (Aura 4)","disposition":"buff","durationMs":5000,"maxStacks":120,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"805006":{"id":"coa-triggered-805006","classId":"starcaller","dbcSpellId":805006,"name":"Shooting Star","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"You charge at an enemy with the force of a shooting star, dealing |cff01cdfe$s3 Arcane Damage|r and knocking them back a short distance. After hitting your target, your |cffff8100Movement Speed|r is increased by |cfffeff9e$804998s3%|r for |cfffeff9e$804998d|r. The damage dealt and knockback of this spell is increased based on the distance travelled during the charge.","target":"hostile","range":{"min":0,"max":5},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0},{"kind":"damage","coefficient":0.20833333333333334,"basePoints":4,"dieSides":3,"pointsPerLevel":1.5,"bonusPowerCoefficient":0,"sourceLevel":5}],"passive":false,"source":"coa-progression"},"805031":{"id":"coa-triggered-805031","classId":"necromancer","dbcSpellId":805031,"name":"Sacrifice Undead","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SU","description":"Destroys an Undead minion and heals the caster.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"execute","coefficient":1},{"kind":"heal","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":4}],"passive":false,"source":"coa-progression"},"805077":{"id":"coa-triggered-805077","classId":"reaper","dbcSpellId":805077,"name":"Soul Fragment","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SF","description":"At $u stacks, generate a |cff5ee2ffReaped Soul|r.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805077:effect:0:aura:4","name":"Soul Fragment (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805078,"withValue":100},{"kind":"trigger-spell","spellId":500363},{"kind":"trigger-spell","spellId":504034},{"kind":"apply-aura","aura":{"id":"coa:500363:effect:1:aura:107","name":"Reaped Soul (Aura 107)","disposition":"buff","durationMs":300000010,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805077},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":505150,"durationMs":30000}],"passive":false,"source":"coa-progression"},"805078":{"id":"coa-triggered-805078","classId":"reaper","dbcSpellId":805078,"name":"Generate a Reaped Soul","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GA","description":"Generates a |cff5ee2ffReaped Soul|r.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":524287,"triggerSpellId":0,"durationMs":0},{"kind":"trigger-spell","spellId":500363},{"kind":"trigger-spell","spellId":504034},{"kind":"apply-aura","aura":{"id":"coa:504034:effect:0:aura:79","name":"Spectral Affinity (Aura 79)","disposition":"buff","durationMs":10000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"dealt","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":79,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:500363:effect:1:aura:107","name":"Reaped Soul (Aura 107)","disposition":"buff","durationMs":300000010,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0.01}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":4,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805077},{"kind":"apply-aura","aura":{"id":"coa:805077:effect:0:aura:4","name":"Soul Fragment (Aura 4)","disposition":"buff","durationMs":30000,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":805078,"withValue":100}],"passive":false,"source":"coa-progression"},"805187":{"id":"coa-triggered-805187","classId":"reaper","dbcSpellId":805187,"name":"Essence Invigoration","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EI","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.05,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1}],"passive":false,"source":"coa-progression"},"805352":{"id":"coa-triggered-805352","classId":"bloodmage","dbcSpellId":805352,"name":"Ravenous Strike","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RS","description":"Generates $/10;s2 Rage. $s1","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"resource","amount":30}],"passive":false,"source":"coa-progression"},"805592":{"id":"coa-triggered-805592","classId":"bloodmage","dbcSpellId":805592,"name":"Bloodsore","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BL","description":"Increases the damage of your next |cffffffffSanguine Rupture|r and |cffffffffBloodmoon Blast|r against the target by $s1% for $d, stacking $u times.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805592:effect:0:aura:271","name":"Bloodsore (Aura 271)","disposition":"debuff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0.1}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"805601":{"id":"coa-triggered-805601","classId":"pyromancer","dbcSpellId":805601,"name":"Slag Barrage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SB","description":"Deals ${$m1+($pl*2.2)} Fire Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.5044444455040826,"basePoints":20,"dieSides":2,"pointsPerLevel":2.200000047683716,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"trigger-spell","spellId":806470},{"kind":"apply-aura","aura":{"id":"coa:806470:effect:1:aura:33","name":"Slag Barrage (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.15},{"kind":"trigger-spell","spellId":804871},{"kind":"movement","movement":"knockback","toward":"away"}],"passive":false,"source":"coa-progression"},"805663":{"id":"coa-triggered-805663","classId":"tinker","dbcSpellId":805663,"name":"Quickscope","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"QU","description":"Casting speed of your next Snipe decreased by $/1000;s1 sec. Damage and critical strike chance increased by $s2%. Stacks $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"805688":{"id":"coa-triggered-805688","classId":"starcaller","dbcSpellId":805688,"name":"Slipstream","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SL","description":"Heals for $s1.","target":"hostile","range":{"min":0,"max":50000},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":706984},{"kind":"heal","coefficient":0.08,"basePoints":2,"dieSides":1,"pointsPerLevel":1,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"trigger-spell","spellId":804523},{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:0:aura:4","name":"Bathe (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:1:aura:118","name":"Bathe (Aura 118)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.03}]},"sourceEffectType":6,"sourceAuraType":118,"miscValue":16,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:804523:effect:2:aura:283","name":"Bathe (Aura 283)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add"},"sourceEffectType":6,"sourceAuraType":283,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"805730":{"id":"coa-triggered-805730","classId":"runemaster","dbcSpellId":805730,"name":"Glacial Rune","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GR","description":"Place a rune at the target location that explodes after 1 sec with frigid magic, dealing ${$805730m2+$805730ppl2+$SP*.3} Frost Damage to enemies inside and freezing them in place for $d (8 sec vs players). Damage caused may interrupt the effect. Can only affect 1 target at a time.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805730:effect:0:aura:26","name":"Glacial Rune (Aura 26)","disposition":"debuff","durationMs":40000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.4000000059604645,"basePoints":45,"dieSides":2,"pointsPerLevel":1.9864000082015991,"bonusPowerCoefficient":0.4000000059604645,"sourceLevel":18}],"passive":false,"source":"coa-progression"},"805774":{"id":"coa-triggered-805774","classId":"venomancer","dbcSpellId":805774,"name":"Apply Fang Venom","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AF","description":"Applies current Poison effect.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":0,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"805799":{"id":"coa-triggered-805799","classId":"knight-of-xoroth","dbcSpellId":805799,"name":"Rage of Xoroth","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RO","description":"Enraged. Melee Attack Speed increased by ${$w1}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805799:effect:0:aura:138","name":"Rage of Xoroth (Aura 138)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.15}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":7,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"805801":{"id":"coa-triggered-805801","classId":"cultist","dbcSpellId":805801,"name":"Wracked Mind","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WM","description":"Cannot be affected by |cffffffffVoid Shield|r. Lasts for $d.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805801:effect:0:aura:4","name":"Wracked Mind (Aura 4)","disposition":"buff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"805822":{"id":"coa-triggered-805822","classId":"barbarian","dbcSpellId":805822,"name":"Blood and Glory","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BA","description":"Damage taken reduced by ${$w1}%. Healing received increased by ${$w2}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805822:effect:0:aura:87","name":"Blood and Glory (Aura 87)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805822:effect:1:aura:118","name":"Blood and Glory (Aura 118)","disposition":"buff","durationMs":3000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"healing","direction":"taken","operation":"percent","value":0.2}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":118,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"805894":{"id":"coa-triggered-805894","classId":"venomancer","dbcSpellId":805894,"name":"Adrenal Venom","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AV","description":"Heals allies around the target.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:805894:effect:0:aura:192","name":"Adrenal Venom (Aura 192)","disposition":"buff","durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.06}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:805894:effect:1:aura:216","name":"Adrenal Venom (Aura 216)","disposition":"buff","durationMs":6000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.03}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":216,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"805895":{"id":"coa-triggered-805895","classId":"venomancer","dbcSpellId":805895,"name":"Debilitating Venom","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DV","description":"Movement speed slowed by $s1% for $d.","target":"hostile","range":{"min":0,"max":100},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805895:effect:0:aura:33","name":"Debilitating Venom (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.4}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.4}],"passive":false,"source":"coa-progression"},"805966":{"id":"coa-triggered-805966","classId":"knight-of-xoroth","dbcSpellId":805966,"name":"Hellfire Imp","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HI","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"summon","creatureId":50301,"coefficient":0.08,"durationMs":12000}],"passive":false,"source":"coa-progression"},"805974":{"id":"coa-triggered-805974","classId":"ranger","dbcSpellId":805974,"name":"Generate 1 Advantage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GA","description":"Consumed by some abilities to boost their effect.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:805974:effect:0:aura:4","name":"Generate 1 Advantage (Aura 4)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"]},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806039":{"id":"coa-triggered-806039","classId":"cultist","dbcSpellId":806039,"name":"Black Prayer","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BP","description":"Deals ${$m1*$+$sps*.12+$AP*.005} Shadow Damage every $t1 sec and reduces attack speed by $520418s1%.","target":"hostile","range":{"min":0,"max":30},"radius":8,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806039:effect:0:aura:3","name":"Black Prayer (Aura 3)","disposition":"debuff","hideFromAuraStrip":true,"durationMs":9000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":3,"miscValue":0,"triggerSpellId":0},{"kind":"dot","coefficient":0.634703196347032,"basePoints":136,"dieSides":7,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":58,"ticks":3,"intervalMs":3000,"tag":"spell-806039"},{"kind":"trigger-spell","spellId":520418},{"kind":"apply-aura","aura":{"id":"coa:520418:effect:0:aura:192","name":"Withered (Aura 192)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":-0.2}]},"sourceEffectType":6,"sourceAuraType":192,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806068":{"id":"coa-triggered-806068","classId":"primalist","dbcSpellId":806068,"name":"Earth's Rage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ES","description":"Increases movement speed by $s1% and haste by $s2% for $d, stacking $u times.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806068:effect:0:aura:31","name":"Earth's Rage (Aura 31)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.04}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":31,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806068:effect:1:aura:138","name":"Earth's Rage (Aura 138)","disposition":"buff","durationMs":8000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":127,"triggerSpellId":0},{"kind":"trigger-spell","spellId":680472},{"kind":"apply-aura","aura":{"id":"coa:680472:effect:0:aura:47","name":"Call of the Mountain (Aura 47)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:680472:effect:1:aura:87","name":"Call of the Mountain (Aura 87)","disposition":"buff","durationMs":300000010,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806147":{"id":"coa-triggered-806147","classId":"reaper","dbcSpellId":806147,"name":"Ghastly Screech","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GS","description":"Deals $s1 Shadowfrost Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.574468085106383,"basePoints":81,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":32}],"passive":false,"source":"coa-progression"},"806158":{"id":"coa-triggered-806158","classId":"tinker","dbcSpellId":806158,"name":"Healthy","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HE","description":"Immune to Poison, Disease and Bleed effects.","target":"friendly","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806158:effect:0:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":4,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:1:aura:77","name":"Healthy (Aura 77)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":15,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806158:effect:2:aura:41","name":"Healthy (Aura 41)","disposition":"buff","durationMs":100,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["reveal-stealth"],"dispelCategory":"poison"},"sourceEffectType":6,"sourceAuraType":41,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806194":{"id":"coa-triggered-806194","classId":"witch-hunter","dbcSpellId":806194,"name":"Dark Intuition","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DI","description":"Attack Speed increased by ${$w1}%. Parry Chance increased by ${$w2}%.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806194:effect:0:aura:138","name":"Dark Intuition (Aura 138)","disposition":"buff","durationMs":15000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"haste","operation":"percent","value":0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":138,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806194:effect:1:aura:47","name":"Dark Intuition (Aura 47)","disposition":"buff","durationMs":15000,"maxStacks":2,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"parry","operation":"percent","value":0.02}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":47,"miscValue":3,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806219":{"id":"coa-triggered-806219","classId":"knight-of-xoroth","dbcSpellId":806219,"name":"Spiked Chains","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SC","description":"Deals Physical Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":3.689655172413793,"basePoints":321,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":14}],"passive":false,"source":"coa-progression"},"806233":{"id":"coa-triggered-806233","classId":"starcaller","dbcSpellId":806233,"name":"Reverse Magic","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RM","description":"Reflect all harmful spells cast on you for $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806233:effect:0:aura:74","name":"Reverse Magic (Aura 74)","disposition":"buff","durationMs":2500,"maxStacks":1,"stackBehavior":"refresh","reflectSpellChance":1,"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":74,"miscValue":126,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806251":{"id":"coa-triggered-806251","classId":"cultist","dbcSpellId":806251,"name":"Eldritch Smite of C'thun","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"ES","description":"Deals bonus Shadow Damage based on your|cffcfa6ffInsanity|r.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.23333333333333334,"basePoints":7,"dieSides":4,"pointsPerLevel":2,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117066,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":117490,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"806308":{"id":"coa-triggered-806308","classId":"stormbringer","dbcSpellId":806308,"name":"Eye of the Storm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EO","description":"Deals $s1 Spellstorm Damage.","target":"hostile","range":{"min":0,"max":50000},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":8}],"passive":false,"source":"coa-progression"},"806375":{"id":"coa-triggered-806375","classId":"pyromancer","dbcSpellId":806375,"name":"Dragonflame Crash","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DC","description":"Stuns target for $d and deals Fire Damage.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806375:effect:0:aura:12","name":"Dragonflame Crash (Aura 12)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"control":{"kind":"stun"},"sourceEffectType":3,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"utility","action":"class-script","effectType":168,"auraType":0,"miscValue":120248,"triggerSpellId":0,"durationMs":-1}],"passive":false,"source":"coa-progression"},"806453":{"id":"coa-triggered-806453","classId":"starcaller","dbcSpellId":806453,"name":"Astral Aegis","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AA","description":"Deals Arcane Damage and Silences.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":3,"dieSides":1,"pointsPerLevel":0.30000001192092896,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"apply-aura","aura":{"id":"coa:806453:effect:1:aura:27","name":"Astral Aegis (Aura 27)","disposition":"debuff","durationMs":1000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":27,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":35764}],"passive":false,"source":"coa-progression"},"806455":{"id":"coa-triggered-806455","classId":"stormbringer","dbcSpellId":806455,"name":"Eye of the Storm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EO","description":"Deals $s1 Nature Damage.","target":"hostile","range":{"min":0,"max":50000},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806455:effect:0:aura:26","name":"Eye of the Storm (Aura 26)","disposition":"debuff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"control":{"kind":"root"},"sourceEffectType":3,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":8},{"kind":"trigger-spell","spellId":807712},{"kind":"apply-aura","aura":{"id":"coa:807712:effect:0:aura:26","name":"Eye of the Storm (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807712:effect:2:aura:271","name":"Eye of the Storm (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806468":{"id":"coa-triggered-806468","classId":"sun-cleric","dbcSpellId":806468,"name":"Anshe's Blessing","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AS","description":"Rooted.","target":"hostile","range":{"min":0,"max":50000},"radius":10,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.3499999940395355,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0.3499999940395355,"sourceLevel":60}],"passive":false,"source":"coa-progression"},"806470":{"id":"coa-triggered-806470","classId":"pyromancer","dbcSpellId":806470,"name":"Slag Barrage","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SB","description":"Movement speed slowed by $s2%.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:806470:effect:1:aura:33","name":"Slag Barrage (Aura 33)","disposition":"debuff","durationMs":5000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.15}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":5000,"magnitude":0.15}],"passive":false,"source":"coa-progression"},"806473":{"id":"coa-triggered-806473","classId":"witch-doctor","dbcSpellId":806473,"name":"Veil of Darkness","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VO","description":"Movement speed reduced by ${$w2}%.","target":"hostile","range":{"min":0,"max":40},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1.0712328735551877,"basePoints":194,"dieSides":1,"pointsPerLevel":0.699999988079071,"bonusPowerCoefficient":0,"sourceLevel":58}],"passive":false,"source":"coa-progression"},"806512":{"id":"coa-triggered-806512","classId":"witch-doctor","dbcSpellId":806512,"name":"Voodoo Bolt","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"VB","description":"Deals |cff01cdfe$s1 Nature Damage|r to an enemy, and increases the duration of Curses used against them by $s2% for $d, stacks up to 3 times.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:0:aura:178","name":"Voodoo Bolt (Aura 178)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":178,"miscValue":2,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806512:effect:1:aura:245","name":"Voodoo Bolt (Aura 245)","disposition":"debuff","durationMs":15000,"maxStacks":3,"stackBehavior":"add","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":245,"miscValue":2,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806553":{"id":"coa-triggered-806553","classId":"primalist","dbcSpellId":806553,"name":"Bring Me Their Bones","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BM","description":"Hunting the Bleeding enemy.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":4,"basePoints":310,"dieSides":1,"pointsPerLevel":7.25,"bonusPowerCoefficient":0,"sourceLevel":24},{"kind":"utility","action":"class-script","effectType":164,"auraType":0,"miscValue":0,"triggerSpellId":806554,"durationMs":0}],"passive":false,"source":"coa-progression"},"806554":{"id":"coa-triggered-806554","classId":"primalist","dbcSpellId":806554,"name":"Bring Me Their Bones","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BM","description":"After 5 pet attacks you will take a massive amount of Physical Damage.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806554:effect:0:aura:4","name":"Bring Me Their Bones (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806589":{"id":"coa-triggered-806589","classId":"primalist","dbcSpellId":806589,"name":"Bring Me Their Bones","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BM","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":806554},{"kind":"apply-aura","aura":{"id":"coa:806554:effect:0:aura:4","name":"Bring Me Their Bones (Aura 4)","disposition":"debuff","durationMs":15000,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"trigger-spell","spellId":806553},{"kind":"damage","coefficient":4,"basePoints":310,"dieSides":1,"pointsPerLevel":7.25,"bonusPowerCoefficient":0,"sourceLevel":24}],"passive":false,"source":"coa-progression"},"806612":{"id":"coa-triggered-806612","classId":"pyromancer","dbcSpellId":806612,"name":"Dragon Leap","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DL","description":"Crash down upon an enemy.","target":"self","range":{"min":0,"max":0},"radius":5,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806612:effect:0:aura:33","name":"Dragon Leap (Aura 33)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.25}]},"sourceEffectType":27,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806628":{"id":"coa-triggered-806628","classId":"tinker","dbcSpellId":806628,"name":"Scrapshield","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SC","description":"Absorbs ${$w1} damage.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"shield","coefficient":1,"durationMs":5000},{"kind":"apply-aura","aura":{"id":"coa:806628:effect:0:aura:69","name":"Scrapshield (Aura 69)","disposition":"buff","durationMs":5000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","absorbs":[{"id":"coa:806628:absorb:0","amount":12,"perStack":false}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":69,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806697":{"id":"coa-triggered-806697","classId":"sun-cleric","dbcSpellId":806697,"name":"Chains of Light","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"CO","description":"Cannot mount, flee, or move faster than your normal movement speed.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:806697:effect:0:aura:92","name":"Chains of Light (Aura 92)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":92,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806697:effect:1:aura:191","name":"Chains of Light (Aura 191)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":0.07}]},"sourceEffectType":6,"sourceAuraType":191,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:806697:effect:2:aura:77","name":"Chains of Light (Aura 77)","disposition":"debuff","durationMs":15000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":77,"miscValue":21,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"806960":{"id":"coa-triggered-806960","classId":"barbarian","dbcSpellId":806960,"name":"Berserker Axe","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BA","description":"|cffffffffRequires Enraged|r |cffffffff3 Charges, 8 sec recharge|r Hurl two axes at an enemy, each dealing ${$m1+0+$RAP*0.35} Physical Damage and reducing enemy armor by ${-($m3)} for $d. @ext:Shares a cooldown with |cffffffffAxe Volley|r.:ext@","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":11},{"kind":"trigger-spell","spellId":561020},{"kind":"apply-aura","aura":{"id":"coa:561020:effect:0:aura:101","name":"Berserker Axe (Aura 101)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"percent","value":-0.04}]},"sourceEffectType":6,"sourceAuraType":101,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807058":{"id":"coa-triggered-807058","classId":"sun-cleric","dbcSpellId":807058,"name":"Radiant Flame","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RF","description":"Deals Holyfire damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":13}],"passive":false,"source":"coa-progression"},"807120":{"id":"coa-triggered-807120","classId":"primalist","dbcSpellId":807120,"name":"Bramblepatch","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BR","description":"Grow a patch of brambles at your location for $d. Party members in the area are immune to grip and knockback effects, and take $s1% reduced damage.","target":"hostile","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807120:effect:0:aura:87","name":"Bramblepatch (Aura 87)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":27,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807120:effect:1:aura:107","name":"Bramblepatch (Aura 107)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":-0.8}]},"sourceEffectType":27,"sourceAuraType":107,"miscValue":3,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807120:effect:2:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":98,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807167":{"id":"coa-triggered-807167","classId":"ranger","dbcSpellId":807167,"name":"Snapseed","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SN","description":"Toss a snapseed at an enemy, dealing ${$m1+0+$RAP*.3} Physical Damage and knocking them back.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"movement","movement":"knockback","toward":"away"}],"passive":false,"source":"coa-progression"},"807179":{"id":"coa-triggered-807179","classId":"guardian","dbcSpellId":807179,"name":"Puncture","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PU","description":"Armor reduced by $s1%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807179:effect:0:aura:22","name":"Puncture (Aura 22)","disposition":"debuff","durationMs":20000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"resistance:physical","operation":"flat","value":-4}]},"sourceEffectType":6,"sourceAuraType":22,"miscValue":1,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807191":{"id":"coa-triggered-807191","classId":"guardian","dbcSpellId":807191,"name":"Refuse To Die","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RT","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reset","abilityName":"Raise Shield"}],"passive":false,"source":"coa-progression"},"807192":{"id":"coa-triggered-807192","classId":"witch-doctor","dbcSpellId":807192,"name":"Latent Curse","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"LC","description":"Your |cffffffffJinxes|r now also increase the enemy's base mana, Rage, Energy, Focus, and Runic Power costs on their spells and abilities by $s1%.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807192:effect:0:aura:72","name":"Latent Curse (Aura 72)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"curse","modifiers":[{"kind":"resource","resource":"power","property":"cost","operation":"percent","value":-0.1}]},"sourceEffectType":6,"sourceAuraType":72,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807220":{"id":"coa-triggered-807220","classId":"pyromancer","dbcSpellId":807220,"name":"Shazzrah's Boon","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"resource","amount":2,"percentage":true}],"passive":false,"source":"coa-progression"},"807235":{"id":"coa-triggered-807235","classId":"felsworn","dbcSpellId":807235,"name":"Illidan's Guile","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"IS","description":"Gorge on fel Energy, healing you for $s1% maximum health and becoming immune to all damage for $d, but unable to move or take any action. At the end of the duration, your next |$s520853[|cffffffffFel Torpedo|r][|$s520853[|cffffffffFel Torpedo|r][|cFFFFFFFFChaos Rush|r]] now dashes you an additional 20 yds.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:0:aura:33","name":"Illidan's Guile (Aura 33)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:1:aura:60","name":"Illidan's Guile (Aura 60)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"silence"},"sourceEffectType":6,"sourceAuraType":60,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807235:effect:2:aura:12","name":"Illidan's Guile (Aura 12)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"recipient":"caster","control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807249":{"id":"coa-triggered-807249","classId":"primalist","dbcSpellId":807249,"name":"Wildheart","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WI","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reduce","abilityName":"Mountain Hammer","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Boulder Dash","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Grip","amountPercent":0.05}],"passive":false,"source":"coa-progression"},"807261":{"id":"coa-triggered-807261","classId":"barbarian","dbcSpellId":807261,"name":"You Want Axe?","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"YW","description":"Refreshes a charge of |cffffffffBerserker Axe|r and |cffffffffAxe Volley|r and they now consume a stack to cost $706828s2 less Energy for $d.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"trigger-spell","spellId":804341},{"kind":"apply-aura","aura":{"id":"coa:804341:effect:1:aura:108","name":"You Want Axe? (Aura 108)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804341},{"kind":"apply-aura","aura":{"id":"coa:804341:effect:1:aura:108","name":"You Want Axe? (Aura 108)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0},{"kind":"trigger-spell","spellId":804341},{"kind":"apply-aura","aura":{"id":"coa:804341:effect:1:aura:108","name":"You Want Axe? (Aura 108)","disposition":"buff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"enrage","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.5}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":14,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807318":{"id":"coa-triggered-807318","classId":"ranger","dbcSpellId":807318,"name":"Sniper's Focus","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SS","description":"Generates ${$w1} Focus.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"resource","amount":20}],"passive":false,"source":"coa-progression"},"807344":{"id":"coa-triggered-807344","classId":"cultist","dbcSpellId":807344,"name":"Gaze of C'Thun","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GO","description":"Blasts an enemy with the power of the Old God C'Thun, dealing |cff01cdfeShadow Damage|r and reducing the target's |cffff8100Attack Speed|r by |cfffeff9e$s1%|r for |cfffeff9e$d|r. Damage dealt increased by $500706s1% for each stack of |cfffeff9eInsanity|r. Regenerates |cfffeff9e$s2%|r of your maximum |cff01cdfeMana|r.","target":"hostile","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807344:effect:0:aura:17","name":"Gaze of C'Thun (Aura 17)","disposition":"buff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["tracking"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":17,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807357":{"id":"coa-triggered-807357","classId":"bloodmage","dbcSpellId":807357,"name":"Relentless","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"Your |cFFFFFFFFAortic Assault|r channels $s1% faster for $d, stacking $u times, and each strike now extends the duration of |cffffffffTaldaram's Torment|R by $/1000;807359s1 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807357:effect:0:aura:108","name":"Relentless (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":19,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807357:effect:1:aura:108","name":"Relentless (Aura 108)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-0.05}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807357:effect:2:aura:42","name":"Relentless (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:807357:proc:2:807359","triggers":["hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807359}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807359}],"passive":false,"source":"coa-progression"},"807359":{"id":"coa-triggered-807359","classId":"bloodmage","dbcSpellId":807359,"name":"Relentless","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"RE","description":"Your |cFFFFFFFFAortic Assault|r channels $s1% faster for $d, stacking $u times, and each strike now extends the duration of |cffffffffTaldaram's Torment|R by 2 sec. Additional applications do not refresh the duration.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":177,"auraType":0,"miscValue":800772,"triggerSpellId":800772,"durationMs":0}],"passive":false,"source":"coa-progression"},"807389":{"id":"coa-triggered-807389","classId":"pyromancer","dbcSpellId":807389,"name":"Heat","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HE","description":"Heating up! At 100 |cFFFFFFFFHeat|r you will generate an |cFFFFFFFFEmber|r and empty your |cFFFFFFFFHeat|r bar.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807389:effect:0:aura:4","name":"Heat (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":150,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807389:effect:1:aura:108","name":"Heat (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":150,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807391":{"id":"coa-triggered-807391","classId":"pyromancer","dbcSpellId":807391,"name":"Generate 20 Heat","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GH","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":807389},{"kind":"apply-aura","aura":{"id":"coa:807389:effect:0:aura:4","name":"Heat (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":150,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807389:effect:1:aura:108","name":"Heat (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":150,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807394":{"id":"coa-triggered-807394","classId":"pyromancer","dbcSpellId":807394,"name":"Generate 10 Heat","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"GH","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":807389},{"kind":"apply-aura","aura":{"id":"coa:807389:effect:0:aura:4","name":"Heat (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":150,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807389:effect:1:aura:108","name":"Heat (Aura 108)","disposition":"buff","durationMs":null,"maxStacks":150,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807481":{"id":"coa-triggered-807481","classId":"stormbringer","dbcSpellId":807481,"name":"Predictable Weather","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PW","description":"Every 30 sec, your next |cffffffffStorm Alert|r or |cffffffffTorrential Wrath|r is instant cast and free of cost.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807481:effect:0:aura:108","name":"Predictable Weather (Aura 108)","disposition":"buff","durationMs":30000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"ranged-attack-power","operation":"percent","value":-1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":108,"miscValue":10,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807528":{"id":"coa-triggered-807528","classId":"bloodmage","dbcSpellId":807528,"name":"Accursed","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AC","description":"Your damaging |cffffffffMortal Form|r abilities can now be cast while moving.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807528:effect:0:aura:313","name":"Accursed (Aura 313)","disposition":"buff","durationMs":null,"maxStacks":1,"stackBehavior":"refresh"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":313,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807529":{"id":"coa-triggered-807529","classId":"runemaster","dbcSpellId":807529,"name":"Wind Walker","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WW","description":"While in |cffffffffRunic Tattoos: Air|r, the cooldown of |cffffffffRune|r spells is reduced by 5% every 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reduce","abilityName":"|cffffffffRune|r","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Guarding Rune","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Speed Rune","amountPercent":0.05}],"passive":false,"source":"coa-progression"},"807533":{"id":"coa-triggered-807533","classId":"pyromancer","dbcSpellId":807533,"name":"Ember","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EM","description":"Allows you to cast powerful abilities.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807536":{"id":"coa-triggered-807536","classId":"pyromancer","dbcSpellId":807536,"name":"Ember Consume","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EC","description":"Allows you to cast powerful abilities.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":807533},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:0:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":1,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:1:aura:4","name":"Ember (Aura 4)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","utilityTags":["coa-aura:4"]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":524287,"triggerSpellId":804301},{"kind":"apply-aura","aura":{"id":"coa:807533:effect:2:aura:107","name":"Ember (Aura 107)","disposition":"buff","durationMs":null,"maxStacks":5,"stackBehavior":"add","modifiers":[{"kind":"stat","stat":"attack-power","operation":"percent","value":0}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":107,"miscValue":7,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807563":{"id":"coa-triggered-807563","classId":"bloodmage","dbcSpellId":807563,"name":"Heartbreak","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"HE","description":"Attack or spell power increased by ${$w2}.","target":"self","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807563:effect:0:aura:344","name":"Heartbreak (Aura 344)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":344,"miscValue":0,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807563:effect:1:aura:345","name":"Heartbreak (Aura 345)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":6,"sourceAuraType":345,"miscValue":127,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807563:effect:2:aura:4","name":"Heartbreak (Aura 4)","disposition":"buff","durationMs":20000,"maxStacks":1,"stackBehavior":"refresh","utilityTags":["coa-aura:4"],"dispelCategory":"magic"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807661":{"id":"coa-triggered-807661","classId":"stormbringer","dbcSpellId":807661,"name":"Waterfall","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WA","description":"Dealing critical Froststorm Damage now reduces all of your cooldowns by 0.5 sec.","target":"hostile","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":707365,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":500932,"triggerSpellId":0,"durationMs":0},{"kind":"utility","action":"class-script","effectType":165,"auraType":0,"miscValue":503352,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"807692":{"id":"coa-triggered-807692","classId":"cultist","dbcSpellId":807692,"name":"Abyssal Ward","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AW","description":"Place an |cffffffffAbyssal Ward|r on an ally reducing their damage taken by $s2% for $d, stacking $u times. For the duration, each attack will remove 1 stack. Usable while stunned.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"utility","action":"class-script","effectType":176,"auraType":0,"miscValue":804670,"triggerSpellId":804670,"durationMs":0}],"passive":false,"source":"coa-progression"},"807693":{"id":"coa-triggered-807693","classId":"cultist","dbcSpellId":807693,"name":"Shroud of Pride","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"SO","description":"Your |cffffffffAbyssal Ward|r now stacks $s1 additional times.","target":"friendly","range":{"min":0,"max":100},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"trigger-spell","spellId":804670},{"kind":"apply-aura","aura":{"id":"coa:804670:effect:0:aura:42","name":"Abyssal Ward (Aura 42)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","procs":[{"id":"coa:804670:proc:0:807692","triggers":["damage-taken","hit"],"chance":1,"action":{"kind":"custom","id":"wow335-trigger-spell","data":{"spellId":807692}}}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":42,"miscValue":0,"triggerSpellId":807692},{"kind":"apply-aura","aura":{"id":"coa:804670:effect:1:aura:87","name":"Abyssal Ward (Aura 87)","disposition":"buff","durationMs":10000,"maxStacks":5,"stackBehavior":"add","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":-0.1}]},"recipient":"caster","sourceEffectType":6,"sourceAuraType":87,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807712":{"id":"coa-triggered-807712","classId":"stormbringer","dbcSpellId":807712,"name":"Eye of the Storm","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"EO","description":"Rooted.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807712:effect:0:aura:26","name":"Eye of the Storm (Aura 26)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"root"},"sourceEffectType":6,"sourceAuraType":26,"miscValue":0,"triggerSpellId":0},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":4000},{"kind":"apply-aura","aura":{"id":"coa:807712:effect:2:aura:271","name":"Eye of the Storm (Aura 271)","disposition":"debuff","durationMs":4000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"damage","direction":"taken","operation":"percent","value":0}]},"sourceEffectType":6,"sourceAuraType":271,"miscValue":127,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807746":{"id":"coa-triggered-807746","classId":"runemaster","dbcSpellId":807746,"name":"Wind Walker","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WW","description":"While in |cffffffffRunic Tattoos: Air|r, the cooldown of |cffffffffRune|r spells is reduced by 5% every 5 sec.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"cooldown-reset","mode":"reduce","abilityName":"|cffffffffRune|r","amountPercent":0.05},{"kind":"cooldown-reset","mode":"reduce","abilityName":"Tempo","amountPercent":0.05}],"passive":false,"source":"coa-progression"},"807859":{"id":"coa-triggered-807859","classId":"primalist","dbcSpellId":807859,"name":"Bramblepatch","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"BR","description":"Grow a patch of brambles at your location for $d. Party members in the area are immune to grip and knockback effects, and take $s1% reduced damage.","target":"hostile","range":{"min":0,"max":0},"radius":6,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807859:effect:0:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":96,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807859:effect:1:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":29,"triggerSpellId":0},{"kind":"apply-aura","aura":{"id":"coa:807859:effect:2:aura:37","name":"Bramblepatch (Aura 37)","disposition":"debuff","durationMs":12000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"sourceEffectType":27,"sourceAuraType":37,"miscValue":41,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807890":{"id":"coa-triggered-807890","classId":"templar","dbcSpellId":807890,"name":"Divine Force","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DF","description":"Leap at an enemy with divine force, stunning them for $d, dealing ${$m3+0+$SP*1+$AP*.55} Holy Damage, and interrupting non-player spellcasting for $32747d.","target":"hostile","range":{"min":0,"max":15},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:807890:effect:0:aura:12","name":"Divine Force (Aura 12)","disposition":"debuff","durationMs":6000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic"},"control":{"kind":"stun"},"sourceEffectType":6,"sourceAuraType":12,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"807961":{"id":"coa-triggered-807961","classId":"felsworn","dbcSpellId":807961,"name":"Annihilation","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"AN","description":"Gorge on fel energy, guaranteeing your next $n instances of damage to critically strike, but causing them to consume 5% of your maximum health and Energy.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"trigger-spell","spellId":804372}],"passive":false,"source":"coa-progression"},"807962":{"id":"coa-triggered-807962","classId":"felsworn","dbcSpellId":807962,"name":"Doomstride","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DO","description":"You Enrage for $d, reducing the cooldown of your Felrend ability by $s2% and causing it to deal $s1% increased damage. While active your Movement Speed is also increased by $s3%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"apply-aura","aura":{"id":"coa:807962:effect:0:aura:4","name":"Doomstride (Aura 4)","disposition":"buff","durationMs":2000,"maxStacks":2,"stackBehavior":"add","utilityTags":["coa-aura:4"],"dispelCategory":"enrage"},"recipient":"caster","sourceEffectType":6,"sourceAuraType":4,"miscValue":0,"triggerSpellId":0}],"passive":false,"source":"coa-progression"},"808016":{"id":"coa-triggered-808016","classId":"necromancer","dbcSpellId":808016,"name":"Death's Due","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"DS","description":"Force a target to accept the reality of death, removing any invulnerability or immunity effects from them and cursing them for $d. If the target drops below 20% health after $d, they take ${$m1+0+$SP*2} Shadow Damage.","target":"hostile","range":{"min":0,"max":30},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":0.08,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":40}],"passive":false,"source":"coa-progression"},"808022":{"id":"coa-triggered-808022","classId":"runemaster","dbcSpellId":808022,"name":"Palm Sigil: Frost","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"PS","description":"Movement speed slowed by ${$w1}%.","target":"hostile","range":{"min":0,"max":50000},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"apply-aura","aura":{"id":"coa:808022:effect:0:aura:33","name":"Palm Sigil: Frost (Aura 33)","disposition":"debuff","durationMs":8000,"maxStacks":1,"stackBehavior":"refresh","dispelCategory":"magic","modifiers":[{"kind":"stat","stat":"movement-speed","operation":"percent","value":-0.7}]},"sourceEffectType":6,"sourceAuraType":33,"miscValue":0,"triggerSpellId":0},{"kind":"status","status":"slow","durationMs":8000,"magnitude":0.7}],"passive":false,"source":"coa-progression"},"810040":{"id":"coa-triggered-810040","classId":"primalist","dbcSpellId":810040,"name":"Wildheart","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"WI","description":"No client tooltip is available.","target":"self","range":{"min":0,"max":0},"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"rage","amount":0},"effects":[{"kind":"heal","coefficient":0,"percentMaxHealth":0.05,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"bonusPowerCoefficient":0,"sourceLevel":1},{"kind":"resource","amount":5,"percentage":true},{"kind":"resource","amount":5,"percentage":true}],"passive":false,"source":"coa-progression"},"983369":{"id":"coa-triggered-983369","classId":"sun-cleric","dbcSpellId":983369,"name":"Firefall","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FI","description":"You summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing $983370s1 Fire damage. Also causes $983372s1 Fire damage to all other enemies within $983372a1 yards of the enemy target. Maximum 20 stars. Lasts $983368d.","target":"hostile","range":{"min":0,"max":0},"radius":20,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"damage","coefficient":1},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":0,"triggerSpellId":0,"durationMs":0}],"passive":false,"source":"coa-progression"},"985329":{"id":"coa-triggered-985329","classId":"witch-doctor","dbcSpellId":985329,"name":"Feign Death","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"FD","description":"No client tooltip is available.","target":"hostile","range":{"min":0,"max":0},"radius":100,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"mana","amount":0},"effects":[{"kind":"threat","mode":"percent","amount":-99}],"passive":false,"source":"coa-progression"},"1397742":{"id":"coa-triggered-1397742","classId":"templar","dbcSpellId":1397742,"name":"Testament of Hope","unlockLevel":1,"icon":"/assets/ui/spells/inv_misc_questionmark.png","sigil":"TO","description":"Summons 2 copies of yourself that charge at a nearby enemy and aid you in combat for 20 seconds. While within 15 yds of you, each copy reduces all damage you take by -25%. Applies Sacred Restraint for 1 minute.Sacred RestraintCannot be targeted by Testaments.","target":"self","range":{"min":0,"max":0},"radius":3,"castMode":"instant","castTimeMs":0,"cooldownMs":0,"gcdMs":0,"cost":{"resource":"energy","amount":0},"effects":[{"kind":"summon","creatureId":50250,"coefficient":0.08,"durationMs":20000},{"kind":"utility","action":"class-script","effectType":3,"auraType":0,"miscValue":805412,"triggerSpellId":0,"durationMs":20000}],"passive":false,"source":"coa-progression"}}} diff --git a/src/game/generated/coaTriggeredSpellCatalog.json b/src/game/generated/coaTriggeredSpellCatalog.json new file mode 100644 index 00000000..ec43d410 --- /dev/null +++ b/src/game/generated/coaTriggeredSpellCatalog.json @@ -0,0 +1 @@ +{"schemaVersion":1,"spells":[{"id":500917,"name":"Add Carnage","rankText":"","description":"Being torn to shreds.","categoryId":60,"dispelType":0,"mechanic":0,"attributes":[2216951808,0,0,0,1048576,0,8388608,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":20,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1531,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800951,"name":"Battle Rhythm","rankText":"","description":"Grants 5 Energy.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":8000,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2025,"powerCostPercentage":13,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":-1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806960,"name":"Berserker Axe","rankText":"Damage","description":"|cffffffffRequires Enraged|r |cffffffff3 Charges, 8 sec recharge|r Hurl two axes at an enemy, each dealing ${$m1+0+$RAP*0.35} Physical Damage and reducing enemy armor by ${-($m3)} for $d. @ext:Shares a cooldown with |cffffffffAxe Volley|r.:ext@","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65552,0,1073872896,0,262144,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":30,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":65536,"iconId":8547,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":3,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":561020,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":561020,"name":"Berserker Axe","rankText":"Armor Cut","description":"Armor reduced by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":18,"durationMs":20000,"powerType":3,"powerCost":30,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8547,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":101,"basePoints":-4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805822,"name":"Blood and Glory","rankText":"","description":"Damage taken reduced by ${$w1}%. Healing received increased by ${$w2}%.","categoryId":55,"dispelType":0,"mechanic":0,"attributes":[0,136,0,0,0,8,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":27,"durationMs":3000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6405,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":87,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":118,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802760,"name":"Born Killer","rankText":"Proc","description":"Dealing damage to this target reduces their movement speed by $s1% for $d, stacking 4 times. At 4 stacks, the next instance of damage will knock the spear off and lodge it into the ground, boosting morale, and reducing the duration of fear and stun effects on allies within 15 yds by 20% for 8 sec.","categoryId":673,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":20,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":19412,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":280,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":31,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560916,"name":"Dauntless","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24447,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":108,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":783102,"name":"Entrails","rankText":"Proc","description":"Agility increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":153,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":137,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":562323,"name":"Face Smasher","rankText":"Cd Reduc","description":"Abilities that consume |cffffffffCarnage|r now reduce the cooldown of |cffffffffBarbaric Rage|r and |cffffffffAvatar of War|r by $/1000;s1 and |cfffffffffSpear of Sen'jin|r and |cffffffffMaximum Carnage|r by $/1000;s2 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,131072,524288,1073741824,0,0,0,327155712],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25750,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":801768,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":165,"auraType":0,"basePoints":-1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":801549,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500006,"name":"Impaled","rankText":"","description":"Bleeding for ${$w1} Physical Damage every $t1 sec.","categoryId":47,"dispelType":0,"mechanic":15,"attributes":[696582160,2147484672,1,1073741824,2097152,0,4096,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":32,"durationMs":6000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2968,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":17,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804862,"name":"Jawbreaker","rankText":"Success!","description":"Melee and ranged haste increased by $s1%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":80233,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":192,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":30,"auraType":0,"basePoints":15,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560460,"name":"Torpedo","rankText":"","description":"Movement speed increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1140850688,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25755,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":31,"basePoints":40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":577977,"name":"Savage Cadence","rankText":"Proc","description":"Extends the duration of Unbridled Rage by $/1000;s1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":19603,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":177,"auraType":0,"basePoints":500,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":801761,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804347,"name":"Savagery","rankText":"","description":"Heals you for ${$m1+0+$AP*0.11}.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5080,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":1.3849999904632568,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":560521,"pointsPerCombo":0,"coefficient":0}]},{"id":560554,"name":"Blood Loss","rankText":"","description":"Removes bleed effects","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":407,"durationMs":100,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24450,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":108,"auraType":77,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":15,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":15,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560521,"name":"Born in Blood","rankText":"","description":"Battle fuels your vitality, restoring $o1 health and $o2 Energy over $d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":27,"durationMs":3000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25747,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":8,"basePoints":5,"dieSides":1,"pointsPerLevel":0.5,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":24,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":79,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807261,"name":"You Want Axe?","rankText":"Trigger","description":"Refreshes a charge of |cffffffffBerserker Axe|r and |cffffffffAxe Volley|r and they now consume a stack to cost $706828s2 less Energy for $d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,131072,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8570,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804341,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804341,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804341,"pointsPerCombo":0,"coefficient":0}]},{"id":570724,"name":"Smash","rankText":"Off-hand Rank 1","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":8,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578277,"name":"Smash","rankText":"Off-hand Rank 2","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578278,"name":"Smash","rankText":"Off-hand Rank 3","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":32,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578279,"name":"Smash","rankText":"Off-hand Rank 4","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":69,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578280,"name":"Smash","rankText":"Off-hand Rank 5","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":99,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578281,"name":"Smash","rankText":"Off-hand Rank 6","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":131,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578282,"name":"Smash","rankText":"Off-hand Rank 7","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":171,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578283,"name":"Smash","rankText":"Off-hand Rank 8","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":202,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578284,"name":"Smash","rankText":"Off-hand Rank 9","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":232,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578285,"name":"Smash","rankText":"Off-hand Rank 10","description":"|cffffffffRequires Enraged|r Smash an enemy with both weapons for $s3% Weapon Damage, plus ${$m1+0} with your main-hand.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,134218240,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":26477,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":279,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":31,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":985329,"name":"Feign Death","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,1160,4,458752,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":125,"auraType":0,"basePoints":-99,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":12,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807192,"name":"Latent Curse","rankText":"","description":"Your |cffffffffJinxes|r now also increase the enemy's base mana, Rage, Energy, Focus, and Runic Power costs on their spells and abilities by $s1%.","categoryId":19,"dispelType":2,"mechanic":0,"attributes":[0,0,1073741824,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":42,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6047,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":72,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":561136,"name":"Spirit","rankText":"","description":"Regenerates ${$m2+$ppl2} health and mana, repeating every $T2 sec$?s707335[and increases your movement speed by $561071s1%][] for $d, stacking $u times.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,0,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":10,"spellLevel":10,"durationIndex":29,"durationMs":12000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":12218,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":1,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":24,"basePoints":2,"dieSides":1,"pointsPerLevel":0.10000000149011612,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":4000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":8,"basePoints":2,"dieSides":1,"pointsPerLevel":0.10000000149011612,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":4000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":-2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":500,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":561298,"pointsPerCombo":0,"coefficient":0}]},{"id":561298,"name":"Spirit Visual Stack Checker","rankText":"","description":"Will check for amount of stacks and do some crazy visual stuff to make it all work","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[384,0,0,256,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":327,"durationMs":500,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":12,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":12218,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":1,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806473,"name":"Veil of Darkness","rankText":"Damage","description":"Movement speed reduced by ${$w2}%.","categoryId":290,"dispelType":1,"mechanic":0,"attributes":[65536,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":227,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":8,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":173,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":194,"dieSides":1,"pointsPerLevel":0.699999988079071,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802097,"name":"Vol’jin’s Vigil","rankText":"","description":"Reduces damage taken by $s1%, stacking $u times.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,1073741824,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":13621,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802903,"name":"Afflict Random Hex","rankText":"","description":"Afflict the target with a random Witch Doctor Hex.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[589824,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27346,"powerCostPercentage":6,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":40,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":184,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":801693,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":570126,"name":"Soothing Juju","rankText":"","description":"Soothing Juju costs ${$w1}% more Mana.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2147549184,0,0,0,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":27,"durationMs":3000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64118,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":11,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801797,"name":"Shadow Puppet","rankText":"Damage","description":"","categoryId":99,"dispelType":1,"mechanic":0,"attributes":[0,0,4,0,0,1,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":25,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":56493,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":561136,"pointsPerCombo":0,"coefficient":0}]},{"id":802745,"name":"Shadow Puppet","rankText":"Dummy","description":"","categoryId":99,"dispelType":1,"mechanic":0,"attributes":[0,0,4,1073741824,0,1,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":26,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":56493,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802926,"name":"Mark of Malice","rankText":"","description":"Reduces healing the target receives by $s2% for $d.","categoryId":0,"dispelType":2,"mechanic":0,"attributes":[65536,0,1073741824,0,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64061,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":6,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":118,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802704,"name":"Shadowflare","rankText":"Damage","description":"Create a shadow volley in a $a1 yd radius at target location, every $t1 sec, shadow magic rains down dealing ${$m1+0+$sps*.22+$RAP*.09} Shadow Damage to up to $802704i enemies. Enemies who die to |cFFFFFFFFShadowflare|r grant you a |cFFFFFFFFSpirit|r.@s:561068:0@","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,136,4,512,0,67109376,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":16,"spellLevel":16,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":40,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64201,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806512,"name":"Voodoo Bolt","rankText":"","description":"Deals |cff01cdfe$s1 Nature Damage|r to an enemy, and increases the duration of Curses used against them by $s2% for $d, stacks up to 3 times.","categoryId":18,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,16384,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2025,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":178,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":245,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707422,"name":"Malefic Spirits","rankText":"Delayed Trigger","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":1,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62930,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":183,"auraType":0,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":806288,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804107,"name":"Dark Jujubolt","rankText":"Aura","description":"Sends a bolt of dark juju at an enemy, dealing |cff01cdfe$s1 Shadow Damage|r. After casting this spell, your |cffb0f67aHealing|r Done will be reduced by |cfffeff9e$804107s3%|r for $804107d. |cFFFF00FFThis ability |cfffeff9eInvokes|r the Loa Hir'eek.","categoryId":933,"dispelType":2,"mechanic":0,"attributes":[2214658048,0,0,0,2048,0,16384,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6185,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":28,"dieSides":6,"pointsPerLevel":3,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.5139999985694885},{"index":2,"effectType":6,"auraType":136,"basePoints":-40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":578112,"name":"WD Channel Marker (Self)","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[128,0,1073741824,0,128,1,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":201326600,"channelInterruptFlags":31756,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":66,"durationMs":2500,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":50,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":9389,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":353,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":705845,"name":"Overflowing Juju","rankText":"","description":"Your next Bad Juju triggers a $/1000;s2 sec reduced cooldown.","categoryId":592,"dispelType":0,"mechanic":0,"attributes":[0,1024,0,131328,0,256,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27042,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":195,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":802087,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":107,"basePoints":-8000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":503626,"name":"Hexfire Wrath","rankText":"Proc","description":"Your Malefic Wrath has transformed into Hexfire Wrath!","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,0,1073741824,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63813,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807961,"name":"Annihilation","rankText":"Proc","description":"Gorge on fel energy, guaranteeing your next $n instances of damage to critically strike, but causing them to consume 5% of your maximum health and Energy.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":5,"maxLevel":25,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4838,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":36,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":-5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804372,"pointsPerCombo":0,"coefficient":0}]},{"id":520261,"name":"Recently Dodged","rankText":"","description":"You recently dodged an attack.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27941,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500531,"name":"Fel Scales (Tyrant)","rankText":"Spec Passive Resistances","description":"Gain Armor and magic resistance based on dodge rating.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[128,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":2,"durationMs":300000010,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4925,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":22,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":22,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572782,"name":"Chaotic","rankText":"Proc","description":"Your damage dealt is increased by ${$w1}%","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":8,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":83562,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":79,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520258,"name":"Demonic Embrace","rankText":"proc","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5319,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807962,"name":"Doomstride","rankText":"Hidden Stacker","description":"You Enrage for $d, reducing the cooldown of your Felrend ability by $s2% and causing it to deal $s1% increased damage. While active your Movement Speed is also increased by $s3%.","categoryId":1233,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4928,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":1,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801891,"name":"Felwrath","rankText":"Stack Dummy","description":"Causes ${$801893m1+$801893ppl1} Shadowflame Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2162816,0,4,0,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":327,"durationMs":500,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24716,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":36,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803479,"name":"Felwrath","rankText":"5 Stack DoT Trigger","description":"Causes ${$801893m1+$801893ppl1} Shadowflame Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2162816,0,4,0,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24716,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":36,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":520832,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524633,"name":"Felguard","rankText":"","description":"Damage taken reduced by ${$w1}%. Stacks $u times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4486,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":87,"basePoints":-3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":525042,"name":"Felstrider","rankText":"","description":"Energy regeneration increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5160,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":110,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707518,"name":"Felwracked","rankText":"Stack","description":"Every 2nd |cffffffffTwin Slice|r or |cffffffffFel Fireball|r now generates 1 additional |cff32cd32Felfury|r.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":3221,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":705130,"name":"Hateforged Barrier","rankText":"Trigger","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,536870912,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24711,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807235,"name":"Illidan's Guile","rankText":"SLS","description":"Gorge on fel Energy, healing you for $s1% maximum health and becoming immune to all damage for $d, but unable to move or take any action. At the end of the duration, your next |$s520853[|cffffffffFel Torpedo|r][|$s520853[|cffffffffFel Torpedo|r][|cFFFFFFFFChaos Rush|r]] now dashes you an additional 20 yds.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147745792,402653696,0,1024,64,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":41105,"iconId":113190,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":36,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":33,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":60,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":12,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":300469,"name":"Illidari Barrier","rankText":"","description":"Absorbs ${$w1} damage.","categoryId":0,"dispelType":0,"mechanic":19,"attributes":[0,1024,4,268435712,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":44,"spellLevel":44,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6014,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":69,"basePoints":200,"dieSides":1,"pointsPerLevel":8,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":18,"radius":15,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524635,"name":"Illidari Exhaustion","rankText":"","description":"Can no longer benefit from Illidari Barrier.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[67108864,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6014,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":525027,"name":"Mark of Chaos","rankText":"Proc","description":"Increases the next instance of direct spell or ability damage within by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4779,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524632,"name":"Reckoning","rankText":"","description":"Increases damage dealt by ${$w1}%. Stacks $u times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":4,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25265,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":87,"basePoints":-2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":79,"basePoints":4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":524632,"pointsPerCombo":0,"coefficient":0}]},{"id":804349,"name":"Betray","rankText":"","description":"Damage taken reduced by ${$w2}%.","categoryId":690,"dispelType":0,"mechanic":0,"attributes":[2424848,0,67108864,0,2048,0,8388608,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":8000,"categoryRecoveryTimeMs":8000,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4962,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":36,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801913,"name":"Annihilan Strike","rankText":"Damage","description":"Unleash a devastating attack, dealing $s2% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","categoryId":991,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,0,1024,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":40,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":41105,"iconId":13099,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":31,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801914,"name":"Annihilan Strike (Offhand)","rankText":"Damage Offhand","description":"Unleash a devastating attack, dealing $s2% Weapon Damage to your target with both weapons. This ability is guaranteed to critically strike against enemies above 75% health.","categoryId":991,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,0,16777216,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":40,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":41105,"iconId":13099,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":31,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800208,"name":"Immolation","rankText":"","description":"Deals Fire Damage to up to $i nearby enemies.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2097152,136,0,1073741824,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":13,"spellLevel":13,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24718,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":2,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.20000000298023224},{"index":1,"effectType":6,"auraType":344,"basePoints":0,"dieSides":1,"pointsPerLevel":-0.5,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803841,"name":"Annihilation","rankText":"Damage","description":"Unleash an immense amount of felfire at an enemy, dealing ${$m1+0+$SP*0.35} Fire Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,262144,0,0,25165824],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":27,"spellLevel":27,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":35,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2352,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":127,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0.5,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572132,"name":"Oblivion","rankText":"","description":"Obliterate an enemy with both weapons, dealing Weapon Damage plus ${$m1+0+$AP*0.35} Shadowflame Damage, absorbing ${$m2+0+$AGI*0.45} healing received by the target stacking $u times. Only usable on enemies below 35% health. |cffffffff(Combo)|r After using |cffffffffDoomscar|r: Your next |cffffffffOblivion|r is usable regardless of target's health. |cffffffff(Combo)|r After using |cffffffffAnnihilan Strike|r: Your next |cffffffffOblivion|r triggers no cooldown.","categoryId":704,"dispelType":1,"mechanic":0,"attributes":[262160,1207960064,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":17,"spellLevel":17,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":34961,"iconId":22713,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":36,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":15,"dieSides":1,"pointsPerLevel":4,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":4,"basePoints":100,"dieSides":1,"pointsPerLevel":1,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500159,"name":"Boltslinger","rankText":"Proc","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2,0,0,0,0,0,0,0],"castTimeIndex":18,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":20,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27378,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":3,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504247,"name":"Energize 5 Rage","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802270,"name":"Burrow Bolt","rankText":"","description":"Pulls the target to the caster.","categoryId":133,"dispelType":0,"mechanic":6,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":12000,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":94950,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":16,"dieSides":4,"pointsPerLevel":6,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.30000001192092896},{"index":1,"effectType":145,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":47,"radiusIndex":7,"radius":2,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":210,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":68,"auraType":0,"basePoints":101,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806194,"name":"Dark Intuition","rankText":"","description":"Attack Speed increased by ${$w1}%. Parry Chance increased by ${$w2}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[327680,0,1073741824,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5683,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":138,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":47,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803710,"name":"Flames of Sin","rankText":"Trigger","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2097152,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25313,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":0,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":803422,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":177,"auraType":0,"basePoints":3000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":803422,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680244,"name":"Quickdraw","rankText":"","description":"Your next |cFFFFFFFFDarkslayer|r within $d is instant cast$?s503669[ and guaranteed to critically strike][].","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":59539,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":7,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":521232,"name":"Energize +30 Rage","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7706,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":300,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804025,"name":"Slayer of Darkness","rankText":"","description":"","categoryId":1246,"dispelType":0,"mechanic":0,"attributes":[327680,0,1073741824,0,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":159,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":151,"dieSides":12,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.15000000596046448},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804073,"name":"Slayer's Mark Periodic","rankText":"","description":"","categoryId":60,"dispelType":0,"mechanic":0,"attributes":[384,1024,0,1073872896,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":6,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":14306,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":804069,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804069,"name":"Slayer's Mark Stack Adder","rankText":"","description":"","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[384,524288,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25821,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":804068,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520265,"name":"Vengeful Intent","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27505,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":31,"auraType":0,"basePoints":75,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":121,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":501383,"name":"Vicious Mockery","rankText":"Damage","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327696,0,67108864,0,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":14,"spellLevel":14,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3198,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704342,"name":"Witchbane","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262162,0,4,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":219,"rangeMin":0,"rangeMax":32,"projectileSpeed":45,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":27380,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":3,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707219,"name":"Altered Course","rankText":"","description":"|cffffffffDischarge|r now increases your movement speed by 20% for 3 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64512,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":31,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800406,"name":"Body of Lightning","rankText":"Damage","description":"Infuse an ally with lightning for $d, regenerating $s2% of their maximum mana every $t2 sec. While active, damage dealt now deals an additional ${$800406m1*$+$spn*.15} Nature Damage to up to $800406i enemies. Usable while stunned.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,136,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":14,"spellLevel":14,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27399,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":75,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":4,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.15000000596046448},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803101,"name":"Refresh Static","rankText":"","description":"Refresh Static","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[8454528,0,1,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":213,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803102,"name":"Static","rankText":"","description":"Some spells require |cffcc99ffStatic|r to be used. While out of combat, your |cffcc99ffStatic|r will begin to fizzle out.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2214592768,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":1,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":100,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":28635,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":18,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":32991,"name":"Nature Cast Visual","rankText":"Rank 1","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65920,0,0,0,0,0,0,0],"castTimeIndex":6,"castTimeMs":5000,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":524290,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":82,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":567560,"name":"Conduction","rankText":"Damage","description":"Deals ${$cond($gt($spfr, $spn), $567560m1*$+$spfr*.585, $567560m1*$+$spn*.35)} Frost Damage, increased by $567573s1% for each stack of |cff4fd1c5Conductive|r consumed.","categoryId":514,"dispelType":1,"mechanic":0,"attributes":[0,0,1073741824,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":13,"auraInterruptFlags":0,"channelInterruptFlags":31756,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5914,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":202,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804084,"name":"Add 10 Static","rankText":"","description":"","categoryId":1246,"dispelType":0,"mechanic":0,"attributes":[327680,512,1073741825,0,128,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":15,"dieSides":7,"pointsPerLevel":3,"mechanic":0,"implicitTargetA":25,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.33000001311302185},{"index":1,"effectType":175,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":803102,"pointsPerCombo":0,"coefficient":0}]},{"id":804592,"name":"Electrocutioner","rankText":"Proc","description":"Resets the cooldown of |cffffffffElectrocute|r and makes your next usable regardless of the target's health percentage.","categoryId":20,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,1073741824,0,0,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63930,"powerCostPercentage":17,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":262,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":195,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":801844,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520496,"name":"Pressure Release","rankText":"Dispel","description":"You were Dispelled.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":47,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":108,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":31,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":38,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":31,"radiusIndex":23,"radius":40,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806455,"name":"Eye of the Storm","rankText":"Damage","description":"Deals $s1 Nature Damage.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2162688,0,524289,1073741824,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2010,"powerCostPercentage":17,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":26,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":7,"implicitTargetA":6,"implicitTargetB":16,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":16,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":16,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":807712,"pointsPerCombo":0,"coefficient":0}]},{"id":806308,"name":"Eye of the Storm","rankText":"","description":"Deals $s1 Spellstorm Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2162688,0,524289,1073741824,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2010,"powerCostPercentage":17,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":24,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":16,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":300831,"name":"Gale Disturbance","rankText":"Placeholder Rank","description":"Placeholder Description","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[272,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":51500,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807481,"name":"Predictable Weather","rankText":"","description":"Every 30 sec, your next |cffffffffStorm Alert|r or |cffffffffTorrential Wrath|r is instant cast and free of cost.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2147483648,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":4,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":9,"durationMs":30000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":83828,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":301220,"name":"Thunder Grip","rankText":"","description":"Prevents enemies from mounting, fleeing, and increasing their movement speed above normal movement speed for $301220d.","categoryId":0,"dispelType":1,"mechanic":8,"attributes":[0,0,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5968,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":92,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":191,"basePoints":7,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800020,"name":"Thunder Fist","rankText":"","description":"Deals $s1 Nature Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,128,0,1073741824,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":59,"spellLevel":59,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24182,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":72,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":373,"dieSides":2,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804044,"name":"Add 5 Static","rankText":"","description":"","categoryId":1246,"dispelType":0,"mechanic":0,"attributes":[327680,1024,1073741824,1342308352,128,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":15,"dieSides":7,"pointsPerLevel":3,"mechanic":0,"implicitTargetA":25,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.33000001311302185},{"index":1,"effectType":175,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":5,"miscValueB":0,"triggerSpellId":803102,"pointsPerCombo":0,"coefficient":0}]},{"id":807661,"name":"Waterfall","rankText":"CDR1","description":"Dealing critical Froststorm Damage now reduces all of your cooldowns by 0.5 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":22602,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-500,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":707365,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":165,"auraType":0,"basePoints":-500,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":500932,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":165,"auraType":0,"basePoints":-500,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":503352,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":570339,"name":"Arm of Thorim","rankText":"Stun","description":"Stunned.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":16,"baseLevel":11,"spellLevel":11,"durationIndex":36,"durationMs":1000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":35,"rangeMin":0,"rangeMax":35,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63300,"powerCostPercentage":37,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":12,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.5709999799728394},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704202,"name":"Updraft","rankText":"Ally","description":"Movement speed increased and resource costs reduced.","categoryId":719,"dispelType":0,"mechanic":0,"attributes":[262160,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24807,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":31,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":87,"implicitTargetB":29,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704218,"name":"Updraft","rankText":"Enemy","description":"Movement speed slowed and resource costs increased.","categoryId":1102,"dispelType":0,"mechanic":11,"attributes":[0,136,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":101,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":4,"basePoints":-25,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":87,"implicitTargetB":28,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500292,"name":"Kiss of the Clouds","rankText":"Absorb","description":"Absorbs ${$w1} damage.","categoryId":0,"dispelType":1,"mechanic":19,"attributes":[327680,0,524288,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63301,"powerCostPercentage":39,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":69,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":4},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":300394,"name":"Boiling Blood","rankText":"","description":"Healing received increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268436480,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":15,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63743,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":319,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":562029,"name":"Defiance Pet Aura","rankText":"","description":"Increased health and damage based on the Knight of Xoroth's Strength. $h% chance to launch a Firebolt on hit.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[192,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":20,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6034,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":13,"basePoints":0,"dieSides":1,"pointsPerLevel":0.30000001192092896,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":34,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805966,"name":"Hellfire Imp","rankText":"","description":"","categoryId":60,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25423,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":36,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":28,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":75,"implicitTargetB":0,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":50301,"miscValueB":61,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803186,"name":"Claw Grab","rankText":"","description":"","categoryId":133,"dispelType":0,"mechanic":12,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":14,"rangeMin":0,"rangeMax":60,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":93,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":16,"dieSides":4,"pointsPerLevel":6,"mechanic":12,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.30000001192092896},{"index":1,"effectType":145,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":6,"implicitTargetA":6,"implicitTargetB":47,"radiusIndex":15,"radius":3,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":180,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":168,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":120614,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500906,"name":"Demonfire","rankText":"","description":"Consumed to empower abilities. Stacks $u times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147811328,0,524288,0,1048576,0,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":21,"durationMs":-1,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":6,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3174,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":107,"basePoints":3000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707131,"name":"Dread","rankText":"","description":"At 10 stacks, your next |cffffffffMeatsaw|r transforms into |cffffffffAnnihilation|r for 8 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":20,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":3,"durationMs":60000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":937,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680217,"name":"Hellbreaker","rankText":"","description":"Immune to roots and snares.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147483648,268468224,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":407,"durationMs":100,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4808,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":77,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":77,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":7,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":108,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804011,"name":"Hellish Rebuke","rankText":"","description":"Deals ${$m2+0} Fire Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":24,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":10153,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":5,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":3,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":25,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.550000011920929},{"index":1,"effectType":2,"auraType":0,"basePoints":6,"dieSides":1,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804346,"name":"Hellfire Skin","rankText":"","description":"Damage taken reduced by ${$w1}%. Fire Damage reduced by an additional ${$w2}%.","categoryId":592,"dispelType":0,"mechanic":0,"attributes":[65536,131072,0,0,0,0,0,268435456],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6034,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":87,"basePoints":-5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":87,"basePoints":-5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":24,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680727,"name":"Forgehammer Effect","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":19511,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":177,"auraType":0,"basePoints":2000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":803889,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520021,"name":"Infernal Steel","rankText":"","description":"Your next Hellmaw will tick ${$w1}% faster and costs ${$w2}% less Rage.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":23056,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":19,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524912,"name":"Add 1 Demonfire","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5764,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":500906,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805799,"name":"Rage of Xoroth","rankText":"","description":"Enraged. Melee Attack Speed increased by ${$w1}%.","categoryId":55,"dispelType":9,"mechanic":31,"attributes":[0,136,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":27,"durationMs":3000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2008,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":138,"basePoints":15,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":7,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806219,"name":"Spiked Chains","rankText":"Damage","description":"Deals Physical Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,67108864,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":139808,"procChance":100,"procCharges":1,"maxLevel":0,"baseLevel":14,"spellLevel":14,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7608,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":321,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801064,"name":"Suffuse","rankText":"","description":"Restores ${$w1} health every $t1 sec.$?s[ Damage taken reduced by ${$w2}%.][]","categoryId":55,"dispelType":1,"mechanic":0,"attributes":[0,136,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7667,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":8,"basePoints":10,"dieSides":2,"pointsPerLevel":1.850000023841858,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.5},{"index":1,"effectType":6,"auraType":87,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":31,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804007,"name":"Hellish Flames","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,128,541065216,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":59,"spellLevel":59,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5745,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":35,"dieSides":5,"pointsPerLevel":0.15000000596046448,"mechanic":0,"implicitTargetA":18,"implicitTargetB":16,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804170,"name":"Hellseed Ritual","rankText":"","description":"","categoryId":579,"dispelType":0,"mechanic":0,"attributes":[65536,0,536870912,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24995,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":501535,"name":"Counter Stance","rankText":"Heal","description":"You are granted 8 charges of |cffffffffCounter Stance|r, increasing your chance to block by $s1% and your block value by $s3% for $d and dealing $s2 damage to attackers whenever you take Physical Damage or block a physical attack. Each attack expends a charge.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327680,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":40,"spellLevel":40,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":4,"equippedItemInventoryMask":64,"iconId":2834,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":239,"dieSides":1,"pointsPerLevel":6.349999904632568,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803958,"name":"Inspiration","rankText":"","description":"Increases attack power and spell power by $s1, scaling with Spirit for $d. Does not stack with similar effects.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[262160,0,131072,0,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5708,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":65,"auraType":345,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":23,"radius":40,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":65,"auraType":344,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":23,"radius":40,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802871,"name":"Grand Entrance","rankText":"Charge Down","description":"Leap toward your target.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[536870928,268436512,268959748,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":33554432,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":36,"durationMs":1000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":100,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6101,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":42,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":16,"implicitTargetB":0,"radiusIndex":7,"radius":2,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":50,"miscValueB":90,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":193,"auraType":0,"basePoints":500,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":499,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":802874,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803293,"name":"Grand Entrance","rankText":"SLS","description":"Leap into the air, becoming immune to crowd control effects, and then crash back down with incredible speed at your enemy. Upon landing, deal $802874s1% Weapon Damage to enemies in the impact area, plus an additional ${$802874m3+$802874ppl3+$AP*0.2575} over 3 sec, and knock them into the air.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262144,268435456,1073741824,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63251,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":138,"auraType":0,"basePoints":201,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":200,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":105,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":147,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1735,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803965,"name":"Hero's Decree","rankText":"AP reduc","description":"Attack power reduced by $s1.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":4000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":19136,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":99,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560514,"name":"Tempo","rankText":"Proc","description":"Critical strike chance increased by $s1%, stacking $u times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262160,0,131072,0,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6947,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":290,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572612,"name":"Sound of War","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,128,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":17403,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":2,"preventionType":0,"schoolMask":126,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":71,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524931,"name":"Honorable Demeanor","rankText":"","description":"Strength and Stamina increased by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5994,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":137,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":137,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":503215,"name":"DEPRECATED","rankText":"","description":"","categoryId":1114,"dispelType":0,"mechanic":0,"attributes":[65664,0,1073741824,536870912,256,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":42,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63254,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801218,"name":"Press the Attack","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327952,0,0,0,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":65472,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":801220,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":62,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500493,"name":"Raise Shield","rankText":"Energize","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":4,"equippedItemInventoryMask":96,"iconId":56043,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803135,"name":"Recuperation","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":213,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500256,"name":"Motivation","rankText":"","description":"Some of your abilities consume |cff66ccffMotivation|r to perform an additional effect.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,524288,0,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3723,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":136,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":79,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807191,"name":"Refuse To Die","rankText":"CDR","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24445,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":195,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":500168,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801504,"name":"Reclaim Standards","rankText":"","description":"Removes your placed |cFFFFFFFFStandard|r.","categoryId":23,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,1073807360,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":526,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":25,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":387,"radius":200,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":801503,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801503,"name":"Destroy Standard","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[537133440,99328,67108868,1074266112,0,0,8192,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":229,"powerCostPercentage":5,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":174,"auraType":0,"basePoints":100000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":200,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572611,"name":"Sound of War","rankText":"Trigger","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,128,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":17403,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":572612,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807179,"name":"Puncture","rankText":"Flat Armor Debuff","description":"Armor reduced by $s1%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2097152,1024,0,1073741824,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":18,"durationMs":20000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":1378,"iconId":16739,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":22,"basePoints":-4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524797,"name":"Motivation: Pulverizing","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2626,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":800288,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802302,"name":"Glory","rankText":"","description":"At 3 stacks, your next Ram deals 150% increased damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":9,"durationMs":30000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64364,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":15,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":542238,"name":"Glory","rankText":"Axe Passive Hidden","description":"|cFF66DDFFLevel 10 Passive|r Your |cffffffffRam|r now grants you a stack of |cffffffffGlory|r for $802302d. At 3 stacks, your next |cffffffffRam|r within $802303d deals $802303s1% increased damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":38,"durationMs":11000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":3,"iconId":63245,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":7,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":15,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":542265,"name":"Glory","rankText":"Mace Passive Hidden","description":"|cFF66DDFFLevel 10 Passive|r Your |cffffffffRam|r now grants you a stack of |cffffffffGlory|r for $802302d. At 3 stacks, your next |cffffffffRam|r within $802303d deals $802303s1% increased damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,0,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":38,"durationMs":11000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":48,"iconId":63245,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":13,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803131,"name":"Spiked Reinforcement","rankText":"Damage","description":"Deals $s1 Physical Damage","categoryId":85,"dispelType":0,"mechanic":0,"attributes":[262160,0,1610612736,66048,8388608,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":11,"rangeMin":0,"rangeMax":15,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3506,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":5,"dieSides":2,"pointsPerLevel":0.4950000047683716,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":63,"auraType":0,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802892,"name":"Brace","rankText":"Motivation","description":"","categoryId":59,"dispelType":0,"mechanic":0,"attributes":[671088896,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":291,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":19,"dieSides":9,"pointsPerLevel":11,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":800993,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":164,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":500256,"pointsPerCombo":0,"coefficient":0}]},{"id":800993,"name":"Motivation: Knight's Valor","rankText":"","description":"Gain a shield that absorbs up to ${$m1+0+$STA*0.25+$STR*0.25} damage.","categoryId":59,"dispelType":1,"mechanic":19,"attributes":[671088896,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":60000,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":524288,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":28,"durationMs":5000,"powerType":3,"powerCost":30,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":56182,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":69,"basePoints":50,"dieSides":1,"pointsPerLevel":5,"mechanic":19,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801160,"name":"Advance Scaler","rankText":"","description":"Advance Scaler","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":281,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803962,"name":"Little Drummer","rankText":"","description":"Removes a harmful magic effect.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,1073741824,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63254,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":38,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":23,"radius":40,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":30,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704414,"name":"Fearsome Leader","rankText":"","description":"Reduces the cooldown of Linebreaker by $/1000;s1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262400,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":27383,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":800313,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":705381,"name":"Shield Combatant","rankText":"Proc","description":"Attack Power increased.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":32,"durationMs":6000,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2205,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":99,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":4,"basePoints":-40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":4,"basePoints":-40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707821,"name":"Favor","rankText":"Stacks","description":"At 20 stacks your next auto attack will deal an additional 500% Weapon Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":50,"durationIndex":3,"durationMs":60000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":20,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":25742,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":42,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":712682,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504586,"name":"High Guard","rankText":"Buff","description":"Your next |cffffffffHeavy Blow|r within $504586d triggers no cooldown.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,4,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":34,"spellLevel":34,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63158,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":705309,"name":"Binding Scripture","rankText":"Proc","description":"$s1% of all damage taken by the target is redirected to the Templar.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,524288,1073741824,1140851584,0,0,0,1073741824],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":699048,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27314,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":81,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807890,"name":"Divine Force","rankText":"Stun","description":"Leap at an enemy with divine force, stunning them for $d, dealing ${$m3+0+$SP*1+$AP*.55} Holy Damage, and interrupting non-player spellcasting for $32747d.","categoryId":0,"dispelType":1,"mechanic":12,"attributes":[2424832,262144,1073741824,0,0,0,8388608,33556480],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":4718592,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":58,"baseLevel":50,"spellLevel":50,"durationIndex":32,"durationMs":6000,"powerType":3,"powerCost":15,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":11,"rangeMin":0,"rangeMax":15,"projectileSpeed":100,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25194,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":12,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":12,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801482,"name":"Downfall","rankText":"","description":"You heal for $s1% of all damage dealt for $d. After the duration, you gain |cffffffffRedemption|r.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,131072,0,0,0,0,0,1073741824],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":30000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":1048576,"procChance":100,"procCharges":10,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2172,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":354,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":803331,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":23,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":5000,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":801483,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":681170,"name":"Recently Parried or Dodged","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,1073741824,0,0,0,268435456],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":55059,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803170,"name":"Sacred Slam","rankText":"","description":"Deals Weapon Damage|r plus $s1.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,512,0,1073741824,0,36864,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":1120,"iconId":5376,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":1,"mechanic":0,"implicitTargetA":47,"implicitTargetB":16,"radiusIndex":26,"radius":4,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801501,"name":"Silverhand Incantation","rankText":"Damage","description":"Chant a silverhand incantation and toss a holy hammer at your target, instantly pulling you to them and removing |cffffffffSacred Restraint|r from you and them if they are an ally. Upon reaching your target you deal ${$m1+$ppl1+$AP*2} Holy Damage to all nearby enemies and heal nearby allies for the same amount.","categoryId":913,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":90000,"categoryRecoveryTimeMs":90000,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":53448,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":10,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500690,"name":"Ascetic Abdication","rankText":"Periodic","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,131072,537001984,1073741824,128,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63972,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":38,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":102208,"name":"Sacred Restraint","rankText":"","description":"Cannot be targeted by |cFFFFFFFFTestaments|R.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[603979776,196744,4,1073741824,0,4,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":3,"durationMs":60000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":301,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":77,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":25,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":25,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524616,"name":"Tyr's Guard Trigger","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":31,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":1397742,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":1397742,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":1397742,"pointsPerCombo":0,"coefficient":0}]},{"id":801450,"name":"Zealotry","rankText":"Proc","description":"Deals $s2% off-hand Weapon Damage as Holy Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,16777216,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":192,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":43153,"iconId":38842,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":31,"auraType":0,"basePoints":40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801409,"name":"Benediction","rankText":"Aura","description":"Armor increased by ${$w1}.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,1073741824,67109376,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":35,"rangeMin":0,"rangeMax":35,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24398,"powerCostPercentage":8,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":22,"basePoints":85,"dieSides":1,"pointsPerLevel":6,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.30000001192092896}]},{"id":707896,"name":"Oath Chain","rankText":"Refresher","description":"Allows you to hold Oath buffs.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,1073872896,67109376,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2218,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":177,"auraType":0,"basePoints":5000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":704576,"miscValueB":0,"triggerSpellId":704576,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":505325,"name":"Blood Bond","rankText":"Trigger","description":"Generates $/10;s1 Rage.","categoryId":37,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":47,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":26,"spellLevel":26,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63762,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":181,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":130,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":505169,"name":"Blood Bond","rankText":"","description":"Movement speed increased by $s1%.","categoryId":37,"dispelType":0,"mechanic":19,"attributes":[0,1448,4,1074200576,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":47,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":26,"spellLevel":26,"durationIndex":65,"durationMs":1500,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63762,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":31,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":57,"implicitTargetB":1,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504551,"name":"Blood Rush","rankText":"","description":"Increases your haste by $s1% for $d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2283,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":216,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":192,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804857,"name":"Blood Trail","rankText":"","description":"Bloodmage gain stacking movement speed and damage in Blood Trails.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,268435592,1073741824,0,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":14,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":9,"durationMs":30000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2725,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":0,"basePoints":57,"dieSides":19,"pointsPerLevel":0.6000000238418579,"mechanic":0,"implicitTargetA":63,"implicitTargetB":0,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.24300000071525574},{"index":1,"effectType":27,"auraType":23,"basePoints":17,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":87,"implicitTargetB":31,"radiusIndex":8,"radius":5,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":804859,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":27,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":87,"implicitTargetB":31,"radiusIndex":8,"radius":5,"periodMs":500,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":805264,"pointsPerCombo":0,"coefficient":0}]},{"id":504291,"name":"Mortal Wounds","rankText":"","description":"Bleeding for ${$504291m1*$+$AP*0.01+$SP*0.05} Physical Damage every $t1 sec.","categoryId":0,"dispelType":0,"mechanic":15,"attributes":[0,0,4,1342177280,8388608,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":26,"spellLevel":26,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4901,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":51,"dieSides":1,"pointsPerLevel":0,"mechanic":15,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":301273,"name":"Nightmare","rankText":"Passive50%Below","description":"While above 50% maximum health, abilities that cost Rage now consume $704257s2% of your maximum health to damage or heal your target for an additional $301273s1% of the value.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147483904,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27425,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":354,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":303013,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":42,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":704257,"pointsPerCombo":0,"coefficient":0}]},{"id":804091,"name":"Monstrous Hunger","rankText":"Heal","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":30385,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":10,"dieSides":3,"pointsPerLevel":1.850000023841858,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":800491,"pointsPerCombo":0,"coefficient":0.14000000059604645},{"index":1,"effectType":136,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800491,"name":"Endless Thirst","rankText":"","description":"Unleashes a |cffffffffVicious Bite|r attack at 3 stacks.@s:804855:0@","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327680,0,0,128,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":54887,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504137,"name":"Saturating Sutures","rankText":"","description":"Reduces the cost of your next |cffffffffSanguine Mend|r by $s1%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[256,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25570,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706613,"name":"Thirst","rankText":"","description":"Generates $/10;681202s1 Rage and then increases the health costs of your spells by $s1%$?s504252[, your critical strike chance with |cffffffffAtherann's Anguish|r by $504252s1%][] and increases their damage by $s3%. Stacks $u times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2751463424,66560,67108868,1342177280,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63780,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804092,"name":"Bloodmoon Blast","rankText":"Energize","description":"$s2","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[262144,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27820,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":30,"auraType":0,"basePoints":40,"dieSides":61,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805352,"name":"Ravenous Strike","rankText":"Energize","description":"Generates $/10;s2 Rage. $s1","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262160,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7549,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":30,"dieSides":41,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807528,"name":"Accursed","rankText":"","description":"Your damaging |cffffffffMortal Form|r abilities can now be cast while moving.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147483648,8388608,0,1048576,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27105,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":313,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1}]},{"id":800775,"name":"Sanguine Rupture","rankText":"Damage","description":"Deals $s1 Shadow Damage and generates 5 Rage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262144,0,0,512,0,67108864,8192,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":3,"spellLevel":3,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8455,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":802496,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802496,"name":"Sanguine Rupture","rankText":"Energize","description":"Deals $s1 Shadow Damage and generates $s2 Rage.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[262144,0,0,1073741824,0,0,8192,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":3,"spellLevel":3,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":20,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8455,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":1,"effectType":30,"auraType":0,"basePoints":20,"dieSides":22,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":79,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":32,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":561304,"name":"Cursed Ground","rankText":"Trigger DELAY","description":"Increases the damage of |cFFFFFFFFSanguine Rupture|r by $s1% and causes it to curse the ground when you strike at least 5 enemies, dealing $561303o1 Shadow Damage over $561303d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,0,32,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":118,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":561303,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":561303,"name":"Cursed Ground","rankText":"Damage","description":"Increases the damage of |cFFFFFFFFSanguine Rupture|r by $s1% and causes it to curse the ground, dealing Shadow Damage to enemies inside equal to 100% of the damage dealt over 4 sec.","categoryId":20,"dispelType":2,"mechanic":15,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":16,"spellLevel":16,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":118,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":87,"dieSides":1,"pointsPerLevel":1.0199999809265137,"mechanic":15,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":500,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800786,"name":"Sacrificial Rite","rankText":"","description":"Healing done increased by ${$w1}%. Healing for ${$w2} every $t2 sec.","categoryId":0,"dispelType":2,"mechanic":0,"attributes":[2298740752,0,0,1073741824,0,8,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":8,"durationMs":15000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64222,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":136,"basePoints":15,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":8,"basePoints":102,"dieSides":1,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1500,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706623,"name":"Blood Rituals","rankText":"Target Applied Aura","description":"Healed whenever the Bloodmage uses Bloodmoon Blast. Lasts $d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147483904,1024,1073741828,1409286272,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65124,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":87,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":582766,"name":"Fleshbending","rankText":"Proc","description":"Critical strike chance increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62933,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":65,"auraType":290,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":652375,"name":"Hypovolemic Shock","rankText":"Dispel","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,524288,1073741824,524288,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":4,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":20,"spellLevel":20,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65136,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":38,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":9,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":506640,"name":"Bloodmage Blood Shard Generate 1","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":685029,"name":"Blood-Cursed Weapons","rankText":"","description":"Casting |cffffffffCrimson Tide|r now increases the haste of all party and raid members by 5% for 15 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":633,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":65,"auraType":216,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":65,"auraType":192,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805592,"name":"Bloodsore","rankText":"","description":"Increases the damage of your next |cffffffffSanguine Rupture|r and |cffffffffBloodmoon Blast|r against the target by $s1% for $d, stacking $u times.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8457,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":271,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520459,"name":"Night Hunter's Howl","rankText":"","description":"Movement slowed by $500124s2%.","categoryId":0,"dispelType":0,"mechanic":11,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":137,"rangeMin":0,"rangeMax":8,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":30453,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":33,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803722,"name":"Cursed Blood","rankText":"","description":"Reduces Arcane, Fire, Frost, Nature and Shadow resistances by ${-($m1)}. Magic Damage taken increased by ${$w2}%.","categoryId":0,"dispelType":2,"mechanic":0,"attributes":[65536,0,131072,0,1048576,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":12,"spellLevel":12,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":727,"powerCostPercentage":15,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":22,"basePoints":-20,"dieSides":1,"pointsPerLevel":-1.1458300352096558,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":87,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560589,"name":"Enraging Wound","rankText":"Proc","description":"Deals $s1 Shadow Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,0,0,268435456,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":29,"spellLevel":29,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":55120,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":9,"auraType":0,"basePoints":46,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807563,"name":"Heartbreak","rankText":"Aura","description":"Attack or spell power increased by ${$w2}.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2097152,0,524292,256,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":40,"spellLevel":40,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63747,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":344,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":56,"implicitTargetB":0,"radiusIndex":287,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":345,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":56,"implicitTargetB":0,"radiusIndex":287,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520315,"name":"Heartbreak","rankText":"Heal","description":"","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":40,"spellLevel":40,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63747,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":12,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":87,"implicitTargetB":31,"radiusIndex":9,"radius":20,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807357,"name":"Relentless","rankText":"Proc","description":"Your |cFFFFFFFFAortic Assault|r channels $s1% faster for $d, stacking $u times, and each strike now extends the duration of |cffffffffTaldaram's Torment|R by $/1000;807359s1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":22301,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":19,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":-5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":42,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":807359,"pointsPerCombo":0,"coefficient":0}]},{"id":560480,"name":"Eternal - Level 50 Passive","rankText":"Specialization","description":"|cFF66DDFFLevel 50 Passive|r","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62807,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520839,"name":"Purify Blood","rankText":"","description":"Direct damage will deal additional damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,268435712,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":26934,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":231,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":573273,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":573255,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":573273,"name":"Purify Blood","rankText":"Damage","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":26934,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":573255,"name":"Exhaustion","rankText":"","description":"Cannot benefit from Surge of Might, Clanlord's Totem, Command Aura, General's Presence, Neptulon's Wrath, Purify Blood or Celestial Resonance.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[67109120,1024,4,268435712,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":3,"durationMs":60000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1611,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":573254,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804457,"name":"Worn Out","rankText":"","description":"You are worn out and can no longer benefit from powerful raid-wide haste auras.","categoryId":592,"dispelType":0,"mechanic":0,"attributes":[2214658048,131072,1,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":5,"durationMs":300000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":55031,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":25,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803288,"name":"Briar Veil","rankText":"proc","description":"Heals for $s1% maximum health and restores $s2 Focus.","categoryId":661,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25798,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":30,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":300851,"name":"Echoes of War","rankText":"","description":"Your Toxic Dart can now be used outside of Elude and its tick rate, damage, and duration is increased by $s1%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[272,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8356,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[]},{"id":561005,"name":"Dream Flower","rankText":"Spawner","description":"When an ally runs over the flower, they consume it to heal for $561007s2% maximum health and gain $561007s1% increased movement speed for $561007d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":19387,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":28,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":72,"implicitTargetB":0,"radiusIndex":18,"radius":15,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":454239,"miscValueB":61,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":165,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":804715,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":707539,"pointsPerCombo":0,"coefficient":0}]},{"id":520545,"name":"Guile of the Ranger","rankText":"Proc","description":"Your |cffffffffInstinct|r now additionally increases your critical strike rating by $s1% of your Agility.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":52787,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":220,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1664,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520791,"name":"Guise","rankText":"","description":"Instantly generates 5 stacks of |cff8fff7aAdvantage|r and reveals nearby stealthed enemies for $d. Usable while stealthed.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,32,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2984,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804329,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":804329,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804329,"name":"Advantage","rankText":"","description":"Consumed by some abilities to boost their effectivness.","categoryId":592,"dispelType":0,"mechanic":0,"attributes":[2147549184,131072,1073741824,67108864,0,1028,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2230,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":107,"basePoints":4000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706763,"name":"Knockout","rankText":"Cleanser","description":"cleanses dots","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[1048576,32768,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":327,"durationMs":500,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5327,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":108,"auraType":77,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":15,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":38,"auraType":41,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704321,"name":"Lethal Cunning","rankText":"","description":"Generating 1 Archery Point and $s2 Focus every $t1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[134217728,0,0,1073741824,2752512,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":9,"durationMs":30000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":26981,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":5000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":524860,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":24,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":5000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801471,"name":"Pinpoint Accuracy","rankText":"","description":"Generates $s1 Focus.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":4,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":126,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524659,"name":"Wild Strike Advantage","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":263,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804329,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":102203,"name":"Skirmisher","rankText":"Spec","description":"|cFF66DDFFLevel 10 Passive|r Increases the tick rate and damage of |cffffffffToxic Dart|r by $500022s1%, but reduces its duration by $500022s2%. In addition, you may now cast all ranged abilities while moving.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,268436480,4,268435456,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":38,"durationMs":11000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8359,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":313,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807167,"name":"Snapseed","rankText":"Knockback","description":"Toss a snapseed at an enemy, dealing ${$m1+0+$RAP*.3} Physical Damage and knocking them back.","categoryId":1211,"dispelType":0,"mechanic":0,"attributes":[16,0,131072,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":20000,"categoryRecoveryTimeMs":20000,"interruptFlags":41,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":7,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":25,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":40,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":262148,"iconId":85290,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":3,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":98,"auraType":0,"basePoints":80,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":140,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560496,"name":"Snatch","rankText":"","description":"Reduces the cooldown of Hail of Arrows.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24422,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":108,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803123,"name":"Snatch","rankText":"","description":"Disarm the enemy, removing all weapons, shield or other equipment carried for $d.","categoryId":0,"dispelType":0,"mechanic":3,"attributes":[65552,0,1073741824,1073741824,0,0,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":20,"spellLevel":20,"durationIndex":27,"durationMs":3000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":254,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":67,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704341,"name":"Survival Potion","rankText":"Dispel Effect","description":"Removing $704341s2 poison effects every $t1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,4,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":20,"spellLevel":0,"durationIndex":37,"durationMs":1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":64096,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":38,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":1,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":38,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":1,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560962,"name":"Wild Strike (Off Hand)","rankText":"","description":"Deals $m1% Weapon Damage.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[0,512,0,1090519040,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":2909,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":3,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":31,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":121,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803105,"name":"Viper's Bite","rankText":"Damage","description":"Delivers 3 quick weapon attacks over $d to an enemy target, each dealing $803015s1 Physical Damage. Each strike will consume 1 stack of Venomstrike from the target to deal additional Nature Damage.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":59,"spellLevel":59,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5839,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":31,"auraType":0,"basePoints":85,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.44999998807907104}]},{"id":804110,"name":"Power Shots","rankText":"Aura","description":"Quick Shots and Heartseekers deal an additional ${$w2}% Ranged Weapon Damage and generate a bonus Archery Point. Heartseekers affected by this also fire at a ${$w1}% increased rate.","categoryId":528,"dispelType":0,"mechanic":0,"attributes":[4194322,0,0,0,0,0,0,0],"castTimeIndex":3,"castTimeMs":500,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":2,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":262156,"iconId":52757,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":42,"basePoints":2,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":805974,"pointsPerCombo":0,"coefficient":0}]},{"id":805974,"name":"Generate 1 Advantage","rankText":"","description":"Consumed by some abilities to boost their effect.","categoryId":592,"dispelType":0,"mechanic":0,"attributes":[65536,132096,4194305,0,0,4,0,268435456],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":105,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803109,"name":"Assaulted","rankText":"Rank 1","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":187,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":583275,"pointsPerCombo":0,"coefficient":0}]},{"id":583275,"name":"Assaulted","rankText":"Refund Focus","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":582824,"name":"Assaulted","rankText":"Rank 2","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":187,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":583275,"pointsPerCombo":0,"coefficient":0}]},{"id":582825,"name":"Assaulted","rankText":"Rank 3","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":187,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":583275,"pointsPerCombo":0,"coefficient":0}]},{"id":582826,"name":"Assaulted","rankText":"Rank 4","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":187,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":583275,"pointsPerCombo":0,"coefficient":0}]},{"id":582827,"name":"Assaulted","rankText":"Rank 5","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":187,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":583275,"pointsPerCombo":0,"coefficient":0}]},{"id":582828,"name":"Assaulted","rankText":"Rank 6","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":187,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":583275,"pointsPerCombo":0,"coefficient":0}]},{"id":582829,"name":"Assaulted","rankText":"Rank 7","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":187,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":583275,"pointsPerCombo":0,"coefficient":0}]},{"id":582830,"name":"Assaulted","rankText":"Rank 8","description":"Deals $s1 Physical Damage to an enemy target.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,1,1074790400,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63295,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":187,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":583275,"pointsPerCombo":0,"coefficient":0}]},{"id":807318,"name":"Sniper's Focus","rankText":"Proc","description":"Generates ${$w1} Focus.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":262144,"iconId":12071,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":592009,"name":"Ahead of the Game","rankText":"","description":"At 10 stacks, you gain spell power for $592010d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6240,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":525050,"name":"End of Time","rankText":"Proc","description":"Magic Damage taken is increased by ${$w2}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":33,"procCharges":0,"maxLevel":0,"baseLevel":34,"spellLevel":34,"durationIndex":35,"durationMs":4000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":14696,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":124,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":112,"dieSides":34,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":503826,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":79,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680843,"name":"Recovering","rankText":"Proc","description":"Healing received increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2268,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":118,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801282,"name":"Gravity Bomb","rankText":"Damage","description":"Pulls enemies within $a1 yards into a gravity well, dealing $s1 damage to enemies within $a1 yards.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[159383552,0,4,1073741824,128,393224,4096,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65017,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":20,"damageClass":1,"preventionType":0,"schoolMask":124,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":967,"dieSides":1,"pointsPerLevel":6,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801254,"name":"Gravity Bomb","rankText":"","description":"Pulls enemies within $a2 yards into a gravity well, dealing $s1 damage to enemies within $a1 yards.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[159383808,524320,536887296,1073741824,128,393288,536875008,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65017,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":43,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":6,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":18,"radius":15,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":503946,"name":"Empowerment Chaos CD refresh","rankText":"Hidden","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":192,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":801291,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":192,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":801292,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":192,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":806335,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520458,"name":"Infinite Shield","rankText":"","description":"You will heal for ${$m1+0+$SP*.28} health when you take damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24472,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":190,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":712454,"name":"Maker of Realities","rankText":"","description":"Casting |cffffffffHasten|r now also always reduces the cast time of your healing spells by an additional $s1%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5747,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801260,"name":"Babify","rankText":"Regen","description":"","categoryId":23,"dispelType":0,"mechanic":0,"attributes":[384,268435456,4,1610612736,256,67108864,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3374,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804679,"name":"Reverse Wound","rankText":"Mod Recovery","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65920,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":47,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27933,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":177,"auraType":0,"basePoints":2000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":800857,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":712371,"name":"The Bieko Effect","rankText":"","description":"While |cffffffffHasten|r is active the cooldowns of |cffffffffDimensional Divergence|r, |cffffffffMend Timeline|r, and |cffffffffTemporal Focus|r are reduced by $707312s1% every $712371t1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,136,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7927,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":707312,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":521214,"name":"Tripping the Rift","rankText":"Proc","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[128,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":74,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-10000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":706973,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802600,"name":"Waves of Time","rankText":"Knockback","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,136,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":3,"rangeMin":0,"rangeMax":20,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":14952,"powerCostPercentage":10,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":126,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":98,"auraType":0,"basePoints":70,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":24,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":150,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":65633,"name":"Arcane Cast Visual","rankText":"Rank 1","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65920,1024,0,0,0,0,0,0],"castTimeIndex":14,"castTimeMs":3000,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":524290,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":82,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804488,"name":"Sands of Time","rankText":"","description":"Reduces the cast time of |cffffffffEpoch|r by $s1% for $d, stacking 5 times. Upon spending the 5th stack, all stacks are consumed.","categoryId":690,"dispelType":0,"mechanic":0,"attributes":[327696,1024,67108864,0,2048,0,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":6,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25217,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":6,"auraType":108,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":21,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572851,"name":"Mind Melt","rankText":"","description":"Melt reality, dealing ${($d*1000/$T1)*($m1+0+$SP*0.12)} Shadowfrost Damage to an enemy and increasing their periodic damage taken by 1%, stacking 20 times, over $d. While active, periodic damage dealt to the target is replicated for 40% of the value to all enemies within 5 yds of them.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,4,1073741952,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":11,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25225,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":48,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":214,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":137,"basePoints":-3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":-1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802228,"name":"Time Out!","rankText":"AURA","description":"Regenerating mana, unable to act. Damage you take is reduced, but direct damage taken has a chance to end this effect.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":30000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25147,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":87,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":12,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801265,"name":"Waves of Time","rankText":"Slow","description":"Movement speed reduced by ${$w3}%.","categoryId":880,"dispelType":1,"mechanic":11,"attributes":[262144,136,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":3,"rangeMin":0,"rangeMax":20,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1122,"powerCostPercentage":10,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":126,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":6,"auraType":33,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706774,"name":"Fabric of Time","rankText":"","description":"Your next Aeon triggers with no cooldown.","categoryId":19,"dispelType":0,"mechanic":0,"attributes":[65536,0,524288,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":60000,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25029,"powerCostPercentage":18,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":525379,"name":"Animate: Zombie","rankText":"","description":"Summons a |cffffffffZombie|r to fight for you for $525379d. These minions cause periodic Nature Damage to nearby enemies while active.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[536870912,268500992,67108864,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":6,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":33002,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":28,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":87,"implicitTargetB":86,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":503031,"miscValueB":61,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":168,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":117151,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500991,"name":"Grave March","rankText":"","description":"Command your |cFFFFFFFFUndead|r to focus their attacks on the target enemy. Usable while casting or channeling.","categoryId":665,"dispelType":0,"mechanic":0,"attributes":[327936,1024,4194304,1610743808,408,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":2000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":36,"durationMs":1000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27415,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":570132,"name":"Add 1 Crypt Plague","rankText":"","description":"","categoryId":44,"dispelType":0,"mechanic":0,"attributes":[65920,268435488,1,1074790400,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62783,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":0,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":570131,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":802913,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":301337,"pointsPerCombo":0,"coefficient":0}]},{"id":573131,"name":"Rotting Flesh","rankText":"Minion Buffer","description":"Damage dealt increased by $s1% for $d, stacking $u times.","categoryId":0,"dispelType":3,"mechanic":0,"attributes":[0,8388608,0,1073741952,0,0,8388608,33554434],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4879,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":4,"damageClass":1,"preventionType":0,"schoolMask":40,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":190,"auraType":79,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":808016,"name":"Death's Due","rankText":"Damage","description":"Force a target to accept the reality of death, removing any invulnerability or immunity effects from them and cursing them for $d. If the target drops below 20% health after $d, they take ${$m1+0+$SP*2} Shadow Damage.","categoryId":0,"dispelType":2,"mechanic":0,"attributes":[536870912,65536,0,0,0,0,0,0],"castTimeIndex":4,"castTimeMs":1000,"recoveryTimeMs":60000,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":40,"spellLevel":40,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":83597,"powerCostPercentage":10,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804112,"name":"Lichfrost","rankText":"Energize","description":"Generates $/10;s2 |cff01cdfeRunic Power|r.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[536870912,1160,5,1048576,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64011,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":14,"dieSides":6,"pointsPerLevel":2.5,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":16,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.6000000238418579},{"index":1,"effectType":30,"auraType":0,"basePoints":62,"dieSides":31,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":531131,"name":"Overwhelming Forces","rankText":"Forcecast","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64176,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":140,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":27,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":531129,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":302597,"name":"Study of Death","rankText":"CDR","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[128,0,0,1073741824,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":35,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1076,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-500,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":27,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":805029,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":705753,"name":"Tears of Lordaeron","rankText":"Proc","description":"Generates $/10;s1 Runic Power.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,1024,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4494,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":137,"auraType":0,"basePoints":9,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":137,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707421,"name":"Tundra Warriors","rankText":"Proc","description":"For $d, the critical strike chance of your Undead minions is increased by $s1%, stacking $u times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":20,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5616,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":190,"auraType":290,"basePoints":4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560607,"name":"Vampiric Aura","rankText":"Proc","description":"Undead minions heal you for ${$w2}% of the damage they deal.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[256,1024,4,1342177280,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25352,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":190,"auraType":354,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":561095,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800343,"name":"Crypt Swarm","rankText":"Damage","description":"Summons several crypt scarabs to attack the caster's target.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,4,0,262144,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":6,"spellLevel":6,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":13,"stackAmount":4,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":116,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":3,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800344,"name":"Crypt Swarm","rankText":"Energize","description":"$s2","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,1073741824,0,0,8388608,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":116,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":5,"dieSides":2,"pointsPerLevel":0.9599999785423279,"mechanic":0,"implicitTargetA":25,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.03999999910593033},{"index":1,"effectType":30,"auraType":0,"basePoints":30,"dieSides":51,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805031,"name":"Sacrifice Undead","rankText":"Restore","description":"Destroys an Undead minion and heals the caster.","categoryId":55,"dispelType":0,"mechanic":0,"attributes":[0,0,4,1074003968,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":28106,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":1,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":10,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":525004,"name":"Life Force","rankText":"Visual","description":"Used to summon undead minions.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[67108864,1024,0,1048576,2097152,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":222,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":226,"basePoints":8,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":87,"basePoints":4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":3,"auraType":79,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801751,"name":"Icequake Trigger","rankText":"","description":"You strike all enemies within $a1yd that are affected by |cffffffffDeathchill|r with an icy blast, dealing ${$801757m1+($pl*4)} Frost damage to them and their nearby allies, and consuming 1 stack of |cffffffffDeathchill|r.","categoryId":945,"dispelType":1,"mechanic":0,"attributes":[128,1024,0,1073872896,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":6,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63279,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":142,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":801757,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801757,"name":"Icequake","rankText":"","description":"Blast the target with a frigid wind dealing $s1 Frost damage to all enemies within 10 yards.","categoryId":1248,"dispelType":0,"mechanic":0,"attributes":[0,134217864,0,0,0,0,1024,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":5,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":53282,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":1,"damageClass":1,"preventionType":1,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":53,"dieSides":8,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.6499999761581421},{"index":1,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":801727,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801727,"name":"Deathchill","rankText":"","description":"Damage from the Necromancer's Frost spells increased by $s1%. At 10 stacks, apply |cffffffffIcy Tomb|r.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2097168,1024,4,128,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":42,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5296,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":271,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":2,"auraType":0,"basePoints":6,"dieSides":2,"pointsPerLevel":0.625,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":801729,"pointsPerCombo":0,"coefficient":0}]},{"id":804536,"name":"Ray of Rot","rankText":"","description":"Diseases tick ${$w1}% faster and deal ${$w2}% increased damage.","categoryId":18,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":6,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":54999,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":-40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803779,"name":"Ice Barrage","rankText":"Damage","description":"Unleash a relentless volley of glacial shards, dealing ${$m1+0+$SP*.35} Frost Damage every $t1 sec for $d. At the end of the duration, you entomb your target in ice, freezing them for $804328d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":0,"durationMs":0,"powerType":6,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":35,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65229,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":6,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804328,"name":"Frozen","rankText":"","description":"Stuns an enemy for $d and deals Physical Damage equal to $s2% of their Maximum Health.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,1073741824,67109376,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":33,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5294,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":26,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":13,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":26,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":7,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802128,"name":"Noxious Corpserot","rankText":"Explosion Damage","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[8388608,0,5,1048576,0,8,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3012,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":40,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":16,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560624,"name":"Frigid","rankText":"","description":"Movement speed reduced by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":11,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62881,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":33,"basePoints":-30,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801729,"name":"Lich Blast","rankText":"","description":"|cffffffffConsumes Deathchill Stacks|r Deals ${$m3+0} Shadowfrost Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[603979776,1160,4,0,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":20,"spellLevel":20,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4892,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":48,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":164,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":801727,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":30,"auraType":0,"basePoints":40,"dieSides":1,"pointsPerLevel":0.8500000238418579,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":2,"auraType":0,"basePoints":108,"dieSides":6,"pointsPerLevel":4.849999904632568,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801747,"name":"Permafrost","rankText":"","description":"Affected enemy is considered Frozen.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[536870912,0,4,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27852,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":262,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500516,"name":"Plaguebomb","rankText":"Trigger Crypt Plague","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,0,536870912,1610612736,0,67108864,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":6,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6008,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":40,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707133,"name":"Diabolical","rankText":"Buff","description":"|cffffffffUnholy Command|r now applies 3 stacks of |cffffffffDiabolical|r, stacking $u times, to the enemy for $d. Your Undead minions attacks can consume the stacks to deal additional Shadow Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":9,"durationMs":30000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":15,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25171,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":42,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":707737,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800810,"name":"Burning Brand","rankText":"","description":"${$w2} Fire damage every $t2 seconds.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[65536,136,0,1074790528,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2306,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.3499999940395355},{"index":1,"effectType":6,"auraType":3,"basePoints":16,"dieSides":5,"pointsPerLevel":0.3199999928474426,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.18000000715255737},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":806375,"pointsPerCombo":0,"coefficient":0}]},{"id":520219,"name":"Cataclysm","rankText":"Charge Back Down","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,128,1073741824,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2129,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":98,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":150,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":2,"auraType":0,"basePoints":11,"dieSides":1,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":520868,"pointsPerCombo":0,"coefficient":0}]},{"id":520220,"name":"Cataclysm","rankText":"Knockback","description":"Immune to damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,128,1073741824,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2129,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":98,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":193,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":150,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":520868,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":2,"auraType":0,"basePoints":11,"dieSides":1,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":193,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520868,"name":"Cataclysm","rankText":"Slow","description":"","categoryId":0,"dispelType":1,"mechanic":11,"attributes":[0,0,128,1073741824,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2129,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":178,"auraType":0,"basePoints":6000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":1604,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":1604,"name":"Dazed","rankText":"","description":"A concussive strike dismounts the target and reduces movement speed by $s1%.","categoryId":0,"dispelType":0,"mechanic":27,"attributes":[16,262144,0,0,1,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":15,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":33,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":27,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":108,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":21,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1}]},{"id":680842,"name":"Circle of Fire","rankText":"Incapacitate","description":"Incapacitated.","categoryId":799,"dispelType":1,"mechanic":0,"attributes":[0,136,0,1073741824,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63885,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":10,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":172,"dieSides":1,"pointsPerLevel":0.8500000238418579,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":5,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":14,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":183,"auraType":0,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":681265,"pointsPerCombo":0,"coefficient":0}]},{"id":806612,"name":"Dragon Leap","rankText":"Area Slow","description":"Crash down upon an enemy.","categoryId":830,"dispelType":1,"mechanic":11,"attributes":[604045312,214048,67633156,1073741824,16512,67108865,0,58720320],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":100,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63837,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":33,"basePoints":-25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":16,"implicitTargetB":0,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807391,"name":"Generate 20 Heat","rankText":"","description":"","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,1073741825,1141899776,0,0,0,262144],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":100,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5072,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":20,"miscValueB":0,"triggerSpellId":807389,"pointsPerCombo":0,"coefficient":0}]},{"id":524819,"name":"Dragonscales","rankText":"","description":"Damage taken reduced by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":27,"durationMs":3000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8459,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":87,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807536,"name":"Ember Consume","rankText":"","description":"Allows you to cast powerful abilities.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262144,0,1073741825,1141899776,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1923,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":-1,"miscValueB":0,"triggerSpellId":807533,"pointsPerCombo":0,"coefficient":0}]},{"id":807533,"name":"Ember","rankText":"Resource","description":"Allows you to cast powerful abilities.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[67371008,0,1073741825,1074790400,0,4,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1923,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804301,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":7,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804301,"name":"Flamecasting","rankText":"","description":"Increases your spell haste by $s2%$?s706859[ and Spirit by $706859s1%][] for $d. Stacks $u times. Additional applications do not refresh duration.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2147745792,0,1073741825,1141899776,0,0,0,262144],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24742,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":137,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":216,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":36,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":15,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807394,"name":"Generate 10 Heat","rankText":"","description":"","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,1073741825,1141899776,0,0,0,262144],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":100,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5072,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":807389,"pointsPerCombo":0,"coefficient":0}]},{"id":680372,"name":"Ignis Ultimatus","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":1,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2128,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":680370,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":680371,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":164,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":804301,"pointsPerCombo":0,"coefficient":0}]},{"id":706874,"name":"Infernus","rankText":"Damage","description":"Dealing Fire Damage over time.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[16,8388608,0,128,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":85,"durationMs":18000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63813,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":187,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804076,"name":"Meteor","rankText":"","description":"Calls down a meteor in an $a1 yd area, dealing ${$m1+0+$SP*1.25} Flamestrike Damage to up to $i enemies and stunning them for $300985d1.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":0,"durationIndex":36,"durationMs":1000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":20,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27371,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":10,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1}]},{"id":706895,"name":"Obliteration","rankText":"Buff","description":"Movement speed and spell haste increased by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[262144,0,1073741824,1140851200,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":8,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63899,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":216,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":31,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704865,"name":"Phoenix Handler","rankText":"Proc","description":"Reduces the cooldown of the pet's next Binding Flames by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262144,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":4,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":407,"durationMs":100,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7984,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":90,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":60,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":706856,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704857,"name":"Stoke","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":503,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807220,"name":"Shazzrah's Boon","rankText":"Proc","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,536870912,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":10,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4416,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":137,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":451267,"name":"Melt","rankText":"","description":"Deals $s1 Fire Damage.","categoryId":929,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":12,"spellLevel":12,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63880,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":6,"dieSides":1,"pointsPerLevel":1.3960000276565552,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805601,"name":"Slag Barrage","rankText":"","description":"Deals ${$m1+($pl*2.2)} Fire Damage.","categoryId":290,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":120,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5238,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":20,"dieSides":2,"pointsPerLevel":2.200000047683716,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":806470,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804871,"pointsPerCombo":0,"coefficient":0}]},{"id":572806,"name":"Ember","rankText":"Generate Ember","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1923,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":807533,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":707480,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":680367,"pointsPerCombo":0,"coefficient":0}]},{"id":707480,"name":"Fire and Brimstone","rankText":"","description":"Generating an |cffffffffEmber|r now increases the damage of |cffffffffEmber|r spenders by 2% for 10 sec, stacking 5 times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":5,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63862,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680367,"name":"Lifebinder's Fire","rankText":"","description":"Reduces the cooldown of Lifebinder's Fire by $/1000;s1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":15643,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":118,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":165,"auraType":0,"basePoints":-5000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":800796,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802804,"name":"Echo of Nozdormu","rankText":"CDR1","description":"","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":86009,"powerCostPercentage":18,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":504380,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":500135,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":806611,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800791,"name":"Ignite","rankText":"Rank 1","description":"|cffff7f7fGenerates 10 Heat Per Tick|r Burn an enemy, inflicting $o Fire damage over $d. If |cffffffffIgnite|r is dispelled it will cause ${$803455m2+$803455ppl2+$spfi*1.5} Fire damage to the dispeller. Castable while moving.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[65536,8388608,0,128,1048576,0,0,0],"castTimeIndex":16,"castTimeMs":1500,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":14,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":16,"baseLevel":13,"spellLevel":13,"durationIndex":86,"durationMs":21000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":35,"rangeMin":0,"rangeMax":35,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3189,"powerCostPercentage":12,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":16,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.09000000357627869},{"index":1,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805500,"name":"Blaze","rankText":"Rank 1","description":"$?a807533[|cffff7f7f][|cffff3232]Consumes 1 Ember|r Burn an enemy for ${$m1+$SP*0.235} Fire Damage every $t1 sec and reduce their healing received by $806958s2% for $d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2162688,0,0,128,1048576,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":47,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":10,"baseLevel":8,"spellLevel":8,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":35,"rangeMin":0,"rangeMax":35,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24737,"powerCostPercentage":12,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":21,"dieSides":1,"pointsPerLevel":0.685259997844696,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.09000000357627869},{"index":1,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807692,"name":"Abyssal Ward","rankText":"Stack Remover","description":"Place an |cffffffffAbyssal Ward|r on an ally reducing their damage taken by $s2% for $d, stacking $u times. For the duration, each attack will remove 1 stack. Usable while stunned.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[16,0,0,0,0,8,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":664232,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25202,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":176,"auraType":0,"basePoints":0,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":804670,"miscValueB":-1,"triggerSpellId":804670,"pointsPerCombo":0,"coefficient":0}]},{"id":806039,"name":"Black Prayer","rankText":"","description":"Deals ${$m1*$+$sps*.12+$AP*.005} Shadow Damage every $t1 sec and reduces attack speed by $520418s1%.","categoryId":58,"dispelType":1,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":105,"durationMs":9000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":67500,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":136,"dieSides":7,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":178,"auraType":0,"basePoints":8000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":520418,"pointsPerCombo":0,"coefficient":0}]},{"id":804114,"name":"Blade of N'Zoth","rankText":"Visual","description":"","categoryId":1204,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":0,"iconId":15682,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":18,"dieSides":6,"pointsPerLevel":2.299999952316284,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":32,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.44999998807907104},{"index":1,"effectType":168,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":525067,"name":"Crystalline Reflection","rankText":"Resist Protection","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262144,268435456,536870912,1073807360,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1869,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":28,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802729,"name":"Eldritch Command","rankText":"Proc Aura","description":"Unleashing an Energy blast.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[128,1024,0,0,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65328,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":190,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":10,"radius":30,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":573312,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560943,"name":"Mind Rot","rankText":"Debuff","description":"Chance to be struck by spells increased by ${$s1}%. Resource costs increased by $560714s1%. Dispelling this effect increases the Cultist's critical strike chance by $560947s1% for $560947d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[67371008,0,0,1073741824,0,134217728,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":28373,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":186,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":503695,"name":"Reduce 20 Insanity","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262144,0,1073741829,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":-20,"miscValueB":0,"triggerSpellId":500706,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706932,"name":"Hallucination","rankText":"Decoy","description":"Slip into the shadows and increase your movement speed by $503652s1%, creating a copy of yourself for $d. Casting does not break the effect however it will drop off at the end of your cast.","categoryId":0,"dispelType":5,"mechanic":0,"attributes":[256,1024,4,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":134217728,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":11,"spellLevel":11,"durationIndex":27,"durationMs":3000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":54969,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":422,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":4,"basePoints":100,"dieSides":1,"pointsPerLevel":5,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":28,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":18,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":840000,"miscValueB":64,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807693,"name":"Shroud of Pride","rankText":"","description":"Your |cffffffffAbyssal Ward|r now stacks $s1 additional times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24472,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":3,"triggerSpellId":804670,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572065,"name":"Split Mind","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":22528,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":164,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":805801,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":-30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":525066,"name":"Twisted Seal","rankText":"Silence","description":"Silenced.","categoryId":0,"dispelType":0,"mechanic":9,"attributes":[262144,0,536870912,1073807360,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":27,"durationMs":3000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":55,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":27,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":9,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805801,"name":"Wracked Mind","rankText":"","description":"Cannot be affected by |cffffffffVoid Shield|r. Lasts for $d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[603979776,196744,4,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":22,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500706,"name":"Insanity","rankText":"","description":"$?s805120[You find peace in your inner turmoil.][Reaching 100 |cffcfa6ffInsanity|r will cause you to enter |cffffffffTotal Madness|r! Your sentience naturally fights against the Old God's influence, causing you to lose $500728q1 |cffcfa6ffInsanity|r every $500727t1 sec while not in combat.@s:803061:0@]","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2214854656,0,0,0,1048704,4,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":100,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":26953,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":317,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":15,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520334,"name":"Gaze of C'Thun Damage Trigger","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[128,0,128,1073741824,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":14009,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":142,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":507903,"miscValueB":0,"triggerSpellId":520332,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520332,"name":"Gaze of C'Thun","rankText":"Damage Proc","description":"Deals $s1 shadow damage.","categoryId":20,"dispelType":0,"mechanic":0,"attributes":[327680,0,0,1073741824,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3677,"powerCostPercentage":3,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":4,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.800000011920929},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804095,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804095,"name":"Gaze of C'Thun","rankText":"","description":"Blasts an enemy with the power of the Old God C'Thun, dealing |cff01cdfeShadow Damage|r and reducing the target's |cffff8100Attack Speed|r by |cfffeff9e$s1%|r for |cfffeff9e$d|r. Damage dealt increased by $500706s1% for each stack of |cfffeff9eInsanity|r. Regenerates |cfffeff9e$s2%|r of your maximum |cff01cdfeMana|r.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327680,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3677,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":17,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":137,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":165,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":801153,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520335,"name":"Gaze of C'Thun Heal Trigger","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[536871040,0,128,1073741824,128,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":14009,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":142,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520333,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520333,"name":"Gaze of C'Thun","rankText":"Healing Proc","description":"Heals target for $s1.","categoryId":20,"dispelType":0,"mechanic":0,"attributes":[536870912,0,0,1073741824,128,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3677,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":4,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.800000011920929},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804095,"pointsPerCombo":0,"coefficient":0.800000011920929},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":807344,"pointsPerCombo":0,"coefficient":0}]},{"id":807344,"name":"Gaze of C'Thun","rankText":"Stealth Reveal","description":"Blasts an enemy with the power of the Old God C'Thun, dealing |cff01cdfeShadow Damage|r and reducing the target's |cffff8100Attack Speed|r by |cfffeff9e$s1%|r for |cfffeff9e$d|r. Damage dealt increased by $500706s1% for each stack of |cfffeff9eInsanity|r. Regenerates |cfffeff9e$s2%|r of your maximum |cff01cdfeMana|r.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327680,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3677,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":17,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803094,"name":"Refresh Insanity","rankText":"","description":"Refresh Insanity","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,0,0,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":213,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806251,"name":"Eldritch Smite of C'thun","rankText":"Damage","description":"Deals bonus Shadow Damage based on your|cffcfa6ffInsanity|r.","categoryId":1204,"dispelType":0,"mechanic":0,"attributes":[262160,134218240,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":40,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":26642,"powerCostPercentage":9,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":7,"dieSides":4,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":168,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":117066,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":168,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":117490,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804153,"name":"Black Blood","rankText":"Heal","description":"Heals nearby allies for $s2.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,262272,0,512,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":30,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":0,"iconId":24486,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":8,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":31,"implicitTargetB":0,"radiusIndex":10,"radius":30,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706913,"name":"Withered","rankText":"","description":"Reduces your periodic healing taken by ${$w1}%.","categoryId":0,"dispelType":2,"mechanic":0,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":60,"baseLevel":10,"spellLevel":10,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":4,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25316,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":259,"basePoints":-5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520774,"name":"Tales of Woe","rankText":"Forcecast","description":"Regenerates $s1% missing mana and grants you a shield absorbing ${$m1+0+$SP*.2} damage for $d, stacking $u times. While the shield holds, 100% of your mana regeneration continues while casting.","categoryId":24,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":34,"spellLevel":34,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25415,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":140,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":12,"radius":100,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":520683,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":301982,"name":"Void-Touched","rankText":"Stacks","description":"Marks the ally for $d, stacking $301982u times. When you cast |cffffffffGaze of C'Thun|r, all stacks are consumed to heal all allies affected by |cffffffffVoid-Touched|r for ${$301983m1+$301983ppl1+$BH*0.35}, increased based on how many stacks were on them.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,1024,536870916,1879048320,0,0,671088640,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":36,"spellLevel":36,"durationIndex":9,"durationMs":30000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4870,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":283,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704301,"name":"Instill Despair","rankText":"","description":"Steals $s1 life.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,1074266112,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5836,"powerCostPercentage":9,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":96,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":9,"auraType":0,"basePoints":4,"dieSides":4,"pointsPerLevel":1.100000023841858,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0.5,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806453,"name":"Astral Aegis","rankText":"Silence","description":"Deals Arcane Damage and Silences.","categoryId":1205,"dispelType":1,"mechanic":0,"attributes":[65536,0,1074266112,1073741824,0,0,8388608,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":36,"durationMs":1000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25778,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0.30000001192092896,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":27,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":9,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":35764,"pointsPerCombo":0,"coefficient":0}]},{"id":800507,"name":"Aspect of the Stars","rankText":"Damage","description":"Deals $s1 Arcane Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,524288,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":6,"spellLevel":6,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1654,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804096,"name":"Mana Regeneration","rankText":"Energise","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,268436480,0,0,0,0,1024,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":23206,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":137,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504631,"name":"Cosmic Wrath","rankText":"","description":"Damage dealt increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":26903,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":79,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":301328,"name":"Moonwalk","rankText":"","description":"Increases your movement speed by $s1% at night.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[8448,1024,4,268435456,65536,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":38,"durationMs":11000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64073,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":31,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680790,"name":"Nightborne Armements","rankText":"Proc","description":"Damage taken reduced by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,0,0,0,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":36,"durationMs":1000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":13989,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":87,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806233,"name":"Reverse Magic","rankText":"","description":"Reflect all harmful spells cast on you for $d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":40000,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":66,"durationMs":2500,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24642,"powerCostPercentage":8,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":74,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520406,"name":"Second Moon","rankText":"","description":"After 10 stacks, next Scattered Star unleashed will call down a comet.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,0,0,0,128,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64052,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804996,"name":"Shooting Star","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147484032,268468224,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":120,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16897,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":77,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":4,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805006,"name":"Shooting Star","rankText":"Damage","description":"You charge at an enemy with the force of a shooting star, dealing |cff01cdfe$s3 Arcane Damage|r and knocking them back a short distance. After hitting your target, your |cffff8100Movement Speed|r is increased by |cfffeff9e$804998s3%|r for |cfffeff9e$804998d|r. The damage dealt and knockback of this spell is increased based on the distance travelled during the charge.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[539295760,268436480,0,0,0,0,8388608,58982400],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":5,"spellLevel":5,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7540,"powerCostPercentage":0,"startRecoveryCategory":1178,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":2,"auraType":0,"basePoints":4,"dieSides":3,"pointsPerLevel":1.5,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":36,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707724,"name":"Starshatter","rankText":"Placer","description":"Consumes 2 Felfury Sunder the ground infront of you in a $a3 yd line, causing 3 explosions one after another that deal Chaos Damage to enemies in a 5 yd radius. Inner Demon: Creates a |cffffffffFissure|r in each blast radius, dealing damage over time.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24437,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":47,"implicitTargetB":0,"radiusIndex":191,"radius":4,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":707725,"pointsPerCombo":0,"coefficient":0.25},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":191,"radius":4,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":712462,"pointsPerCombo":0,"coefficient":0.25},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":191,"radius":4,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.25}]},{"id":804378,"name":"Scattered Stars","rankText":"","description":"Can be consumed by spells to deal additional Arcane Damage.$?s704797[ and increases your Arcane Damage dealt by $704797s1%.][] Lasts $d, stacking $u times.","categoryId":592,"dispelType":1,"mechanic":0,"attributes":[536870912,1024,4194309,1074004096,131200,8,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":6000000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":9,"durationMs":30000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":4,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4801,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":64,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":308,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":330,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":64,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572315,"name":"Consume Scattered Stars","rankText":"","description":"Deals ${$804995m1+$804995ppl1} additional Arcane Damage and regenerates $804994s2% maximum mana for each |cffffffffScattered Star|R consumed.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,1024,4,1073741824,128,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62792,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":804716,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804716,"name":"Consume Scattered Stars","rankText":"","description":"Deals ${$804995m1+$SP*0.182183} Arcane Damage and restores $804994s2% maximum mana for each |cff66ccffScattered Star|R.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[8388992,1024,5,1074790400,128,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62792,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":23,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":500,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":804995,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804995,"name":"Scattered Star","rankText":"","description":"You call a small comet down from the sky, dealing ${$m1+0} Arcane Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,524293,1073741824,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62792,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":7,"dieSides":2,"pointsPerLevel":1.132830023765564,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":801401,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":-1,"triggerSpellId":804378,"pointsPerCombo":0,"coefficient":0}]},{"id":70452,"name":"Frost Cast","rankText":"","description":"Inflicts Frost damage to an enemy and reduces its movement speed for $d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[590080,0,4,268435456,0,0,0,0],"castTimeIndex":15,"castTimeMs":4000,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":20,"spellLevel":20,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":134,"rangeMin":0,"rangeMax":80,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":188,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805688,"name":"Slipstream","rankText":"","description":"Heals for $s1.","categoryId":19,"dispelType":0,"mechanic":0,"attributes":[327680,0,4,1073741824,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24428,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":1,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":706984,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800396,"name":"Drowned","rankText":"","description":"Frost damage taken increased by $s1%","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2162688,0,524288,0,0,0,67108864,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":31,"durationMs":8000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":545,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":87,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":16,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":706302,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706302,"name":"Lunar Phase Proc","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2200,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":-4,"miscValueB":0,"triggerSpellId":802985,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":164,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":800386,"pointsPerCombo":0,"coefficient":0}]},{"id":802985,"name":"Lunar Phase","rankText":"","description":"Passively gain 1 stack every $524781t1 sec. At 4 stacks you can activate |cffffffffLunar Eclipse|r.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,32,0,1073741824,0,0,16384,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":4,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7539,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":140,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":4,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800498,"name":"Cosmic Presence","rankText":"","description":"Stunned.","categoryId":0,"dispelType":1,"mechanic":12,"attributes":[0,524424,4,0,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":27,"durationMs":3000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":77324,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":12,"basePoints":4,"dieSides":2,"pointsPerLevel":1.25,"mechanic":12,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":3,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.6000000238418579}]},{"id":800722,"name":"Angelic Presence","rankText":"","description":"Your next |cffffffffIllumination|r within $d is instant cast and free of cost.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,131072,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5622,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":-1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":354,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":802598,"pointsPerCombo":0,"coefficient":0}]},{"id":704926,"name":"Bastion of Hope","rankText":"Proc","description":"Reduces the cooldown of |cffffffffVengeful Slam|r by $/1000;s1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,4,1610612736,256,67108864,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":30,"spellLevel":30,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":21632,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":137,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":-1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":30,"auraType":0,"basePoints":15,"dieSides":1,"pointsPerLevel":0.8500000238418579,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":301006,"name":"Blessed Armor","rankText":"Proc","description":"Spell Power increased by ${$W1}.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,268436480,4,268435456,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":16,"spellLevel":16,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":70,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":345,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801582,"name":"Censure","rankText":"Spreader","description":"Shackle an enemy with chains of light, preventing mounting, fleeing, or increasing their movement speed above normal movement speed for $806697d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":16,"spellLevel":16,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":237,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":1,"damageClass":0,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":169,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":806697,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520648,"name":"Circle of Valor","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":11828,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560347,"name":"Circle of Valor","rankText":"","description":"Diverting ${$w1}% of damage taken to the Sun Cleric. Healing for $520648s1 every $520647t1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":699048,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":11828,"powerCostPercentage":20,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":35,"auraType":81,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":1,"chainTargets":1,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":0,"auraType":0,"basePoints":40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1}]},{"id":504858,"name":"Energize 5% Missing","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":137,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802947,"name":"Divine Vision Effect","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":8000,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":213,"powerCostPercentage":9,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":8,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":800579,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800579,"name":"Light's Protection","rankText":"","description":"Absorbing up to ${$w1} magic damage.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,0,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":9000,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1935,"powerCostPercentage":9,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":126,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":69,"basePoints":26,"dieSides":18,"pointsPerLevel":5.5,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1.75},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":301341,"name":"Pure Light","rankText":"Aura","description":"While above 80% health you now deal $s1% increased damage and healing.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,268435456,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":38,"durationMs":11000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63978,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":79,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":136,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680702,"name":"Revelation","rankText":"","description":"Rooted.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[272,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":36,"rangeMin":0,"rangeMax":45,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":53556,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":26,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":7,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680701,"name":"Revelation","rankText":"Heal","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":36,"rangeMin":0,"rangeMax":45,"projectileSpeed":1000,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":53556,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":31,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704911,"name":"Sunlight","rankText":"","description":"Heals nearby allies for $s1.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,1073741824,65536,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24230,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":25,"dieSides":7,"pointsPerLevel":1,"mechanic":0,"implicitTargetA":21,"implicitTargetB":31,"radiusIndex":23,"radius":40,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804098,"name":"Gain 1 Solar Power","rankText":"","description":"Grants 1 |cfffeff9eSolar Power|r.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,1073938432,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":51536,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":41,"dieSides":8,"pointsPerLevel":8,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1.8109999895095825},{"index":1,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":500149,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":506637,"name":"Blind","rankText":"Trigger","description":"Chance to miss on your next attack increased by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[1073741824,0,4,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27837,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":34,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":505342,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704564,"name":"Warmth","rankText":"","description":"Health increased by ${$w1}.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8467,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":34,"basePoints":290,"dieSides":1,"pointsPerLevel":5,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802941,"name":"Solar Embrace Effect","rankText":"","description":"Add 1 solar power if target has Solar Embrace","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":213,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":164,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":500151,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804098,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500149,"name":"Solar Power","rankText":"","description":"You may unleash |cFFFF9800Dawn|r at 20 stacks. @s:804584:0@","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[8454144,8389632,524417,1048576,0,4,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":20,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63021,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":1,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":7,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680886,"name":"Guidance: Touch of Light","rankText":"Heal","description":"Heals your |cFFFFFFFFGuided|r ally for ${$m1+$PPL1+$SP*0.85} and an additional ${$m2+$PPL2+$SP*0.12} every $680887t1 over $680887d. Only usable on allies with |cffffffffSolar Guidance|r active.","categoryId":522,"dispelType":1,"mechanic":0,"attributes":[327680,524288,1073741828,0,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24872,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.4399999976158142},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680887,"name":"Guidance: Touch of Light","rankText":"HoT","description":"Heals your |cFFFFFFFFGuided|r ally for ${$m1+$PPL1+$SP*0.85} and an additional ${$m2+$PPL2+$SP*0.12} every $680887t1 over $680887d. Only usable on allies with |cffffffffSolar Guidance|r active.","categoryId":522,"dispelType":1,"mechanic":0,"attributes":[327680,524288,4,0,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":185,"durationMs":21000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24872,"powerCostPercentage":13,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":8,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":500,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800616,"name":"Purging Flames","rankText":"","description":"Deals ${$m2+0+$spfi*0.07+$AP*0.0358} Fire Damage every $t2 sec for $d.","categoryId":451,"dispelType":1,"mechanic":0,"attributes":[2162688,0,0,1073741824,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":27,"durationMs":3000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5292,"powerCostPercentage":11,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":3,"basePoints":12,"dieSides":1,"pointsPerLevel":1,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1000,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806468,"name":"Anshe's Blessing","rankText":"","description":"Rooted.","categoryId":1144,"dispelType":1,"mechanic":7,"attributes":[65536,0,1073741824,1140851200,0,0,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":40,"procCharges":0,"maxLevel":0,"baseLevel":60,"spellLevel":60,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":54839,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.3499999940395355}]},{"id":681317,"name":"Gavel of Grace","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3017,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807058,"name":"Radiant Flame","rankText":"Damage","description":"Deals Holyfire damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,1073741828,512,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":13,"spellLevel":13,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":45,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63981,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":6,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":77,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680893,"name":"Blessing of Absolution","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25182,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":141,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":804252,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804252,"name":"Blessing of Absolution","rankText":"","description":"Deals $s1 Holy Damage in a cone.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[65536,136,1073741824,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25182,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":104,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":63,"auraType":0,"basePoints":15,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":104,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707776,"name":"Miraculous","rankText":"Specialization","description":"|cFF66DDFFLevel 50 Passive|r Increases your block value by $s1% of your Intellect.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,268435456,0,0,0,0,128,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":30,"durationIndex":38,"durationMs":11000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24813,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":150,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":983369,"name":"Firefall","rankText":"Rank 1","description":"You summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing $983370s1 Fire damage. Also causes $983372s1 Fire damage to all other enemies within $983372a1 yards of the enemy target. Maximum 20 stars. Lasts $983368d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,525448,0,196608,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":69,"baseLevel":60,"spellLevel":60,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":122,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":983370,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":9,"radius":20,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":284683,"name":"Firefall","rankText":"Rank 2","description":"You summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing $983391s1 Fire damage. Also causes $983393s1 Fire damage to all other enemies within $983393a1 yards of the enemy target. Maximum 20 stars. Lasts $983392d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,525448,0,196608,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":74,"baseLevel":70,"spellLevel":70,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":122,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":983391,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":9,"radius":20,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":48108,"name":"Hot Streak","rankText":"","description":"Your next Pyroblast spell is instant cast.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,64,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":1,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2999,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":6,"auraType":4,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1}]},{"id":284684,"name":"Firefall","rankText":"Rank 3","description":"You summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing $983395s1 Fire damage. Also causes $983397s1 Fire damage to all other enemies within $983397a1 yards of the enemy target. Maximum 20 stars. Lasts $983396d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,525448,0,196608,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":79,"baseLevel":75,"spellLevel":75,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":122,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":983395,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":9,"radius":20,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":284685,"name":"Firefall","rankText":"Rank 4","description":"You summon a flurry of fire stars from the sky on all targets within 20 yards of the caster, each dealing $983399s1 Fire damage. Also causes $983401s1 Fire damage to all other enemies within $983401a1 yards of the enemy target. Maximum 20 stars. Lasts $983400d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,525448,0,196608,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":84,"baseLevel":80,"spellLevel":80,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":122,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":983399,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":9,"radius":20,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801745,"name":"Air Strike","rankText":"Damage","description":"Burn the target for $s1.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[547356672,0,5,3222274048,128,67141632,4096,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":165,"durationMs":7000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5475,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":3,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1226,"dieSides":43,"pointsPerLevel":12,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706535,"name":"Generate 3 Scrap","rankText":"","description":"","categoryId":1078,"dispelType":0,"mechanic":0,"attributes":[384,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4485,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":801816,"pointsPerCombo":0,"coefficient":1}]},{"id":653254,"name":"Concussion","rankText":"","description":"Your target is unable to critically strike and their total primary attributes are reduced by $s2% for $d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[262656,131072,8,1073741824,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":5281,"powerCostPercentage":6,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":3,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":290,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":137,"basePoints":-5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":-1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707266,"name":"Freeze Bomb","rankText":"","description":"Movement speed reduced by $S1%. Stacks $u times.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2147483648,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":4,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":12343,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":33,"basePoints":-15,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":503549,"name":"I'm The Creator Now","rankText":"","description":"Attack and spell power increased.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[256,1024,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":15,"spellLevel":15,"durationIndex":9,"durationMs":30000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64272,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":344,"basePoints":9,"dieSides":1,"pointsPerLevel":0.25,"mechanic":0,"implicitTargetA":27,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":345,"basePoints":9,"dieSides":1,"pointsPerLevel":0.25,"mechanic":0,"implicitTargetA":27,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806158,"name":"Healthy","rankText":"","description":"Immune to Poison, Disease and Bleed effects.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[65536,32768,524288,1073741824,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":407,"durationMs":100,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25813,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":41,"basePoints":7,"dieSides":2,"pointsPerLevel":0.9599999785423279,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":77,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":15,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":41,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805663,"name":"Quickscope","rankText":"","description":"Casting speed of your next Snipe decreased by $/1000;s1 sec. Damage and critical strike chance increased by $s2%. Stacks $u times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,131072,1073741824,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":12338,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[]},{"id":706698,"name":"Rocket Bombardment","rankText":"Applier","description":"Sentry Turrets fire Rocket Clusters when they attack.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[264192,0,4,0,0,67109376,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":327,"durationMs":500,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":53208,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":190,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":200,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":706697,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500220,"name":"Rocket Launcher","rankText":"Damage","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[4259840,0,0,1073741824,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":17,"spellLevel":17,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":25,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5764,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":3,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":705821,"name":"Rocket Pack","rankText":"Proc","description":"Reduces the remaining cooldown of Rockadier by $/1000;s1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25772,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-3000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":801827,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":4,"basePoints":6000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806628,"name":"Scrapshield","rankText":"","description":"Absorbs ${$w1} damage.","categoryId":970,"dispelType":0,"mechanic":19,"attributes":[327696,0,67108864,1073741824,2048,0,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":27,"spellLevel":27,"durationIndex":28,"durationMs":5000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65268,"powerCostPercentage":3,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":69,"basePoints":12,"dieSides":4,"pointsPerLevel":5,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":0,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":5,"miscValueB":0,"triggerSpellId":801816,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801009,"name":"Sticky Bomb Explosion","rankText":"","description":"Deals ${$m1+0+$AP*0.0525+$spfi*0.107381} Fire Damage to up to $i enemies within $a1 yds.","categoryId":19,"dispelType":0,"mechanic":0,"attributes":[10747904,0,5,1074790400,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24129,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":560790,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572053,"name":"Bomb Toss","rankText":"Armor Cut","description":"Armor reduced by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":114,"rangeMin":0,"rangeMax":35,"projectileSpeed":0,"stackAmount":4,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":52958,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":101,"basePoints":-5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805894,"name":"Adrenal Venom","rankText":"Haste","description":"Heals allies around the target.","categoryId":1152,"dispelType":1,"mechanic":0,"attributes":[0,0,4,0,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25493,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":192,"basePoints":6,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":216,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800843,"name":"Skulk","rankText":"","description":"Skulk through the shadows, entering stealth. Lasts until cancelled. While stealthed, |cffffffffVenom Fang|r$?s807600[ or |cFFFFFFFFWidow's Kiss|r][] has no cost and deals ${$800906m1+$800906ppl1}% increased damage, scaling with your level.","categoryId":40,"dispelType":5,"mechanic":0,"attributes":[437518352,65536,1142947840,67108864,0,8,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":10000,"interruptFlags":0,"auraInterruptFlags":146439,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":54831,"powerCostPercentage":0,"startRecoveryCategory":1178,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":23,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":500,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":800906,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":16,"basePoints":5,"dieSides":1,"pointsPerLevel":8,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":31,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802825,"name":"Ambush Predator","rankText":"","description":"|cffffffffLeg Strike|r now increases the damage dealt by subsequent |cffffffffLegstrikes|r by $s1 and causes them to generates 20 additional Rage for $d, stacking $u times.","categoryId":814,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":640,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":806154,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504377,"name":"Curse of Shadra","rankText":"DPS","description":"The Venomancer will deal additional damage to you with some abilities.","categoryId":0,"dispelType":2,"mechanic":0,"attributes":[256,1024,4,1342177408,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":20466,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804972,"name":"Brood Mark","rankText":"","description":"Can be consumed to add an additional effect to the Venomancer's abilities.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147483648,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":524288,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5320,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":23,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":23,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805774,"name":"Apply Fang Venom","rankText":"Deprecated","description":"Applies current Poison effect.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262144,0,4,0,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":68,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[]},{"id":503953,"name":"Enduring Exoskeleton","rankText":"hidden","description":"Generates 2 Rage on hit","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":166,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803178,"name":"Envenomed Weapons","rankText":"","description":"","categoryId":18,"dispelType":4,"mechanic":0,"attributes":[0,32,0,65536,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5802,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":3,"dieSides":2,"pointsPerLevel":0.10000000149011612,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.23000000417232513}]},{"id":803529,"name":"Green Salve","rankText":"Heal","description":"","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,4194304,1073872896,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":40,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":12583,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":1,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":31,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":630869,"name":"Rejuvenating Venom","rankText":"Heal","description":"Heal a random ally within $630869a1 yds of your target for ${$630869m1*$+$bh*0.092} over $630869d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[151257088,1024,4194304,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":14,"spellLevel":14,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25488,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":1,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":8,"basePoints":67,"dieSides":6,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":31,"implicitTargetB":0,"radiusIndex":10,"radius":30,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572407,"name":"Myotoxin","rankText":"Dispel","description":"Inject an enemy with myotoxins, removing $s1 enrage effect, repeating every $t1 sec for $d.","categoryId":0,"dispelType":4,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":30000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65424,"powerCostPercentage":30,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":0,"preventionType":1,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":38,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":9,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706000,"name":"Weakening Venom","rankText":"Proc","description":"Deals ${$706000m2+$706000ppl2+$SP*.125} Shadow Damage and reduces attack power by ${-($m1+0)}.","categoryId":1101,"dispelType":4,"mechanic":0,"attributes":[262160,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":12,"spellLevel":12,"durationIndex":31,"durationMs":8000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25490,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":344,"basePoints":-23,"dieSides":1,"pointsPerLevel":-4.400000095367432,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":2,"auraType":0,"basePoints":18,"dieSides":4,"pointsPerLevel":0.8500000238418579,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706032,"name":"Rot Lich","rankText":"Proc","description":"Your next |cffffffffSerpent's Fang|r within $706032d is free of cost.","categoryId":1101,"dispelType":0,"mechanic":0,"attributes":[262160,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27752,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":195,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":800946,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":313,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":505203,"name":"Shadra's Vigil","rankText":"","description":"The next 5 instances of periodic healing by you on this target will heal them for an additional $s1% of the value.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64120,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800868,"name":"Blightcaps","rankText":"","description":"Healing taken reduced by $S1%. Stacks $u times.","categoryId":18,"dispelType":4,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":32768,"iconId":71020,"powerCostPercentage":5,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":40,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":118,"basePoints":-15,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504211,"name":"Surprise Strategy","rankText":"","description":"Increases the healing of your next Shadra's Prayer by ${$w1}% and makes it instant cast.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5055,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":22,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803204,"name":"Toxflinger","rankText":"","description":"","categoryId":18,"dispelType":4,"mechanic":0,"attributes":[524288,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":20,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":68,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":0,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.10000000149011612}]},{"id":504346,"name":"Toxic Stride","rankText":"","description":"Immune to silence and interrupt effects. Can cast while moving.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64105,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":77,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":9,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":313,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":77,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":250,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":26,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800923,"name":"Wrapped","rankText":"","description":"Movement speed reduced by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":11,"attributes":[0,1073741824,0,0,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":12300,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":8,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62989,"powerCostPercentage":8,"startRecoveryCategory":0,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800874,"name":"Shadra's Favor","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3293,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":137,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":30,"auraType":0,"basePoints":8,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":30,"auraType":0,"basePoints":40,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805895,"name":"Debilitating Venom","rankText":"Slow","description":"Movement speed slowed by $s1% for $d.","categoryId":1152,"dispelType":4,"mechanic":8,"attributes":[0,1024,4194304,0,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25489,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":33,"basePoints":-40,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":6,"implicitTargetB":16,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500308,"name":"Warpchill","rankText":"","description":"Stunned.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[256,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":440,"rangeMin":0,"rangeMax":500,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3260,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":12,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":12,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800001,"name":"Claw Strike","rankText":"Energize","description":"Every 6th Claw Strike applies your Fang Venom effects.","categoryId":62,"dispelType":0,"mechanic":0,"attributes":[262288,134218240,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":10,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":6,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":19528,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":107,"basePoints":4000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":30,"auraType":0,"basePoints":200,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803218,"name":"Toxic Sludge","rankText":"Slow","description":"Place a toxic pool on the ground for $d, instantly |cffff4500Burning|r enemies inside for ${$m3+0} Nature Damage. Enemies in the pool take ${$m1+0} Nature Damage every $t1 sec, and have $803218s1% reduced movement speed.$?s705991[ Allies in the pool are healed for $802355s1 every $802355t1 sec and take $802355s2% increased healing.][]","categoryId":1102,"dispelType":0,"mechanic":11,"attributes":[0,136,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":12000,"categoryRecoveryTimeMs":12000,"interruptFlags":1,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":13,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7508,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":12,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":33,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":22,"implicitTargetB":28,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803538,"name":"Mending Mist","rankText":"Rank 1","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","categoryId":825,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,384,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":20,"baseLevel":15,"spellLevel":15,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4995,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":96,"dieSides":1,"pointsPerLevel":1.5199999809265137,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803539,"name":"Mending Mist","rankText":"Rank 2","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","categoryId":825,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,384,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":26,"baseLevel":22,"spellLevel":22,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4995,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":149,"dieSides":1,"pointsPerLevel":2.9600000381469727,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803540,"name":"Mending Mist","rankText":"Rank 3","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","categoryId":825,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,384,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":32,"baseLevel":28,"spellLevel":28,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4995,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":185,"dieSides":1,"pointsPerLevel":3.680000066757202,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803541,"name":"Mending Mist","rankText":"Rank 4","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","categoryId":825,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,384,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":38,"baseLevel":34,"spellLevel":34,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4995,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":219,"dieSides":1,"pointsPerLevel":4.360000133514404,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803542,"name":"Mending Mist","rankText":"Rank 5","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","categoryId":825,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,384,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":44,"baseLevel":40,"spellLevel":40,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4995,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":260,"dieSides":1,"pointsPerLevel":4.260000228881836,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803543,"name":"Mending Mist","rankText":"Rank 6","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","categoryId":825,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,384,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":50,"baseLevel":46,"spellLevel":46,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4995,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":287,"dieSides":1,"pointsPerLevel":4.71999979019165,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803544,"name":"Mending Mist","rankText":"Rank 7","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","categoryId":825,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,384,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":56,"baseLevel":52,"spellLevel":52,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4995,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":314,"dieSides":1,"pointsPerLevel":5.320000171661377,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803545,"name":"Mending Mist","rankText":"Rank 8","description":"Spread a precarious mist to up to $i allies within $a1 yds, healing them for ${$m1+0+$bh*0.231} every $t1 sec for $d. After $t2 sec, all allies within $a2 yds are healed for an additional ${$m2+0}.","categoryId":825,"dispelType":1,"mechanic":0,"attributes":[65536,0,524288,384,0,0,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":50,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4995,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":692,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":30,"radiusIndex":10,"radius":30,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572058,"name":"Venomtip Poison","rankText":"Proc","description":"Attack speed reduced by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":1,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":53540,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":192,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":527873,"name":"Venoxis Fang","rankText":"","description":"Blank Placeholder","categoryId":1101,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25106,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504390,"name":"+1 Reaped Souls","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":500363,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":359505,"name":"Energize Runic Power +30","rankText":"","description":"Gain 10 Runic Power","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2155872640,0,4,0,128,4,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16290,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":0,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":300,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504035,"name":"Dark Passage","rankText":"Proc","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8461,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-2000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":800845,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805187,"name":"Essence Invigoration","rankText":"Restore","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[327680,0,524288,0,1048576,0,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":18469,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704358,"name":"Ghastly Form","rankText":"","description":"Absorbs ${$w1} damage.","categoryId":0,"dispelType":1,"mechanic":19,"attributes":[329728,1024,1076363264,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":12,"spellLevel":12,"durationIndex":32,"durationMs":6000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4799,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":69,"basePoints":30,"dieSides":1,"pointsPerLevel":1.75,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806147,"name":"Ghastly Screech","rankText":"","description":"Deals $s1 Shadowfrost Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[159449088,0,1074266116,1073741824,128,67502088,8392704,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":32,"spellLevel":32,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":60,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27352,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":81,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":570097,"name":"Masochistic Rage","rankText":"Aura","description":"Damage dealt increased by $s1%.","categoryId":0,"dispelType":9,"mechanic":0,"attributes":[0,0,536870912,0,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":30,"spellLevel":30,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":354,"iconId":5885,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":420,"dieSides":1,"pointsPerLevel":8,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":79,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500374,"name":"Murder Secondary Visual","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":20,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":239,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":-25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560421,"name":"Murder","rankText":"","description":"Chance to hit reduced by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,1024,4,1342177280,0,0,0,25165824],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":20,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27320,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":54,"basePoints":-3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520533,"name":"Painbringer","rankText":"Trigger1","description":"Deals Shadow Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":-2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":64261,"powerCostPercentage":10,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":2,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":178,"auraType":0,"basePoints":5000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":570097,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520877,"name":"Painbringer","rankText":"Trigger2","description":"Deals Shadow Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":-2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":64261,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":177,"auraType":0,"basePoints":3000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":570097,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":573050,"name":"Soul Harvest","rankText":"Damage","description":"Blasts your target for ${$m1+0+$AP*0.05+$sps*0.1} Shadow Damage, healing for 100% of the damage dealt.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2097152,0,1,1048576,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":2,"spellLevel":2,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":10,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64248,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":1,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":9,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0.8500000238418579,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804312,"name":"Soul Harvester","rankText":"","description":"After killing an enemy you generate $/10;359018s1 Runic Power every $t2 sec.","categoryId":592,"dispelType":1,"mechanic":0,"attributes":[8454144,131072,1,1048576,0,0,0,268435456],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":10,"spellLevel":10,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4897,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":200,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":359018,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":94,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500481,"name":"Tormented Souls","rankText":"","description":"Reduces all direct damage you take by $s1% and heals you for ${$500482m1+$500482ppl1+$AP*.058+$STA*.24}, removing 1 stack. Lasts $d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2147549184,0,524288,0,0,4,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":28232,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":87,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":42,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":500482,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":355461,"pointsPerCombo":0,"coefficient":0}]},{"id":500482,"name":"Tormented Soul","rankText":"Heal","description":"Absorbs the next attack made against you.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147549184,0,524288,0,0,4,67108864,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":28232,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0.5,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":355461,"name":"Energize Runic Power","rankText":"Reap","description":"Gain 10 Runic Power $s1","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2155872640,0,4,0,128,4,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16290,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":0,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":70,"dieSides":61,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":359019,"name":"Energize Runic Power +5","rankText":"","description":"Gain 10 Runic Power","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2155872640,0,4,0,128,4,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16290,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":0,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805077,"name":"Soul Fragment","rankText":"","description":"At $u stacks, generate a |cff5ee2ffReaped Soul|r.","categoryId":55,"dispelType":0,"mechanic":0,"attributes":[2097152,1160,132,1073741824,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":9,"durationMs":30000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":26240,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":183,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":805078,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":3,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":505150,"pointsPerCombo":0,"coefficient":0}]},{"id":359009,"name":"Energize Runic Power +14-25","rankText":"","description":"Gain $s1 Runic Power","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2155872640,0,4,0,128,4,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16290,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":0,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":140,"dieSides":111,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560361,"name":"Doomrend","rankText":"Healing Absorb","description":"Absorbs the next ${$w1} healing done to this target.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147483648,1024,4,1610612736,256,0,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":12,"spellLevel":12,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":26451,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":301,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801097,"name":"Hungering Scythe","rankText":"Damage","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2843738112,32,268976132,0,8388736,393224,12292,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":-2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8462,"powerCostPercentage":3,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":20,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":18,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.30000001192092896},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":582526,"name":"Spirit Realm","rankText":"Aura","description":"Healing taken increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,136,0,0,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":31,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":34,"rangeMin":0,"rangeMax":25,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2209,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":319,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500693,"name":"Boulder Dash","rankText":"Damage","description":"Stomps the ground, dealing $s1 Physical damage to nearby enemies, knocking them up.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,268435592,4,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":36,"durationMs":1000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":58709,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":26,"radius":4,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":26,"radius":4,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":40,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":263,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807859,"name":"Bramblepatch","rankText":"Indicator (Enemy)","description":"Grow a patch of brambles at your location for $d. Party members in the area are immune to grip and knockback effects, and take $s1% reduced damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[272,0,1073741824,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":90000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":12346,"powerCostPercentage":5,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":37,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":31,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":96,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":27,"auraType":37,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":31,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":29,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":27,"auraType":37,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":41,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807120,"name":"Bramblepatch","rankText":"Indicator","description":"Grow a patch of brambles at your location for $d. Party members in the area are immune to grip and knockback effects, and take $s1% reduced damage.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[400,0,1073741824,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":90000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":12346,"powerCostPercentage":5,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":1,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":87,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":31,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":27,"auraType":107,"basePoints":-80,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":31,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":27,"auraType":37,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":31,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":98,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":555724,"name":"Earthmother's Precision","rankText":"Proc","description":"Chance to hit this target with spells increased by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[67371008,0,0,1073741824,0,134217728,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":40,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":186,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":681072,"name":"Seismic Tremor +2","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":680441,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804315,"name":"Rapid Regeneration","rankText":"Regen","description":"","categoryId":1246,"dispelType":0,"mechanic":0,"attributes":[327680,512,1073741824,0,0,0,33554432,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":0,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":137,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504824,"name":"Grove Guardian","rankText":"Enemy Damage Trigger Root","description":"Mark a location as your |cffffffffGrove|r for 20 sec. Enemies inside have their movement speed slowed by 30% and are periodically damaged and rooted for 3 sec. Allies inside have their movement speed increased by 30% and are periodically healed and have 1 movement impairing effect dispelled from them.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,0,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":3,"rangeMin":0,"rangeMax":20,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62779,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":3,"basePoints":504,"dieSides":8,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":28,"implicitTargetB":0,"radiusIndex":18,"radius":15,"periodMs":5000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":27,"auraType":23,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":28,"implicitTargetB":0,"radiusIndex":18,"radius":15,"periodMs":5000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":504825,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":27,"auraType":33,"basePoints":-30,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":28,"implicitTargetB":0,"radiusIndex":18,"radius":15,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504825,"name":"Grove Guardian","rankText":"Enemy Root","description":"Mark a location as your |cffffffffGrove|r for 20 sec. Enemies inside have their movement speed slowed by 30% and are periodically damaged and rooted for 3 sec. Allies inside have their movement speed increased by 30% and are periodically healed and have 1 movement impairing effect dispelled from them.","categoryId":0,"dispelType":1,"mechanic":7,"attributes":[0,1024,0,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":3,"rangeMin":0,"rangeMax":20,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62779,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":26,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":7,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":505208,"name":"Grove Guardian","rankText":"Ally","description":"Mark a location as your |cffffffffGrove|r for 20 sec. Enemies inside have their movement speed slowed by 30% and are periodically damaged and rooted for 3 sec. Allies inside have their movement speed increased by 30% and are periodically healed and have 1 movement impairing effect dispelled from them.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,1024,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":3,"rangeMin":0,"rangeMax":20,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62779,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":40,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":8,"basePoints":404,"dieSides":8,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":31,"implicitTargetB":0,"radiusIndex":18,"radius":15,"periodMs":5000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":27,"auraType":23,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":31,"implicitTargetB":0,"radiusIndex":18,"radius":15,"periodMs":5000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":505209,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":27,"auraType":31,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":31,"implicitTargetB":0,"radiusIndex":18,"radius":15,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":505209,"name":"Grove Guardian","rankText":"Ally Dispel","description":"Mark a location as your |cffffffffGrove|r for 20 sec. Enemies inside have their movement speed slowed by 30% and are periodically damaged and rooted for 3 sec. Allies inside have their movement speed increased by 30% and are periodically healed and have 1 movement impairing effect dispelled from them.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":3,"rangeMin":0,"rangeMax":20,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62779,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":38,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":3,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":38,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":301086,"name":"Aftershock","rankText":"","description":"Your next |cffffffffGeode Barrage|r or |cffffffffEarthquake|r within $301086d is now instant cast and costs $s3% less.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":83610,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":-75,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706345,"name":"Heavy Handed","rankText":"Proc","description":"Armor increased.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":60,"baseLevel":45,"spellLevel":45,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6806,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":142,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":142,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560970,"name":"Primal Strike","rankText":"Proc","description":"Generates $/10;s1 Rage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25398,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":521230,"name":"Energize +50 Rage","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7706,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":500,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804355,"name":"Rumbler","rankText":"","description":"At 2 stacks Geode Barrage transforms into Seismic Lance.","categoryId":1121,"dispelType":0,"mechanic":0,"attributes":[262160,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":2,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25057,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806589,"name":"Bring Me Their Bones","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,268435456,4,0,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7063,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":806554,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":806553,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":573215,"name":"Stonefaced","rankText":"proc","description":"Increases movement speed by $s1% and melee haste by $s2% for $d, stacking $u times.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2147483648,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1576,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":2,"miscValueB":0,"triggerSpellId":806068,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":183,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":680472,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807249,"name":"Wildheart","rankText":"CDR1","description":"","categoryId":1121,"dispelType":1,"mechanic":0,"attributes":[0,0,0,0,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24661,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":681130,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":500692,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":800145,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":810040,"name":"Wildheart","rankText":"Regen","description":"","categoryId":1121,"dispelType":1,"mechanic":0,"attributes":[0,0,0,0,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24661,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":136,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":137,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":137,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803138,"name":"Geode Barrage","rankText":"Damage","description":"","categoryId":19,"dispelType":0,"mechanic":0,"attributes":[262144,0,4,1073741824,262272,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":30,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2910,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520463,"name":"Quake","rankText":"Proc","description":"Attack speed reduced by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25365,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":192,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504669,"name":"Primal Shred","rankText":"Rank 1 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":17,"baseLevel":13,"spellLevel":13,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":7,"dieSides":1,"pointsPerLevel":0.125,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504670,"name":"Primal Shred","rankText":"Rank 2 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":23,"baseLevel":19,"spellLevel":19,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":10,"dieSides":1,"pointsPerLevel":0.16666699945926666,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":500945,"pointsPerCombo":0,"coefficient":0}]},{"id":504671,"name":"Primal Shred","rankText":"Rank 3 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":29,"baseLevel":25,"spellLevel":25,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":14,"dieSides":1,"pointsPerLevel":0.16666699945926666,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":500945,"pointsPerCombo":0,"coefficient":0}]},{"id":504672,"name":"Primal Shred","rankText":"Rank 4 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":35,"baseLevel":31,"spellLevel":31,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":18,"dieSides":1,"pointsPerLevel":0.29166701436042786,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":500945,"pointsPerCombo":0,"coefficient":0}]},{"id":504673,"name":"Primal Shred","rankText":"Rank 5 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":41,"baseLevel":37,"spellLevel":37,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":25,"dieSides":1,"pointsPerLevel":0.375,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":500945,"pointsPerCombo":0,"coefficient":0}]},{"id":504674,"name":"Primal Shred","rankText":"Rank 6 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":47,"baseLevel":43,"spellLevel":43,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":34,"dieSides":1,"pointsPerLevel":0.45833298563957214,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":500945,"pointsPerCombo":0,"coefficient":0}]},{"id":504675,"name":"Primal Shred","rankText":"Rank 7 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":53,"baseLevel":49,"spellLevel":49,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":45,"dieSides":1,"pointsPerLevel":0.45833298563957214,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":500945,"pointsPerCombo":0,"coefficient":0}]},{"id":504676,"name":"Primal Shred","rankText":"Rank 8 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":61,"baseLevel":55,"spellLevel":55,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":56,"dieSides":1,"pointsPerLevel":0.45833298563957214,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504684,"name":"Primal Shred","rankText":"Rank 9 Damage","description":"Dealing ${$m1+$ppl1+$AP*0.08} Physical Damage every $t1 sec.","categoryId":639,"dispelType":0,"mechanic":15,"attributes":[262160,0,0,128,0,33280,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":61,"baseLevel":55,"spellLevel":55,"durationIndex":86,"durationMs":21000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":2,"rangeMin":0,"rangeMax":5,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":173555,"iconId":4998,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":76,"dieSides":1,"pointsPerLevel":0.45833298563957214,"mechanic":15,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":195,"radius":8,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520416,"name":"Primordial Cloak Trigger","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":51214,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":38,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520238,"name":"Blade Rift","rankText":"Proc","description":"Your Magic Damage is increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":53386,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":79,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560241,"name":"Convergence","rankText":"Proc","description":"Deals $s1 damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":57,"spellLevel":57,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":10,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63698,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":84,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":348,"dieSides":51,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":168,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":83245,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":681241,"name":"Firebrand Conditioned Proc","rankText":"Firebrand","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,1610612736,256,0,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":49,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":653210,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":681500,"name":"Decoder Trigger","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,1610612736,256,0,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":49,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":653272,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":681528,"pointsPerCombo":0,"coefficient":0}]},{"id":500285,"name":"Frost Sigil","rankText":"","description":"You may hold up to 3 Sigils in total, comprised of any combination.","categoryId":75,"dispelType":0,"mechanic":0,"attributes":[327680,32,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":1500,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":20,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":40,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":225042,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":803020,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803020,"name":"Sigil Counter","rankText":"","description":"HIDE CLIENTSIDE","categoryId":75,"dispelType":0,"mechanic":0,"attributes":[2214920192,268435488,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":20,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2124,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805730,"name":"Glacial Rune","rankText":"Root","description":"Place a rune at the target location that explodes after 1 sec with frigid magic, dealing ${$805730m2+$805730ppl2+$SP*.3} Frost Damage to enemies inside and freezing them in place for $d (8 sec vs players). Damage caused may interrupt the effect. Can only affect 1 target at a time.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[1073807360,0,0,0,536872960,0,41943040,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":20000,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":4718592,"channelInterruptFlags":0,"procFlags":664232,"procChance":70,"procCharges":0,"maxLevel":0,"baseLevel":18,"spellLevel":18,"durationIndex":64,"durationMs":40000,"powerType":0,"powerCost":9999,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":83778,"powerCostPercentage":9,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":26,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":7,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":2,"auraType":0,"basePoints":45,"dieSides":2,"pointsPerLevel":1.9864000082015991,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.4000000059604645}]},{"id":712452,"name":"Nomad's Scroll","rankText":"Dispel","description":"Swapping to |cffffffffRunic Tattoos: Air|r now instantly clear any movement slowing effects on you.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,4,1073741824,0,67108864,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":4,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":71282,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":108,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500468,"name":"Riftblade Runemaster","rankText":"Stacks","description":"|cFFFFFFFFPrimordial Blast|r now refreshes a charge of |cFFFFFFFFRuneblade|r and the critical strike chance of |cffffffffRuneblade|r is increased by $s2%. In addition, critical strikes now regenerate mana.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25659,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706525,"name":"Sigilist","rankText":"","description":"After using a |cffffffffSigil|r, the duration of your crowd control effects is increased by $s1% and the effectiveness of your |cfffffffBrands|r unleashed by your |cffffffffWeapon Engravings|r is increased by $s2% for $d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":71255,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":8,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":4,"basePoints":4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":34,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572134,"name":"Speed Rune","rankText":"Placer","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":24,"spellLevel":24,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":85921,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":0,"preventionType":0,"schoolMask":68,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":47,"implicitTargetB":0,"radiusIndex":15,"radius":3,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":572136,"pointsPerCombo":0,"coefficient":0.25},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":572135,"pointsPerCombo":0,"coefficient":0}]},{"id":500606,"name":"Warpdagger","rankText":"Travel Summon","description":"Activate this ability to teleport to your |cffffffffWarpdagger|r and damage all enemies around you upon arrival for ${$500495m1+$500495ppl1+$AP*.2+$SP*.44} Elemental Damage. Usable while stealthed.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[262160,32,0,0,0,0,0,41943040],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":0,"iconId":89210,"powerCostPercentage":6,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":28,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":28,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":18,"implicitTargetB":47,"radiusIndex":7,"radius":2,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":51335,"miscValueB":61,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807746,"name":"Wind Walker","rankText":"2","description":"While in |cffffffffRunic Tattoos: Air|r, the cooldown of |cffffffffRune|r spells is reduced by 5% every 5 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":5,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64536,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":572115,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":807172,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1}]},{"id":807529,"name":"Wind Walker","rankText":"","description":"While in |cffffffffRunic Tattoos: Air|r, the cooldown of |cffffffffRune|r spells is reduced by 5% every 5 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":5,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64536,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524930,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":500464,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":192,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":572134,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1}]},{"id":804102,"name":"Riftblade","rankText":"Aura","description":"","categoryId":578,"dispelType":0,"mechanic":0,"attributes":[2425232,402653696,4,1073741824,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":407,"durationMs":100,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":3054,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":2,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":8,"dieSides":3,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.4000000059604645},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":100,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":803019,"pointsPerCombo":0,"coefficient":0}]},{"id":803019,"name":"Remove Essences","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,4,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":213,"powerCostPercentage":9,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800740,"name":"Linger","rankText":"","description":"Stationary. Triggers a Runic Pulse every $t3 sec.","categoryId":32,"dispelType":0,"mechanic":0,"attributes":[262144,0,4,0,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2460,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":26,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":5,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":103,"basePoints":-90,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":5,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":5,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":800671,"pointsPerCombo":0,"coefficient":0}]},{"id":800671,"name":"Runic Pulse","rankText":"","description":"Deals ${$m1+0} Arcane Damage up to $i nearby enemies and restores $s2% of Runic Familar's health.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,1073741824,0,1048576,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1952,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":18,"dieSides":1,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.05000000074505806},{"index":1,"effectType":136,"auraType":0,"basePoints":8,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.7979999780654907},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804701,"name":"Displace Familiar","rankText":"","description":"|cffffffffConsumes 1 |cffffffffInscribed Rune|r Command your |cffffffffFamiliar|r to warp to the target location where it will remain for $800740d pulsing with Energy every $800740t3 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling.@s:800671:0@","categoryId":1246,"dispelType":0,"mechanic":0,"attributes":[2359296,0,1,1073741824,128,393224,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":141,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":5,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":804055,"pointsPerCombo":0,"coefficient":0}]},{"id":500282,"name":"Palm Sigil: Earth","rankText":"","description":"","categoryId":75,"dispelType":0,"mechanic":0,"attributes":[262144,32,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":1500,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":20,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":50,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":225040,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":560233,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560233,"name":"Palm Sigil: Earth","rankText":"","description":"Casting speed reduced by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[256,1024,4,268435456,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":225040,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":142,"auraType":0,"basePoints":-30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520417,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":178,"auraType":0,"basePoints":8000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520417,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":126,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520417,"name":"CoA General Spell Haste Debuff","rankText":"","description":"","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[128,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7706,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":216,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520882,"name":"Unleash Glyphs","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520096,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520097,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520098,"pointsPerCombo":0,"coefficient":0}]},{"id":520096,"name":"Unleashed Frost Glyph","rankText":"","description":"Deals $s1 Frost Damage and slows movement speed by $520110s1% for $520110d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24993,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":437,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520108,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520108,"name":"Overloaded Frost Glyph","rankText":"","description":"Freeze an enemy in place for $d. At the end of this duration, their movement speed is reduced by $520109s1% for $520109d. Does not break on damage taken.","categoryId":0,"dispelType":1,"mechanic":13,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":27,"durationMs":3000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63912,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":26,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":7,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":26,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":13,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520097,"name":"Unleashed Flame Glyph","rankText":"","description":"Deals $s1 Fire Damage and an additional $o2 Fire Damage over $d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":13,"spellLevel":13,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65184,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":1,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":3,"basePoints":250,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520098,"name":"Unleashed Arcane Glyph","rankText":"","description":"Deals Arcane damage in an area.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62787,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":276,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":16,"radiusIndex":13,"radius":10,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803225,"name":"Frigid Fusion","rankText":"Aura","description":"Accumulate $?s707654[30%][20%] of your damage dealt to the target over $d. After the duration, deal it as Frost Damage to the target.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,128,0,1074790528,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":25,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65015,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":80,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":572338,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":69,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":20,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520525,"name":"Warp Shift (Familiar)","rankText":"","description":"Teleports familiar alongside you when using Warp Shift on enemy.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25090,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":5,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":5,"implicitTargetB":27,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524988,"name":"Spellwrath","rankText":"","description":"Can be consumed by |cFFFFFFFFElemental Burst|r$?s804561[ and |cffffffffPrimordial Pulse|r][] to deal $524987s1 Spellfrost Damage and grant you 1 |cFFFFFFFFInscribed Rune|r.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,128,128,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":12302,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804551,"name":"Thaumaturgy","rankText":"","description":"","categoryId":1270,"dispelType":1,"mechanic":0,"attributes":[8388608,0,1,1048576,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24578,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520096,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520097,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520098,"pointsPerCombo":0,"coefficient":1}]},{"id":808022,"name":"Palm Sigil: Frost","rankText":"Slow","description":"Movement speed slowed by ${$w1}%.","categoryId":978,"dispelType":1,"mechanic":11,"attributes":[1073741824,134480896,4194304,1073938432,8388608,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":225042,"powerCostPercentage":4,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":33,"basePoints":-70,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804341,"name":"You Want Axe?","rankText":"","description":"Refreshes 3 charges of |cffffffffBerserker Axe|r and your next 3 casts now consume a stack to cost $s2% less Energy for $d.","categoryId":0,"dispelType":9,"mechanic":31,"attributes":[65536,131072,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":29,"durationMs":12000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8570,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":187,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":60,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":-50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801693,"name":"Hex of Malice","rankText":"Rank 1","description":"Curse an enemy, dealing ${$m2+$sps*0.08+$RAP*.1} Shadow damage and an additional $o1 Shadow damage over $d. @ext:Periodic damage dealt by this effect can critically strike.:ext@","categoryId":940,"dispelType":2,"mechanic":0,"attributes":[65536,0,131072,128,1048576,0,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":10,"baseLevel":4,"spellLevel":4,"durationIndex":106,"durationMs":24000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25415,"powerCostPercentage":20,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":11,"dieSides":1,"pointsPerLevel":0.6176469922065735,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.05000000074505806},{"index":1,"effectType":2,"auraType":0,"basePoints":5,"dieSides":2,"pointsPerLevel":0.3666659891605377,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":126,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806288,"name":"Reclamation","rankText":"Rank 1","description":"Shoot a quick voodoo arrow at an enemy dealing $s2% Ranged Weapon Damage plus ${$m1+0} as Nature damage and collecting a |CffffffffSpirit|r.@s:561136:0@ Usable while moving.","categoryId":5,"dispelType":0,"mechanic":0,"attributes":[327698,0,131072,0,134217736,0,0,0],"castTimeIndex":23,"castTimeMs":1800,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":2,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":14,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":113,"rangeMin":0,"rangeMax":30,"projectileSpeed":35,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":262156,"iconId":83883,"powerCostPercentage":8,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":3,"preventionType":2,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":15,"dieSides":1,"pointsPerLevel":0.7509999871253967,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0.25,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":6,"coefficient":1},{"index":1,"effectType":31,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804372,"name":"Self Damage","rankText":"5%","description":"","categoryId":1246,"dispelType":0,"mechanic":0,"attributes":[327680,0,1073741825,537919488,256,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":15,"dieSides":7,"pointsPerLevel":3,"mechanic":0,"implicitTargetA":25,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.33000001311302185},{"index":1,"effectType":174,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520832,"name":"Felwrath","rankText":"Inner Demon","description":"|cff32cd32Consumes 2 Felfury|r Blast an enemy and all enemies near them with fel magic, dealing ${$m1+0+$SP*0.4} Shadowflame Damage. |cff32cd32Inner Demon|r: Striking at least 5 enemies with this spell causes it to deal an additional ${$520832m1+$520832ppl1+$SP*.1} Shadowflame Damage over $520832d, stacking $520832u times.","categoryId":12,"dispelType":1,"mechanic":0,"attributes":[0,0,0,128,0,67108864,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":32,"durationMs":6000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2366,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":36,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":8,"dieSides":1,"pointsPerLevel":2,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":1000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":3,"basePoints":6,"dieSides":1,"pointsPerLevel":1.2000000476837158,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803422,"name":"Flames of Sin","rankText":"Buff","description":"Your auto attacks now deal an additional ${$w1}% of the damage dealt as Fire Damage.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2097152,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":524288,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":407,"durationMs":100,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25313,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":354,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":802850,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":6,"auraType":23,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":5000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":680227,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":107,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":18,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804068,"name":"Slayer's Mark","rankText":"","description":"Mark an enemy, increasing the attack power of all attackers against that target by 150 and your critical strike chance against them by $s1%, increasing by $s1% every $804073t1 sec for $d. For the duration, the enemy is unable to stealth.","categoryId":1216,"dispelType":0,"mechanic":0,"attributes":[262160,134217728,0,0,0,32,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":90000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":2149056512,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":8,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4808,"powerCostPercentage":15,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":3,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":308,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":41,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":5,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":804073,"pointsPerCombo":0,"coefficient":0}]},{"id":807712,"name":"Eye of the Storm","rankText":"Root","description":"Rooted.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2162688,0,524293,1073741824,128,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":1747616,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":8,"spellLevel":8,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2010,"powerCostPercentage":17,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":10,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":26,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":7,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802874,"name":"Grand Entrance","rankText":"Damage","description":"Inflicts normal damage plus to an enemy and knocks it back.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":59,"spellLevel":59,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6101,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":31,"auraType":0,"basePoints":400,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":16,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":138,"auraType":0,"basePoints":150,"dieSides":1,"pointsPerLevel":0,"mechanic":14,"implicitTargetA":16,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":30,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":3,"basePoints":203,"dieSides":1,"pointsPerLevel":0.75,"mechanic":0,"implicitTargetA":16,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801220,"name":"Press the Attack","rankText":"Damage","description":"Damage Taken from the caster's next Standard of Valiance or Inspiring Strike increased by $s3%. Stacks up to 5 times.","categoryId":1207,"dispelType":0,"mechanic":0,"attributes":[262160,512,0,0,0,32768,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65472,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":24,"implicitTargetB":0,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":704157,"pointsPerCombo":0,"coefficient":0}]},{"id":800288,"name":"Reset Death Ram","rankText":"","description":"","categoryId":30,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":20,"procChance":34,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":64,"iconId":25754,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":165,"auraType":0,"basePoints":-14000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":802284,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":712682,"name":"Favor","rankText":"Trigger","description":"At 20 stacks your next auto attack will deal an additional 500% Weapon Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":50,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":6114,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":712476,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":707822,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":803331,"name":"Downfall","rankText":"Heal","description":"Critical strike chance increased by $s1% for $d. After the duration, you gain |cffffffffRedemption|r.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,131072,0,0,256,0,671088640,1073741824],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":1048576,"procChance":100,"procCharges":10,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2172,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801483,"name":"Redemption","rankText":"","description":"Increases attack speed by $s1% and you heal for $s3% of all damage dealt for $d.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,131072,0,0,0,0,0,1073741824],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":30000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":1048576,"procChance":100,"procCharges":10,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2139,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":138,"basePoints":30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":49,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":6,"auraType":354,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":803331,"pointsPerCombo":0,"coefficient":1}]},{"id":1397742,"name":"Testament of Hope","rankText":"","description":"Summons $s1 copies of yourself that charge at a nearby enemy and aid you in combat for $d. While within $704409a1 yds of you, each copy reduces all damage you take by $704409s1%. Applies |cffffffffSacred Restraint|r for $102208d.@s:102208:0@","categoryId":23,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":180000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":16,"spellLevel":16,"durationIndex":18,"durationMs":20000,"powerType":3,"powerCost":50,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1870,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1250,"maximumTargets":5,"damageClass":0,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":28,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":72,"implicitTargetB":0,"radiusIndex":15,"radius":3,"periodMs":0,"valueMultiplier":99999,"chainTargets":0,"itemType":0,"miscValue":50250,"miscValueB":61,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":805412,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704576,"name":"Oath Chain","rankText":"","description":"Allows you to hold Oath buffs.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,1073872896,67109376,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2218,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":42,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520504,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804859,"name":"Trail of Blood","rankText":"","description":"Movement speed cannot be reduced below $s1%. Movement speed increased by $s3%. Damage dealt increased by $s2%.","categoryId":2281,"dispelType":0,"mechanic":0,"attributes":[65552,32,1073741824,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":28160,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":305,"basePoints":80,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":79,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":31,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805264,"name":"Trail of Blood","rankText":"","description":"Movement speed increased by ${$w1}%. Your next attack consumes these stacks to deal ${$w2}% increased damage.","categoryId":2281,"dispelType":0,"mechanic":0,"attributes":[65936,32,1073741824,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":30,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":28160,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":303013,"name":"Nightmare","rankText":"Damage","description":"While above 50% maximum health, abilities that cost Rage now have a $h% chance to consume 10% of your current health to damage or heal your target for an additional 15% of the amount. While below 50% maximum health, abilities that cost Rage now have a $h% chance to consume 5% of your current health to grant you a |cffffffffBone Shield|r.@s:301272:0@","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,536870916,1610612736,256,0,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":25,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27425,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704257,"name":"Self Damage","rankText":"2%","description":"","categoryId":1246,"dispelType":0,"mechanic":0,"attributes":[327680,0,1073741825,537919488,256,0,570425344,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":15,"dieSides":7,"pointsPerLevel":3,"mechanic":0,"implicitTargetA":25,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.33000001311302185},{"index":1,"effectType":174,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807359,"name":"Relentless","rankText":"Proc2","description":"Your |cFFFFFFFFAortic Assault|r channels $s1% faster for $d, stacking $u times, and each strike now extends the duration of |cffffffffTaldaram's Torment|R by 2 sec. Additional applications do not refresh the duration.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":22301,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":177,"auraType":0,"basePoints":2000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":800772,"miscValueB":0,"triggerSpellId":800772,"pointsPerCombo":0,"coefficient":0}]},{"id":573254,"name":"Surge of Might","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64037,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707539,"name":"Highlander","rankText":"Stacks","description":"At $u stacks, your next |cffffffffFalconstrike|r within $712427d deals $712427s2% increased damage and reduces the enemy's healing received by $712428s1% for $712428d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":9,"durationMs":30000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7415,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":524860,"name":"Advantage buffer","rankText":"Lethal Cunning + Warband","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[384,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7706,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":804329,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":503826,"name":"Anomaly Spike","rankText":"","description":"Deals ${$cond($gt($spa, $sps), $m1*$+$spa*.25, $m1*$+$sps*.25)} Chromatic Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,4,0,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":30,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3757,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":124,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":161,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":504725,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707312,"name":"The Bieko Effect","rankText":"CDR","description":"While |cfffffffHasten|r is active the cooldowns of |cffffffffDimensional Divergence|r, |cfffffffBacktrack|r, and |cfffffffTimeguard|r are reduced by 10% every 2 sec.","categoryId":55,"dispelType":0,"mechanic":0,"attributes":[0,136,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7927,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":192,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":802790,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":192,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":806315,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":192,"auraType":0,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":806165,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":570131,"name":"Crypt Plague","rankText":"Damage","description":"Deals ${$m1+0+$SP*0.06} Plague Damage every $t sec for $d, stacking $u times. Additional applications do not refresh duration.","categoryId":0,"dispelType":3,"mechanic":0,"attributes":[0,8388608,0,1073741952,0,0,8388608,33554434],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62783,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":4,"damageClass":1,"preventionType":0,"schoolMask":40,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":2,"dieSides":1,"pointsPerLevel":0.32600000500679016,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":2000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802913,"name":"Plagued","rankText":"","description":"Affected by a Necromancer Plague.","categoryId":20,"dispelType":0,"mechanic":0,"attributes":[65792,268436480,4,1073938432,0,67108864,8388608,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":2147483648,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":4,"spellLevel":4,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25102,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":271,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":301337,"name":"Foul Contagion","rankText":"Extender","description":"Damage dealt by |cffffffffCrypt Swarm|r and |cffffffffLichfrost|r now extends the duration of |cffffffffFlesh to Worms|r on the target by 1 sec.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1160,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":4558,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":177,"auraType":0,"basePoints":1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":500338,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":531129,"name":"Overwhelming Forces","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64176,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":137,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":30,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":561095,"name":"Vampiric Aura","rankText":"Heal","description":"Reduces Magic Damage taken by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,1024,536870916,1879048192,256,1024,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25352,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":27,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707737,"name":"Diabolical","rankText":"Remover","description":"Damage.","categoryId":6,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":38,"spellLevel":38,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25171,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":175,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":-1,"miscValueB":0,"triggerSpellId":707133,"pointsPerCombo":0,"coefficient":0}]},{"id":806375,"name":"Dragonflame Crash","rankText":"","description":"Stuns target for $d and deals Fire Damage.","categoryId":32,"dispelType":1,"mechanic":0,"attributes":[262144,136,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":21765,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":12,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":12,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":2,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":168,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":120248,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":681265,"name":"Circle of Fire","rankText":"Debuff","description":"Cannot be affected by Circle of Fire again.","categoryId":799,"dispelType":0,"mechanic":0,"attributes":[67108864,136,0,1073741824,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":63885,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":10,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":807389,"name":"Heat","rankText":"","description":"Heating up! At 100 |cFFFFFFFFHeat|r you will generate an |cFFFFFFFFEmber|r and empty your |cFFFFFFFFHeat|r bar.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[67371008,0,1073741825,1141899776,0,4,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":150,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5072,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680370,"name":"Ignis Ultimatus","rankText":"Heal","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,524288,0,1073741824,134217856,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":1,"auraInterruptFlags":8,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":60,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":804,"dieSides":15,"pointsPerLevel":5,"mechanic":0,"implicitTargetA":59,"implicitTargetB":0,"radiusIndex":27,"radius":50,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680371,"name":"Ignis Ultimatus","rankText":"Damage","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[538968064,589824,67108864,3221225472,134217856,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":1,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":60,"baseLevel":58,"spellLevel":58,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":3262,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1084,"dieSides":15,"pointsPerLevel":5,"mechanic":0,"implicitTargetA":24,"implicitTargetB":0,"radiusIndex":27,"radius":50,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706856,"name":"Kael's Command","rankText":"Heal","description":"Heals allies around your Phoenix for $s1.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,1073741824,1073741824,0,8,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":27,"spellLevel":27,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2021,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":10,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":205,"dieSides":2,"pointsPerLevel":12.300000190734863,"mechanic":0,"implicitTargetA":31,"implicitTargetB":0,"radiusIndex":202,"radius":15,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806470,"name":"Slag Barrage","rankText":"Deprecated","description":"Movement speed slowed by $s2%.","categoryId":290,"dispelType":1,"mechanic":0,"attributes":[2162688,0,0,0,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5238,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":19,"dieSides":7,"pointsPerLevel":2.200000047683716,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":33,"basePoints":-15,"dieSides":1,"pointsPerLevel":0,"mechanic":11,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804871,"name":"Forceblast","rankText":"","description":"Knocks the target back.","categoryId":513,"dispelType":0,"mechanic":12,"attributes":[2162688,32768,0,0,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":15,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5069,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":98,"auraType":0,"basePoints":60,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":79,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804670,"name":"Abyssal Ward","rankText":"","description":"Coalesce an |cffffffffAbyssal Ward|r reducing your damage taken by ${-($u*$m2)}% for $d or $u attacks. For the duration, each attack received will decrease the value by $s2%. Usable while stunned.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[16,0,0,0,0,8,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":90000,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":664232,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":3,"rangeMin":0,"rangeMax":20,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25202,"powerCostPercentage":20,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":42,"basePoints":15,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":807692,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":6,"auraType":87,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":176,"auraType":0,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":804670,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520418,"name":"Withered","rankText":"","description":"Attack speed reduced by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,1024,0,1073872896,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":10,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24133,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":192,"basePoints":-20,"dieSides":1,"pointsPerLevel":0,"mechanic":8,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":573312,"name":"Eldritch Command","rankText":"Trigger","description":"Unleashing an Energy blast.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[256,1024,0,0,128,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":14,"spellLevel":14,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65328,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":140,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":4,"triggerSpellId":573311,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520683,"name":"Tales of Woe","rankText":"","description":"Restores $s1% of your missing mana and grants you a shield absorbing ${$m2+0+$SP*.2} damage for $d.","categoryId":24,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25415,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":137,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":69,"basePoints":23,"dieSides":1,"pointsPerLevel":1.5399999618530273,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":35764,"name":"Astral Armor Visual","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[262528,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":1918,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":16,"radius":1,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707725,"name":"Starshatter","rankText":"Persistent Area Trigger","description":"Consumes 2 Felfury Sunder the ground infront of you in a $a1 yd line, causing 3 explosions one after another that deal Chaos Damage to enemies in a 5 yd radius. Inner Demon: Creates a |cffffffffFissure|r in each blast radius, dealing damage over time.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,268435456,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":327,"durationMs":500,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24437,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":1,"damageClass":2,"preventionType":2,"schoolMask":127,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":23,"basePoints":70,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":28,"implicitTargetB":0,"radiusIndex":26,"radius":4,"periodMs":499,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":712461,"pointsPerCombo":0,"coefficient":0.25}]},{"id":712462,"name":"Starshatter","rankText":"Expander","description":"Consumes 2 Felfury Sunder the ground infront of you in a $a3 yd line, causing 3 explosions one after another that deal Chaos Damage to enemies in a 5 yd radius. Inner Demon: Creates a |cffffffffFissure|r in each blast radius, dealing damage over time.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[16,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":327,"durationMs":500,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":4,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24437,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":2,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":7,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":26,"radius":4,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.25}]},{"id":801401,"name":"Aspect of the Goddess","rankText":"Heal","description":"Heals for $s1.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,524289,1048704,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":11,"spellLevel":11,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":7008,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":31,"dieSides":2,"pointsPerLevel":0.8500000238418579,"mechanic":0,"implicitTargetA":53,"implicitTargetB":31,"radiusIndex":207,"radius":20,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":283,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":31,"radiusIndex":9,"radius":20,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706984,"name":"Slipstream","rankText":"Single Target, Conditioned","description":"Heals for $s1 and consumes a Bathe stack.","categoryId":19,"dispelType":0,"mechanic":0,"attributes":[327680,0,4,1073741824,0,67108864,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24428,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":1,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":-1,"triggerSpellId":804523,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800386,"name":"Lunar Eclipse","rankText":"","description":"Activate this to cause your next |cFFFFFFFFLunar Phase|r spell to trigger its |cFFFFFFFFLunar|r effect. Can be used while casting or channeling another spell.","categoryId":2678,"dispelType":0,"mechanic":0,"attributes":[2298806272,0,1,0,3145856,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":500,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":21,"durationMs":-1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25382,"powerCostPercentage":0,"startRecoveryCategory":100,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":17,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":107,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":17,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802598,"name":"The Chosen","rankText":"","description":"Absorbs ${$w1} damage.","categoryId":767,"dispelType":1,"mechanic":0,"attributes":[0,0,131072,536870912,256,0,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5628,"powerCostPercentage":0,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":69,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806697,"name":"Chains of Light","rankText":"Effect","description":"Cannot mount, flee, or move faster than your normal movement speed.","categoryId":0,"dispelType":1,"mechanic":11,"attributes":[0,32768,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5621,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":92,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":191,"basePoints":7,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":77,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":21,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":505342,"name":"Blinded","rankText":"","description":"Chance to miss on your next attack increased by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[1073741824,0,4,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27837,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":34,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":54,"basePoints":-10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":6,"auraType":42,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":505346,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500151,"name":"Solar Embrace","rankText":"Rank 1","description":"Heals all friendly party or raid members within $a1yds of the target for $s1. Can be used on an enemy or an ally.","categoryId":557,"dispelType":0,"mechanic":0,"attributes":[65536,0,524288,0,0,4194304,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":24000,"categoryRecoveryTimeMs":24000,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":11,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5694,"powerCostPercentage":21,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":5,"damageClass":1,"preventionType":1,"schoolMask":2,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":10,"auraType":0,"basePoints":48,"dieSides":7,"pointsPerLevel":0.41600000858306885,"mechanic":0,"implicitTargetA":63,"implicitTargetB":31,"radiusIndex":18,"radius":15,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.4020000100135803},{"index":1,"effectType":6,"auraType":4,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":63,"implicitTargetB":31,"radiusIndex":18,"radius":15,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":801816,"name":"Scrap","rankText":"","description":"Used to power some of your more exotic creations!","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2147483648,0,0,1048576,0,4,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":21,"durationMs":-1,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":100,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16753,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":107,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706697,"name":"Rocket Bombardment","rankText":"Aura","description":"Sentry Turrets fire Rocket Clusters when they attack.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[264448,0,4,1073741824,0,67108864,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":68,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":53208,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":42,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":706696,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560790,"name":"Resourceful Tech","rankText":"","description":"Armor increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1073742080,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":15,"spellLevel":15,"durationIndex":32,"durationMs":6000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2672,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":101,"basePoints":10,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800906,"name":"Tunneling","rankText":"","description":"Tunneling ability effects are active.","categoryId":29,"dispelType":0,"mechanic":0,"attributes":[545521920,268435456,1,0,128,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":4882432,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":60,"baseLevel":10,"spellLevel":10,"durationIndex":3,"durationMs":60000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":2380,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":50,"dieSides":1,"pointsPerLevel":3,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":-80,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":11,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":108,"basePoints":-1000,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500363,"name":"Reaped Soul","rankText":"","description":"At 3 stacks you are granted |cff5ee2ffSoul Infusion|r, allowing the use of powerful abilities.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[65536,0,524288,0,4,1028,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":2,"durationMs":300000010,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":6055,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":504034,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":107,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":4,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":175,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":-3,"miscValueB":0,"triggerSpellId":805077,"pointsPerCombo":0,"coefficient":0}]},{"id":359018,"name":"Energize Runic Power +2","rankText":"","description":"Gain 10 Runic Power","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2155872640,0,4,0,128,4,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16290,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":0,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":30,"auraType":0,"basePoints":20,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":805078,"name":"Generate a Reaped Soul","rankText":"","description":"Generates a |cff5ee2ffReaped Soul|r.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2097152,0,1,1048576,0,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":2,"spellLevel":2,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":10,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64248,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":500363,"pointsPerCombo":0,"coefficient":0}]},{"id":505150,"name":"Generic ICD spell - Reap","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2751725952,0,0,0,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":37,"durationMs":1,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":220,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":4,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680441,"name":"Earthshaping","rankText":"","description":"Empowers some of your abilities and increases your spell haste by $680441s1% for $680441d, stacking $680441u times. Additional applications do not refresh duration.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":18,"durationMs":20000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":15,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":26230,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":216,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":10,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806554,"name":"Bring Me Their Bones","rankText":"Mark","description":"After 5 pet attacks you will take a massive amount of Physical Damage.","categoryId":1269,"dispelType":0,"mechanic":0,"attributes":[0,0,1073741824,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":14109,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806553,"name":"Bring Me Their Bones","rankText":"Pet Damage Proc","description":"Hunting the Bleeding enemy.","categoryId":1269,"dispelType":0,"mechanic":0,"attributes":[0,0,1073741824,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":8,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":24,"spellLevel":24,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":14109,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":310,"dieSides":1,"pointsPerLevel":7.25,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":164,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":806554,"pointsPerCombo":0,"coefficient":1},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":806068,"name":"Earth's Rage","rankText":"","description":"Increases movement speed by $s1% and haste by $s2% for $d, stacking $u times.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[2147483648,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":8357,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":31,"basePoints":4,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":138,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":680472,"pointsPerCombo":0,"coefficient":0}]},{"id":680472,"name":"Call of the Mountain","rankText":"","description":"Increases your parry chance by $s1% and reduces damage taken by $s2%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,0,0,1073741824,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":2,"durationMs":300000010,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65298,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":47,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":87,"basePoints":-5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":500945,"name":"Totemic Smash","rankText":"AoE","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2359296,136,524288,0,1048576,0,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":13,"spellLevel":13,"durationIndex":31,"durationMs":8000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":137,"rangeMin":0,"rangeMax":8,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":5949,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":0,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":653210,"name":"Weapon Engraving: Fire","rankText":"Explosion","description":"Explodes after $d, dealing ${$m1+0+$AP*.075+$spfi*.2} Fire Damage per stack. Additional applications do not refresh the duration.","categoryId":7,"dispelType":1,"mechanic":0,"attributes":[0,8519680,13,1074790528,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":2,"spellLevel":2,"durationIndex":27,"durationMs":3000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":100,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":225037,"powerCostPercentage":6,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":16,"dieSides":1,"pointsPerLevel":0.9700000286102295,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":23,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":653227,"pointsPerCombo":0,"coefficient":0}]},{"id":653272,"name":"Weapon Engraving: Earth","rankText":"","description":"Deals ${$m1*$+$AP*0.0875+$spn*0.115} Nature Damage to up to $i enemies within $a1 yds of your target.","categoryId":10,"dispelType":1,"mechanic":0,"attributes":[262656,131072,8,1073741824,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":14,"spellLevel":14,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":225039,"powerCostPercentage":6,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":13,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":16,"implicitTargetB":0,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":681528,"name":"Decoder Trigger2","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,1610612736,256,0,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":28,"durationMs":5000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":49,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":653217,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":653263,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":64,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":653261,"pointsPerCombo":0,"coefficient":0}]},{"id":572136,"name":"Speed Rune","rankText":"Speed","description":"Movement speed increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268436480,0,0,0,1536,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":24,"spellLevel":24,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":85921,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":68,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":27,"auraType":23,"basePoints":70,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":87,"implicitTargetB":31,"radiusIndex":26,"radius":4,"periodMs":250,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":802725,"pointsPerCombo":0,"coefficient":0.25},{"index":1,"effectType":27,"auraType":23,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":87,"implicitTargetB":31,"radiusIndex":26,"radius":4,"periodMs":500,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":706736,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572135,"name":"Speed Rune","rankText":"Expander","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,268435456,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":24,"spellLevel":24,"durationIndex":39,"durationMs":2000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":85921,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":68,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":26,"radius":4,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":6,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.25},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":804055,"name":"Displace Familiar","rankText":"","description":"|cffffffffConsumes 1 |cffffffffInscribed Rune|r Command your |cffffffffFamiliar|r to warp to the target location, dealing ${$m3+$ppl3} Arcane Damage, where it will remain for $800740d pulsing with energy every $800740t3 sec, dealing Arcane Damage to nearby enemies. Usable while casting or channeling.@s:800671:0@","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2162688,128,524288,0,128,8,0,58720256],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":35,"durationMs":4000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27576,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":3,"dieSides":2,"pointsPerLevel":0.9599999785423279,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":33,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":22,"implicitTargetB":15,"radiusIndex":14,"radius":8,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":572338,"name":"Frigid Fusion","rankText":"Damage","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[8388608,128,536870913,1073741824,0,0,0,33554432],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65015,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":1,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":32,"radius":12,"periodMs":0,"valueMultiplier":1,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802850,"name":"Flames of Sin","rankText":"Damage","description":"Deals Fire Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[2097152,0,0,0,256,0,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":10,"spellLevel":10,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":25313,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0.25},{"index":1,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":680227,"name":"Knight of the Flame","rankText":"","description":"Increases the critical strike chance of your next |cFFFFFFFFSearing Blade|r by $s1% and its critical damage by $s2% for $d, stacking $u times.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":10,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":20758,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":107,"basePoints":5,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":7,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":108,"basePoints":2,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":15,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":704157,"name":"Press the Attack","rankText":"Damage","description":"Deals $s2% Weapon Damage plus $s2.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,8,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":24,"spellLevel":24,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65472,"powerCostPercentage":6,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":121,"auraType":0,"basePoints":18,"dieSides":1,"pointsPerLevel":1.7999999523162842,"mechanic":0,"implicitTargetA":24,"implicitTargetB":0,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":31,"auraType":0,"basePoints":75,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":24,"implicitTargetB":0,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":121,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":24,"implicitTargetB":0,"radiusIndex":29,"radius":6,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":712476,"name":"Favor","rankText":"Damage","description":"At 20 stacks your next auto attack will deal an additional 500% Weapon Damage.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":50,"durationIndex":0,"durationMs":0,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":34961,"iconId":6114,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":2,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":31,"auraType":0,"basePoints":500,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":707822,"name":"Heroism","rankText":"Buff","description":"Whenever you reach 3 stacks of |cFFFFFFFFGlory|r or 20 stacks of |cFFFFFFFFFavor|r, your next 2 |cFFFFFFFFPulverizes|r or |cFFFFFFFFBroad Sweeps|r within 10 sec are free of cost.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":1,"durationMs":10000,"powerType":2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":1,"rangeMin":0,"rangeMax":0,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":84,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":108,"basePoints":-100,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":14,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520504,"name":"Oath Chain Delayer","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16754,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":183,"auraType":0,"basePoints":200,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":520505,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":800772,"name":"Taldaram's Torment","rankText":"Rank 1","description":"$?a524861[|cffff3232][|cffffffff]Requires Mortal Form|r Corrupt an enemy's heart, causing them to bleed for $o1 Shadow damage over $d. Generates $/10;582765s1 Rage every time it deals damage. @ext:Periodic damage dealt through this can critically strike.:ext@","categoryId":790,"dispelType":2,"mechanic":15,"attributes":[2359312,0,0,128,0,0,8388608,58720258],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":8,"baseLevel":2,"spellLevel":2,"durationIndex":8,"durationMs":15000,"powerType":-2,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":4,"rangeMin":0,"rangeMax":30,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":28377,"powerCostPercentage":10,"startRecoveryCategory":133,"startRecoveryTimeMs":1500,"maximumTargets":0,"damageClass":1,"preventionType":1,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":3,"basePoints":12,"dieSides":1,"pointsPerLevel":0.6000000238418579,"mechanic":15,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":3000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":1,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":308,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504725,"name":"Fatebreaker","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,536870912,1610612736,256,0,536870912,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":1,"spellLevel":1,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":650,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":126,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":53,"implicitTargetB":16,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":573311,"name":"Eldritch Command","rankText":"Damage","description":"Unleashing an Energy blast.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,0,0,512,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":14,"spellLevel":14,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":65328,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":10,"damageClass":1,"preventionType":0,"schoolMask":32,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":12,"dieSides":1,"pointsPerLevel":1.5,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":15,"radius":3,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":712461,"name":"Starshatter","rankText":"Stun","description":"Consumes 2 Felfury Sunder the ground infront of you in a $a3 yd line, causing 3 explosions one after another that deal Chaos Damage to enemies in a 5 yd radius. Inner Demon: Creates a |cffffffffFissure|r in each blast radius, dealing damage over time.","categoryId":0,"dispelType":0,"mechanic":12,"attributes":[16,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":14,"spellLevel":14,"durationIndex":28,"durationMs":5000,"powerType":1,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":24437,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":8,"damageClass":1,"preventionType":0,"schoolMask":127,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":12,"basePoints":23,"dieSides":1,"pointsPerLevel":5,"mechanic":12,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":804378,"pointsPerCombo":0,"coefficient":0}]},{"id":804523,"name":"Bathe","rankText":"","description":"Healing Taken increased by ${$w2}%.","categoryId":50,"dispelType":1,"mechanic":0,"attributes":[262144,136,4,1073741824,0,1,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":5,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":57570,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":4,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":118,"basePoints":3,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":16,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":6,"auraType":283,"basePoints":50,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":505346,"name":"Blinded","rankText":"Remover","description":"Chance to miss on your next attack increased by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[1073741824,0,4,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":100,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":1,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":27837,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":34,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":164,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":505342,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":1,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706696,"name":"Rocket Bombardment","rankText":"Damage","description":"Deals $s1 Fire Damage, increased by $s2% for each subsequent Rocket Cluster.","categoryId":85,"dispelType":0,"mechanic":0,"attributes":[65536,0,131072,1073741824,0,32768,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":9,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":31,"spellLevel":31,"durationIndex":39,"durationMs":2000,"powerType":3,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":30,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":262156,"iconId":58926,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":10,"damageClass":3,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":19,"dieSides":5,"pointsPerLevel":3.690000057220459,"mechanic":0,"implicitTargetA":16,"implicitTargetB":0,"radiusIndex":8,"radius":5,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":1},{"index":1,"effectType":6,"auraType":271,"basePoints":25,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":504034,"name":"Spectral Affinity","rankText":"","description":"Damage increased by ${$w1}%.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,1024,4,1342177280,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":62840,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":79,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":653227,"name":"Firebrand","rankText":"Visual","description":"Explodes after $d, dealing ${$m1+0+$AP*.29+$spfi*.71} Fire Damage per stack. Additional applications do not refresh the duration.","categoryId":7,"dispelType":1,"mechanic":0,"attributes":[8388608,131072,1,1343225856,0,0,33554688,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":2,"spellLevel":2,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":3,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":4786,"powerCostPercentage":6,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":4,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":3,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":653217,"name":"Weapon Engraving: Ice","rankText":"","description":"Deals ${$m3+0+$SP*.22+$AP*.08} Frost Damage and slows the target's movement speed by $653231s1% for $d.","categoryId":10,"dispelType":1,"mechanic":0,"attributes":[262656,131072,12,1073741824,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":6,"spellLevel":6,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":27343,"powerCostPercentage":6,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":2,"effectType":2,"auraType":0,"basePoints":4,"dieSides":1,"pointsPerLevel":1.600000023841858,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":653263,"name":"Weapon Engraving: Arcane","rankText":"","description":"Deals ${$m1+0+$SP*.3+$AP*0.05} Arcane Damage to an enemy and reduces their healing received by $s2% for $d.","categoryId":10,"dispelType":1,"mechanic":0,"attributes":[262656,131072,8,1073741824,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":30,"spellLevel":30,"durationIndex":1,"durationMs":10000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":27305,"powerCostPercentage":6,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":64,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":53,"dieSides":3,"pointsPerLevel":1.2999999523162842,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":118,"basePoints":-30,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":127,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":653261,"name":"Weapon Engraving: Water","rankText":"","description":"Drains ${$m3+0} mana from your target.","categoryId":10,"dispelType":1,"mechanic":0,"attributes":[262656,131072,8,1073741824,0,0,33554432,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":18,"spellLevel":18,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":2,"equippedItemInventoryMask":173555,"iconId":225036,"powerCostPercentage":6,"startRecoveryCategory":133,"startRecoveryTimeMs":1000,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":16,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":2,"auraType":0,"basePoints":13,"dieSides":2,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":64,"auraType":0,"basePoints":1,"dieSides":0,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":524287,"miscValueB":0,"triggerSpellId":560582,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":8,"auraType":0,"basePoints":31,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":6,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":1,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":802725,"name":"Speed Rune","rankText":"Speed Increase","description":"Movement speed increased by ${$w1}%.","categoryId":0,"dispelType":1,"mechanic":0,"attributes":[0,268435592,4,0,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":65,"durationMs":1500,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":6,"rangeMin":0,"rangeMax":100,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":85921,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":5,"damageClass":1,"preventionType":0,"schoolMask":68,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":31,"basePoints":70,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":706736,"name":"Elemental Secrets","rankText":"Aura","description":"Stealthed.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,1024,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":14343,"channelInterruptFlags":0,"procFlags":1712808,"procChance":100,"procCharges":1,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":36,"durationMs":1000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64375,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":1,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":16,"basePoints":5,"dieSides":1,"pointsPerLevel":4,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":6,"auraType":262,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":21,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":520505,"name":"Oath Chain Remover","rankText":"","description":"","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[0,0,0,1073741824,0,0,0,0],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":0,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":0,"durationMs":0,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":13,"rangeMin":0,"rangeMax":50000,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":16754,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":1,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":164,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":1,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":704576,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]},{"id":560582,"name":"Replenishment","rankText":"","description":"Restores $504332s1% maximum mana every 5 sec to allies within $a1 yds for $d.","categoryId":0,"dispelType":0,"mechanic":0,"attributes":[134217992,1024,4194436,33554432,1048640,0,0,301989888],"castTimeIndex":1,"castTimeMs":0,"recoveryTimeMs":0,"categoryRecoveryTimeMs":0,"interruptFlags":0,"auraInterruptFlags":0,"channelInterruptFlags":0,"procFlags":0,"procChance":101,"procCharges":0,"maxLevel":0,"baseLevel":0,"spellLevel":0,"durationIndex":8,"durationMs":15000,"powerType":0,"powerCost":0,"powerCostPerLevel":0,"powerCostPerSecond":0,"powerCostPerSecondPerLevel":0,"rangeIndex":5,"rangeMin":0,"rangeMax":40,"projectileSpeed":0,"stackAmount":0,"equippedItemClass":0,"equippedItemSubclassMask":-1,"equippedItemInventoryMask":0,"iconId":64399,"powerCostPercentage":0,"startRecoveryCategory":0,"startRecoveryTimeMs":0,"maximumTargets":0,"damageClass":0,"preventionType":0,"schoolMask":8,"runeCostId":0,"powerDisplayId":0,"effects":[{"index":0,"effectType":6,"auraType":24,"basePoints":1,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":56,"implicitTargetB":0,"radiusIndex":12,"radius":100,"periodMs":5000,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":1,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":1,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0},{"index":2,"effectType":0,"auraType":0,"basePoints":0,"dieSides":1,"pointsPerLevel":0,"mechanic":0,"implicitTargetA":0,"implicitTargetB":0,"radiusIndex":0,"radius":0,"periodMs":0,"valueMultiplier":0,"chainTargets":0,"itemType":0,"miscValue":0,"miscValueB":0,"triggerSpellId":0,"pointsPerCombo":0,"coefficient":0}]}]} diff --git a/src/game/inputManager.test.ts b/src/game/inputManager.test.ts index 5f3e326f..2cd8755a 100644 --- a/src/game/inputManager.test.ts +++ b/src/game/inputManager.test.ts @@ -48,6 +48,9 @@ function inputActionSpies(blocked = false): InputActions { setPartyCommand: vi.fn(), recallParty: vi.fn(), clearTarget: vi.fn(), + groundTargetActive: vi.fn(() => false), + confirmGroundTarget: vi.fn(), + cancelGroundTarget: vi.fn(), gameplayActionsBlocked: vi.fn(() => blocked), setCameraLookActive: vi.fn(), setInputMode: vi.fn(), @@ -90,6 +93,24 @@ describe("gameplay input bindings", () => { dispose(); }); + it("confirms and cancels an active ground reticle before face-button casts", () => { + stubInputEventTargets(); + const nextActions = inputActionSpies(); + (nextActions.groundTargetActive as ReturnType).mockReturnValue(true); + const dispose = installInput(nextActions); + + emitControllerToken({ token: "Button0", repeat: false, pressed: true }); + emitControllerToken({ token: "Button0", repeat: false, pressed: false }); + emitControllerToken({ token: "Button1", repeat: false, pressed: true }); + + expect(nextActions.confirmGroundTarget).toHaveBeenCalledTimes(1); + expect(nextActions.cancelGroundTarget).toHaveBeenCalledTimes(1); + expect(nextActions.lootActiveBoss).not.toHaveBeenCalled(); + expect(nextActions.castActionBinding).not.toHaveBeenCalled(); + + dispose(); + }); + it("maps Thor controls without stealing Select from display routing", () => { expect(controllerCommandForToken("Button9")).toBe("pause"); expect(controllerCommandForToken("Button11")).toBe("target-next"); diff --git a/src/game/inputManager.ts b/src/game/inputManager.ts index 60710437..05476709 100644 --- a/src/game/inputManager.ts +++ b/src/game/inputManager.ts @@ -34,6 +34,9 @@ export interface InputActions { setPartyCommand: (command: PartyCommand) => void; recallParty: () => void; clearTarget: () => void; + groundTargetActive: () => boolean; + confirmGroundTarget: () => void; + cancelGroundTarget: () => void; gameplayActionsBlocked: () => boolean; setCameraLookActive: (active: boolean) => void; setInputMode: (mode: "keyboard" | "gamepad") => void; @@ -246,6 +249,16 @@ export function installInput(nextActions: InputActions): () => void { if (!isPressed) return; nextActions.setInputMode("gamepad"); if (repeat) return; + if (nextActions.groundTargetActive()) { + if (token === "Button0") { + nextActions.confirmGroundTarget(); + return; + } + if (token === "Button1" || token === CONTROLLER_SYSTEM_BACK_TOKEN) { + nextActions.cancelGroundTarget(); + return; + } + } if ( token === "Button0" && !nextActions.gameplayActionsBlocked() @@ -292,6 +305,13 @@ export function installInput(nextActions: InputActions): () => void { actions?.setInputMode("keyboard"); } if (event.repeat) return; + if (nextActions.groundTargetActive() && (event.code === "Escape" || event.code === "Enter")) { + event.preventDefault(); + nextActions.setInputMode("keyboard"); + if (event.code === "Enter") nextActions.confirmGroundTarget(); + else nextActions.cancelGroundTarget(); + return; + } const actionControl = actionControlForKeyboardCode(event.code); if (actionControl) { if (nextActions.gameplayActionsBlocked()) return; diff --git a/src/game/manastormLoot.ts b/src/game/manastormLoot.ts index 6f2e720f..f0419d00 100644 --- a/src/game/manastormLoot.ts +++ b/src/game/manastormLoot.ts @@ -3,6 +3,7 @@ import { LOOT_CATALOG, rollBossLoot } from "./lootCatalog"; import { useManastormStore } from "./manastormStore"; import { useGameStore } from "./store"; import { getManastormCatalog, manastormScaling } from "./manastorm"; +import { requestOnlineInteraction } from "./onlineSessionRuntime"; /** Shared keyboard, controller, touch, and HUD interaction for the active corpse. */ export function lootCurrentManastormBoss(now = Date.now()): boolean { @@ -11,6 +12,7 @@ export function lootCurrentManastormBoss(now = Date.now()): boolean { if (game.gameMode !== "manastorm" || manastorm.status !== "awaiting-loot") return false; const bossId = manastorm.currentEncounter?.bossRuntimeId; if (!bossId) return false; + if (requestOnlineInteraction("loot", bossId)) return true; return useCombatStore.getState().lootMob(bossId, now); } diff --git a/src/game/onlineCombatSync.test.ts b/src/game/onlineCombatSync.test.ts new file mode 100644 index 00000000..b76a5de1 --- /dev/null +++ b/src/game/onlineCombatSync.test.ts @@ -0,0 +1,102 @@ +import { afterEach, beforeEach, describe, expect, it } from "vitest"; +import type { OnlineSessionPlayer } from "../app/onlineSessionTypes"; +import { useCombatStore } from "./combatStore"; +import { clearMobRuntimeRegistry, registerMobRuntime } from "./mobRuntimeRegistry"; +import { + configureOnlineSessionRuntime, + onlinePlayerActorId, +} from "./onlineSessionRuntime"; +import { + clearPartyRuntimeRegistry, + registerPartyRuntimePosition, +} from "./partyRuntimeRegistry"; +import { usePartyStore } from "./partyStore"; + +function remotePlayer(health = 1): OnlineSessionPlayer { + return { + accountId: "remote", + username: "Remote", + character: { + id: "remote-character", + name: "Bulwarka", + classId: "warrior", + categoryId: "wow", + raceId: "human", + gender: "female", + level: 20, + }, + role: "tank", + position: [8, 0, 0], + yaw: 0, + grounded: true, + health, + maxHealth: 1_000, + resource: 0, + maxResource: 100, + resourceName: "Rage", + selectedTargetId: null, + activeCast: null, + animationEvent: null, + equipment: [], + updatedAt: 1, + }; +} + +beforeEach(() => { + clearMobRuntimeRegistry(); + clearPartyRuntimeRegistry(); + useCombatStore.getState().initializeCharacter({ classId: "priest", level: 20 }); + useCombatStore.getState().resetEncounter(); + usePartyStore.setState({ members: [], selectedMemberId: null, selfSelected: false }); +}); + +afterEach(() => { + configureOnlineSessionRuntime({ active: false, authority: true, localAccountId: null }); + clearMobRuntimeRegistry(); + clearPartyRuntimeRegistry(); +}); + +describe("shared online combat actors", () => { + it("casts a normal player heal on a remote online player", () => { + const player = remotePlayer(); + const actorId = onlinePlayerActorId(player.accountId); + configureOnlineSessionRuntime({ + active: true, + authority: true, + localAccountId: "local", + players: [player], + }); + registerPartyRuntimePosition(actorId, player.position); + useCombatStore.getState().synchronizeActors(); + expect(useCombatStore.getState().selectFriendlyActor(actorId)).toBe(true); + expect(useCombatStore.getState().castAbility("wow335-priest-lesser-heal", [0, 0, 0], 1_000).ok).toBe(true); + const completion = useCombatStore.getState().activeCast?.completesAt ?? 1_000; + useCombatStore.getState().tick(0.1, completion); + expect(useCombatStore.getState().actors[actorId]?.health).toBeGreaterThan(1); + expect(useCombatStore.getState().combatEvents).toContainEqual( + expect.objectContaining({ kind: "healing", targetActorId: actorId }), + ); + }); + + it("lets the leader's enemies acquire a nearby remote player", () => { + const player = { ...remotePlayer(1_000), position: [1, 0, 0] as const }; + const actorId = onlinePlayerActorId(player.accountId); + configureOnlineSessionRuntime({ + active: true, + authority: true, + localAccountId: "local", + players: [player], + }); + registerPartyRuntimePosition(actorId, player.position); + registerMobRuntime("shared-enemy", [0, 0, 0]); + useCombatStore.getState().setPlayerPosition([100, 0, 100]); + useCombatStore.getState().registerMob("shared-enemy", { + name: "Shared enemy", + maxHealth: 100, + aggroRange: 5, + leashRange: 20, + }); + expect(useCombatStore.getState().engageNearbyMobs(1_000)).toBe(1); + expect(useCombatStore.getState().mobs["shared-enemy"].targetActorId).toBe(actorId); + }); +}); diff --git a/src/game/onlineSessionRuntime.test.ts b/src/game/onlineSessionRuntime.test.ts new file mode 100644 index 00000000..95ca00fd --- /dev/null +++ b/src/game/onlineSessionRuntime.test.ts @@ -0,0 +1,78 @@ +import { afterEach, describe, expect, it } from "vitest"; +import type { OnlineSessionPlayer } from "../app/onlineSessionTypes"; +import { + configureOnlineSessionRuntime, + drainOnlineInteractions, + onlinePlayerActorId, + onlinePlayerRuntimeActor, + onlineSessionIsActive, + onlineSessionOwnsWorldSimulation, + onlineSynchronizedMobTransform, + requestOnlineInteraction, +} from "./onlineSessionRuntime"; + +const remotePlayer: OnlineSessionPlayer = { + accountId: "remote", + username: "Remote", + character: { + id: "remote-character", + name: "Mendara", + classId: "priest", + categoryId: "wow", + raceId: "human", + gender: "female", + level: 20, + }, + role: "healer", + position: [4, 0, 6], + yaw: 1, + grounded: true, + health: 800, + maxHealth: 1_000, + resource: 400, + maxResource: 500, + resourceName: "Mana", + selectedTargetId: null, + activeCast: null, + animationEvent: null, + equipment: [], + updatedAt: 1, +}; + +afterEach(() => configureOnlineSessionRuntime({ + active: false, + authority: true, + localAccountId: null, +})); + +describe("online session runtime", () => { + it("exposes remote players as live combat actors", () => { + configureOnlineSessionRuntime({ + active: true, + authority: true, + localAccountId: "local", + players: [remotePlayer], + }); + const actor = onlinePlayerRuntimeActor(onlinePlayerActorId("remote")); + expect(actor).toMatchObject({ health: 800, maxHealth: 1_000, alive: true, kind: "companion" }); + expect(onlineSessionIsActive()).toBe(true); + expect(onlineSessionOwnsWorldSimulation()).toBe(true); + }); + + it("uses leader transforms and queues follower interactions", () => { + configureOnlineSessionRuntime({ + active: true, + authority: false, + localAccountId: "local", + players: [remotePlayer], + mobTransforms: { boss: { position: [7, 0, 9], yaw: 0.75 } }, + }); + expect(onlineSessionOwnsWorldSimulation()).toBe(false); + expect(onlineSynchronizedMobTransform("boss")?.position).toEqual([7, 0, 9]); + expect(requestOnlineInteraction("loot", "boss")).toBe(true); + expect(drainOnlineInteractions()).toEqual([ + expect.objectContaining({ kind: "loot", targetActorId: "boss", sourceActorId: onlinePlayerActorId("local") }), + ]); + expect(drainOnlineInteractions()).toEqual([]); + }); +}); diff --git a/src/game/onlineSessionRuntime.ts b/src/game/onlineSessionRuntime.ts new file mode 100644 index 00000000..b25d6c67 --- /dev/null +++ b/src/game/onlineSessionRuntime.ts @@ -0,0 +1,137 @@ +import type { ClassId } from "../app/characterCatalog"; +import type { + OnlineMobTransform, + OnlineRelayEventInput, + OnlineSessionPlayer, +} from "../app/onlineSessionTypes"; +import { + normalizeActorResourcePool, + type CombatActorState, +} from "./combatActors"; + +const ONLINE_PLAYER_PREFIX = "online-player:"; +let active = false; +let authority = true; +let localAccountId: string | null = null; +let playerActors = new Map(); +let players = new Map(); +let mobTransforms = new Map(); +let interactionSequence = 0; +let interactions: OnlineRelayEventInput[] = []; + +export function onlinePlayerActorId(accountId: string): string { + return `${ONLINE_PLAYER_PREFIX}${accountId}`; +} + +export function onlineAccountIdFromActor(actorId: string): string | null { + return actorId.startsWith(ONLINE_PLAYER_PREFIX) + ? actorId.slice(ONLINE_PLAYER_PREFIX.length) + : null; +} + +export function isOnlinePlayerActorId(actorId: string): boolean { + return actorId.startsWith(ONLINE_PLAYER_PREFIX); +} + +export function configureOnlineSessionRuntime(input: { + readonly active: boolean; + readonly authority: boolean; + readonly localAccountId: string | null; + readonly players?: readonly OnlineSessionPlayer[]; + readonly mobTransforms?: Readonly>; +}): void { + active = input.active; + authority = !input.active || input.authority; + localAccountId = input.localAccountId; + players = new Map((input.players ?? []).map((player) => [player.accountId, player])); + mobTransforms = new Map(Object.entries(input.mobTransforms ?? {})); + const nextActors = new Map(); + for (const player of input.players ?? []) { + if (player.accountId === input.localAccountId || !player.character) continue; + const id = onlinePlayerActorId(player.accountId); + const maximum = Math.max(0, player.maxResource); + const resourceId = player.resourceName.toLowerCase() || "resource"; + nextActors.set(id, { + id, + threatActorId: id, + kind: "companion", + ownerId: player.accountId, + classId: player.character.classId as ClassId, + level: player.character.level, + health: player.health, + maxHealth: player.maxHealth, + absorb: 0, + resources: maximum > 0 + ? { [resourceId]: normalizeActorResourcePool(resourceId, player.resource, maximum) } + : {}, + cooldowns: {}, + globalCooldownEndsAt: 0, + cast: player.activeCast ? { + abilityId: player.activeCast.abilityId, + school: player.activeCast.school, + mode: player.activeCast.mode, + startedAt: player.activeCast.startedAt, + completesAt: player.activeCast.completesAt, + originalDurationMs: player.activeCast.originalDurationMs, + pushbackHits: player.activeCast.pushbackHits, + origin: player.activeCast.origin, + targetId: player.activeCast.targetId, + } : null, + controlledUntil: 0, + schoolLockedUntil: {}, + comboPoints: 0, + comboTargetId: null, + runes: [], + alive: player.health > 0, + }); + } + playerActors = nextActors; + if (!input.active) interactions = []; +} + +export function onlineSessionIsActive(): boolean { + return active; +} + +export function onlineSessionOwnsWorldSimulation(): boolean { + return !active || authority; +} + +export function onlineSessionLocalAccountId(): string | null { + return localAccountId; +} + +export function onlinePlayerRuntimeActors(): readonly CombatActorState[] { + return [...playerActors.values()]; +} + +export function onlinePlayerRuntimeActor(actorId: string): CombatActorState | null { + return playerActors.get(actorId) ?? null; +} + +export function onlineSessionPlayer(accountId: string): OnlineSessionPlayer | null { + return players.get(accountId) ?? null; +} + +export function onlineSynchronizedMobTransform(id: string): OnlineMobTransform | null { + return active && !authority ? mobTransforms.get(id) ?? null : null; +} + +export function requestOnlineInteraction(kind: "loot" | "portal", targetActorId = ""): boolean { + if (!active || authority) return false; + interactionSequence += 1; + interactions.push({ + clientEventId: `interaction:${kind}:${Date.now()}:${interactionSequence}`, + kind, + sourceActorId: localAccountId ? onlinePlayerActorId(localAccountId) : "", + targetActorId, + occurredAt: Date.now(), + }); + return true; +} + +export function drainOnlineInteractions(): readonly OnlineRelayEventInput[] { + const pending = interactions; + interactions = []; + return pending; +} diff --git a/src/game/partyAbilityAi.test.ts b/src/game/partyAbilityAi.test.ts new file mode 100644 index 00000000..fa128720 --- /dev/null +++ b/src/game/partyAbilityAi.test.ts @@ -0,0 +1,82 @@ +import { beforeEach, describe, expect, it } from "vitest"; +import { abilitiesForClass, abilityAtLevel, resourceProfileForClass } from "./abilityCatalog"; +import { aiHintsForAbility } from "./abilityRules"; +import { useCombatStore } from "./combatStore"; +import { commitPartyAbilityUse, choosePartyAbility, partyAbilityIsReady } from "./partyAbilityAi"; +import { usePartyStore, type PartyMember } from "./partyStore"; + +function memberFor(classId: PartyMember["classId"], role: PartyMember["role"]): PartyMember { + const base = usePartyStore.getState().members[0]; + const profile = resourceProfileForClass(classId); + return { + ...base, + classId, + role, + level: 80, + resourceType: profile.type, + resourceName: profile.name, + resource: profile.maximum, + maxResource: profile.maximum, + resourcePools: { [profile.type]: profile.maximum }, + cooldowns: {}, + globalCooldownEndsAt: 0, + nextActionAt: 0, + tauntReadyAt: 0, + }; +} + +describe("catalog-driven party rotations", () => { + beforeEach(() => { + useCombatStore.getState().initializeCharacter({ classId: "priest", level: 80 }); + usePartyStore.getState().initializeParty("party-ai", 80, useCombatStore.getState().health); + useCombatStore.getState().registerMob("caster", { name: "Caster", maxHealth: 1_000, xpReward: 0 }); + useCombatStore.setState((state) => ({ + mobs: { + ...state.mobs, + caster: { + ...state.mobs.caster, + activeCast: { + attackId: "test-cast", + name: "Test Cast", + school: "shadow", + interruptible: true, + targetActorId: "__player__", + startedAt: 1_000, + completesAt: 5_000, + }, + }, + }, + })); + }); + + it("prioritizes an interrupt over ordinary damage deterministically", () => { + const member = memberFor("rogue", "damage"); + const context = { now: 2_000, target: useCombatStore.getState().mobs.caster }; + const first = choosePartyAbility(member, context); + const second = choosePartyAbility(member, context); + expect(first?.id).toBe(second?.id); + expect(first && aiHintsForAbility(first).categories).toContain("interrupt"); + }); + + it("selects a real healer catalog spell and spends its resource/GCD", () => { + const member = memberFor("priest", "healer"); + const ability = choosePartyAbility(member, { + now: 2_000, + target: null, + injuredAllies: 1, + lowestHealthFraction: 0.2, + }); + expect(ability && aiHintsForAbility(ability).categories).toContain("heal"); + const committed = commitPartyAbilityUse(member, ability!, 2_000)!; + expect(committed.resource).toBeLessThan(member.resource); + expect(committed.globalCooldownEndsAt).toBeGreaterThan(2_000); + }); + + it("will not cast a mana spell after mana exhaustion", () => { + const member = { ...memberFor("priest", "healer"), resource: 0, resourcePools: { mana: 0 } }; + const heal = abilitiesForClass("priest") + .map((ability) => abilityAtLevel(ability, 80)) + .find((ability) => aiHintsForAbility(ability).categories.includes("heal") && ability.cost.amount > 0)!; + expect(partyAbilityIsReady(member, heal, 2_000)).toBe(false); + }); +}); diff --git a/src/game/partyAbilityAi.ts b/src/game/partyAbilityAi.ts new file mode 100644 index 00000000..2a7cbd2a --- /dev/null +++ b/src/game/partyAbilityAi.ts @@ -0,0 +1,150 @@ +import { + abilitiesForClass, + abilityAtLevel, + isAbilityUnlocked, + type AbilityDefinition, + type AbilityEffect, + type ResourceType, +} from "./abilityCatalog"; +import { aiHintsForAbility, runeCostForAbility } from "./abilityRules"; +import { spendDeathKnightRunes } from "./combatResources"; +import type { MobCombatState } from "./combatStore"; +import type { PartyMember } from "./partyStore"; + +export interface PartyAbilityContext { + readonly now: number; + readonly target: MobCombatState | null; + readonly targetIsLoose?: boolean; + readonly requiredControl?: boolean; + readonly allyNeedsDispel?: boolean; + readonly fallenAlly?: boolean; + readonly injuredAllies?: number; + readonly lowestHealthFraction?: number; +} + +function currentResource(member: PartyMember, type: ResourceType): number { + return member.resourcePools[type] ?? (type === member.resourceType ? member.resource : 0); +} + +function abilityCosts(ability: AbilityDefinition): readonly { resource: ResourceType; amount: number }[] { + return (ability.costs?.length ? ability.costs : [ability.cost]).map((cost) => ({ + resource: cost.resource, + amount: cost.percentage ? cost.amount / 100 : cost.amount, + })); +} + +export function partyAbilityIsReady(member: PartyMember, ability: AbilityDefinition, now: number): boolean { + if (ability.passive || !isAbilityUnlocked(ability, member.level)) return false; + if (member.globalCooldownEndsAt > now || (member.cooldowns[ability.id] ?? 0) > now) return false; + if ((member.schoolLockedUntil[ability.castRules?.school ?? "physical"] ?? 0) > now) return false; + if (aiHintsForAbility(ability).categories.includes("taunt") && member.tauntReadyAt > now) return false; + if (abilityCosts(ability).some((cost) => { + const amount = cost.amount <= 1 && ability.cost.percentage + ? (cost.resource === member.resourceType ? member.maxResource : 100) * cost.amount + : cost.amount; + return currentResource(member, cost.resource) < amount; + })) return false; + const runeCost = member.classId === "death-knight" ? runeCostForAbility(ability) : null; + return !runeCost || spendDeathKnightRunes(member.runes, runeCost, now) !== null; +} + +function candidateAbilities(member: PartyMember, now: number): readonly AbilityDefinition[] { + return abilitiesForClass(member.classId) + .filter((ability) => partyAbilityIsReady(member, abilityAtLevel(ability, member.level), now)) + .map((ability) => abilityAtLevel(ability, member.level)); +} + +function scoreAbility(member: PartyMember, ability: AbilityDefinition, context: PartyAbilityContext): number { + const categories = new Set(aiHintsForAbility(ability).categories); + let score = ability.ai?.priority ?? 0; + if (member.role === "tank") { + if (context.target?.activeCast && categories.has("interrupt")) score += 1_000; + if (context.targetIsLoose && categories.has("taunt")) score += 900; + if (categories.has("mitigation") && member.health / member.maxHealth < 0.55) score += 760; + if (categories.has("control") && context.requiredControl) score += 700; + if (categories.has("debuff")) score += 300; + if (categories.has("damage")) score += 180; + } else if (member.role === "healer") { + if (context.fallenAlly && categories.has("resurrection")) score += 1_200; + if (context.allyNeedsDispel && categories.has("dispel")) score += 1_050; + if ((context.lowestHealthFraction ?? 1) < 0.3 && categories.has("emergency-heal")) score += 950; + if ((context.injuredAllies ?? 0) >= 3 && categories.has("area-heal")) score += 850; + if ((context.lowestHealthFraction ?? 1) < 0.9 && categories.has("heal")) score += 600; + if (categories.has("mitigation")) score += 350; + if (context.target?.activeCast && categories.has("interrupt")) score += 250; + if (categories.has("damage")) score += 80; + } else { + if (context.target?.activeCast && categories.has("interrupt")) score += 1_000; + if (context.requiredControl && categories.has("control")) score += 900; + if ((context.target?.health ?? 1) / Math.max(1, context.target?.maxHealth ?? 1) <= 0.2 && categories.has("execute")) score += 800; + if (categories.has("debuff")) score += 520; + if (categories.has("damage")) score += 300; + } + if (ability.castTimeMs > 0 && context.target?.activeCast && categories.has("interrupt")) score -= 800; + return score; +} + +export function choosePartyAbility( + member: PartyMember, + context: PartyAbilityContext, +): AbilityDefinition | null { + return candidateAbilities(member, context.now) + .map((ability) => ({ ability, score: scoreAbility(member, ability, context) })) + .filter((candidate) => candidate.score > 0) + .sort((left, right) => right.score - left.score + || left.ability.cooldownMs - right.ability.cooldownMs + || left.ability.id.localeCompare(right.ability.id))[0]?.ability ?? null; +} + +export function commitPartyAbilityUse( + member: PartyMember, + ability: AbilityDefinition, + now: number, +): PartyMember | null { + if (!partyAbilityIsReady(member, ability, now)) return null; + const resourcePools = { ...member.resourcePools }; + const lastResourceSpentAt = { ...member.lastResourceSpentAt }; + let resource = member.resource; + for (const cost of abilityCosts(ability)) { + const maximum = cost.resource === member.resourceType ? member.maxResource : 100; + const amount = cost.amount <= 1 && ability.cost.percentage ? maximum * cost.amount : cost.amount; + const current = currentResource(member, cost.resource); + resourcePools[cost.resource] = Math.max(0, current - amount); + if (amount > 0) lastResourceSpentAt[cost.resource] = now; + if (cost.resource === member.resourceType) resource = resourcePools[cost.resource] ?? resource; + } + const runeCost = member.classId === "death-knight" ? runeCostForAbility(ability) : null; + const runes = runeCost ? spendDeathKnightRunes(member.runes, runeCost, now) : member.runes; + if (!runes) return null; + return { + ...member, + resource, + resourcePools, + lastResourceSpentAt, + runes, + cooldowns: ability.cooldownMs > 0 + ? { ...member.cooldowns, [ability.id]: now + ability.cooldownMs } + : member.cooldowns, + globalCooldownEndsAt: now + ability.gcdMs, + tauntReadyAt: aiHintsForAbility(ability).categories.includes("taunt") + ? now + Math.max(8_000, ability.cooldownMs) + : member.tauntReadyAt, + }; +} + +export function partyAbilityAmount( + member: PartyMember, + ability: AbilityDefinition, + effect: AbilityEffect, +): number { + const coefficient = "coefficient" in effect + ? effect.coefficient + : effect.kind === "finisher-damage" + ? effect.baseCoefficient + effect.perComboCoefficient * 5 + : 0; + const power = member.level * 4 + + member.gearStats.spellPower + + member.gearStats.attackPower * 0.35 + + member.gearStats.rangedAttackPower * 0.35; + return Math.max(1, Math.round(Math.max(0.1, coefficient) * Math.max(8, power))); +} diff --git a/src/game/partyRuntime.ts b/src/game/partyRuntime.ts index ece82acd..7fdeac00 100644 --- a/src/game/partyRuntime.ts +++ b/src/game/partyRuntime.ts @@ -1,11 +1,20 @@ import { abilitiesForClass, abilityAtLevel, + abilityById, isAbilityUnlocked, + resourceProfileForClass, type AbilityDefinition, + type AbilityEffect, + type ResourceType, } from "./abilityCatalog"; +import { + canAbilityCastWhileMoving, + targetingRulesForAbility, +} from "./abilityRules"; import type { MobCombatState } from "./combatStore"; import { useCombatStore } from "./combatStore"; +import { memberFromCompanionActor } from "./combatActorAuthority"; import type { MobVector3 } from "./mobPopulation"; import { requireDungeonDefinition } from "./dungeonRegistry"; import { getMobPosition } from "./mobRuntimeRegistry"; @@ -14,11 +23,13 @@ import { partyRuntimeCenter, partyRuntimePositionAlongAttackCorridor, partyRuntimeTargetVisible, + updatePartyRuntimePosition, } from "./partyRuntimeRegistry"; import { usePartyStore, type PartyCommand, type PartyMember } from "./partyStore"; import { useGameStore } from "./store"; import { useManastormStore } from "./manastormStore"; import { PLAYER_AGGRO_ID, type ThreatSource } from "./aggro"; +import type { ActiveAura, DispelCategory } from "./combatAuras"; import { equipmentAttackPower, hastedDuration, @@ -28,9 +39,26 @@ import { import { useWailingEncounterStore } from "./wailingCavernsEncounter"; import { emitCombatPresentation, + presentationDeliveryForAbility, + presentationSchoolForAbility, type CombatPresentationDelivery, type CombatPresentationSchool, } from "./combatPresentation"; +import { + choosePartyAbility, + commitPartyAbilityUse, + partyAbilityAmount, +} from "./partyAbilityAi"; +import { normalizeActorResourcePool } from "./combatActors"; +import { advanceCombatResourcePool } from "./combatResources"; +import { romTriggeredAbilityBySpellId } from "./romAbilityCatalog"; +import { coaTriggeredAbilityBySpellId } from "./coaAbilityRuntimeCatalog"; +import { + combatHasLineOfSight, + combatSpatialActor, + isPositionInFacingArc, + isSourceBehindTarget, +} from "./combatSpatial"; const OUT_OF_COMBAT_REGEN_FRACTION = 0.06; const ATTACK_ACQUISITION_RANGE = 30; @@ -275,8 +303,10 @@ export interface HealerSupportResult { readonly targetId: string | null; readonly effectiveHealing: number; readonly sourceMemberId: string | null; - readonly action: "heal" | "resurrection" | null; + readonly action: "heal" | "resurrection" | "dispel" | null; readonly presentation: PartyPresentationIdentity | null; + readonly dispelCategories: readonly DispelCategory[]; + readonly dispelMaximum: number; } function partyHealAmount(level: number, spellPower = 0): number { @@ -285,7 +315,7 @@ function partyHealAmount(level: number, spellPower = 0): number { function partyResurrectionAbility(member: PartyMember): AbilityDefinition | null { const definition = abilitiesForClass(member.classId) - .filter((ability) => !ability.passive && ability.target === "friendly") + .filter((ability) => !ability.passive && (ability.target === "friendly" || ability.target === "any")) .filter((ability) => isAbilityUnlocked(ability, member.level)) .find((ability) => ability.effects.some((effect) => effect.kind === "resurrection")); return definition ? abilityAtLevel(definition, member.level) : null; @@ -316,6 +346,8 @@ function noSupport(members: readonly PartyMember[]): HealerSupportResult { sourceMemberId: null, action: null, presentation: null, + dispelCategories: [], + dispelMaximum: 0, }; } @@ -330,6 +362,7 @@ export function applyHealerSupport( playerHealth: number, playerMaxHealth: number, now: number, + auras: readonly ActiveAura[] = [], ): HealerSupportResult { const resurrector = members .map((member, index) => ({ member, index, ability: partyResurrectionAbility(member) })) @@ -373,8 +406,9 @@ export function applyHealerSupport( }; } const caster = next[resurrector.index]; + const committed = commitPartyAbilityUse(caster, resurrector.ability, now) ?? caster; next[resurrector.index] = { - ...caster, + ...committed, status: "healing", nextActionAt: now + Math.max( HEALER_ACTION_INTERVAL_MS, @@ -391,6 +425,8 @@ export function applyHealerSupport( sourceMemberId: resurrector.member.id, action: "resurrection", presentation: partyResurrectionPresentation(resurrector.member, resurrector.ability), + dispelCategories: [], + dispelMaximum: 0, }; } } @@ -400,6 +436,43 @@ export function applyHealerSupport( const healer = members[healerIndex]; if (now < healer.nextActionAt) return noSupport(members); + const dispelTarget = [ + ...(playerHealth > 0 ? [PLAYER_AGGRO_ID] : []), + ...members.filter((member) => member.health > 0).map((member) => member.id), + ].find((id) => auras.some((aura) => ( + aura.targetId === id && aura.definition.disposition === "debuff" && aura.definition.dispelCategory + ))); + if (dispelTarget) { + const dispelAbility = choosePartyAbility(healer, { now, target: null, allyNeedsDispel: true }); + const dispel = dispelAbility?.effects.find((effect) => effect.kind === "dispel" && effect.relationship !== "hostile"); + if (dispelAbility && dispel?.kind === "dispel") { + const next = [...members]; + const committed = commitPartyAbilityUse(healer, dispelAbility, now) ?? healer; + next[healerIndex] = { + ...committed, + status: "healing", + nextActionAt: now + Math.max(HEALER_ACTION_INTERVAL_MS, dispelAbility.castTimeMs, dispelAbility.gcdMs), + }; + return { + members: next, + playerHealing: 0, + playerResurrectionPercent: 0, + targetId: dispelTarget, + effectiveHealing: 0, + sourceMemberId: healer.id, + action: "dispel", + presentation: { + spellId: dispelAbility.dbcSpellId, + name: dispelAbility.name, + school: presentationSchoolForAbility(dispelAbility), + delivery: presentationDeliveryForAbility(dispelAbility), + }, + dispelCategories: dispel.categories, + dispelMaximum: dispel.maxCount, + }; + } + } + const candidates = members .map((member, index) => ({ id: member.id, @@ -426,18 +499,27 @@ export function applyHealerSupport( return noSupport(next); } - const requested = partyHealAmount(healer.level, healer.gearStats.spellPower); + const healingAbility = choosePartyAbility(healer, { + now, + target: null, + injuredAllies: candidates.length, + lowestHealthFraction: target.health / Math.max(1, target.maxHealth), + }); + const healingEffect = healingAbility?.effects.find((effect) => effect.kind === "heal"); + if (!healingAbility || !healingEffect || healingEffect.kind !== "heal") return noSupport(members); + const requested = partyAbilityAmount(healer, healingAbility, healingEffect) + + Math.round(target.maxHealth * (healingEffect.percentMaxHealth ?? 0)); const healed = Math.min(requested, target.maxHealth - target.health); const next = [...members]; if (target.index >= 0) { const currentTarget = next[target.index]; next[target.index] = { ...currentTarget, health: currentTarget.health + healed }; } - const currentHealer = next[healerIndex]; + const currentHealer = commitPartyAbilityUse(next[healerIndex], healingAbility, now) ?? next[healerIndex]; next[healerIndex] = { ...currentHealer, status: "healing", - nextActionAt: now + HEALER_ACTION_INTERVAL_MS, + nextActionAt: now + Math.max(HEALER_ACTION_INTERVAL_MS, healingAbility.castTimeMs, healingAbility.gcdMs), }; return { members: next, @@ -447,7 +529,14 @@ export function applyHealerSupport( effectiveHealing: healed, sourceMemberId: healer.id, action: "heal", - presentation: partyHealPresentation(healer), + presentation: { + spellId: healingAbility.dbcSpellId, + name: healingAbility.name, + school: presentationSchoolForAbility(healingAbility), + delivery: presentationDeliveryForAbility(healingAbility), + }, + dispelCategories: [], + dispelMaximum: 0, }; } @@ -511,6 +600,433 @@ function memberSwingMs(member: PartyMember): number { ); } +function emitPartyAbility( + member: PartyMember, + ability: AbilityDefinition, + targetId: string, + phase: "cast-start" | "release" | "impact", + now: number, +): void { + const origin = getPartyRuntimePosition(member.id) ?? useCombatStore.getState().playerPosition; + const targetPosition = targetId === PLAYER_AGGRO_ID + ? useCombatStore.getState().playerPosition + : getMobPosition(targetId) ?? getPartyRuntimePosition(targetId) ?? origin; + emitCombatPresentation({ + occurredAt: now, + phase, + actorGroup: "party", + sourceActorId: member.id, + targetActorId: targetId, + abilityId: ability.id, + sourceSpellId: ability.dbcSpellId, + name: ability.name, + source: ability.source === "runewaker" ? "runewaker" : ability.source?.startsWith("coa") ? "ascension" : "wow335", + school: presentationSchoolForAbility(ability), + delivery: presentationDeliveryForAbility(ability), + origin, + targetPosition, + ...(ability.radius === undefined ? {} : { radius: ability.radius }), + }); +} + +function partyFriendlyPosition(actorId: string): MobVector3 | null { + if (actorId === PLAYER_AGGRO_ID) return useCombatStore.getState().playerPosition; + return getPartyRuntimePosition(actorId); +} + +function partyAbilityTargetIsValid( + member: PartyMember, + ability: AbilityDefinition, + targetId: string, + castOrigin?: MobVector3, +): boolean { + const combat = useCombatStore.getState(); + const origin = getPartyRuntimePosition(member.id) ?? combat.playerPosition; + if (castOrigin && !canAbilityCastWhileMoving(ability) && distanceSquared(origin, castOrigin) > 0.04) return false; + const mob = combat.mobs[targetId]; + const hostile = Boolean(mob); + const targetPosition = hostile ? getMobPosition(targetId) : partyFriendlyPosition(targetId); + if (!targetPosition || mob?.dead) return false; + const targetActor = combat.actors[targetId]; + if (!hostile && (!targetActor?.alive || targetActor.health <= 0) + && !ability.effects.some((effect) => effect.kind === "resurrection")) return false; + const distance = Math.sqrt(distanceSquared(origin, targetPosition)); + if (distance < ability.range.min || distance > ability.range.max || Math.abs(origin[1] - targetPosition[1]) > 8) return false; + const targeting = targetingRulesForAbility(ability); + if (targeting.requiresLineOfSight && !combatHasLineOfSight(origin, targetPosition)) return false; + if (hostile && targeting.requiresFacing) { + const sourceSpatial = combatSpatialActor(member.id); + if (sourceSpatial && !isPositionInFacingArc(sourceSpatial, targetPosition, targeting.attackArcRadians ?? Math.PI)) return false; + } + if (hostile && targeting.requiresBehindTarget) { + const targetSpatial = combatSpatialActor(targetId); + if (targetSpatial && !isSourceBehindTarget(origin, targetSpatial)) return false; + } + return true; +} + +function partyHostileTargets( + ability: AbilityDefinition, + primaryTargetId: string, + origin: MobVector3, + sourceActorId: string, +): readonly string[] { + const combat = useCombatStore.getState(); + const targeting = targetingRulesForAbility(ability); + const primaryPosition = getMobPosition(primaryTargetId); + if (!primaryPosition) return []; + if (targeting.shape === "chain") { + const selected: string[] = []; + let previous = primaryPosition; + const ordered = [primaryTargetId, ...Object.keys(combat.mobs).filter((id) => id !== primaryTargetId).sort()]; + for (const id of ordered) { + if (selected.length >= (targeting.maximumTargets ?? 3)) break; + const position = getMobPosition(id); + if (!position || combat.mobs[id]?.dead) continue; + if (selected.length > 0 && distanceSquared(previous, position) > (targeting.jumpRange ?? 12) ** 2) continue; + if (!combatHasLineOfSight(previous, position)) continue; + selected.push(id); + previous = position; + } + return selected; + } + if (targeting.shape === "cone") { + const memberSpatial = combatSpatialActor(sourceActorId); + return Object.values(combat.mobs) + .filter((mob) => { + const position = getMobPosition(mob.id); + return !mob.dead && Boolean(position + && distanceSquared(origin, position) <= ability.range.max ** 2 + && combatHasLineOfSight(origin, position) + && (!memberSpatial || isPositionInFacingArc(memberSpatial, position, targeting.attackArcRadians ?? Math.PI / 2))); + }) + .map((mob) => mob.id) + .sort(); + } + if (targeting.shape === "circle" || targeting.shape === "ground" || ability.radius !== undefined) { + const radius = targeting.radius ?? ability.radius ?? 0; + return Object.values(combat.mobs) + .filter((mob) => { + const position = getMobPosition(mob.id); + return !mob.dead && Boolean(position + && distanceSquared(primaryPosition, position) <= radius * radius + && combatHasLineOfSight(primaryPosition, position)); + }) + .map((mob) => mob.id) + .sort(); + } + return combatHasLineOfSight(origin, primaryPosition) ? [primaryTargetId] : []; +} + +function partyHealingTargets( + ability: AbilityDefinition, + primaryTargetId: string, + members: readonly PartyMember[], +): readonly string[] { + const combat = useCombatStore.getState(); + const targeting = targetingRulesForAbility(ability); + const living = [PLAYER_AGGRO_ID, ...members.map((member) => member.id)].filter((id) => combat.actors[id]?.alive); + const healthFraction = (id: string) => { + const actor = combat.actors[id]; + return actor ? actor.health / Math.max(1, actor.maxHealth) : 1; + }; + if (targeting.shape === "chain") { + const selected: string[] = []; + let previous = partyFriendlyPosition(primaryTargetId); + const ordered = [primaryTargetId, ...living.filter((id) => id !== primaryTargetId) + .sort((left, right) => healthFraction(left) - healthFraction(right) || left.localeCompare(right))]; + for (const id of ordered) { + if (selected.length >= (targeting.maximumTargets ?? 3)) break; + const position = partyFriendlyPosition(id); + if (!position || !previous) continue; + if (selected.length > 0 && distanceSquared(previous, position) > (targeting.jumpRange ?? 12) ** 2) continue; + if (!combatHasLineOfSight(previous, position)) continue; + selected.push(id); + previous = position; + } + return selected; + } + if (targeting.shape === "circle" || targeting.shape === "ground" || ability.radius !== undefined) { + const center = partyFriendlyPosition(primaryTargetId); + const radius = targeting.radius ?? ability.radius ?? 0; + return center ? living.filter((id) => { + const position = partyFriendlyPosition(id); + return Boolean(position + && distanceSquared(center, position) <= radius * radius + && combatHasLineOfSight(center, position)); + }) : []; + } + return [primaryTargetId]; +} + +interface PartyAbilityExecutionResult { + readonly member: PartyMember; + readonly effectiveAmount: number; +} + +interface PartySupportIntent { + readonly ability: AbilityDefinition; + readonly targetId: string; +} + +function choosePartySupportIntent( + member: PartyMember, + members: readonly PartyMember[], + now: number, +): PartySupportIntent | null { + const combat = useCombatStore.getState(); + const fallenTargetId = [ + ...(combat.health <= 0 ? [PLAYER_AGGRO_ID] : []), + ...members + .filter((candidate) => candidate.health <= 0) + .sort((left, right) => ( + Number(left.role === "healer") - Number(right.role === "healer") + || Number(left.role === "tank") - Number(right.role === "tank") + || left.id.localeCompare(right.id) + )) + .map((candidate) => candidate.id), + ][0]; + if (fallenTargetId) { + const resurrection = partyResurrectionAbility(member); + if (resurrection) return { ability: resurrection, targetId: fallenTargetId }; + } + if (member.role !== "healer") return null; + const dispelTargetId = [ + ...(combat.health > 0 ? [PLAYER_AGGRO_ID] : []), + ...members.filter((candidate) => candidate.health > 0).map((candidate) => candidate.id), + ].find((id) => combat.auras.some((aura) => ( + aura.targetId === id + && aura.definition.disposition === "debuff" + && aura.definition.dispelCategory + ))); + if (dispelTargetId) { + const ability = choosePartyAbility(member, { now, target: null, allyNeedsDispel: true }); + if (ability?.effects.some((effect) => effect.kind === "dispel" && effect.relationship !== "hostile")) { + return { ability, targetId: dispelTargetId }; + } + } + const injured = [ + ...(combat.health > 0 && combat.health < combat.maxHealth + ? [{ id: PLAYER_AGGRO_ID, health: combat.health, maxHealth: combat.maxHealth, role: "healer" as const }] + : []), + ...members.filter((candidate) => candidate.health > 0 && candidate.health < candidate.maxHealth), + ].sort((left, right) => ( + left.health / Math.max(1, left.maxHealth) - right.health / Math.max(1, right.maxHealth) + || (right.maxHealth - right.health) - (left.maxHealth - left.health) + || left.id.localeCompare(right.id) + )); + const target = injured[0]; + if (!target) return null; + const ability = choosePartyAbility(member, { + now, + target: null, + injuredAllies: injured.length, + lowestHealthFraction: target.health / Math.max(1, target.maxHealth), + }); + return ability?.effects.some((effect) => ["heal", "hot", "shield"].includes(effect.kind)) + ? { ability, targetId: target.id } + : null; +} + +function executePartyAbility( + member: PartyMember, + ability: AbilityDefinition, + targetId: string, + now: number, + members: readonly PartyMember[], + depth = 0, +): PartyAbilityExecutionResult { + const combat = useCombatStore.getState(); + const origin = getPartyRuntimePosition(member.id) ?? combat.playerPosition; + const hostileTargets = combat.mobs[targetId] ? partyHostileTargets(ability, targetId, origin, member.id) : []; + const friendlyTargets = combat.mobs[targetId] ? [] : partyHealingTargets(ability, targetId, members); + const spellSchool = presentationSchoolForAbility(ability); + const groundAreaCreated = targetingRulesForAbility(ability).shape === "ground" + ? Boolean(useCombatStore.getState().createActorAreaEffect( + member.id, + ability, + getMobPosition(targetId) ?? partyFriendlyPosition(targetId) ?? origin, + now, + )) + : false; + const criticalChance = Math.max(0, ratingPercent( + member.gearStats.criticalStrikeRating, + "spellCrit", + member.level, + member.classId, + ) / 100); + let runtimeMember = member; + let effectiveAmount = 0; + for (const effect of ability.effects) { + if (effect.kind === "damage" || effect.kind === "dot" || effect.kind === "finisher-damage") { + for (const hostileTargetId of hostileTargets) { + if (effect.kind === "dot") { + if (!groundAreaCreated) combat.applyTimedActorEffect(member.id, hostileTargetId, ability, effect, now); + } else { + effectiveAmount += combat.damageMob( + hostileTargetId, + partyAbilityAmount(runtimeMember, ability, effect), + now, + { actorId: member.id, role: member.role, abilityId: ability.id }, + spellSchool, + ).amount; + } + } + } else if (effect.kind === "heal") { + for (const friendlyTargetId of friendlyTargets) { + const actor = useCombatStore.getState().actors[friendlyTargetId]; + if (!actor?.alive) continue; + const requested = partyAbilityAmount(runtimeMember, ability, effect) + + Math.round(actor.maxHealth * (effect.percentMaxHealth ?? 0)); + const result = useCombatStore.getState().healActor(friendlyTargetId, requested, { + sourceActorId: member.id, + abilityId: ability.id, + school: spellSchool, + criticalChance, + seed: `${member.id}:${ability.id}:${friendlyTargetId}:${now}:heal`, + now, + }); + effectiveAmount += result.effectiveAmount; + } + } else if (effect.kind === "hot") { + if (!groundAreaCreated) for (const friendlyTargetId of friendlyTargets) { + useCombatStore.getState().applyTimedActorEffect(member.id, friendlyTargetId, ability, effect, now); + } + } else if (effect.kind === "shield") { + for (const friendlyTargetId of friendlyTargets) { + effectiveAmount += useCombatStore.getState().shieldActor( + friendlyTargetId, + partyAbilityAmount(runtimeMember, ability, effect), + effect.durationMs, + member.id, + ability, + now, + ); + } + } else if (effect.kind === "resurrection") { + effectiveAmount += useCombatStore.getState().reviveActor( + targetId, + effect.percentMaxHealth, + member.id, + ability.id, + now, + ); + } else if (effect.kind === "execute") { + for (const hostileTargetId of hostileTargets) { + const target = useCombatStore.getState().mobs[hostileTargetId]; + if (target && target.health / Math.max(1, target.maxHealth) <= 0.2) { + effectiveAmount += combat.damageMob( + hostileTargetId, + Math.max(target.health, partyAbilityAmount(runtimeMember, ability, effect)), + now, + { actorId: member.id, role: member.role, abilityId: ability.id }, + spellSchool, + ).amount; + } + } + } else if (effect.kind === "interrupt") { + for (const hostileTargetId of hostileTargets) combat.interruptMob(hostileTargetId, ability.id, effect.lockoutMs, now); + } else if (effect.kind === "taunt") { + for (const hostileTargetId of hostileTargets.slice(0, effect.maxTargets)) { + combat.tauntMob(hostileTargetId, { actorId: member.id, role: member.role, abilityId: ability.id }, effect.durationMs, now); + } + } else if (effect.kind === "status") { + for (const hostileTargetId of hostileTargets.slice(0, effect.maxTargets)) { + combat.controlMob(hostileTargetId, ability.id, effect.status, effect.durationMs, now); + } + } else if (effect.kind === "apply-aura") { + const recipients = effect.scope === "party" + ? [PLAYER_AGGRO_ID, ...members.filter((candidate) => candidate.health > 0).map((candidate) => candidate.id)] + : effect.recipient === "caster" + ? [member.id] + : combat.mobs[targetId] ? hostileTargets : friendlyTargets; + for (const recipientId of recipients) { + useCombatStore.getState().applyActorAura(member.id, recipientId, ability, effect, now); + if (effect.control && useCombatStore.getState().mobs[recipientId]) { + useCombatStore.getState().controlMob(recipientId, ability.id, effect.control.kind, effect.aura.durationMs ?? 1_000, now); + } + } + } else if (effect.kind === "dispel") { + const recipients = effect.scope === "party" + ? [PLAYER_AGGRO_ID, ...members.map((candidate) => candidate.id)] + : [targetId]; + for (const recipientId of recipients) { + effectiveAmount += useCombatStore.getState().dispelActor(recipientId, effect.categories, effect.maxCount); + } + } else if (effect.kind === "resource") { + for (const friendlyTargetId of friendlyTargets.length ? friendlyTargets : [member.id]) { + effectiveAmount += useCombatStore.getState().restoreActorResource( + friendlyTargetId, + effect.resource ?? member.resourceType, + effect.amount, + effect.percentage, + member.id, + ability.id, + now, + ); + } + } else if (effect.kind === "summon") { + useCombatStore.getState().summonActor(member.id, ability, effect, origin, targetId, now); + } else if (effect.kind === "pet" && ["summon", "call", "resurrect", "tame"].includes(effect.action)) { + const summonEffect: Extract = { + kind: "summon", + creatureId: effect.creatureId ?? 1, + coefficient: 0.35, + durationMs: Number.MAX_SAFE_INTEGER - now, + }; + useCombatStore.getState().summonActor(member.id, ability, summonEffect, origin, targetId, now); + } else if (effect.kind === "movement") { + const targetPosition = combat.mobs[targetId] ? getMobPosition(targetId) : partyFriendlyPosition(targetId); + if (targetPosition && effect.movement !== "knockback" && effect.toward !== "away") { + updatePartyRuntimePosition(member.id, targetPosition[0], targetPosition[1], targetPosition[2]); + } + } else if (effect.kind === "cooldown-reset") { + const candidates = Object.keys(runtimeMember.cooldowns).filter((id) => { + const candidate = abilityById(id); + return candidate && (!effect.abilityName || candidate.name === effect.abilityName); + }); + const cooldowns = { ...runtimeMember.cooldowns }; + for (const id of candidates) { + const readyAt = cooldowns[id] ?? now; + const reduction = effect.amountPercent !== undefined + ? Math.max(0, readyAt - now) * Math.max(0, Math.min(1, effect.amountPercent)) + : effect.amountMs ?? Number.MAX_SAFE_INTEGER; + cooldowns[id] = Math.max(now, readyAt - reduction); + } + runtimeMember = { ...runtimeMember, cooldowns }; + } else if (effect.kind === "resource-drain" && !combat.mobs[targetId]) { + const resource = effect.resource ?? runtimeMember.resourceType; + const maximum = resource === runtimeMember.resourceType ? runtimeMember.maxResource : 100; + const drained = effect.percentage ? maximum * effect.amount / 100 : effect.amount; + const current = runtimeMember.resourcePools[resource] ?? 0; + const resourcePools: Partial> = { + ...runtimeMember.resourcePools, + [resource]: Math.max(0, current - drained), + }; + runtimeMember = { + ...runtimeMember, + resourcePools, + resource: resource === runtimeMember.resourceType ? resourcePools[resource] ?? runtimeMember.resource : runtimeMember.resource, + }; + } else if (effect.kind === "trigger-spell" && depth < 2) { + const triggered = abilitiesForClass(member.classId).find((candidate) => candidate.dbcSpellId === effect.spellId) + ?? romTriggeredAbilityBySpellId(effect.spellId) + ?? coaTriggeredAbilityBySpellId(effect.spellId); + if (triggered && triggered.id !== ability.id) { + const result = executePartyAbility(runtimeMember, triggered, targetId, now, members, depth + 1); + runtimeMember = result.member; + effectiveAmount += result.effectiveAmount; + } + } + } + emitPartyAbility(member, ability, targetId, "release", now); + emitPartyAbility(member, ability, targetId, "impact", now); + if (effectiveAmount > 0 && ability.effects.some((effect) => ["heal", "hot", "shield", "resurrection"].includes(effect.kind))) { + useCombatStore.getState().addHealingThreat({ actorId: member.id, role: member.role, abilityId: ability.id }, effectiveAmount); + } + return { member: runtimeMember, effectiveAmount }; +} + function membersDiffer(left: readonly PartyMember[], right: readonly PartyMember[]): boolean { if (left === right) return false; if (left.length !== right.length) return true; @@ -528,7 +1044,10 @@ export function advanceDungeonPartyCombat(now = Date.now()): void { const deltaSeconds = lastAdvanceAt > 0 ? Math.max(0, Math.min(1, (now - lastAdvanceAt) / 1_000)) : 0; lastAdvanceAt = now; - let members = party.members; + const authoritativeMembers: readonly PartyMember[] = party.members.map((member) => ( + memberFromCompanionActor(member, combat.actors[member.id]) + )); + let members: readonly PartyMember[] = authoritativeMembers; const partyOrigin = partyRuntimeCenter( members.map((member) => member.id), combat.playerPosition, @@ -540,12 +1059,53 @@ export function advanceDungeonPartyCombat(now = Date.now()): void { party.activeMobId, partyOrigin, ); + members = members.map((member) => { + const profile = resourceProfileForClass(member.classId); + const regeneration = (profile.type === "rage" || profile.type === "runic-power") + ? 0 + : profile.regenerationPerSecond + member.gearStats.mp5 / 5 + member.gearStats.spirit * 0.02; + const pool = advanceCombatResourcePool(normalizeActorResourcePool( + member.resourceType, + member.resource, + member.maxResource, + regeneration, + member.lastResourceSpentAt[member.resourceType] ?? 0, + ), { + inCombat: Boolean(targetId), + actorLevel: member.level, + now, + deltaSeconds, + manaSpiritRegenerationPerSecond: member.gearStats.spirit * 0.02, + }); + return { + ...member, + resource: pool.current, + resourcePools: { ...member.resourcePools, [member.resourceType]: pool.current }, + cooldowns: Object.fromEntries(Object.entries(member.cooldowns).filter(([, readyAt]) => readyAt > now)), + schoolLockedUntil: Object.fromEntries(Object.entries(member.schoolLockedUntil).filter(([, readyAt]) => (readyAt ?? 0) > now)), + }; + }); const objectiveBossId = nextPartyBossObjective(combat.mobs)?.id ?? null; let memberTargetIds: Record = {}; + const shouldRegen = !targetId && now >= nextRegenAt; + if (shouldRegen) nextRegenAt = now + 1_000; + if (!targetId) { + members = members.map((member) => { + if (member.health <= 0 || member.controlledUntil > now || !shouldRegen || deltaSeconds <= 0) return member; + return { + ...member, + health: Math.min( + member.maxHealth, + member.health + Math.max(1, member.maxHealth * OUT_OF_COMBAT_REGEN_FRACTION), + ), + }; + }); + } + // A defeated player can watch the encounter continue while waiting for a // resurrection. Living companions remain active until the whole party falls. - if (targetId && members.some((member) => member.health > 0)) { + if (members.some((member) => member.health > 0)) { const nextMembers = [...members]; for (let index = 0; index < nextMembers.length; index += 1) { let member = nextMembers[index]; @@ -559,21 +1119,108 @@ export function advanceDungeonPartyCombat(now = Date.now()): void { : { ...member, status: "holding" }; continue; } + if (combat.auras.some((aura) => aura.targetId === member.id && aura.definition.utilityTags?.includes("pacified"))) { + nextMembers[index] = member.status === "holding" ? member : { ...member, status: "holding" }; + continue; + } const activeMember = member.controlMechanic ? { ...member, controlledUntil: 0, controlMechanic: null } : member; - if (activeMember.role === "healer") { - delete memberTargetIds[activeMember.id]; - if (now >= activeMember.nextActionAt && activeMember.status === "healing") { - nextMembers[index] = { ...activeMember, status: "ready", nextActionAt: 0 }; + member = activeMember; + const currentCombat = useCombatStore.getState(); + if (member.activeCast) { + const castingAbility = abilityById(member.activeCast.abilityId); + const castTargetId = member.activeCastTargetId; + if (!castingAbility || !castTargetId) { + nextMembers[index] = { ...member, activeCast: null, activeCastTargetId: null }; + continue; + } + const hostileCast = Boolean(currentCombat.mobs[castTargetId]); + const desiredStatus = hostileCast + ? member.role === "tank" ? "guarding" : "attacking" + : "healing"; + if (now < member.activeCast.completesAt) { + nextMembers[index] = member.status === desiredStatus ? member : { ...member, status: desiredStatus }; + if (hostileCast) memberTargetIds[member.id] = castTargetId; + continue; + } + const completedMember = { ...member, activeCast: null, activeCastTargetId: null }; + const valid = partyAbilityTargetIsValid( + completedMember, + castingAbility, + castTargetId, + member.activeCast.origin, + ); + if (valid) { + const execution = executePartyAbility(completedMember, castingAbility, castTargetId, now, nextMembers); + nextMembers[index] = { + ...execution.member, + status: desiredStatus, + nextActionAt: now + Math.max(250, castingAbility.gcdMs), + }; } else { - nextMembers[index] = activeMember; + nextMembers[index] = { + ...completedMember, + status: hostileCast ? "advancing" : "ready", + nextActionAt: now + 250, + }; + } + continue; + } + const supportIntent = choosePartySupportIntent(member, nextMembers, now); + if (supportIntent) { + delete memberTargetIds[member.id]; + if (now < member.nextActionAt) { + nextMembers[index] = member.status === "healing" ? member : { ...member, status: "healing" }; + continue; + } + if (!partyAbilityTargetIsValid(member, supportIntent.ability, supportIntent.targetId)) { + nextMembers[index] = { ...member, status: "advancing", nextActionAt: now + 250 }; + continue; + } + const committed = commitPartyAbilityUse(member, supportIntent.ability, now); + if (!committed) { + nextMembers[index] = { ...member, status: "ready", nextActionAt: now + 250 }; + continue; + } + const instantOutOfCombatResurrection = !targetId + && supportIntent.ability.effects.some((effect) => effect.kind === "resurrection"); + if (supportIntent.ability.castTimeMs > 0 && !instantOutOfCombatResurrection) { + const castOrigin = getPartyRuntimePosition(member.id) ?? currentCombat.playerPosition; + nextMembers[index] = { + ...committed, + status: "healing", + activeCast: { + abilityId: supportIntent.ability.id, + school: presentationSchoolForAbility(supportIntent.ability), + mode: supportIntent.ability.castMode === "channel" ? "channel" : "cast", + startedAt: now, + completesAt: now + supportIntent.ability.castTimeMs, + originalDurationMs: supportIntent.ability.castTimeMs, + pushbackHits: 0, + origin: castOrigin, + targetId: supportIntent.targetId, + }, + activeCastTargetId: supportIntent.targetId, + nextActionAt: now + supportIntent.ability.castTimeMs, + }; + emitPartyAbility(member, supportIntent.ability, supportIntent.targetId, "cast-start", now); + } else { + const execution = executePartyAbility( + committed, + supportIntent.ability, + supportIntent.targetId, + now, + nextMembers, + ); + nextMembers[index] = { + ...execution.member, + status: "healing", + nextActionAt: now + Math.max(250, supportIntent.ability.gcdMs), + }; } continue; } - member = activeMember; - const desiredStatus = member.role === "tank" ? "guarding" : "attacking"; - const currentCombat = useCombatStore.getState(); targetId = partyCommandTargetId( party.command, currentCombat.mobs, @@ -581,7 +1228,13 @@ export function advanceDungeonPartyCombat(now = Date.now()): void { targetId, partyOrigin, ); - if (!targetId) break; + if (!targetId) { + nextMembers[index] = member.status === "ready" && member.nextActionAt === 0 + ? member + : { ...member, status: party.command === "stop" ? "holding" : "ready", nextActionAt: 0 }; + continue; + } + const desiredStatus = member.role === "tank" ? "guarding" : "attacking"; const memberPosition = getPartyRuntimePosition(member.id) ?? currentCombat.playerPosition; const memberTargetId = member.role === "tank" ? tankPriorityTargetId( @@ -601,37 +1254,6 @@ export function advanceDungeonPartyCombat(now = Date.now()): void { ); let runtimeMember = member; const targetMob = currentCombat.mobs[memberTargetId]; - if ( - member.role === "tank" - && targetMob - && targetMob.targetActorId !== member.id - && !(targetMob.forcedTarget && targetMob.forcedTarget.endsAt > now) - && now >= member.tauntReadyAt - && targetPosition - && targetVisible - && distanceSquared(memberPosition, targetPosition) <= TANK_TAUNT_RANGE * TANK_TAUNT_RANGE - ) { - const tauntSource: ThreatSource = { actorId: member.id, role: "tank" }; - if (currentCombat.tauntMob(memberTargetId, tauntSource, TANK_TAUNT_DURATION_MS, now)) { - runtimeMember = { ...runtimeMember, tauntReadyAt: now + TANK_TAUNT_COOLDOWN_MS }; - const tauntPresentation = { - occurredAt: now, - actorGroup: "party", - sourceActorId: member.id, - targetActorId: memberTargetId, - abilityId: `party-taunt:${member.id}`, - sourceSpellId: partyTauntSpellId(member), - name: "Taunt", - source: "wow335", - school: "physical", - delivery: "aura", - origin: memberPosition, - targetPosition, - } as const; - emitCombatPresentation({ ...tauntPresentation, phase: "release" }); - emitCombatPresentation({ ...tauntPresentation, phase: "aura-start" }); - } - } if (now < member.nextActionAt) { if (runtimeMember.status !== desiredStatus) { runtimeMember = { ...runtimeMember, status: desiredStatus }; @@ -639,53 +1261,58 @@ export function advanceDungeonPartyCombat(now = Date.now()): void { nextMembers[index] = runtimeMember; continue; } - const attackRange = partyAttackRange(member); - const inRange = Boolean( - targetPosition - && targetVisible - && distanceSquared(memberPosition, targetPosition) <= attackRange * attackRange - && Math.abs(memberPosition[1] - targetPosition[1]) <= 8, - ); + const selectedAbility = choosePartyAbility(runtimeMember, { + now, + target: targetMob ?? null, + targetIsLoose: member.role === "tank" && targetMob?.targetActorId !== member.id, + }); + if (!selectedAbility) { + nextMembers[index] = { ...runtimeMember, status: desiredStatus, nextActionAt: now + 250 }; + continue; + } + const inRange = targetVisible && partyAbilityTargetIsValid(runtimeMember, selectedAbility, memberTargetId); if (!inRange) { nextMembers[index] = runtimeMember.status === "advancing" ? runtimeMember : { ...runtimeMember, status: "advancing" }; continue; } - useCombatStore.getState().damageMob( - memberTargetId, - partyAttackDamage(member), - now, - { actorId: member.id, role: member.role, abilityId: `party:${member.id}` }, - ); - const presentation = partyAttackPresentation(member); - const attackPresentation = { - occurredAt: now, - actorGroup: "party", - sourceActorId: member.id, - targetActorId: memberTargetId, - abilityId: `party:${member.id}`, - sourceSpellId: presentation.spellId, - name: presentation.name, - source: "wow335", - school: presentation.school, - delivery: presentation.delivery, - origin: memberPosition, - targetPosition: targetPosition!, - } as const; - emitCombatPresentation({ ...attackPresentation, phase: "release" }); - emitCombatPresentation({ ...attackPresentation, phase: "impact" }); - nextMembers[index] = { - ...runtimeMember, - status: desiredStatus, - nextActionAt: now + memberSwingMs(member), - }; + const committed = commitPartyAbilityUse(runtimeMember, selectedAbility, now); + if (!committed) { + nextMembers[index] = { ...runtimeMember, status: desiredStatus, nextActionAt: now + 250 }; + continue; + } + if (selectedAbility.castTimeMs > 0) { + nextMembers[index] = { + ...committed, + status: desiredStatus, + activeCast: { + abilityId: selectedAbility.id, + school: presentationSchoolForAbility(selectedAbility), + mode: selectedAbility.castMode === "channel" ? "channel" : "cast", + startedAt: now, + completesAt: now + selectedAbility.castTimeMs, + originalDurationMs: selectedAbility.castTimeMs, + pushbackHits: 0, + origin: memberPosition, + targetId: memberTargetId, + }, + activeCastTargetId: memberTargetId, + nextActionAt: now + selectedAbility.castTimeMs, + }; + emitPartyAbility(member, selectedAbility, memberTargetId, "cast-start", now); + } else { + const execution = executePartyAbility(committed, selectedAbility, memberTargetId, now, nextMembers); + nextMembers[index] = { + ...execution.member, + status: desiredStatus, + nextActionAt: now + Math.max(250, selectedAbility.gcdMs), + }; + } } members = nextMembers; } else { memberTargetIds = {}; - const shouldRegen = now >= nextRegenAt; - if (shouldRegen) nextRegenAt = now + 1_000; const idleStatus = party.command === "stop" ? "holding" as const : party.command === "attack" && objectiveBossId @@ -699,9 +1326,7 @@ export function advanceDungeonPartyCombat(now = Date.now()): void { const activeMember = member.controlMechanic ? { ...member, controlledUntil: 0, controlMechanic: null } : member; - const recovered = shouldRegen && deltaSeconds > 0 - ? Math.min(activeMember.maxHealth, activeMember.health + Math.max(1, activeMember.maxHealth * OUT_OF_COMBAT_REGEN_FRACTION)) - : activeMember.health; + const recovered = activeMember.health; if (activeMember.role === "healer" && activeMember.nextActionAt > now) { if (recovered === activeMember.health) return activeMember; return { ...activeMember, health: recovered }; @@ -711,60 +1336,29 @@ export function advanceDungeonPartyCombat(now = Date.now()): void { }); } - const currentPlayer = useCombatStore.getState(); - const support = applyHealerSupport(members, currentPlayer.health, currentPlayer.maxHealth, now); - const supporter = support.sourceMemberId - ? members.find((member) => member.id === support.sourceMemberId && member.health > 0) ?? null - : null; - members = support.members; - let effectiveSupport = support.effectiveHealing; - if (support.playerResurrectionPercent > 0) { - effectiveSupport = useCombatStore.getState().revivePlayer(support.playerResurrectionPercent); - } - if (support.playerHealing > 0) { - effectiveSupport = useCombatStore.getState().healPlayer(support.playerHealing); - } - if (supporter && support.presentation && effectiveSupport > 0) { - useCombatStore.getState().addHealingThreat( - { actorId: supporter.id, role: supporter.role }, - effectiveSupport, - ); - const presentation = support.presentation; - const supporterPosition = getPartyRuntimePosition(supporter.id) ?? currentPlayer.playerPosition; - const presentationTargetId = support.targetId === "__player__" ? PLAYER_AGGRO_ID : support.targetId; - const targetPosition = presentationTargetId === PLAYER_AGGRO_ID - ? currentPlayer.playerPosition - : presentationTargetId - ? getPartyRuntimePosition(presentationTargetId) - : null; - const healPresentation = { - occurredAt: now, - actorGroup: "party", - sourceActorId: supporter.id, - ...(presentationTargetId ? { targetActorId: presentationTargetId } : {}), - abilityId: `party-${support.action}:${supporter.id}`, - sourceSpellId: presentation.spellId, - name: presentation.name, - source: "wow335", - school: presentation.school, - delivery: presentation.delivery, - origin: supporterPosition, - targetPosition: targetPosition ?? supporterPosition, - } as const; - emitCombatPresentation({ ...healPresentation, phase: "release" }); - emitCombatPresentation({ ...healPresentation, phase: "impact" }); - } + // Execution actions may have changed health while this low-frequency party + // loop was still holding its pre-cast compatibility records. Actor vitals win; + // runtime-owned resources, cooldowns, status, and casts remain on the member. + const actorsAfterActions = useCombatStore.getState().actors; + members = members.map((member) => { + const actor = actorsAfterActions[member.id]; + const baseline = authoritativeMembers.find((candidate) => candidate.id === member.id); + return actor?.kind === "companion" && baseline && actor.health !== baseline.health + ? { ...member, health: actor.health, maxHealth: actor.maxHealth } + : member; + }); const targetMapChanged = ( Object.keys(party.memberTargetIds).length !== Object.keys(memberTargetIds).length || Object.entries(memberTargetIds).some(([memberId, mobId]) => party.memberTargetIds[memberId] !== mobId) ); if ( - membersDiffer(party.members, members) + membersDiffer(authoritativeMembers, members) || party.activeMobId !== targetId || party.objectiveBossId !== objectiveBossId || targetMapChanged ) { party.commitRuntime({ members, activeMobId: targetId, objectiveBossId, memberTargetIds }); } + useCombatStore.getState().commitCompanionActors(members); } diff --git a/src/game/partyRuntimeRegistry.ts b/src/game/partyRuntimeRegistry.ts index 6304f630..2a9b5c3c 100644 --- a/src/game/partyRuntimeRegistry.ts +++ b/src/game/partyRuntimeRegistry.ts @@ -108,6 +108,11 @@ export function updatePartyRuntimePosition( } } +export function removePartyRuntimePosition(id: string): void { + positions.delete(id); + targetVisibility.delete(id); +} + export function getPartyRuntimePosition(id: string): PartyWorldPosition | null { const position = positions.get(id); return position ? [...position] as MutablePartyWorldPosition : null; diff --git a/src/game/partyStore.ts b/src/game/partyStore.ts index 8ec67590..7b2564b8 100644 --- a/src/game/partyStore.ts +++ b/src/game/partyStore.ts @@ -29,6 +29,8 @@ import type { RuntimeTalentRanks as TalentRanks } from "./talentRuntimeCatalog"; import type { EnemyControlMechanic } from "./enemyAttacks"; import type { ContentCategoryId } from "../app/contentCategories"; import type { PartyRole, PartySize } from "./partyRoles"; +import { resourceProfileForClass, type ResourceType } from "./abilityCatalog"; +import { createDeathKnightRunes, type CombatActorCastState, type DeathKnightRuneState } from "./combatActors"; export { classCanFillPartyRole, @@ -56,6 +58,18 @@ export interface PartyMember { readonly level: number; readonly health: number; readonly maxHealth: number; + readonly resourceType: ResourceType; + readonly resourceName: string; + readonly resource: number; + readonly maxResource: number; + readonly resourcePools: Readonly>>; + readonly lastResourceSpentAt: Readonly>>; + readonly cooldowns: Readonly>; + readonly globalCooldownEndsAt: number; + readonly activeCast: CombatActorCastState | null; + readonly activeCastTargetId: string | null; + readonly schoolLockedUntil: Readonly>>; + readonly runes: readonly DeathKnightRuneState[]; readonly gearStats: ItemStats; readonly status: PartyMemberStatus; readonly nextActionAt: number; @@ -214,6 +228,9 @@ function createMember( const gender: GenderId = genders[Math.floor(nextRandom(identityRandom) * genders.length)] ?? genders[0] ?? "male"; const appearance = randomAppearance(race.id, gender, () => nextRandom(identityRandom)); const maxHealth = memberMaxHealth(level, role, EMPTY_ITEM_STATS, template.classId, race.id); + const resourceProfile = resourceProfileForClass(template.classId); + const maxResource = resourceProfile.maximum; + const resource = resourceProfile.initial; return { id: `party-${role}-${index}-${template.classId}`, name: template.name, @@ -230,6 +247,18 @@ function createMember( level: Math.max(1, Math.trunc(level)), health: maxHealth, maxHealth, + resourceType: resourceProfile.type, + resourceName: resourceProfile.name, + resource, + maxResource, + resourcePools: Object.freeze({ [resourceProfile.type]: resource }), + lastResourceSpentAt: Object.freeze({}), + cooldowns: Object.freeze({}), + globalCooldownEndsAt: 0, + activeCast: null, + activeCastTargetId: null, + schoolLockedUntil: Object.freeze({}), + runes: template.classId === "death-knight" ? createDeathKnightRunes() : Object.freeze([]), gearStats: EMPTY_ITEM_STATS, status: "ready", nextActionAt: 0, @@ -321,6 +350,27 @@ export interface PartyState { cycleMember: (direction?: 1 | -1) => string | null; clearSelection: () => void; healMember: (id: string, amount: number) => number; + updateMemberCombat: ( + id: string, + patch: Partial>, + ) => boolean; reviveMember: (id: string, percentMaxHealth?: number) => number; damageMember: (id: string, amount: number, school?: DamageSchool, attackerLevel?: number) => number; /** Applies damage that has already passed a discrete combat-result roll. */ @@ -479,6 +529,18 @@ export const usePartyStore = create((set, get) => ({ return healed; }, + updateMemberCombat: (id, patch) => { + let updated = false; + set((state) => ({ + members: state.members.map((member) => { + if (member.id !== id) return member; + updated = true; + return { ...member, ...patch }; + }), + })); + return updated; + }, + reviveMember: (id, percentMaxHealth = 0.35) => { let restored = 0; set((state) => ({ diff --git a/src/game/romAbilityCatalog.ts b/src/game/romAbilityCatalog.ts index 1099f8a3..16f2a296 100644 --- a/src/game/romAbilityCatalog.ts +++ b/src/game/romAbilityCatalog.ts @@ -12,6 +12,7 @@ import { translateRomAbilitySemantics, type RomAbilitySemantic, type RomGeneratedAbilityLike, + type RomSourceComponent, } from "./romAbilitySemantics"; export type RomSkillGroup = "primary" | "general" | "elite" | "passive"; @@ -71,9 +72,9 @@ interface GeneratedSkill { const generated = rawCatalog.skills as unknown as readonly GeneratedSkill[]; function resource(value: string): ResourceType { - return ["mana", "rage", "energy", "runic-power", "focus", "health"].includes(value) + return ["mana", "rage", "energy", "runic-power", "focus", "nature-power", "psi", "health"].includes(value) ? value as ResourceType - : "mana"; + : `custom:${slug(value)}`; } function costs(rows: readonly GeneratedCost[]): readonly AbilityCost[] { @@ -109,10 +110,10 @@ function knownResource(value: string): ResourceType | undefined { if (value === "mp") return "mana"; if (value === "nature's power") return "nature-power"; if (value === "psi point" || value === "psi points") return "psi"; - if (value === "soul point" || value === "soul points") return "focus"; + if (value === "soul point" || value === "soul points") return "soul-power"; return ["mana", "rage", "energy", "runic-power", "focus", "nature-power", "psi", "health"].includes(value) ? value as ResourceType - : undefined; + : value ? `custom:${slug(value)}` : undefined; } function auraRecipient(row: GeneratedSemanticRow, semantic: Extract): "ability-target" | "caster" { @@ -123,36 +124,119 @@ function auraRecipient(row: GeneratedSemanticRow, semantic: Extract): AuraModifier | null { +const MAGIC_SCHOOLS: readonly DamageSchool[] = ["arcane", "fire", "frost", "holy", "nature", "shadow"]; + +function percent(value: number): number { + return value / 100; +} + +function magicDamageTaken(value: number): readonly AuraModifier[] { + return MAGIC_SCHOOLS.map((school) => ({ + kind: "damage" as const, + direction: "taken" as const, + school, + operation: "percent" as const, + value, + })); +} + +function auraModifiers(semantic: Extract): readonly AuraModifier[] { const value = semantic.value ?? 0; if (semantic.effect === "damage-immunity") { - return { kind: "damage", direction: "taken", operation: "percent", value: -100 }; + return [{ kind: "damage", direction: "taken", operation: "percent", value: -1 }]; } if (semantic.effect === "physical-damage-immunity") { - return { kind: "damage", direction: "taken", school: "physical", operation: "percent", value: -100 }; + return [{ kind: "damage", direction: "taken", school: "physical", operation: "percent", value: -1 }]; } if (semantic.effect === "magic-damage-immunity") { - return { kind: "stat", stat: "magic-damage-immunity", operation: "flat", value: 1 }; + return magicDamageTaken(-1); } if (semantic.effect === "poison-immunity") { - return { kind: "stat", stat: "poison-immunity", operation: "flat", value: 1 }; + return [{ kind: "stat", stat: "poison-immunity", operation: "flat", value: 1 }]; } if (semantic.effect === "maximum-mana") { - return { kind: "resource", resource: "mana", property: "maximum", operation: "flat", value }; + return [{ kind: "resource", resource: "mana", property: "maximum", operation: "flat", value }]; } if (semantic.effect === "mana-regeneration") { - return { kind: "resource", resource: "mana", property: "regeneration", operation: "flat", value }; + return [{ kind: "resource", resource: "mana", property: "regeneration", operation: "flat", value }]; } if (semantic.effect === "health-regeneration") { - return { kind: "resource", resource: "health", property: "regeneration", operation: "flat", value }; + return [{ kind: "stat", stat: "health-regeneration", operation: "flat", value }]; } - if (["physical-attack", "magical-attack", "weapon-damage"].includes(semantic.effect)) { - return { kind: "stat", stat: semantic.effect, operation: "flat", value }; + + const type = semantic.modifierType; + if (type === null) return semantic.value === null + ? [] + : [{ kind: "stat", stat: semantic.effect, operation: "flat", value }]; + if (type >= 2 && type <= 22) { + return [{ kind: "stat", stat: semantic.effect, operation: "flat", value }]; } - if (semantic.modifierType !== null || semantic.value !== null) { - return { kind: "stat", stat: semantic.effect, operation: "flat", value }; + if (type === 23) return [{ kind: "stat", stat: "attack-speed", operation: "flat", value: -value }]; + if (type === 24) return [{ kind: "stat", stat: "movement-speed", operation: "percent", value: percent(value) }]; + if (type === 25) return [ + { kind: "damage", direction: "dealt", attackKind: "melee", operation: "flat", value }, + { kind: "damage", direction: "dealt", attackKind: "ranged", operation: "flat", value }, + ]; + if (type >= 26 && type <= 32) { + const school = ({ 27: "nature", 28: "frost", 29: "fire", 30: "nature", 31: "holy", 32: "shadow" } as Partial>)[type]; + return [{ kind: "stat", stat: school ? `resistance:${school}` : "all-resistance", operation: "flat", value }]; } - return null; + if (type === 33) return [{ kind: "resource", resource: "mana", property: "cost", operation: "percent", value: -percent(value) }]; + if (type === 37 || (type >= 56 && type <= 67) || type === 173) { + return [{ kind: "damage", direction: "dealt", attackKind: "melee", operation: "percent", value: percent(value) }]; + } + if (type >= 38 && type <= 43) return [{ kind: "stat", stat: "armor", operation: "percent", value: percent(value) }]; + if (type === 44) return [{ kind: "damage", direction: "dealt", attackKind: "spell", operation: "percent", value: percent(value) }]; + if (type >= 45 && type <= 50) { + const school = (["nature", "frost", "fire", "nature", "holy", "shadow"] as const)[type - 45]; + return [{ kind: "damage", direction: "dealt", school, operation: "percent", value: percent(value) }]; + } + if (type === 51) return [{ kind: "stat", stat: "spell-haste", operation: "flat", value: -value }]; + if (type >= 52 && type <= 55) return [{ kind: "damage", direction: "dealt", attackKind: "ranged", operation: "percent", value: percent(value) }]; + if (type >= 68 && type <= 71) return [{ kind: "stat", stat: "ranged-haste", operation: "flat", value: -value }]; + if (type >= 72 && type <= 83) return [{ kind: "stat", stat: "melee-haste", operation: "flat", value: -value }]; + if (type === 134) return [{ kind: "stat", stat: "attack-power", operation: "percent", value: percent(value) }]; + if (type === 135) return [{ kind: "stat", stat: "armor", operation: "percent", value: percent(value) }]; + if (type === 138) return [{ kind: "stat", stat: "threat", operation: "percent", value: percent(value) }]; + if (type >= 139 && type <= 141) { + const resource = (["rage", "focus", "energy"] as const)[type - 139]; + return [{ kind: "resource", resource, property: "regeneration", operation: "percent", value: percent(value) }]; + } + if (type === 142) return magicDamageTaken(-percent(value)); + if (type === 143) return [{ kind: "damage", direction: "taken", school: "physical", operation: "percent", value: -percent(value) }]; + if (type === 144) return [{ kind: "healing", direction: "taken", operation: "percent", value: -percent(value) }]; + if (type === 148) return [{ kind: "damage", direction: "dealt", attackKind: "spell", operation: "flat", value }]; + if (type === 149) return [{ kind: "healing", direction: "done", operation: "percent", value: percent(value) }]; + if (type === 150) return [{ kind: "healing", direction: "done", operation: "flat", value }]; + if (type >= 161 && type <= 166) { + const stat = (["strength", "stamina", "intellect", "wisdom", "dexterity", "all-primary-attributes"] as const)[type - 161]; + return [{ kind: "stat", stat, operation: "percent", value: percent(value) }]; + } + if (type === 167) return [{ kind: "stat", stat: "maximum-health", operation: "percent", value: percent(value) }]; + if (type === 168) return [{ kind: "resource", resource: "mana", property: "maximum", operation: "percent", value: percent(value) }]; + if (type === 170) return [{ kind: "stat", stat: "magical-defense", operation: "percent", value: percent(value) }]; + if (type === 171) return [{ kind: "stat", stat: "magical-attack", operation: "percent", value: percent(value) }]; + if (type === 184 || type === 185 || type === 186 || type === 187 || type === 188 || type === 189) { + const school = (["nature", "frost", "fire", "nature", "holy", "shadow"] as const)[type - 184]; + return [{ kind: "damage", direction: "dealt", school, operation: "flat", value }]; + } + if (type === 191) return [{ kind: "damage", direction: "dealt", attackKind: "spell", operation: "flat", value }]; + if (type === 192 || type === 208) return [{ kind: "damage", direction: "dealt", attackKind: "spell", operation: "percent", value: percent(value) }]; + if (type === 195 || type === 199) return [{ kind: "stat", stat: "magical-hit", operation: "flat", value }]; + if (type === 197) return [{ kind: "stat", stat: "physical-hit", operation: "flat", value }]; + if (type === 198) return [{ kind: "stat", stat: "dodge", operation: "flat", value }]; + if (type === 204 || type === 205) return [{ kind: "damage", direction: "dealt", operation: "percent", value: percent(value) }]; + if (type === 206 || type === 207 || type === 209) return [{ kind: "damage", direction: "taken", operation: "percent", value: percent(value) }]; + if (type >= 214 && type <= 216) { + const resource = (["rage", "energy", "focus"] as const)[type - 214]; + return [{ kind: "resource", resource, property: "cost", operation: "percent", value: -percent(value) }]; + } + if (type >= 220 && type <= 226) { + const school = ({ 221: "nature", 222: "frost", 223: "fire", 224: "nature", 225: "holy", 226: "shadow" } as Partial>)[type]; + return [{ kind: "stat", stat: school ? `resistance:${school}` : "all-resistance", operation: "percent", value: percent(value) }]; + } + if (type === 227) return [{ kind: "stat", stat: "parry", operation: "percent", value: percent(value) }]; + return [{ kind: "stat", stat: semantic.effect, operation: "flat", value }]; } function controlKind(effect: string): Extract["control"] { @@ -173,11 +257,30 @@ function semanticEffect(row: GeneratedSemanticRow, semantic: RomAbilitySemantic, const componentKey = semantic.sourceComponentIds.join("-") || "tooltip"; const effectId = `${row.sourceSkillId}-${componentKey}-${index}`; if (semantic.kind === "damage" || semantic.kind === "heal") { + const rawPower = Math.max(0, semantic.power); + const rawFixed = Math.max(0, semantic.fixedValue); + const coefficientCalculation = semantic.calculationType === null + ? rawPower > 0 && rawPower <= 4 + : [0, 2, 3, 10].includes(semantic.calculationType); + const powerCoefficient = coefficientCalculation ? rawPower : 0; + const fixedCoefficient = semantic.fixedType > 0 ? rawFixed : 0; + const coefficientBase = powerCoefficient + fixedCoefficient; + const coefficientPerLevel = powerCoefficient * Math.max(0, semantic.powerPerSkillLevel) / 100 + + fixedCoefficient * Math.max(0, semantic.fixedPerSkillLevel) / 100; + const coefficient = coefficientBase + coefficientPerLevel; + const sourcePoints = coefficientCalculation ? 0 : rawPower; + const pointsPerLevel = sourcePoints * Math.max(0, semantic.powerPerSkillLevel) / 100; + const basePoints = sourcePoints + pointsPerLevel; return { kind: semantic.kind, - coefficient: Math.max(0, semantic.power), - basePoints: Math.max(0, semantic.fixedValue), - pointsPerLevel: Math.max(0, semantic.fixedPerSkillLevel), + coefficient, + ...(coefficientPerLevel > 0 ? { coefficientPerLevel, sourceLevel: 1 } : {}), + ...(basePoints > 0 ? { + basePoints, + pointsPerLevel, + sourceLevel: 1, + ...(coefficient > 0 ? { bonusPowerCoefficient: coefficient } : {}), + } : {}), ...(semantic.kind === "heal" && semantic.percentMaxHealth !== undefined ? { percentMaxHealth: semantic.percentMaxHealth } : {}), @@ -189,8 +292,9 @@ function semanticEffect(row: GeneratedSemanticRow, semantic: RomAbilitySemantic, return { kind: semantic.kind, coefficient: 0, - basePoints: Math.max(0, semantic.basePerTick), - pointsPerLevel: Math.max(0, semantic.perSkillLevel), + basePoints: Math.max(0, semantic.basePerTick) * (1 + Math.max(0, semantic.perSkillLevel) / 100), + pointsPerLevel: Math.max(0, semantic.basePerTick) * Math.max(0, semantic.perSkillLevel) / 100, + sourceLevel: 1, ticks, intervalMs, ...(semantic.kind === "dot" ? { tag: `rom-${effectId}` } : {}), @@ -214,24 +318,30 @@ function semanticEffect(row: GeneratedSemanticRow, semantic: RomAbilitySemantic, id: `rom-control-${effectId}-${slug(semantic.effect)}`, name: `${row.name}: ${semantic.effect}`, disposition: "debuff", - durationMs: durationMs(semantic.durationSeconds), + durationMs: Math.max(1_000, durationMs(semantic.durationSeconds)), dispelCategory: "magic", }; return { kind: "apply-aura", aura, control, sourceEffectType: -1, sourceAuraType: -1, miscValue: 0, triggerSpellId: 0 }; } - if (semantic.kind === "interrupt") return { kind: "interrupt", lockoutMs: durationMs(semantic.lockoutSeconds || 4) }; + if (semantic.kind === "interrupt") return { kind: "interrupt", lockoutMs: Math.max(1_000, durationMs(semantic.lockoutSeconds || 4)) }; if (semantic.kind === "aura") { const recipient = auraRecipient(row, semantic); - const modifier = auraModifier(semantic); + const modifiers = auraModifiers(semantic); + const partyScope = /\b(?:all )?party members?\b/i.test(row.description); const aura: AuraDefinition = { id: `rom-aura-${effectId}-${slug(semantic.effect)}`, name: `${row.name}: ${semantic.effect}`, disposition: recipient === "caster" || row.target !== "hostile" ? "buff" : "debuff", durationMs: semantic.durationSeconds > 0 ? durationMs(semantic.durationSeconds) : null, dispelCategory: "magic", - ...(modifier ? { modifiers: [modifier] } : {}), + ...(modifiers.length ? { modifiers } : {}), + ...(semantic.effect === "poison-immunity" + ? { utilityTags: ["poison-immunity"] } + : semantic.effect === "stealth" + ? { utilityTags: ["stealth"] } + : {}), }; - return { kind: "apply-aura", aura, recipient, sourceEffectType: -1, sourceAuraType: semantic.modifierType ?? -1, miscValue: semantic.value ?? 0, triggerSpellId: 0 }; + return { kind: "apply-aura", aura, recipient, ...(partyScope ? { scope: "party" as const } : {}), sourceEffectType: -1, sourceAuraType: semantic.modifierType ?? -1, miscValue: semantic.value ?? 0, triggerSpellId: 0 }; } if (semantic.kind === "absorb") { if (semantic.amount <= 0 && semantic.perSkillLevel <= 0) { @@ -260,6 +370,7 @@ function semanticEffect(row: GeneratedSemanticRow, semantic: RomAbilitySemantic, id: `rom-proc-trigger-${effectId}`, triggers: procTrigger(semantic.trigger), chance, + ...(semantic.intervalSeconds && semantic.intervalSeconds > 0 ? { internalCooldownMs: durationMs(semantic.intervalSeconds) } : {}), action: { kind: "custom", id: "rom-trigger-skill", data: { spellId: semantic.triggerSkillId, rank: semantic.rank ?? 0 } }, }], }; @@ -267,6 +378,23 @@ function semanticEffect(row: GeneratedSemanticRow, semantic: RomAbilitySemantic, } if (semantic.kind === "resource") { const resourceType = knownResource(semantic.resource); + if (semantic.intervalSeconds && semantic.intervalSeconds > 0 && resourceType) { + const amountPerSecond = semantic.amount / semantic.intervalSeconds; + const aura: AuraDefinition = { + id: `rom-resource-over-time-${effectId}`, + name: row.name, + disposition: semantic.operation === "drain" ? "debuff" : "buff", + durationMs: semantic.durationSeconds && semantic.durationSeconds > 0 ? durationMs(semantic.durationSeconds) : null, + modifiers: [{ + kind: "resource", + resource: resourceType, + property: "regeneration", + operation: "flat", + value: semantic.operation === "drain" ? -amountPerSecond : amountPerSecond, + }], + }; + return { kind: "apply-aura", aura, recipient: row.target === "hostile" ? "ability-target" : "caster", sourceEffectType: -1, sourceAuraType: -1, miscValue: semantic.amount, triggerSpellId: 0 }; + } if (semantic.operation === "drain") return { kind: "resource-drain", amount: semantic.amount, @@ -288,13 +416,97 @@ function semanticEffect(row: GeneratedSemanticRow, semantic: RomAbilitySemantic, if (semantic.kind === "trigger-spell") return { kind: "trigger-spell", spellId: semantic.spellId }; if (semantic.kind === "pet") return { kind: "pet", action: semantic.action }; if (semantic.kind === "custom") { + if (semantic.mechanicId === "threat-reset") { + return { kind: "threat", mode: "percent", amount: -100 }; + } return { kind: "scripted", effectType: -1, auraType: -1, miscValue: 0, triggerSpellId: 0, label: `RoM ${semantic.mechanicId}: ${semantic.summary}` }; } return { kind: "scripted", effectType: -1, auraType: -1, miscValue: 0, triggerSpellId: 0, label: `RoM source mechanic` }; } +function stateAuraEffect( + row: GeneratedSemanticRow, + stateId: string, + name: string, + duration: number | null, + options: Pick = {}, +): AbilityEffect { + return { + kind: "apply-aura", + recipient: "caster", + aura: { + id: `rom-state-${stateId}`, + name, + disposition: "buff", + durationMs: duration, + utilityTags: [`rom-${stateId}`], + ...options, + }, + sourceEffectType: -1, + sourceAuraType: -1, + miscValue: 0, + triggerSpellId: row.sourceSkillId, + }; +} + +function specializedEffects(row: GeneratedSemanticRow): readonly AbilityEffect[] | null { + if (row.sourceSkillId === 491163) { + return [stateAuraEffect(row, "frost-arrow", "Frost Arrow", 600_000, { + procs: [{ + id: "rom-frost-arrow-wind-arrow", + triggers: "hit", + chance: 0.5, + action: { kind: "custom", id: "rom-frost-arrow" }, + }], + })]; + } + if (row.sourceSkillId === 491171) { + return [stateAuraEffect(row, "static-field-charge", "Static Field Charge", null)]; + } + if (row.sourceSkillId === 494038) { + return [stateAuraEffect(row, "entling-offering", "Entling Offering", 900_000, { + procs: [{ + id: "rom-entling-offering-shot", + triggers: "hit", + chance: 1, + action: { kind: "custom", id: "rom-entling-offering" }, + }], + })]; + } + if (row.sourceSkillId === 495296) { + return [stateAuraEffect(row, "holy-salvation-candle", "Holy Salvation Candle", 20_000)]; + } + if (row.sourceSkillId === 498571) { + return [stateAuraEffect(row, "remodeled-body", "Remodeled Body", 8_000)]; + } + if (row.sourceSkillId === 499542) { + return [{ + kind: "utility", + action: "class-script", + effectType: -1, + auraType: -1, + miscValue: 499542, + triggerSpellId: 623078, + durationMs: 0, + }]; + } + return null; +} + function effects(row: GeneratedSemanticRow): readonly AbilityEffect[] { - return translateRomAbilitySemantics(row).map((semantic, index) => semanticEffect(row, semantic, index)); + const specialized = specializedEffects(row); + if (specialized) return specialized; + const translated = translateRomAbilitySemantics(row).map((semantic, index) => semanticEffect(row, semantic, index)); + if (row.sourceSkillId === 491169) { + return [...translated, stateAuraEffect(row, "charged", "Charged", 6_000)]; + } + return translated; +} + +function areaRadius(row: Pick): number | undefined { + if (!/\b(?:multiple targets|all targets|surrounding (?:enemies|targets)|party members within|friendly targets within|targets within (?:a )?range)\b/i.test(row.description)) return undefined; + const sourceRange = row.description.match(/\b(?:range|radius) of\s+(\d+(?:\.\d+)?)/i)?.[1]; + return Math.max(3, Math.min(40, sourceRange ? Number(sourceRange) / 10 : row.range || 8)); } function rank(row: GeneratedRank, parent: GeneratedSkill): AbilityRankDefinition { @@ -337,6 +549,7 @@ function ability(row: GeneratedSkill): AbilityDefinition { description: row.description, target: row.target, range: { min: 0, max: row.range }, + ...(areaRadius(row) !== undefined ? { radius: areaRadius(row) } : {}), castMode: row.castTimeMs > 0 ? "cast" : "instant", castTimeMs: row.castTimeMs, cooldownMs: row.cooldownMs, @@ -354,6 +567,41 @@ function ability(row: GeneratedSkill): AbilityDefinition { export const ROM_ALL_ABILITIES = Object.freeze(generated.map(ability)); +const romAbilityByGeneratedId = new Map(ROM_ALL_ABILITIES.map((entry) => [entry.id, entry])); +const triggeredComponentOwners = new Map(); +for (const parent of generated) { + const componentSets = [parent.source?.components ?? [], ...parent.ranks.map((entry) => entry.source?.components ?? [])]; + for (const components of componentSets) for (const component of components) { + if (!triggeredComponentOwners.has(component.id)) triggeredComponentOwners.set(component.id, { parent, component }); + } +} + +/** Resolve source-triggered MagicObject rows that are not player-facing skills. */ +export function romTriggeredAbilityBySpellId(spellId: number): AbilityDefinition | null { + const owner = triggeredComponentOwners.get(spellId); + if (!owner) return null; + const parentAbility = romAbilityByGeneratedId.get(owner.parent.id); + if (!parentAbility) return null; + const triggeredEffects = effects({ + sourceSkillId: spellId, + name: `${owner.parent.name} trigger`, + description: "", + target: owner.parent.target, + passive: false, + source: { componentIds: [spellId], components: [owner.component] }, + }).filter((effect) => effect.kind !== "scripted" && effect.kind !== "unsupported"); + if (!triggeredEffects.length) return null; + return { + ...parentAbility, + id: `rom-triggered-${spellId}`, + dbcSpellId: spellId, + name: `${owner.parent.name} trigger`, + passive: false, + effects: triggeredEffects, + ranks: undefined, + }; +} + export const ROM_ORDINARY_ABILITIES_BY_CLASS: Readonly> = Object.freeze( Object.fromEntries((rawCatalog.canonicalClasses as readonly { id: RomClassId }[]).map(({ id }) => [ id, diff --git a/src/game/romAbilityCatalogSemantics.test.ts b/src/game/romAbilityCatalogSemantics.test.ts index e56089af..85c2c7df 100644 --- a/src/game/romAbilityCatalogSemantics.test.ts +++ b/src/game/romAbilityCatalogSemantics.test.ts @@ -1,4 +1,5 @@ import { describe, expect, it } from "vitest"; +import type { AbilityEffect } from "./abilityCatalog"; import { ROM_ALL_ABILITIES } from "./romAbilityCatalog"; import generated from "./romPlayerCatalog.generated.json"; @@ -8,6 +9,33 @@ function named(name: string) { return ability; } +function isMeaningfulEffect(effect: AbilityEffect): boolean { + if (effect.kind === "scripted" || effect.kind === "unsupported") return false; + if (["damage", "heal", "dot", "hot", "shield"].includes(effect.kind)) { + const output = effect as Extract; + return ( + output.coefficient > 0 + || (output.coefficientPerLevel ?? 0) > 0 + || (output.basePoints ?? 0) > 0 + || (output.pointsPerLevel ?? 0) > 0 + || (output.kind === "heal" && (output.percentMaxHealth ?? 0) > 0) + ); + } + if (effect.kind === "apply-aura") { + return Boolean( + effect.control + || effect.aura.modifiers?.length + || effect.aura.absorbs?.length + || effect.aura.procs?.length + || effect.aura.utilityTags?.length + || effect.aura.controlImmunities?.length + || effect.aura.reflectSpellChance + || effect.aura.redirectDamagePercent, + ); + } + return true; +} + describe("executable RuneWaker ability mappings", () => { it("maps Taunt, Shout, and Cleanse to their real combat mechanics", () => { expect(named("Taunt").effects).toEqual(expect.arrayContaining([ @@ -31,7 +59,7 @@ describe("executable RuneWaker ability mappings", () => { expect(holyAura).toMatchObject({ aura: { disposition: "buff", - modifiers: [{ kind: "damage", direction: "taken", operation: "percent", value: -100 }], + modifiers: [{ kind: "damage", direction: "taken", operation: "percent", value: -1 }], }, }); const electrostatic = named("Electrostatic Charge").effects.find((effect) => ( @@ -63,16 +91,61 @@ describe("executable RuneWaker ability mappings", () => { expect(named("Spreading Pain").effects.filter((effect) => effect.kind === "trigger-spell")).toHaveLength(3); }); - it("leaves only genuinely stateful combo transformations as script-only active skills", () => { + it("gives every active base skill and playable rank a concrete runtime effect", () => { + const versions = ROM_ALL_ABILITIES.flatMap((ability) => [ + { name: ability.name, rank: 0, passive: ability.passive, effects: ability.effects }, + ...(ability.ranks ?? []).map((rank) => ({ + name: ability.name, + rank: rank.rank, + passive: ability.passive, + effects: rank.effects, + })), + ]); + + expect(versions).toHaveLength(1_863); const scriptOnly = ROM_ALL_ABILITIES .filter((ability) => !ability.passive && ability.effects.every((effect) => effect.kind === "scripted")) .map((ability) => ability.name) .sort(); - expect(scriptOnly).toEqual([ - "Electric Compression", - "Entling Offering", - "Frost Arrow", - "Holy Salvation Candle", - ]); + expect(scriptOnly).toEqual([]); + for (const version of versions.filter((entry) => !entry.passive)) { + expect( + version.effects.some(isMeaningfulEffect), + `${version.name} rank ${version.rank}`, + ).toBe(true); + } + }); + + it("implements source state for RuneWaker's active transformations", () => { + expect(named("Frost Arrow").effects).toEqual(expect.arrayContaining([ + expect.objectContaining({ + kind: "apply-aura", + aura: expect.objectContaining({ + utilityTags: ["rom-frost-arrow"], + procs: [expect.objectContaining({ action: { kind: "custom", id: "rom-frost-arrow" } })], + }), + }), + ])); + expect(named("Electric Compression").effects).toEqual(expect.arrayContaining([ + expect.objectContaining({ kind: "apply-aura", aura: expect.objectContaining({ utilityTags: ["rom-static-field-charge"] }) }), + ])); + expect(named("Entling Offering").effects).toEqual(expect.arrayContaining([ + expect.objectContaining({ + kind: "apply-aura", + aura: expect.objectContaining({ + utilityTags: ["rom-entling-offering"], + procs: [expect.objectContaining({ action: { kind: "custom", id: "rom-entling-offering" } })], + }), + }), + ])); + expect(named("Holy Salvation Candle").effects).toEqual(expect.arrayContaining([ + expect.objectContaining({ kind: "apply-aura", aura: expect.objectContaining({ utilityTags: ["rom-holy-salvation-candle"] }) }), + ])); + expect(named("Remodeled Body").effects).toEqual(expect.arrayContaining([ + expect.objectContaining({ kind: "apply-aura", aura: expect.objectContaining({ utilityTags: ["rom-remodeled-body"] }) }), + ])); + expect(named("Revival").effects).toEqual(expect.arrayContaining([ + expect.objectContaining({ kind: "utility", action: "class-script" }), + ])); }); }); diff --git a/src/game/romAbilitySemantics.ts b/src/game/romAbilitySemantics.ts index 470d402a..213e25a7 100644 --- a/src/game/romAbilitySemantics.ts +++ b/src/game/romAbilitySemantics.ts @@ -63,6 +63,7 @@ export interface RomSourceComponent { }; readonly attack?: { readonly type: number; + readonly calculationType?: number; readonly damagePower: number; readonly damagePowerSkillLevelArg: number; readonly fixedValue: number; @@ -121,6 +122,7 @@ export type RomAbilitySemantic = readonly fixedValue: number; readonly fixedType: number; readonly fixedPerSkillLevel: number; + readonly calculationType: number | null; readonly percentMaxHealth?: number; }) | (RomSemanticBase & { @@ -170,6 +172,7 @@ export type RomAbilitySemantic = readonly operation: "restore" | "drain" | "modify"; readonly amount: number; readonly intervalSeconds: number | null; + readonly durationSeconds?: number; readonly percentage?: boolean; }) | (RomSemanticBase & { @@ -225,9 +228,9 @@ const MODIFIER_NAMES: Readonly> = Object.freeze({ 15: "magical-attack", 16: "physical-hit", 17: "dodge", - 18: "physical-critical-rate", + 18: "physical-critical-strike", 19: "physical-critical-power", - 20: "magical-critical-rate", + 20: "magical-critical-strike", 21: "magical-critical-power", 22: "parry", 23: "attack-speed", @@ -240,6 +243,66 @@ const MODIFIER_NAMES: Readonly> = Object.freeze({ 30: "wind-resistance", 31: "light-resistance", 32: "dark-resistance", + 33: "mana-cost", + 37: "off-hand-damage", + 44: "all-magic-damage", + 45: "earth-damage", + 46: "water-damage", + 47: "fire-damage", + 48: "wind-damage", + 49: "light-damage", + 50: "dark-damage", + 51: "spell-speed", + 52: "ranged-damage", + 56: "melee-damage", + 68: "ranged-attack-speed", + 72: "melee-attack-speed", + 134: "physical-attack-percent", + 135: "physical-defense-percent", + 138: "threat-percent", + 139: "rage-regeneration-percent", + 140: "focus-regeneration-percent", + 141: "energy-regeneration-percent", + 142: "magic-damage-absorption-percent", + 143: "physical-damage-absorption-percent", + 144: "healing-absorption-percent", + 148: "magical-damage-points", + 149: "healing-power-percent", + 150: "healing-points", + 161: "strength-percent", + 162: "stamina-percent", + 163: "intellect-percent", + 164: "wisdom-percent", + 165: "dexterity-percent", + 166: "all-primary-attributes-percent", + 167: "maximum-health-percent", + 168: "maximum-mana-percent", + 170: "magical-defense-percent", + 171: "magical-attack-percent", + 173: "weapon-damage-percent", + 191: "magical-damage", + 192: "magical-damage-percent", + 195: "magical-hit", + 197: "physical-hit-percent", + 198: "physical-dodge-percent", + 199: "magical-hit-percent", + 204: "player-damage-percent", + 205: "npc-damage-percent", + 206: "player-damage-taken-percent", + 207: "npc-damage-taken-percent", + 208: "area-magic-damage-percent", + 209: "area-magic-damage-taken-percent", + 214: "rage-cost-percent", + 215: "energy-cost-percent", + 216: "focus-cost-percent", + 220: "all-resistance-percent", + 221: "earth-resistance-percent", + 222: "water-resistance-percent", + 223: "fire-resistance-percent", + 224: "wind-resistance-percent", + 225: "light-resistance-percent", + 226: "dark-resistance-percent", + 227: "parry-percent", }); const MAGIC_SCHOOLS = ["earth", "water", "fire", "wind", "light", "dark"] as const; @@ -481,6 +544,7 @@ function componentSemantics(component: RomSourceComponent, target: RomAbilityTar operation: dot.base > 0 ? "restore" : "drain", amount: Math.abs(dot.base), intervalSeconds: dot.timeSeconds, + durationSeconds: positiveDuration(component), ...componentSource(component), }, String(component.id)); } @@ -498,6 +562,8 @@ function componentSemantics(component: RomSourceComponent, target: RomAbilityTar fixedValue: Math.abs(attack.fixedValue), fixedType: attack.fixedType, fixedPerSkillLevel: Math.abs(attack.fixedDamageSkillLevelArg), + calculationType: attack.calculationType ?? null, + ...(healing && attack.calculationType === 8 ? { percentMaxHealth: Math.abs(attack.damagePower) / 100 } : {}), ...componentSource(component), }, String(component.id)); } else { @@ -712,7 +778,7 @@ function tooltipSemantics(ability: RomGeneratedAbilityLike, rows: RomAbilitySema }); } if (/(?:deals?|inflicts?|causes?)\b[^.]*\b(?:physical|magical|earth|water|fire|wind|light|dark)?\s*damage/.test(lower) && !hasKind(rows, "damage")) { - rows.push({ kind: "damage", school: "tooltip-defined", power: 0, powerPerSkillLevel: 0, fixedValue: 0, fixedType: 0, fixedPerSkillLevel: 0, ...tooltipSource() }); + rows.push({ kind: "damage", school: "tooltip-defined", power: 0, powerPerSkillLevel: 0, fixedValue: 0, fixedType: 0, fixedPerSkillLevel: 0, calculationType: null, ...tooltipSource() }); } if (/(?:heals?|restores?|recovers?)\b[^.]*\b(?:hp|health)/.test(lower) && !hasKind(rows, "heal") && !hasKind(rows, "hot")) { const percentMaxHealth = firstNumber(lower, /(\d+(?:\.\d+)?)%[^.]*?(?:hp|health)/); @@ -724,6 +790,7 @@ function tooltipSemantics(ability: RomGeneratedAbilityLike, rows: RomAbilitySema fixedValue: 0, fixedType: 0, fixedPerSkillLevel: 0, + calculationType: null, ...(percentMaxHealth === null ? {} : { percentMaxHealth: percentMaxHealth / 100 }), ...tooltipSource(), }); diff --git a/src/game/romCombatRuntime.test.ts b/src/game/romCombatRuntime.test.ts index 268e7a5f..25903123 100644 --- a/src/game/romCombatRuntime.test.ts +++ b/src/game/romCombatRuntime.test.ts @@ -79,6 +79,36 @@ describe("RuneWaker combat runtime", () => { expect(useCombatStore.getState().castAbility(abilityId, undefined, 1_000)).toMatchObject({ ok: true }); }); + it("uses source coefficients for direct damage even without equipment", () => { + useCombatStore.getState().initializeCharacter({ classId: "rom-warrior", raceId: "rom-human", level: 20 }); + useCombatStore.getState().registerMob("coefficient-dummy", { name: "Coefficient Dummy", maxHealth: 1_000 }); + setMobPosition("coefficient-dummy", [3, 0, 0]); + useCombatStore.getState().selectMob("coefficient-dummy"); + useCombatStore.setState((state) => ({ + resource: 100, + resourcePools: { ...state.resourcePools, rage: 100 }, + })); + + expect(useCombatStore.getState().castAbility("rom-warrior-primary-1", undefined, 1_000)).toMatchObject({ ok: true }); + expect(useCombatStore.getState().mobs["coefficient-dummy"]!.health).toBeLessThan(1_000); + }); + + it("finishes a RuneWaker direct heal on the selected party member", () => { + useCombatStore.getState().initializeCharacter({ classId: "rom-priest", raceId: "rom-human", level: 20 }); + usePartyStore.getState().initializeParty("rom-urgent-heal", 20, useCombatStore.getState().health, "healer", 2, "rom"); + const member = usePartyStore.getState().members[0]!; + usePartyStore.getState().damageMember(member.id, 500); + registerPartyRuntimePosition(member.id, [3, 0, 0]); + usePartyStore.getState().selectMember(member.id); + const injuredHealth = usePartyStore.getState().members[0]!.health; + + expect(useCombatStore.getState().castAbility("rom-priest-general-0", undefined, 1_000)).toMatchObject({ ok: true }); + useCombatStore.getState().tick(0.1, 2_100); + + expect(useCombatStore.getState().activeCast).toBeNull(); + expect(usePartyStore.getState().members[0]!.health).toBeGreaterThan(injuredHealth); + }); + it("uses native RoM Rage gains from auto attacks and health damage", () => { useCombatStore.getState().initializeCharacter({ classId: "rom-warrior", @@ -183,4 +213,59 @@ describe("RuneWaker combat runtime", () => { status: "ready", }); }); + + it("chains Plasma Arrow, Electric Compression, and Static Field through their source states", () => { + useCombatStore.getState().initializeCharacter({ classId: "rom-mage", raceId: "rom-human", level: 20 }); + useCombatStore.getState().registerMob("static-dummy", { name: "Static Dummy", maxHealth: 10_000 }); + setMobPosition("static-dummy", [3, 0, 0]); + useCombatStore.getState().selectMob("static-dummy"); + + expect(useCombatStore.getState().castAbility("rom-mage-primary-55", undefined, 1_000)).toMatchObject({ + ok: false, + reason: "condition-not-met", + }); + expect(useCombatStore.getState().castAbility("rom-mage-primary-52", undefined, 2_000)).toMatchObject({ ok: true }); + useCombatStore.getState().tick(0.1, 4_100); + expect(useCombatStore.getState().auras.some((aura) => aura.definition.utilityTags?.includes("rom-charged"))).toBe(true); + + expect(useCombatStore.getState().castAbility("rom-mage-primary-55", undefined, 4_200)).toMatchObject({ ok: true }); + expect(useCombatStore.getState().auras.some((aura) => aura.definition.utilityTags?.includes("rom-charged"))).toBe(false); + expect(useCombatStore.getState().auras.some((aura) => aura.definition.utilityTags?.includes("rom-static-field-charge"))).toBe(true); + + expect(useCombatStore.getState().castAbility("rom-mage-primary-56", undefined, 5_800)).toMatchObject({ ok: true }); + useCombatStore.getState().tick(0.1, 6_900); + expect(useCombatStore.getState().auras.some((aura) => aura.definition.utilityTags?.includes("rom-static-field-charge"))).toBe(false); + }); + + it("lets Remodeled Body prevent lethal damage once", () => { + useCombatStore.getState().initializeCharacter({ classId: "rom-champion", raceId: "rom-dwarf", level: 80 }); + const now = Date.now(); + expect(useCombatStore.getState().castAbility("rom-champion-primary-16", undefined, now)).toMatchObject({ ok: true }); + expect(useCombatStore.getState().auras.some((aura) => aura.definition.utilityTags?.includes("rom-remodeled-body"))).toBe(true); + + useCombatStore.getState().damagePlayer(useCombatStore.getState().maxHealth * 10); + + expect(useCombatStore.getState().health).toBe(useCombatStore.getState().maxHealth); + expect(useCombatStore.getState().auras.some((aura) => aura.definition.utilityTags?.includes("rom-remodeled-body"))).toBe(false); + }); + + it("builds and consumes Revival charges from damage taken", () => { + useCombatStore.getState().initializeCharacter({ + classId: "rom-rogue", + secondaryClassId: "rom-warden", + raceId: "rom-elf", + level: 80, + }); + useCombatStore.getState().damagePlayer(100); + useCombatStore.getState().damagePlayer(100); + useCombatStore.getState().damagePlayer(100); + const revival = useCombatStore.getState().auras.find((aura) => aura.definition.utilityTags?.includes("rom-revival-charge")); + expect(revival?.stacks).toBe(3); + const injuredHealth = useCombatStore.getState().health; + + expect(useCombatStore.getState().castAbility("rom-rogue-rom-warden-elite-60", undefined, Date.now())).toMatchObject({ ok: true }); + + expect(useCombatStore.getState().health).toBeGreaterThan(injuredHealth); + expect(useCombatStore.getState().auras.some((aura) => aura.definition.utilityTags?.includes("rom-revival-charge"))).toBe(false); + }); }); diff --git a/src/game/romPlayerCatalog.generated.json b/src/game/romPlayerCatalog.generated.json index 25af3fb1..45cad9ea 100644 --- a/src/game/romPlayerCatalog.generated.json +++ b/src/game/romPlayerCatalog.generated.json @@ -1 +1 @@ -{"schemaVersion":1,"source":{"rootHint":"RuneWaker source snapshot","hashes":{"learnMagic":"6148199bcd1484ba1a122a6db5e2b3c2f2a161402bfe67fc67eb53f55fc6cfa3","magicCollect":"4aae19865cb07b30f99945aa7319a0096db244ff5e5b4b5d902fc6889474f501","magicObject":"52af13a2d8cfa9a66d4caa2d3c38832edc232f058995a64ef8135a6b82e43691","imageObject":"dd5ffcfd74b253dcecaa2f41a931a634dd45ef5f7c13e849d539ddc47fdee1f9","vocationTable":"f06cdaf60c54415dcbea47e9fa0e77b7527035a2aec73d3289370dc39751e76c","strings":"0c20d43660cb2ee042a78f7a8c18b4e104a263d54dd8c4bc98a54155e8adb3b0","eliteLua":"ee9e337548abd7fc555d85bf2f96813dfd77416c3e65d4cadf74a80838da1486","roleAttr":"8143a90ce826bf3152551a4508d212f186012cbc054e505e426551cb62369c1f","objectStruct":"708f2d087f2654b97d149ab7124d9cdffc915cf8bf18108feff3f1a45f124c20","interfaceFdb":"51bbb5a9d6a19a254b302000d3dd6e3a796f4f759015f3352f576a1055496e30"}},"canonicalClasses":[{"id":"rom-warrior","sourceClassId":1,"name":"Warrior","resource":"rage"},{"id":"rom-scout","sourceClassId":2,"name":"Scout","resource":"focus"},{"id":"rom-rogue","sourceClassId":3,"name":"Rogue","resource":"energy"},{"id":"rom-mage","sourceClassId":4,"name":"Mage","resource":"mana"},{"id":"rom-priest","sourceClassId":5,"name":"Priest","resource":"mana"},{"id":"rom-knight","sourceClassId":6,"name":"Knight","resource":"mana"},{"id":"rom-warden","sourceClassId":7,"name":"Warden","resource":"mana"},{"id":"rom-druid","sourceClassId":8,"name":"Druid","resource":"mana"},{"id":"rom-warlock","sourceClassId":9,"name":"Warlock","resource":"focus"},{"id":"rom-champion","sourceClassId":10,"name":"Champion","resource":"rage"}],"baseStatGrowth":{"rom-warrior":{"strength":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"stamina":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"intellect":{"levelOne":5,"flatGrowth":1.9,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":4,"percentGrowth":0.02},"agility":{"levelOne":12,"flatGrowth":4.25,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-scout":{"strength":{"levelOne":11,"flatGrowth":3.85,"percentGrowth":0.02},"stamina":{"levelOne":10,"flatGrowth":3.65,"percentGrowth":0.02},"intellect":{"levelOne":10,"flatGrowth":3.6,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":4,"percentGrowth":0.02},"agility":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-rogue":{"strength":{"levelOne":12,"flatGrowth":4.15,"percentGrowth":0.02},"stamina":{"levelOne":11,"flatGrowth":3.9,"percentGrowth":0.02},"intellect":{"levelOne":7,"flatGrowth":2.6,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":4,"percentGrowth":0.02},"agility":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-mage":{"strength":{"levelOne":5,"flatGrowth":1.9,"percentGrowth":0.02},"stamina":{"levelOne":9,"flatGrowth":3.4,"percentGrowth":0.02},"intellect":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"agility":{"levelOne":10,"flatGrowth":3.5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-priest":{"strength":{"levelOne":7,"flatGrowth":2.5,"percentGrowth":0.02},"stamina":{"levelOne":10,"flatGrowth":3.6,"percentGrowth":0.02},"intellect":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"agility":{"levelOne":10,"flatGrowth":3.5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-knight":{"strength":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"stamina":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"intellect":{"levelOne":11,"flatGrowth":3.75,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":4,"percentGrowth":0.02},"agility":{"levelOne":11,"flatGrowth":3.9,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-warden":{"strength":{"levelOne":9,"flatGrowth":3.25,"percentGrowth":0.02},"stamina":{"levelOne":9,"flatGrowth":3.4,"percentGrowth":0.02},"intellect":{"levelOne":12,"flatGrowth":4.25,"percentGrowth":0.02},"wisdom":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"agility":{"levelOne":10,"flatGrowth":3.5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-druid":{"strength":{"levelOne":12,"flatGrowth":4.35,"percentGrowth":0.02},"stamina":{"levelOne":12,"flatGrowth":4.15,"percentGrowth":0.02},"intellect":{"levelOne":11,"flatGrowth":4,"percentGrowth":0.02},"wisdom":{"levelOne":11,"flatGrowth":3.85,"percentGrowth":0.02},"agility":{"levelOne":10,"flatGrowth":3.65,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-warlock":{"strength":{"levelOne":26,"flatGrowth":0,"percentGrowth":3.12},"stamina":{"levelOne":19,"flatGrowth":0,"percentGrowth":3.07},"intellect":{"levelOne":17,"flatGrowth":0,"percentGrowth":3.01},"wisdom":{"levelOne":19,"flatGrowth":0,"percentGrowth":3.09},"agility":{"levelOne":19,"flatGrowth":0,"percentGrowth":3.1},"health":{"levelOne":61,"flatGrowth":0,"percentGrowth":3.93},"mana":{"levelOne":41,"flatGrowth":0,"percentGrowth":3.85}},"rom-champion":{"strength":{"levelOne":18,"flatGrowth":0,"percentGrowth":2.8},"stamina":{"levelOne":18,"flatGrowth":0,"percentGrowth":3.035},"intellect":{"levelOne":21,"flatGrowth":0,"percentGrowth":3.015},"wisdom":{"levelOne":26,"flatGrowth":0,"percentGrowth":3.25},"agility":{"levelOne":26,"flatGrowth":0,"percentGrowth":3.03},"health":{"levelOne":54,"flatGrowth":0,"percentGrowth":3.93},"mana":{"levelOne":82,"flatGrowth":0,"percentGrowth":4.12}}},"raceMatrix":{"rom-human":["rom-warrior","rom-scout","rom-rogue","rom-mage","rom-priest","rom-knight"],"rom-elf":["rom-warrior","rom-scout","rom-rogue","rom-mage","rom-warden","rom-druid"],"rom-dwarf":["rom-warrior","rom-rogue","rom-mage","rom-priest","rom-warlock","rom-champion"]},"eliteLevels":[15,20,25,30,35,40,45,50,60,70],"skills":[{"id":"rom-warrior-primary-0","classId":"rom-warrior","group":"primary","unlockLevel":1,"sourceSkillId":490493,"name":"Frenzy","description":"Greatly increases attack speed, accuracy, and damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573727,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500942],"components":[{"id":500942,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-20},{"type":197,"value":50},{"type":56,"value":15}],"abilitySkillLevelArg":1,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490493,"name":"Frenzy","description":"Greatly increases attack speed, accuracy, and damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573727,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500942]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/573727.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-1","classId":"rom-warrior","group":"primary","unlockLevel":2,"sourceSkillId":491133,"name":"Probing Attack","description":"Causes (DMG0) main hand weapon DPS and makes the target Vulnerable.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":574096,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500994,501502],"components":[{"id":500994,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501502,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":8258,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491133,"name":"Probing Attack","description":"Causes (DMG0) main hand weapon DPS and makes the target Vulnerable.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":574096,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500994,501502]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/574096.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-2","classId":"rom-warrior","group":"primary","unlockLevel":2,"sourceSkillId":491136,"name":"Open Flank","description":"When the target is Vulnerable this brute force attack causes (DMG0) main hand weapon DPS to the target and Weakens it.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570821,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501505,501520,501503],"components":[{"id":501505,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":0,"attack":{"type":0,"damagePower":-1.1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501520,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0},{"id":501503,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":8258,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491136,"name":"Open Flank","description":"When the target is Vulnerable this brute force attack causes (DMG0) main hand weapon DPS to the target and Weakens it.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570821,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501505,501520,501503]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/570821.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-3","classId":"rom-warrior","group":"primary","unlockLevel":4,"sourceSkillId":491142,"name":"Tactical Attack","description":"Inflicts (DMG0) main hand weapon DPS and additional damage if target is affected by a Bleed effect caused by Slash. (Requires a two-handed weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577432,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501514,500081],"components":[{"id":501514,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.45,"fixedValue":0,"attack":{"type":0,"damagePower":-0.45,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":2,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500081,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":491142,"name":"Tactical Attack","description":"Inflicts (DMG0) main hand weapon DPS and additional damage if target is affected by a Bleed effect caused by Slash. (Requires a two-handed weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577432,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501514,500081]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/577432.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-4","classId":"rom-warrior","group":"primary","unlockLevel":6,"sourceSkillId":491139,"name":"Thunder","description":"To be used when the target is in Weakened state. Causes (DMG0) main hand weapon DPS with an additional (Buff4-Time) second Stun.\n(For players this effect lasts for (Buff5-Time) seconds.)\n(Requires a one-hand weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570901,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501508,501511,503836,502923],"components":[{"id":501508,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"attack":{"type":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501511,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[150999123,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503836,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[150999123,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502923,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":491139,"name":"Thunder","description":"To be used when the target is in Weakened state. Causes (DMG0) main hand weapon DPS with an additional (Buff4-Time) second Stun.\n(For players this effect lasts for (Buff5-Time) seconds.)\n(Requires a one-hand weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570901,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501508,501511,503836,502923]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/570901.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-5","classId":"rom-warrior","group":"primary","unlockLevel":10,"sourceSkillId":490089,"name":"Feint","description":"After the enemy dodges, (DMG0) main hand weapon DPS are once inflicted on the target. Additionally accuracy increases by 20%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":2000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570899,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500090],"components":[{"id":500090,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490089,"name":"Feint","description":"After the enemy dodges, (DMG0) main hand weapon DPS are once inflicted on the target. Additionally accuracy increases by 20%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":2000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570899,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500090]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/570899.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-6","classId":"rom-warrior","group":"primary","unlockLevel":14,"sourceSkillId":490129,"name":"Surprise Attack","description":"The Surprise Attack causes (DMG0) main hand weapon physical DPS, additionally Knocking down the target. (Must have a distance of at least 60 from the target.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":12000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570895,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620361,500235],"components":[{"id":620361,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":5,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500235,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4179,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490129,"name":"Surprise Attack","description":"The Surprise Attack causes (DMG0) main hand weapon physical DPS, additionally Knocking down the target. (Must have a distance of at least 60 from the target.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":12000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570895,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620361,500235]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/570895.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-7","classId":"rom-warrior","group":"primary","unlockLevel":18,"sourceSkillId":490130,"name":"Taunt","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-621219)%.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570890,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500118,621219],"components":[{"id":500118,"magicFunc":7,"magicType":5,"effectType":0,"effectTime":5,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621219,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":1}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490130,"name":"Taunt","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-621219)%.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570890,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500118,621219]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/570890.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-8","classId":"rom-warrior","group":"primary","unlockLevel":22,"sourceSkillId":490121,"name":"Moon Cleave","description":"Attack multiple targets within range three times. Each attack inflicts (DMG0) main hand weapon DPS. (Requires a two-handed weapon)","target":"self","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570905,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500105],"components":[{"id":500105,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"damagePower":-0.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":2,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490121,"name":"Moon Cleave","description":"Attack multiple targets within range three times. Each attack inflicts (DMG0) main hand weapon DPS. (Requires a two-handed weapon)","target":"self","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570905,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500105]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/570905.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-9","classId":"rom-warrior","group":"primary","unlockLevel":26,"sourceSkillId":490136,"name":"Shout","description":"Stuns up to 5 targets in a range of 90 for (Buff0-Time) seconds.","target":"self","range":9,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":570907,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500125,502719],"components":[{"id":500125,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":59,"effectFlagWords":[151060563,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490136,"name":"Shout","description":"Stuns up to 5 targets in a range of 90 for (Buff0-Time) seconds.","target":"self","range":9,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":570907,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500125,502719]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/570907.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-10","classId":"rom-warrior","group":"passive","unlockLevel":28,"sourceSkillId":490131,"name":"1-H Weapon Mastery","description":"Increases damage with one-handed swords, axes, or hammers by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570894,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620347],"components":[{"id":620347,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":58,"value":5},{"type":61,"value":5},{"type":62,"value":5}],"abilitySkillLevelArg":28,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490131,"name":"1-H Weapon Mastery","description":"Increases damage with one-handed swords, axes, or hammers by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570894,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620347]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/570894.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-11","classId":"rom-warrior","group":"passive","unlockLevel":30,"sourceSkillId":490137,"name":"2-H Weapon Mastery","description":"Increases damage with two-handed swords, axes, or hammers by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570909,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620348],"components":[{"id":620348,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":0,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":63,"value":5},{"type":65,"value":5},{"type":66,"value":5}],"abilitySkillLevelArg":26,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490137,"name":"2-H Weapon Mastery","description":"Increases damage with two-handed swords, axes, or hammers by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570909,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620348]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/570909.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-12","classId":"rom-warrior","group":"primary","unlockLevel":32,"sourceSkillId":490054,"name":"Terror","description":"Force an enemy to flee for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570912,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502011,507288],"components":[{"id":502011,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":4,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":17,"effectFlagWords":[131075,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507288,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":17,"effectFlagWords":[131075,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":490054,"name":"Terror","description":"Force an enemy to flee for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570912,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502011,507288]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/570912.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-13","classId":"rom-warrior","group":"primary","unlockLevel":34,"sourceSkillId":490123,"name":"Aggressiveness","description":"Enhances rage generation by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570918,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500107],"components":[{"id":500107,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":139,"value":20}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490123,"name":"Aggressiveness","description":"Enhances rage generation by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570918,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500107]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/570918.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-14","classId":"rom-warrior","group":"primary","unlockLevel":36,"sourceSkillId":490122,"name":"Survival Instinct","description":"Can only be used when HP is below 50%. Increases [SC_SKILLTIPS_DEF] by (Buff0-0)%, raises the chance of dodging by (Buff4-0)% and increases [SC_SKILLTIPS_PARRY] by (Buff8-0) points for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570916,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500106,506881,506882],"components":[{"id":500106,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":20}],"abilitySkillLevelArg":3.5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495582,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506881,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506882,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":150}],"abilitySkillLevelArg":12.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":490122,"name":"Survival Instinct","description":"Can only be used when HP is below 50%. Increases [SC_SKILLTIPS_DEF] by (Buff0-0)%, raises the chance of dodging by (Buff4-0)% and increases [SC_SKILLTIPS_PARRY] by (Buff8-0) points for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570916,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500106,506881,506882]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/570916.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-15","classId":"rom-warrior","group":"primary","unlockLevel":38,"sourceSkillId":490145,"name":"Group Taunt","description":"Forces multiple targets within a range of 50 to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-621221)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570920,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500134,621221],"components":[{"id":500134,"magicFunc":7,"magicType":5,"effectType":0,"effectTime":4,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621221,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":1}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":490145,"name":"Group Taunt","description":"Forces multiple targets within a range of 50 to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-621221)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570920,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500134,621221]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/570920.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-16","classId":"rom-warrior","group":"primary","unlockLevel":40,"sourceSkillId":490147,"name":"Blasting Cyclone","description":"Causes (DMG0) main hand weapon DPS to multiple targets within range and causes Knockdown.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570924,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500136,500236],"components":[{"id":500136,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"attack":{"type":0,"damagePower":-1,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500236,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4179,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":490147,"name":"Blasting Cyclone","description":"Causes (DMG0) main hand weapon DPS to multiple targets within range and causes Knockdown.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570924,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500136,500236]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/570924.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-0","classId":"rom-warrior","group":"general","unlockLevel":1,"sourceSkillId":490053,"name":"Slash","description":"Inflicts (DMG0) main hand weapon DPS to the target with an additional chance to add Bleed effect. (Bleed effect only with equipped axe or sword.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570816,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500058,500081],"components":[{"id":500058,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500081,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490053,"name":"Slash","description":"Inflicts (DMG0) main hand weapon DPS to the target with an additional chance to add Bleed effect. (Bleed effect only with equipped axe or sword.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570816,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500058,500081]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/570816.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-1","classId":"rom-warrior","group":"general","unlockLevel":4,"sourceSkillId":490492,"name":"Enraged","description":"Immediately increase rage by (DMG0) points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":40000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573710,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500941],"components":[{"id":500941,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"clearFlags":9,"abilityModifiers":[{"type":134,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":20,"fixedValue":0,"attack":{"type":2,"damagePower":20,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490492,"name":"Enraged","description":"Immediately increase rage by (DMG0) points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":40000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573710,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500941]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/573710.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-2","classId":"rom-warrior","group":"general","unlockLevel":8,"sourceSkillId":490133,"name":"Whirlwind","description":"Whirling in place you cause (DMG0) main hand weapon DPS to the targets within range.","target":"self","range":30,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570903,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500122],"components":[{"id":500122,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490133,"name":"Whirlwind","description":"Whirling in place you cause (DMG0) main hand weapon DPS to the targets within range.","target":"self","range":30,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570903,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500122]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/570903.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-3","classId":"rom-warrior","group":"general","unlockLevel":12,"sourceSkillId":490095,"name":"Berserk","description":"Increases [SC_SKILLTIPS_01] by (Buff0-1)% and decreases [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570892,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500096],"components":[{"id":500096,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":64,"abilityModifiers":[{"type":135,"value":-3},{"type":134,"value":3}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490095,"name":"Berserk","description":"Increases [SC_SKILLTIPS_01] by (Buff0-1)% and decreases [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570892,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500096]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/570892.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-4","classId":"rom-warrior","group":"passive","unlockLevel":1,"sourceSkillId":491132,"name":"Equip Axe","description":"Can equip 1-H axes.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":573102,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500993],"components":[{"id":500993,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":88,"value":1},{"type":0,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":491132,"name":"Equip Axe","description":"Can equip 1-H axes.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":573102,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500993]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/573102.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-5","classId":"rom-warrior","group":"general","unlockLevel":16,"sourceSkillId":498031,"name":"Defensive Formation","description":"For (Buff0-Time) seconds, increases [SC_SKILLTIPS_DEF] by (Buff0-0)%, and reduces [SC_SKILLTIPS_01] by (Buff0-1)% and [SC_SKILLTIPS_02] by (Buff0-2)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570910,"sourceEffectType":1,"sourceTarget":0,"componentIds":[620336],"components":[{"id":620336,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":64,"abilityModifiers":[{"type":135,"value":5},{"type":134,"value":-5},{"type":171,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":498031,"name":"Defensive Formation","description":"For (Buff0-Time) seconds, increases [SC_SKILLTIPS_DEF] by (Buff0-0)%, and reduces [SC_SKILLTIPS_01] by (Buff0-1)% and [SC_SKILLTIPS_02] by (Buff0-2)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570910,"sourceEffectType":1,"sourceTarget":0,"componentIds":[620336]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/570910.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-6","classId":"rom-warrior","group":"passive","unlockLevel":20,"sourceSkillId":490125,"name":"Brute Strength","description":"Permanently increases [SC_SKILLTIPS_STR] by (current [SC_SKILLTIPS_STR] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":3000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570818,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500109],"components":[{"id":500109,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":26,"abilityModifiers":[{"type":2,"value":11},{"type":161,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490125,"name":"Brute Strength","description":"Permanently increases [SC_SKILLTIPS_STR] by (current [SC_SKILLTIPS_STR] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":3000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570818,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500109]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/570818.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-0","classId":"rom-scout","group":"primary","unlockLevel":1,"sourceSkillId":490494,"name":"Arrow of Essence","description":"Enhances ranged weapon damage by (Buff0-0)% and raises attack speed by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572332,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500939],"components":[{"id":500939,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":52,"value":40},{"type":23,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-4,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490494,"name":"Arrow of Essence","description":"Enhances ranged weapon damage by (Buff0-0)% and raises attack speed by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572332,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500939]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/572332.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-1","classId":"rom-scout","group":"primary","unlockLevel":2,"sourceSkillId":491128,"name":"Wind Arrows","description":"Quick shot at the target, causing (DMG0) ranged weapon DPS.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575129,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501677,501529,501530,501565],"components":[{"id":501677,"magicFunc":0,"magicType":3,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[8192,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.35,"fixedValue":0,"attack":{"type":0,"damagePower":-0.35,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501529,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501530,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501565,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491128,"name":"Wind Arrows","description":"Quick shot at the target, causing (DMG0) ranged weapon DPS.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575129,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501677,501529,501530,501565]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/575129.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-2","classId":"rom-scout","group":"passive","unlockLevel":6,"sourceSkillId":490445,"name":"Ranged Weapon Mastery","description":"Bow and crossbow accuracy is increased by (Buff0-0)%, and damage is increased by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":3,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572307,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500904],"components":[{"id":500904,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":63,"abilityModifiers":[{"type":197,"value":8},{"type":53,"value":8},{"type":54,"value":8}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":490445,"name":"Ranged Weapon Mastery","description":"Bow and crossbow accuracy is increased by (Buff0-0)%, and damage is increased by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":3,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572307,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500904]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/572307.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-3","classId":"rom-scout","group":"primary","unlockLevel":12,"sourceSkillId":490441,"name":"Mana Drain Shot","description":"Inflicts (DMG0) ranged weapon DPS to the target and reduces its [SC_SKILLTIPS_MDMG] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572301,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500222,507226],"components":[{"id":500222,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":507226,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":164,"abilityModifiers":[{"type":192,"value":-1}],"abilitySkillLevelArg":19,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490441,"name":"Mana Drain Shot","description":"Inflicts (DMG0) ranged weapon DPS to the target and reduces its [SC_SKILLTIPS_MDMG] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572301,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500222,507226]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/572301.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-4","classId":"rom-scout","group":"primary","unlockLevel":14,"sourceSkillId":490454,"name":"Lasso","description":"Throw a lasso, rooting the enemy for (Buff0-Time) seconds. This effect will disappear if the target is further attacked. \n(For players this effect lasts for (Buff1-Time) seconds if not further attacked.)\n(Only one target at a time can be kept under control.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572314,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500924,502955],"components":[{"id":500924,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502955,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490454,"name":"Lasso","description":"Throw a lasso, rooting the enemy for (Buff0-Time) seconds. This effect will disappear if the target is further attacked. \n(For players this effect lasts for (Buff1-Time) seconds if not further attacked.)\n(Only one target at a time can be kept under control.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572314,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500924,502955]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/572314.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-5","classId":"rom-scout","group":"primary","unlockLevel":18,"sourceSkillId":490400,"name":"Piercing Arrow","description":"Fires a piercing arrow at the target and all enemies in a straight line behind the target for (DMG0) ranged weapon DPS + (FixDMG-500935) damage .","target":"hostile","range":4,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"dot","coefficient":0.2,"ticks":2,"intervalMs":2000},"source":{"imageId":572330,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500935],"components":[{"id":500935,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":8,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":3,"dotBase":-3,"dot":{"timeSeconds":1,"type":3,"base":-3,"skillLevelArg":5},"attackType":0,"damagePower":-0.7,"fixedValue":-20,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-20,"fixedType":0,"fixedDamageSkillLevelArg":15,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490400,"name":"Piercing Arrow","description":"Fires a piercing arrow at the target and all enemies in a straight line behind the target for (DMG0) ranged weapon DPS + (FixDMG-500935) damage .","target":"hostile","range":4,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"dot","coefficient":0.2,"ticks":2,"intervalMs":2000},"source":{"imageId":572330,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500935]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/572330.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-6","classId":"rom-scout","group":"passive","unlockLevel":20,"sourceSkillId":490425,"name":"Eagle Eyes","description":"Your chance to deal critical damage is permanently increased by (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572289,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500858],"components":[{"id":500858,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490425,"name":"Eagle Eyes","description":"Your chance to deal critical damage is permanently increased by (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572289,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500858]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/572289.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-7","classId":"rom-scout","group":"primary","unlockLevel":22,"sourceSkillId":490450,"name":"Snipe","description":"For Snipe, your range is increased by 60 and deals (DMG0) ranged weapon DPS plus (FixDMG-500909) damage. (Will be interrupted as soon as damage is taken.)","target":"hostile","range":6,"castTimeMs":3000,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":572310,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500909],"components":[{"id":500909,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-2.5,"fixedValue":-100,"attack":{"type":0,"damagePower":-2.5,"damagePowerSkillLevelArg":6,"fixedValue":-100,"fixedType":0,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490450,"name":"Snipe","description":"For Snipe, your range is increased by 60 and deals (DMG0) ranged weapon DPS plus (FixDMG-500909) damage. (Will be interrupted as soon as damage is taken.)","target":"hostile","range":6,"castTimeMs":3000,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":572310,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500909]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/572310.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-8","classId":"rom-scout","group":"primary","unlockLevel":26,"sourceSkillId":490463,"name":"Detection","description":"While the skill lasts the caster can detect nearby hidden enemies. (This skill costs 5 focus points every three seconds. Status disappears once focus reaches 0.)","target":"self","range":3,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":9,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572324,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500933],"components":[{"id":500933,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":62,"effectFlagWords":[1024,0],"clearFlags":256,"abilitySkillLevelArg":0,"dotTime":3,"dotType":3,"dotBase":-5,"dot":{"timeSeconds":3,"type":3,"base":-5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490463,"name":"Detection","description":"While the skill lasts the caster can detect nearby hidden enemies. (This skill costs 5 focus points every three seconds. Status disappears once focus reaches 0.)","target":"self","range":3,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":9,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572324,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500933]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/572324.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-9","classId":"rom-scout","group":"primary","unlockLevel":30,"sourceSkillId":490424,"name":"Combo Shot","description":"Fires triple shots at the target causing (DMG0) ranged weapon DPS. (Will be interrupted as soon as damage is taken.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":8000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572287,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500857],"components":[{"id":500857,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.45,"fixedValue":0,"attack":{"type":0,"damagePower":-0.45,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490424,"name":"Combo Shot","description":"Fires triple shots at the target causing (DMG0) ranged weapon DPS. (Will be interrupted as soon as damage is taken.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":8000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572287,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500857]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/572287.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-10","classId":"rom-scout","group":"primary","unlockLevel":34,"sourceSkillId":490438,"name":"Neck Strike","description":"Target is Stunned for (Buff0-Time) seconds. (Effect removed when attacked.)\n(For players this effect lasts for (Buff1-Time) seconds.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572298,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500877,503863,502719],"components":[{"id":500877,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":59,"effectFlagWords":[67,0],"clearFlags":2,"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503863,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":59,"effectFlagWords":[67,0],"clearFlags":2,"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490438,"name":"Neck Strike","description":"Target is Stunned for (Buff0-Time) seconds. (Effect removed when attacked.)\n(For players this effect lasts for (Buff1-Time) seconds.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572298,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500877,503863,502719]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/572298.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-11","classId":"rom-scout","group":"primary","unlockLevel":36,"sourceSkillId":490457,"name":"Reflected Shot","description":"Causes (DMG0) ranged weapon DPS. Shot will deflect 2 times to other targets within range. Damage decreases by half each time.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572316,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500927],"components":[{"id":500927,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":490457,"name":"Reflected Shot","description":"Causes (DMG0) ranged weapon DPS. Shot will deflect 2 times to other targets within range. Damage decreases by half each time.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572316,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500927]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/572316.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-12","classId":"rom-scout","group":"primary","unlockLevel":38,"sourceSkillId":490460,"name":"Concentration","description":"For (Buff0-Time) seconds, focus regeneration speed is increased by (Buff0-0)%.","target":"self","range":3,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572323,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500930],"components":[{"id":500930,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":24,"abilityModifiers":[{"type":140,"value":50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":490460,"name":"Concentration","description":"For (Buff0-Time) seconds, focus regeneration speed is increased by (Buff0-0)%.","target":"self","range":3,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572323,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500930]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/572323.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-13","classId":"rom-scout","group":"primary","unlockLevel":40,"sourceSkillId":490464,"name":"Target Area","description":"While the effect lasts, your accuracy is increased by (Buff4-0)% and the critical hit rate is increased by (Buff0-0). (This skill costs (Buff0-Dot) focus per second. Effect disappears once focus reaches 0.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572326,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500934,507339],"components":[{"id":500934,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":180,"hateCost":-10,"settingFlags":235,"specialActionFlags":0,"assistType":32,"clearFlags":256,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":39,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497740,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":3,"dotBase":-3,"dot":{"timeSeconds":1,"type":3,"base":-3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507339,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":180,"hateCost":-10,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"clearFlags":256,"abilityModifiers":[{"type":197,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":490464,"name":"Target Area","description":"While the effect lasts, your accuracy is increased by (Buff4-0)% and the critical hit rate is increased by (Buff0-0). (This skill costs (Buff0-Dot) focus per second. Effect disappears once focus reaches 0.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572326,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500934,507339]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/572326.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-55","classId":"rom-scout","group":"primary","unlockLevel":10,"sourceSkillId":491163,"name":"Frost Arrow","description":"For (Buff0-Time) seconds, all Wind Arrow shots will have a chance of adding Frost, slowing down target for 6 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572304,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501530],"components":[{"id":501530,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":491163,"name":"Frost Arrow","description":"For (Buff0-Time) seconds, all Wind Arrow shots will have a chance of adding Frost, slowing down target for 6 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572304,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501530]}}],"sourceFamily":"primary:55","icon":"/assets/ui/rom-spells/572304.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-56","classId":"rom-scout","group":"passive","unlockLevel":20,"sourceSkillId":491173,"name":"Cripple Joint","description":"Adds a 55% chance to your Joint Blow to Root the target for 5 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":491173,"name":"Cripple Joint","description":"Adds a 55% chance to your Joint Blow to Root the target for 5 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"sourceFamily":"primary:56","icon":"/assets/ui/rom-spells/572282.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-57","classId":"rom-scout","group":"primary","unlockLevel":1,"sourceSkillId":492589,"name":"Autoshot","description":"Fires a shot at the target inflicting ranged weapon Damage. (Afterwards Autoshot modus will be active.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":573064,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501579],"components":[{"id":501579,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":492589,"name":"Autoshot","description":"Fires a shot at the target inflicting ranged weapon Damage. (Afterwards Autoshot modus will be active.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":573064,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501579]}}],"sourceFamily":"primary:57","icon":"/assets/ui/rom-spells/573064.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-0","classId":"rom-scout","group":"general","unlockLevel":1,"sourceSkillId":490423,"name":"Shot","description":"Fires one shot at the target causing (DMG0) ranged weapon DPS.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572285,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500856,501959,501955,503188,503187,620221,620178,620222,620179],"components":[{"id":500856,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"damagePower":-0.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501959,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":26,"abilityModifiers":[{"type":2,"value":10}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"attack":{"type":0,"damagePower":-10,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501955,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":20,"value":150}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0},{"id":503188,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"attack":{"type":0,"damagePower":-10,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503187,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":195,"value":50}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620221,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":26,"abilityModifiers":[{"type":2,"value":10}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-10,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620178,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":20,"value":20}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0},{"id":620222,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-10,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620179,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":195,"value":10}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490423,"name":"Shot","description":"Fires one shot at the target causing (DMG0) ranged weapon DPS.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572285,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500856,501959,501955,503188,503187,620221,620178,620222,620179]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/572285.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-1","classId":"rom-scout","group":"passive","unlockLevel":1,"sourceSkillId":490448,"name":"Bow Training","description":"Can equip bows and crossbows","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572308,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500907],"components":[{"id":500907,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":95,"value":1},{"type":96,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490448,"name":"Bow Training","description":"Can equip bows and crossbows","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572308,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500907]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/572308.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-2","classId":"rom-scout","group":"general","unlockLevel":4,"sourceSkillId":491292,"name":"Vampire Arrows","description":"Inflicts (DMG0) ranged weapon DPS and additionally consumes the target's (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575130,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501693,501690],"components":[{"id":501693,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.55,"fixedValue":0,"attack":{"type":0,"damagePower":-0.55,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501690,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":491292,"name":"Vampire Arrows","description":"Inflicts (DMG0) ranged weapon DPS and additionally consumes the target's (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575130,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501693,501690]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/575130.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-3","classId":"rom-scout","group":"general","unlockLevel":8,"sourceSkillId":490420,"name":"Joint Blow","description":"Causes (DMG0) points of physical damage and Slows the target by 40% for (Buff4-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":572282,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500845,500848,503862,501559,504258],"components":[{"id":500845,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-16.4,"fixedValue":0,"attack":{"type":0,"damagePower":-16.4,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500848,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503862,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501559,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504258,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490420,"name":"Joint Blow","description":"Causes (DMG0) points of physical damage and Slows the target by 40% for (Buff4-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":572282,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500845,500848,503862,501559,504258]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/572282.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-4","classId":"rom-scout","group":"general","unlockLevel":12,"sourceSkillId":490434,"name":"Blood Arrow","description":"For (Buff0-Time) seconds, your HP is reduced by (Buff0-Dot)% every second and the physical attack of your ranged weapons is increased by (Buff0-0)%. (Right-click the buff icon to stop the effect.)","target":"self","range":3,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572294,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500871],"components":[{"id":500871,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":65643,"specialActionFlags":0,"assistType":8,"clearFlags":1056,"abilityModifiers":[{"type":52,"value":10}],"abilitySkillLevelArg":9,"dotTime":1,"dotType":5,"dotBase":-3,"dot":{"timeSeconds":1,"type":5,"base":-3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":-5,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490434,"name":"Blood Arrow","description":"For (Buff0-Time) seconds, your HP is reduced by (Buff0-Dot)% every second and the physical attack of your ranged weapons is increased by (Buff0-0)%. (Right-click the buff icon to stop the effect.)","target":"self","range":3,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572294,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500871]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/572294.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-5","classId":"rom-scout","group":"general","unlockLevel":16,"sourceSkillId":490428,"name":"Throat Attack","description":"Causes (DMG0) physical damage and interrupts the target's spell casting. (The interrupted spell will enter a cooldown phase. If the interrupted spell has no cooldown, all spells will enter a cooldown time of 3 seconds.)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":572290,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500864,502703],"components":[{"id":500864,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-16.4,"fixedValue":0,"attack":{"type":0,"damagePower":-16.4,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502703,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490428,"name":"Throat Attack","description":"Causes (DMG0) physical damage and interrupts the target's spell casting. (The interrupted spell will enter a cooldown phase. If the interrupted spell has no cooldown, all spells will enter a cooldown time of 3 seconds.)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":572290,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500864,502703]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/572290.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-6","classId":"rom-scout","group":"general","unlockLevel":20,"sourceSkillId":490451,"name":"Wrist Attack","description":"Damage dealt by the target is decreased by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572312,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500921],"components":[{"id":500921,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":60,"effectFlagWords":[524288,0],"abilityModifiers":[{"type":173,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490451,"name":"Wrist Attack","description":"Damage dealt by the target is decreased by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572312,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500921]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/572312.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-7","classId":"rom-scout","group":"passive","unlockLevel":24,"sourceSkillId":491159,"name":"Swiftness","description":"Permanently increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570818,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501521],"components":[{"id":501521,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":30,"abilityModifiers":[{"type":6,"value":11},{"type":165,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":491159,"name":"Swiftness","description":"Permanently increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570818,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501521]}}],"sourceFamily":"general:7","icon":"/assets/ui/rom-spells/570818.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-8","classId":"rom-scout","group":"passive","unlockLevel":28,"sourceSkillId":490505,"name":"Speed Shooting Mastery","description":"The speed of bows and crossbows is increased by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572286,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500959],"components":[{"id":500959,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":69,"value":-11},{"type":70,"value":-11}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490505,"name":"Speed Shooting Mastery","description":"The speed of bows and crossbows is increased by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572286,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500959]}}],"sourceFamily":"general:8","icon":"/assets/ui/rom-spells/572286.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-0","classId":"rom-rogue","group":"primary","unlockLevel":1,"sourceSkillId":490506,"name":"Assassins Rage","description":"For (Buff0-Time) seconds, the chance to deal critical hits is raised by (Buff0-0), and during that time critical damage is enhanced as well.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573049,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500960],"components":[{"id":500960,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":1500},{"type":19,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490506,"name":"Assassins Rage","description":"For (Buff0-Time) seconds, the chance to deal critical hits is raised by (Buff0-0), and during that time critical damage is enhanced as well.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573049,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500960]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/573049.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-1","classId":"rom-rogue","group":"primary","unlockLevel":2,"sourceSkillId":490323,"name":"Low Blow","description":"Inflicts (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage, and if the target already suffers a Bleed effect, it can cause an additional Grievous Wound for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571981,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620312,620314],"components":[{"id":620312,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-1,"damagePowerSkillLevelArg":7,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620314,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":53,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":490323,"name":"Low Blow","description":"Inflicts (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage, and if the target already suffers a Bleed effect, it can cause an additional Grievous Wound for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571981,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620312,620314]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/571981.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-2","classId":"rom-rogue","group":"primary","unlockLevel":6,"sourceSkillId":490313,"name":"Wound Attack","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. For each Bleeding or Grievous Wound caused by the Rogue skills (cast by you), Wound Attack can cause additional damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570831,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620278,620279,620280],"components":[{"id":620278,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.05,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-1.05,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620279,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.85,"damagePowerSkillLevelArg":7,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620280,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.85,"damagePowerSkillLevelArg":7,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":490313,"name":"Wound Attack","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. For each Bleeding or Grievous Wound caused by the Rogue skills (cast by you), Wound Attack can cause additional damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570831,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620278,620279,620280]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/570831.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-3","classId":"rom-rogue","group":"passive","unlockLevel":10,"sourceSkillId":490504,"name":"Dagger Mastery","description":"Increases dagger damage by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570915,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620334],"components":[{"id":620334,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":59,"value":10}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490504,"name":"Dagger Mastery","description":"Increases dagger damage by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570915,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620334]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/570915.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-4","classId":"rom-rogue","group":"primary","unlockLevel":14,"sourceSkillId":490311,"name":"Blind Spot","description":"Attacks target from behind, causing (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage and adds a bleeding that deals (Buff4-Dot) damage every 2 seconds for (Buff4-Time) seconds. (Must hold a dagger and be behind the target.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570827,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620282,620297],"components":[{"id":620282,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.5,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-1.5,"damagePowerSkillLevelArg":5,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620297,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490311,"name":"Blind Spot","description":"Attacks target from behind, causing (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage and adds a bleeding that deals (Buff4-Dot) damage every 2 seconds for (Buff4-Time) seconds. (Must hold a dagger and be behind the target.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570827,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620282,620297]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/570827.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-5","classId":"rom-rogue","group":"primary","unlockLevel":16,"sourceSkillId":490347,"name":"Numbing Dagger","description":"Throws a poisoned dagger that can numb the target for (Buff0-Time) seconds. Can only be used on Humanoids and living creatures. (Requires you to be Poisonous; consumes 1 projectile, the numbed target awakens when attacked; only one target at a time can be kept under control.)\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572005,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500737,503046],"components":[{"id":500737,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":50,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[33554515,0],"clearFlags":1026,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503046,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":50,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[33554515,0],"clearFlags":1026,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490347,"name":"Numbing Dagger","description":"Throws a poisoned dagger that can numb the target for (Buff0-Time) seconds. Can only be used on Humanoids and living creatures. (Requires you to be Poisonous; consumes 1 projectile, the numbed target awakens when attacked; only one target at a time can be kept under control.)\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572005,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500737,503046]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/572005.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-6","classId":"rom-rogue","group":"primary","unlockLevel":16,"sourceSkillId":490329,"name":"Poison","description":"For (Buff0-Time) seconds normal attacks have a 50% chance to add Poisoned effects and the target's damage is lowered by 2%. (Can be stacked four times, consumes 1 poison bottle.)","target":"self","range":0.1,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571984,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500715],"components":[{"id":500715,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":106,"onAttackTrigger":{"rate":50,"rank":0,"id":490357},"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490329,"name":"Poison","description":"For (Buff0-Time) seconds normal attacks have a 50% chance to add Poisoned effects and the target's damage is lowered by 2%. (Can be stacked four times, consumes 1 poison bottle.)","target":"self","range":0.1,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571984,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500715]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/571984.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-7","classId":"rom-rogue","group":"primary","unlockLevel":18,"sourceSkillId":490312,"name":"Hide","description":"You go into hiding to avoid discovery by the enemy. Your movement speed is reduced by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570829,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500675],"components":[{"id":500675,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":163,"specialActionFlags":0,"assistType":52,"effectFlagWords":[512,0],"clearFlags":11,"abilityModifiers":[{"type":24,"value":-50}],"abilitySkillLevelArg":-1.2,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":850537,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490312,"name":"Hide","description":"You go into hiding to avoid discovery by the enemy. Your movement speed is reduced by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570829,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500675]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/570829.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-8","classId":"rom-rogue","group":"primary","unlockLevel":18,"sourceSkillId":490507,"name":"Premeditation","description":"Makes your next attack a critical attack, and the power of the critical attack is increased by (Buff0-0)%. (Cannot be used in combat.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571991,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500961],"components":[{"id":500961,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,64],"clearFlags":28673,"abilityModifiers":[{"type":19,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490507,"name":"Premeditation","description":"Makes your next attack a critical attack, and the power of the critical attack is increased by (Buff0-0)%. (Cannot be used in combat.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571991,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500961]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/571991.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-9","classId":"rom-rogue","group":"primary","unlockLevel":22,"sourceSkillId":490337,"name":"Sneak Attack","description":"By attacking the target from behind, Sneak Attack causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage with an additional (Buff4-Time)-second Stun and (Buff8-Time)-second Bleed effect. (Cannot be used when already in combat. Can only be used when behind the target. Requires dagger to cause Bleed effect.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571989,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620284,500725,500726],"components":[{"id":620284,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500725,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777283,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"summonCreatureId":0},{"id":500726,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":35,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":5},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490337,"name":"Sneak Attack","description":"By attacking the target from behind, Sneak Attack causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage with an additional (Buff4-Time)-second Stun and (Buff8-Time)-second Bleed effect. (Cannot be used when already in combat. Can only be used when behind the target. Requires dagger to cause Bleed effect.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571989,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620284,500725,500726]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/571989.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-10","classId":"rom-rogue","group":"passive","unlockLevel":26,"sourceSkillId":490316,"name":"Treasure Hunter","description":"Increases your and your party's chances of finding items by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570833,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500679],"components":[{"id":500679,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":35,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490316,"name":"Treasure Hunter","description":"Increases your and your party's chances of finding items by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570833,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500679]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/570833.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-11","classId":"rom-rogue","group":"primary","unlockLevel":30,"sourceSkillId":490354,"name":"Vanish","description":"Vanish from sight for (Buff0-Time) seconds, removing all aggro and leaving combat.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":572014,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500745,501567],"components":[{"id":500745,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501567,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":16,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490354,"name":"Vanish","description":"Vanish from sight for (Buff0-Time) seconds, removing all aggro and leaving combat.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":572014,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500745,501567]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/572014.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-12","classId":"rom-rogue","group":"passive","unlockLevel":32,"sourceSkillId":490143,"name":"Off Hand Mastery","description":"Increase off hand damage by (Buff0-0)% and accuracy by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570915,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620335],"components":[{"id":620335,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":0,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":36,"value":4},{"type":37,"value":4}],"abilitySkillLevelArg":7,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":490143,"name":"Off Hand Mastery","description":"Increase off hand damage by (Buff0-0)% and accuracy by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570915,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620335]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/570915.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-13","classId":"rom-rogue","group":"primary","unlockLevel":34,"sourceSkillId":490341,"name":"Sprint","description":"Increases movement speed by (Buff0-0)% for 30 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":10,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571995,"sourceEffectType":1,"sourceTarget":4,"componentIds":[500729],"components":[{"id":500729,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":137,"clearFlags":512,"abilityModifiers":[{"type":24,"value":10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490341,"name":"Sprint","description":"Increases movement speed by (Buff0-0)% for 30 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":10,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571995,"sourceEffectType":1,"sourceTarget":4,"componentIds":[500729]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/571995.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-14","classId":"rom-rogue","group":"primary","unlockLevel":36,"sourceSkillId":490355,"name":"Evasion","description":"Increases dodge rate by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572016,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500744],"components":[{"id":500744,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":31,"abilityModifiers":[{"type":198,"value":10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":490355,"name":"Evasion","description":"Increases dodge rate by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572016,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500744]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/572016.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-15","classId":"rom-rogue","group":"primary","unlockLevel":38,"sourceSkillId":490338,"name":"Combo Throw","description":"Throws 2 hidden weapons in series, each of which causes (DMG0) damage, based on the DPS of the main hand weapon + (FixDMG0) x [SC_SKILLTIPS_THROWDMG] [SC_SKILLTIPS_DMG|physical damage].\n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571993,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502578,620283],"components":[{"id":502578,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-3,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":5.5,"fixedValue":-3,"fixedType":4,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620283,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-3,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":5.5,"fixedValue":-3,"fixedType":4,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":490338,"name":"Combo Throw","description":"Throws 2 hidden weapons in series, each of which causes (DMG0) damage, based on the DPS of the main hand weapon + (FixDMG0) x [SC_SKILLTIPS_THROWDMG] [SC_SKILLTIPS_DMG|physical damage].\n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571993,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502578,620283]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/571993.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-16","classId":"rom-rogue","group":"primary","unlockLevel":40,"sourceSkillId":490346,"name":"Shadow Prison","description":"Binds the enemy's shadow. The target cannot move or use skills for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572003,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500735,503861,502719],"components":[{"id":500735,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503861,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":490346,"name":"Shadow Prison","description":"Binds the enemy's shadow. The target cannot move or use skills for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572003,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500735,503861,502719]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/572003.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-17","classId":"rom-rogue","group":"primary","unlockLevel":42,"sourceSkillId":490350,"name":"Informer","description":"Increases party members' chance to deal critical hits by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572009,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620298],"components":[{"id":620298,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":42,"prerequisites":[],"sourceSkillId":490350,"name":"Informer","description":"Increases party members' chance to deal critical hits by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572009,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620298]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/572009.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-18","classId":"rom-rogue","group":"primary","unlockLevel":44,"sourceSkillId":490333,"name":"Fervent Attack","description":"For (Buff0-Time) seconds, [SC_SKILLTIPS_DPS] is increased by (Buff0-0)% and [SC_SKILLTIPS_DEF] is decreased by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571987,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500719],"components":[{"id":500719,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":9,"abilityModifiers":[{"type":23,"value":-5},{"type":135,"value":-5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":44,"prerequisites":[],"sourceSkillId":490333,"name":"Fervent Attack","description":"For (Buff0-Time) seconds, [SC_SKILLTIPS_DPS] is increased by (Buff0-0)% and [SC_SKILLTIPS_DEF] is decreased by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571987,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500719]}}],"sourceFamily":"primary:18","icon":"/assets/ui/rom-spells/571987.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-0","classId":"rom-rogue","group":"general","unlockLevel":1,"sourceSkillId":490306,"name":"Shadowstab","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage with an additional Bleed effect. For (Buff4-Time) seconds Bleed causes (Buff4-Dot) damage every 2 seconds. (Extra effect is produced only if the main hand is wielding a dagger.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570822,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620277,620313],"components":[{"id":620277,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620313,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":45},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490306,"name":"Shadowstab","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage with an additional Bleed effect. For (Buff4-Time) seconds Bleed causes (Buff4-Dot) damage every 2 seconds. (Extra effect is produced only if the main hand is wielding a dagger.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570822,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620277,620313]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/570822.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-1","classId":"rom-rogue","group":"general","unlockLevel":4,"sourceSkillId":490309,"name":"Throw","description":"Throws a hidden weapon at the target, causing (DMG0) main hand weapon DPS plus (FixDMG0) x [SC_SKILLTIPS_THROWDMG] [SC_SKILLTIPS_DMG|physical damage].\n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570824,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502578,620283],"components":[{"id":502578,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-3,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":5.5,"fixedValue":-3,"fixedType":4,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620283,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-3,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":5.5,"fixedValue":-3,"fixedType":4,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490309,"name":"Throw","description":"Throws a hidden weapon at the target, causing (DMG0) main hand weapon DPS plus (FixDMG0) x [SC_SKILLTIPS_THROWDMG] [SC_SKILLTIPS_DMG|physical damage].\n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570824,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502578,620283]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/570824.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-2","classId":"rom-rogue","group":"general","unlockLevel":8,"sourceSkillId":490317,"name":"Blind Stab","description":"Inflicts (DMG0) damage, based on the DPS of the main hand weapon, + (FixDMG0) x Dexterity [SC_SKILLTIPS_DMG|physical damage] with an additional Blind effect for (Buff4-Time) seconds. (Must be in front of the target to use skill.) \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571977,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620281,500691,503835],"components":[{"id":620281,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500691,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"effectFlagWords":[32,0],"abilityModifiers":[{"type":197,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503835,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"effectFlagWords":[32,0],"abilityModifiers":[{"type":197,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490317,"name":"Blind Stab","description":"Inflicts (DMG0) damage, based on the DPS of the main hand weapon, + (FixDMG0) x Dexterity [SC_SKILLTIPS_DMG|physical damage] with an additional Blind effect for (Buff4-Time) seconds. (Must be in front of the target to use skill.) \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571977,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620281,500691,503835]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/571977.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-3","classId":"rom-rogue","group":"passive","unlockLevel":12,"sourceSkillId":490310,"name":"Projectile Training","description":"Can equip projectiles.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570826,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500658],"components":[{"id":500658,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":98,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490310,"name":"Projectile Training","description":"Can equip projectiles.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570826,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500658]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/570826.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-4","classId":"rom-rogue","group":"passive","unlockLevel":16,"sourceSkillId":490146,"name":"Off Hand Training","description":"1-H weapons can be held in off hand.\n(Class-related limitations still apply.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570914,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500135],"components":[{"id":500135,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":106,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490146,"name":"Off Hand Training","description":"1-H weapons can be held in off hand.\n(Class-related limitations still apply.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570914,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500135]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/570914.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-5","classId":"rom-rogue","group":"passive","unlockLevel":20,"sourceSkillId":490326,"name":"Agility","description":"Permanently increases dodge rate by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":571983,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500707],"components":[{"id":500707,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":2}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490326,"name":"Agility","description":"Permanently increases dodge rate by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":571983,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500707]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/571983.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-6","classId":"rom-rogue","group":"passive","unlockLevel":24,"sourceSkillId":490332,"name":"Nimble Hands","description":"Increases attack speed by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":571986,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500718],"components":[{"id":500718,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-2}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":490332,"name":"Nimble Hands","description":"Increases attack speed by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":571986,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500718]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/571986.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-7","classId":"rom-rogue","group":"general","unlockLevel":28,"sourceSkillId":490344,"name":"Shadow Step","description":"Instantly move behind the target.","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571999,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500733,621406,621482],"components":[{"id":500733,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621406,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10},{"type":50,"value":10}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621482,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":19,"value":1},{"type":23,"value":-10}],"abilitySkillLevelArg":45,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490344,"name":"Shadow Step","description":"Instantly move behind the target.","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571999,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500733,621406,621482]}}],"sourceFamily":"general:7","icon":"/assets/ui/rom-spells/571999.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-0","classId":"rom-mage","group":"primary","unlockLevel":1,"sourceSkillId":490238,"name":"Elemental Catalysis","description":"For (Buff0-Time) seconds magical damage is enhanced by (Buff0-0)% and every 2 seconds (Buff0-Dot)% Mana is regained.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572036,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500339],"components":[{"id":500339,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":20}],"abilitySkillLevelArg":0,"dotTime":2,"dotType":6,"dotBase":2,"dot":{"timeSeconds":2,"type":6,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490238,"name":"Elemental Catalysis","description":"For (Buff0-Time) seconds magical damage is enhanced by (Buff0-0)% and every 2 seconds (Buff0-Dot)% Mana is regained.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572036,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500339]}},{"rank":2,"level":65,"prerequisites":[490238],"sourceSkillId":497971,"name":"Elemental Catalysis","description":"Increases magical damage by (Buff0-0)% and spellcasting speed by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572036,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620176],"components":[{"id":620176,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":20},{"type":51,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":6,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/572036.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-1","classId":"rom-mage","group":"primary","unlockLevel":1,"sourceSkillId":491150,"name":"Flame","description":"Launches a searing fireball, which deals (DMG0) points of Fire damage.","target":"hostile","range":22.5,"castTimeMs":3000,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":574090,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501531,500379],"components":[{"id":501531,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500379,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-27.1,"fixedValue":-0.01,"attack":{"type":0,"damagePower":-27.1,"damagePowerSkillLevelArg":18.3,"fixedValue":-0.01,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":491150,"name":"Flame","description":"Launches a searing fireball, which deals (DMG0) points of Fire damage.","target":"hostile","range":22.5,"castTimeMs":3000,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":574090,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501531,500379]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/574090.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-2","classId":"rom-mage","group":"primary","unlockLevel":2,"sourceSkillId":491156,"name":"Electrostatic Charge","description":"Absorbs as much damage as (Buff0-Shield)% of your maximum HP for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":75,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":572033,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620209],"components":[{"id":620209,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":490363,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":2,"skillLevelArg":28}}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491156,"name":"Electrostatic Charge","description":"Absorbs as much damage as (Buff0-Shield)% of your maximum HP for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":75,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":572033,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620209]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/572033.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-3","classId":"rom-mage","group":"passive","unlockLevel":8,"sourceSkillId":490221,"name":"Eruption","description":"Fireball and Flame have a chance of exploding and causing Fire damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572027,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490221,"name":"Eruption","description":"Fireball and Flame have a chance of exploding and causing Fire damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572027,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/572027.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-4","classId":"rom-mage","group":"primary","unlockLevel":10,"sourceSkillId":490242,"name":"Discharge","description":"Inflicts (DMG0) + (FixDMG-620208) x INT [SC_SKILLTIPS_WIND] to targets within range and a Stun for (Buff-Time-502717) seconds.\n(For players this effect lasts for (Buff-Time-503850) seconds.)\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.55},"source":{"imageId":572040,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620208,502717,503850,623146],"components":[{"id":620208,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-55,"damagePowerSkillLevelArg":25,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502717,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[150995027,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503850,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[150995027,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623146,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490242,"name":"Discharge","description":"Inflicts (DMG0) + (FixDMG-620208) x INT [SC_SKILLTIPS_WIND] to targets within range and a Stun for (Buff-Time-502717) seconds.\n(For players this effect lasts for (Buff-Time-503850) seconds.)\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.55},"source":{"imageId":572040,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620208,502717,503850,623146]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/572040.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-5","classId":"rom-mage","group":"primary","unlockLevel":14,"sourceSkillId":490252,"name":"Meteor Shower","description":"Conjures a meteor shower which causes 5 hits with (DMG0) + (FixDMG-620204) x INT [SC_SKILLTIPS_NONE].","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572054,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620204,501549],"components":[{"id":620204,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":17,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":3,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501549,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":51,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490252,"name":"Meteor Shower","description":"Conjures a meteor shower which causes 5 hits with (DMG0) + (FixDMG-620204) x INT [SC_SKILLTIPS_NONE].","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572054,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620204,501549]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/572054.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-6","classId":"rom-mage","group":"primary","unlockLevel":18,"sourceSkillId":490239,"name":"Phoenix","description":"Summon a phoenix that causes (DMG0) + (FixDMG-620201) x INT [SC_SKILLTIPS_FLAME] to targets in its path. Effective up to a range of 120.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.55},"source":{"imageId":572038,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620201,623146],"components":[{"id":620201,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-55,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623146,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490239,"name":"Phoenix","description":"Summon a phoenix that causes (DMG0) + (FixDMG-620201) x INT [SC_SKILLTIPS_FLAME] to targets in its path. Effective up to a range of 120.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.55},"source":{"imageId":572038,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620201,623146]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/572038.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-7","classId":"rom-mage","group":"passive","unlockLevel":22,"sourceSkillId":490216,"name":"Fire Knowledge","description":"Increases resistance to Fire by (Buff0-0) points and increases magical Fire damage by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572021,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500289],"components":[{"id":500289,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":29,"value":2},{"type":47,"value":5}],"abilitySkillLevelArg":23.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490216,"name":"Fire Knowledge","description":"Increases resistance to Fire by (Buff0-0) points and increases magical Fire damage by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572021,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500289]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/572021.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-8","classId":"rom-mage","group":"primary","unlockLevel":26,"sourceSkillId":491153,"name":"Purgatory Fire","description":"Summons purgatory fire, causing (DMG0) + (FixDMG-620203) x INT [SC_SKILLTIPS_FLAME] to targets within a range of 50.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":574094,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620203],"components":[{"id":620203,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-45,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-45,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":491153,"name":"Purgatory Fire","description":"Summons purgatory fire, causing (DMG0) + (FixDMG-620203) x INT [SC_SKILLTIPS_FLAME] to targets within a range of 50.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":574094,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620203]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/574094.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-9","classId":"rom-mage","group":"primary","unlockLevel":28,"sourceSkillId":490218,"name":"Energy Influx","description":"The chance to inflict critical damage with magic attacks is increased by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572025,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500296],"components":[{"id":500296,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":177,"abilityModifiers":[{"type":20,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490218,"name":"Energy Influx","description":"The chance to inflict critical damage with magic attacks is increased by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572025,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500296]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/572025.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-10","classId":"rom-mage","group":"primary","unlockLevel":30,"sourceSkillId":490251,"name":"Energy Well","description":"Mana costs for all skills are reduced by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572052,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500369],"components":[{"id":500369,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":50,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":49,"abilityModifiers":[{"type":33,"value":10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490251,"name":"Energy Well","description":"Mana costs for all skills are reduced by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572052,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500369]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/572052.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-11","classId":"rom-mage","group":"primary","unlockLevel":32,"sourceSkillId":490247,"name":"Elemental Weakness","description":"Decrease all the target's resistances by (Buff0-0) points for (Buff0-Time) seconds.","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572044,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500365],"components":[{"id":500365,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":8,"abilityModifiers":[{"type":26,"value":-30}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":490247,"name":"Elemental Weakness","description":"Decrease all the target's resistances by (Buff0-0) points for (Buff0-Time) seconds.","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572044,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500365]}},{"rank":2,"level":65,"prerequisites":[490247],"sourceSkillId":497977,"name":"Elemental Weakness","description":"Reduces the target's [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572044,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620189],"components":[{"id":620189,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":8,"abilityModifiers":[{"type":170,"value":-1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/572044.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-12","classId":"rom-mage","group":"primary","unlockLevel":34,"sourceSkillId":490244,"name":"Thunderstorm","description":"Summon a thunderstorm that inflicts (DMG0) + (FixDMG-620202) x INT [SC_SKILLTIPS_WIND] to targets 3 times within range with a chance of causing an additional Slowdown in movement and attacks for (Buff4-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572042,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620202,500557],"components":[{"id":620202,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500557,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":23,"value":20},{"type":24,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490244,"name":"Thunderstorm","description":"Summon a thunderstorm that inflicts (DMG0) + (FixDMG-620202) x INT [SC_SKILLTIPS_WIND] to targets 3 times within range with a chance of causing an additional Slowdown in movement and attacks for (Buff4-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572042,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620202,500557]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/572042.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-52","classId":"rom-mage","group":"primary","unlockLevel":2,"sourceSkillId":491169,"name":"Plasma Arrow","description":"Causes (DMG0) + (FixDMG-620206) x INT [SC_SKILLTIPS_WIND] and puts you in Charged state which in turn temporarily increases your critical magical hit rate by (Buff4-0).","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":576088,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620206,502270],"components":[{"id":620206,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-45,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-45,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502270,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":96,"abilityModifiers":[{"type":20,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491169,"name":"Plasma Arrow","description":"Causes (DMG0) + (FixDMG-620206) x INT [SC_SKILLTIPS_WIND] and puts you in Charged state which in turn temporarily increases your critical magical hit rate by (Buff4-0).","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":576088,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620206,502270]}}],"sourceFamily":"primary:52","icon":"/assets/ui/rom-spells/576088.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-53","classId":"rom-mage","group":"primary","unlockLevel":10,"sourceSkillId":491168,"name":"Electric Bolt","description":"Inflicts (DMG0) + (FixDMG-620205) x INT [SC_SKILLTIPS_WIND], and afterwards (Buff4-Dot) every 2 seconds for a total of (Buff4-Time) seconds.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":576087,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620205,501550],"components":[{"id":620205,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":25,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501550,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":491168,"name":"Electric Bolt","description":"Inflicts (DMG0) + (FixDMG-620205) x INT [SC_SKILLTIPS_WIND], and afterwards (Buff4-Dot) every 2 seconds for a total of (Buff4-Time) seconds.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":576087,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620205,501550]}}],"sourceFamily":"primary:53","icon":"/assets/ui/rom-spells/576087.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-54","classId":"rom-mage","group":"primary","unlockLevel":16,"sourceSkillId":491170,"name":"Electric Explosion","description":"Causes (DMG1) + (FixDMG-620232) x INT [SC_SKILLTIPS_WIND] to the target.\n\nWhen used in Charged state, it will deal (DMG0) + (FixDMG-620207) x INT [SC_SKILLTIPS_WIND] to the target.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":576089,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620207,502270,621505,620232],"components":[{"id":620207,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-60,"damagePowerSkillLevelArg":30,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502270,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":96,"abilityModifiers":[{"type":20,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"summonCreatureId":0},{"id":621505,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":18,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":96,"abilityModifiers":[{"type":20,"value":20},{"type":48,"value":1}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"summonCreatureId":0},{"id":620232,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-35,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-35,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":491170,"name":"Electric Explosion","description":"Causes (DMG1) + (FixDMG-620232) x INT [SC_SKILLTIPS_WIND] to the target.\n\nWhen used in Charged state, it will deal (DMG0) + (FixDMG-620207) x INT [SC_SKILLTIPS_WIND] to the target.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":576089,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620207,502270,621505,620232]}}],"sourceFamily":"primary:54","icon":"/assets/ui/rom-spells/576089.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-55","classId":"rom-mage","group":"primary","unlockLevel":20,"sourceSkillId":491171,"name":"Electric Compression","description":"When used in Charged state, the power of thunder and lightning is stored deep within you and allows for the use of Static Field.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576203,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501554,502243],"components":[{"id":501554,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":35,"specialActionFlags":0,"assistType":13,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502243,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":96,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":491171,"name":"Electric Compression","description":"When used in Charged state, the power of thunder and lightning is stored deep within you and allows for the use of Static Field.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576203,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501554,502243]}}],"sourceFamily":"primary:55","icon":"/assets/ui/rom-spells/576203.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-56","classId":"rom-mage","group":"primary","unlockLevel":20,"sourceSkillId":491172,"name":"Static Field","description":"Static Field Charge is needed. You use the power of thunder and lightning of your Electric Compression to attack your target, making it unable to move or attack for (Buff0-Time) seconds. (Effect will be removed if attacked; only one target at a time can be kept under control.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576090,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501555,503838],"components":[{"id":501555,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[134217811,0],"clearFlags":2,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503838,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[134217811,0],"clearFlags":2,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":491172,"name":"Static Field","description":"Static Field Charge is needed. You use the power of thunder and lightning of your Electric Compression to attack your target, making it unable to move or attack for (Buff0-Time) seconds. (Effect will be removed if attacked; only one target at a time can be kept under control.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576090,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501555,503838]}}],"sourceFamily":"primary:56","icon":"/assets/ui/rom-spells/576090.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-57","classId":"rom-mage","group":"passive","unlockLevel":22,"sourceSkillId":490217,"name":"Wind Knowledge","description":"Increases resistance to Wind by (Buff0-0) and increases [SC_SKILLTIPS_WIND] by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572024,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500295],"components":[{"id":500295,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":30,"value":2},{"type":48,"value":5}],"abilitySkillLevelArg":23.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490217,"name":"Wind Knowledge","description":"Increases resistance to Wind by (Buff0-0) and increases [SC_SKILLTIPS_WIND] by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572024,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500295]}}],"sourceFamily":"primary:57","icon":"/assets/ui/rom-spells/572024.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-0","classId":"rom-mage","group":"general","unlockLevel":4,"sourceSkillId":490204,"name":"Fireball","description":"Casts a fireball, causing (DMG0) + (FixDMG-620199) x INT [SC_SKILLTIPS_FLAME].","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":572019,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620199,500379,623146],"components":[{"id":620199,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":40,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500379,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-27.1,"fixedValue":-0.01,"attack":{"type":0,"damagePower":-27.1,"damagePowerSkillLevelArg":18.3,"fixedValue":-0.01,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623146,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490204,"name":"Fireball","description":"Casts a fireball, causing (DMG0) + (FixDMG-620199) x INT [SC_SKILLTIPS_FLAME].","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":572019,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620199,500379,623146]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/572019.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-1","classId":"rom-mage","group":"general","unlockLevel":8,"sourceSkillId":490212,"name":"Lightning","description":"A lightning strike inflicts (DMG0) + (FixDMG-620200) x INT [SC_SKILLTIPS_WIND], rooting the target for (Buff4-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.358},"source":{"imageId":572022,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620200,501535,503837,623146],"components":[{"id":620200,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-35.82,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-35.82,"damagePowerSkillLevelArg":19.4,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501535,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-59.7,"fixedValue":0,"summonCreatureId":0},{"id":503837,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-59.7,"fixedValue":0,"summonCreatureId":0},{"id":623146,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490212,"name":"Lightning","description":"A lightning strike inflicts (DMG0) + (FixDMG-620200) x INT [SC_SKILLTIPS_WIND], rooting the target for (Buff4-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.358},"source":{"imageId":572022,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620200,501535,503837,623146]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/572022.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-2","classId":"rom-mage","group":"passive","unlockLevel":12,"sourceSkillId":490222,"name":"Wisdom","description":"Increases [SC_SKILLTIPS_INT] by (current [SC_SKILLTIPS_INT] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572028,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500305],"components":[{"id":500305,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":4,"value":11},{"type":163,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490222,"name":"Wisdom","description":"Increases [SC_SKILLTIPS_INT] by (current [SC_SKILLTIPS_INT] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572028,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500305]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/572028.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-3","classId":"rom-mage","group":"general","unlockLevel":16,"sourceSkillId":490225,"name":"Intensification","description":"[SC_SKILLTIPS_MDMG] increases by (Buff0-0) points. Effect lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572031,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500308],"components":[{"id":500308,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":148,"value":50}],"abilitySkillLevelArg":19,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490225,"name":"Intensification","description":"[SC_SKILLTIPS_MDMG] increases by (Buff0-0) points. Effect lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572031,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500308]}},{"rank":2,"level":45,"prerequisites":[490225],"sourceSkillId":497976,"name":"Intensification","description":"For (Buff0-Time) seconds, [SC_SKILLTIPS_MDMG] is increased by (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572031,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620177],"components":[{"id":620177,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":148,"value":100}],"abilitySkillLevelArg":45,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/572031.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-4","classId":"rom-mage","group":"general","unlockLevel":20,"sourceSkillId":490296,"name":"Silence","description":"Silences the target for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":24000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572213,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500529,504256,502719],"components":[{"id":500529,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":22,"effectFlagWords":[1,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504256,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":22,"effectFlagWords":[1,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490296,"name":"Silence","description":"Silences the target for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":24000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572213,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500529,504256,502719]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/572213.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-5","classId":"rom-mage","group":"general","unlockLevel":24,"sourceSkillId":490248,"name":"Fire Ward","description":"Increase the party's Fire resistance by (Buff0-0) points for 10 minutes.","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572048,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500366],"components":[{"id":500366,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":29,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":490248,"name":"Fire Ward","description":"Increase the party's Fire resistance by (Buff0-0) points for 10 minutes.","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572048,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500366]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/572048.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-0","classId":"rom-priest","group":"primary","unlockLevel":1,"sourceSkillId":490288,"name":"Soul Source","description":"The HP of all teammates within a range of 90 is fully restored. Does not consume any MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":1.33},"source":{"imageId":572204,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500516],"components":[{"id":500516,"magicFunc":0,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":8,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":133,"fixedValue":0,"attack":{"type":0,"damagePower":133,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":10,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490288,"name":"Soul Source","description":"The HP of all teammates within a range of 90 is fully restored. Does not consume any MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":1.33},"source":{"imageId":572204,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500516]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/572204.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-1","classId":"rom-priest","group":"primary","unlockLevel":2,"sourceSkillId":490273,"name":"Wave Armor","description":"Casts a shield of holy spring water that absorbs up to (Buff0-Shield) points of damage. Also reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%. Effect lasts for (Buff0-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":572194,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500478],"components":[{"id":500478,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":143,"value":1},{"type":142,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":2,"effect":0,"point":50,"skillLevelArg":45}}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":490273,"name":"Wave Armor","description":"Casts a shield of holy spring water that absorbs up to (Buff0-Shield) points of damage. Also reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%. Effect lasts for (Buff0-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":572194,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500478]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/572194.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-2","classId":"rom-priest","group":"primary","unlockLevel":6,"sourceSkillId":490261,"name":"Heal","description":"Restores (DMG0) points of target's HP.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.9},"source":{"imageId":572063,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500395],"components":[{"id":500395,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":90,"fixedValue":0,"attack":{"type":0,"damagePower":90,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":490261,"name":"Heal","description":"Restores (DMG0) points of target's HP.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.9},"source":{"imageId":572063,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500395]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/572063.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-3","classId":"rom-priest","group":"primary","unlockLevel":8,"sourceSkillId":490274,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500485,503858],"components":[{"id":500485,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503858,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490274,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500485,503858]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/572196.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-4","classId":"rom-priest","group":"primary","unlockLevel":8,"sourceSkillId":491165,"name":"Bone Chill","description":"For (Buff0-Time) seconds, Bone Chill will cause (Buff0-Dot) points of damage every 2 seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575160,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501548],"components":[{"id":501548,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":491165,"name":"Bone Chill","description":"For (Buff0-Time) seconds, Bone Chill will cause (Buff0-Dot) points of damage every 2 seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575160,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501548]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/575160.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-5","classId":"rom-priest","group":"primary","unlockLevel":10,"sourceSkillId":490280,"name":"Resurrection","description":"Revives a dead target which accumulates 30% less death debt.\n(Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[500497],"components":[{"id":500497,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":30},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490280,"name":"Resurrection","description":"Revives a dead target which accumulates 30% less death debt.\n(Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[500497]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/572199.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-6","classId":"rom-priest","group":"primary","unlockLevel":10,"sourceSkillId":490297,"name":"Soul Bond","description":"For (Buff0-Time) seconds, the target can revive once in the same place.","target":"friendly","range":22.5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572211,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500535],"components":[{"id":500535,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":16,"effectFlagWords":[4194304,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490297,"name":"Soul Bond","description":"For (Buff0-Time) seconds, the target can revive once in the same place.","target":"friendly","range":22.5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572211,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500535]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/572211.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-7","classId":"rom-priest","group":"primary","unlockLevel":14,"sourceSkillId":490290,"name":"Grace of Life","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572226,"sourceEffectType":0,"sourceTarget":7,"componentIds":[500517,507217],"components":[{"id":500517,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":18,"abilityModifiers":[{"type":8,"value":50}],"abilitySkillLevelArg":26,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495931,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507217,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490290,"name":"Grace of Life","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572226,"sourceEffectType":0,"sourceTarget":7,"componentIds":[500517,507217]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/572226.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-8","classId":"rom-priest","group":"primary","unlockLevel":14,"sourceSkillId":490281,"name":"Group Heal","description":"Restores (DMG0) HP to all party members within range of 120. You will enter a state of Exhaustion, increasing the mana requirement for group healing skills.","target":"self","range":0.1,"castTimeMs":3000,"cooldownMs":0,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.65},"source":{"imageId":572200,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500498,620407],"components":[{"id":500498,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":65,"fixedValue":0,"attack":{"type":0,"damagePower":65,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":3},"summonCreatureId":0},{"id":620407,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":50364418,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490281,"name":"Group Heal","description":"Restores (DMG0) HP to all party members within range of 120. You will enter a state of Exhaustion, increasing the mana requirement for group healing skills.","target":"self","range":0.1,"castTimeMs":3000,"cooldownMs":0,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.65},"source":{"imageId":572200,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500498,620407]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/572200.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-9","classId":"rom-priest","group":"primary","unlockLevel":18,"sourceSkillId":491164,"name":"Chain of Light","description":"Continuously deals (DMG0) Light damage to the target.","target":"hostile","range":21.700000000000003,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575128,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620409],"components":[{"id":620409,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":9,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":491164,"name":"Chain of Light","description":"Continuously deals (DMG0) Light damage to the target.","target":"hostile","range":21.700000000000003,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575128,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620409]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/575128.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-10","classId":"rom-priest","group":"primary","unlockLevel":20,"sourceSkillId":490491,"name":"Amplified Attack","description":"Increases [SC_SKILLTIPS_01] by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.\n(This effect does not stack with similar effects.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":36,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573733,"sourceEffectType":0,"sourceTarget":7,"componentIds":[500940,507218],"components":[{"id":500940,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":42,"abilityModifiers":[{"type":12,"value":50}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495930,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490491,"name":"Amplified Attack","description":"Increases [SC_SKILLTIPS_01] by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.\n(This effect does not stack with similar effects.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":36,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573733,"sourceEffectType":0,"sourceTarget":7,"componentIds":[500940,507218]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/573733.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-11","classId":"rom-priest","group":"passive","unlockLevel":22,"sourceSkillId":490305,"name":"Prayer","description":"Increases Water Resistance by (Buff0-0) points and magical Water Damage by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572066,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500559],"components":[{"id":500559,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":28,"value":2},{"type":46,"value":5}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490305,"name":"Prayer","description":"Increases Water Resistance by (Buff0-0) points and magical Water Damage by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572066,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500559]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/572066.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-12","classId":"rom-priest","group":"passive","unlockLevel":24,"sourceSkillId":490295,"name":"Faith","description":"Effectiveness of Heal effects increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572211,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500528],"components":[{"id":500528,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":5}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":490295,"name":"Faith","description":"Effectiveness of Heal effects increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572211,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500528]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/572211.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-13","classId":"rom-priest","group":"primary","unlockLevel":26,"sourceSkillId":490275,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500486,503859],"components":[{"id":500486,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503859,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490275,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500486,503859]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/572196.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-14","classId":"rom-priest","group":"primary","unlockLevel":28,"sourceSkillId":490294,"name":"Healing Salve","description":"The effectiveness of heals received by the target increases by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572208,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500527],"components":[{"id":500527,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":174,"abilityModifiers":[{"type":144,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490294,"name":"Healing Salve","description":"The effectiveness of heals received by the target increases by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572208,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500527]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/572208.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-15","classId":"rom-priest","group":"primary","unlockLevel":30,"sourceSkillId":490301,"name":"Blessing of Humility","description":"For (Buff0-Time) seconds, you temporarily become the one with the least aggro.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":99,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572219,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500546],"components":[{"id":500546,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1073741824,0],"abilityModifiers":[{"type":138,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490301,"name":"Blessing of Humility","description":"For (Buff0-Time) seconds, you temporarily become the one with the least aggro.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":99,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572219,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500546]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/572219.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-16","classId":"rom-priest","group":"primary","unlockLevel":32,"sourceSkillId":490276,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500487,503860],"components":[{"id":500487,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503860,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":490276,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500487,503860]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/572196.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-17","classId":"rom-priest","group":"primary","unlockLevel":34,"sourceSkillId":490304,"name":"Holy Candle","description":"Consumes (Buff0-Dot)% HP per second and increases effectiveness of heals by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572224,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500549],"components":[{"id":500549,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":65643,"specialActionFlags":0,"assistType":174,"clearFlags":1024,"abilityModifiers":[{"type":149,"value":5}],"abilitySkillLevelArg":10,"dotTime":1,"dotType":5,"dotBase":-6,"dot":{"timeSeconds":1,"type":5,"base":-6,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490304,"name":"Holy Candle","description":"Consumes (Buff0-Dot)% HP per second and increases effectiveness of heals by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572224,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500549]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/572224.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-58","classId":"rom-priest","group":"primary","unlockLevel":18,"sourceSkillId":491175,"name":"Cleanse","description":"Removes harmful effects from target.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573063,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501566],"components":[{"id":501566,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":491175,"name":"Cleanse","description":"Removes harmful effects from target.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573063,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501566]}}],"sourceFamily":"primary:58","icon":"/assets/ui/rom-spells/573063.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-65","classId":"rom-priest","group":"primary","unlockLevel":20,"sourceSkillId":491176,"name":"Advanced Resurrection","description":"Revives a dead target which accumulates 45% less death debt. An [203606] is needed. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[501561],"components":[{"id":501561,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":45},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":491176,"name":"Advanced Resurrection","description":"Revives a dead target which accumulates 45% less death debt. An [203606] is needed. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[501561]}}],"sourceFamily":"primary:65","icon":"/assets/ui/rom-spells/572199.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-66","classId":"rom-priest","group":"primary","unlockLevel":30,"sourceSkillId":491177,"name":"Supreme Resurrection","description":"Revives a dead target which accumulates 75% less death debt. A [203605] is needed. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[501562],"components":[{"id":501562,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":75},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":491177,"name":"Supreme Resurrection","description":"Revives a dead target which accumulates 75% less death debt. A [203605] is needed. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[501562]}}],"sourceFamily":"primary:66","icon":"/assets/ui/rom-spells/572199.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-0","classId":"rom-priest","group":"general","unlockLevel":1,"sourceSkillId":491147,"name":"Urgent Heal","description":"Quickcast that restores (DMG0) points of target's HP.","target":"friendly","range":25,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.35},"source":{"imageId":573047,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501543,621391],"components":[{"id":501543,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":35,"fixedValue":0,"attack":{"type":0,"damagePower":35,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":621391,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":491147,"name":"Urgent Heal","description":"Quickcast that restores (DMG0) points of target's HP.","target":"friendly","range":25,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.35},"source":{"imageId":573047,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501543,621391]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/573047.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-1","classId":"rom-priest","group":"general","unlockLevel":1,"sourceSkillId":490256,"name":"Rising Tide","description":"Summons a torrent that deals (DMG0) Water damage to a target.","target":"hostile","range":21.700000000000003,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":12,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572061,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620408],"components":[{"id":620408,"magicFunc":0,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":28,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490256,"name":"Rising Tide","description":"Summons a torrent that deals (DMG0) Water damage to a target.","target":"hostile","range":21.700000000000003,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":12,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572061,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620408]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/572061.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-2","classId":"rom-priest","group":"general","unlockLevel":4,"sourceSkillId":490269,"name":"Regenerate","description":"Recover (Buff2-Dot) of target's HP every 2 seconds for (Buff2-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572067,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621318,621548,500469,621549],"components":[{"id":621318,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":25,"abilityModifiers":[{"type":163,"value":10},{"type":164,"value":10}],"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621548,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":25,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":25},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500469,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":25,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621549,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":524357,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":0,"value":8}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":498614,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490269,"name":"Regenerate","description":"Recover (Buff2-Dot) of target's HP every 2 seconds for (Buff2-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572067,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621318,621548,500469,621549]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/572067.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-3","classId":"rom-priest","group":"general","unlockLevel":8,"sourceSkillId":490300,"name":"Holy Aura","description":"Immune to all damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572221,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501546],"components":[{"id":501546,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":20,"effectFlagWords":[12,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-152.95,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490300,"name":"Holy Aura","description":"Immune to all damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572221,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501546]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/572221.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-4","classId":"rom-priest","group":"general","unlockLevel":12,"sourceSkillId":491166,"name":"Magic Barrier","description":"For (Buff0-Time) seconds, all party member's [SC_SKILLTIPS_MDEF] increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572223,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500548],"components":[{"id":500548,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":97,"abilityModifiers":[{"type":170,"value":6}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":491166,"name":"Magic Barrier","description":"For (Buff0-Time) seconds, all party member's [SC_SKILLTIPS_MDEF] increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572223,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500548]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/572223.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-5","classId":"rom-priest","group":"general","unlockLevel":16,"sourceSkillId":490298,"name":"Blessed Spring Water","description":"Increases party's Water resistance by (Buff0-0) points for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572215,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500536],"components":[{"id":500536,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":11,"abilityModifiers":[{"type":28,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490298,"name":"Blessed Spring Water","description":"Increases party's Water resistance by (Buff0-0) points for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572215,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500536]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/572215.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-0","classId":"rom-knight","group":"primary","unlockLevel":1,"sourceSkillId":490495,"name":"Holy Shield","description":"For (Buff0-Time) seconds, every party member within range receives a shield which can block all physical damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573731,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500943],"components":[{"id":500943,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[8,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490495,"name":"Holy Shield","description":"For (Buff0-Time) seconds, every party member within range receives a shield which can block all physical damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573731,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500943]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/573731.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-1","classId":"rom-knight","group":"primary","unlockLevel":2,"sourceSkillId":490149,"name":"Holy Seal","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second, and immediately adds 4 layers of Holy Seal effect. \nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff-Time-500140) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575282,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500142,500169,500140],"components":[{"id":500142,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":0,"attack":{"type":0,"damagePower":-0.65,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":40,"hateRate":2.5},"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":490149,"name":"Holy Seal","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second, and immediately adds 4 layers of Holy Seal effect. \nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff-Time-500140) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575282,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500142,500169,500140]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/575282.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-2","classId":"rom-knight","group":"primary","unlockLevel":2,"sourceSkillId":490172,"name":"Holy Power Explosion","description":"Gives a buff restoring MP by (Buff0-Dot)% every 2 seconds, and increases the aggro of all attacks by (Buff0-0)%. It also restores (DMG-500314) MP for (Buff0-Time) seconds while receiving healing.","target":"self","range":5,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570944,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501827,500314],"components":[{"id":501827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":235,"specialActionFlags":0,"assistType":24,"abilityModifiers":[{"type":138,"value":10}],"abilitySkillLevelArg":5,"dotTime":2,"dotType":6,"dotBase":3,"dot":{"timeSeconds":2,"type":6,"base":3,"skillLevelArg":0},"attackType":1,"damagePower":60,"fixedValue":0,"summonCreatureId":0},{"id":500314,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":50,"fixedValue":0,"attack":{"type":1,"damagePower":50,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":490172,"name":"Holy Power Explosion","description":"Gives a buff restoring MP by (Buff0-Dot)% every 2 seconds, and increases the aggro of all attacks by (Buff0-0)%. It also restores (DMG-500314) MP for (Buff0-Time) seconds while receiving healing.","target":"self","range":5,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570944,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501827,500314]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/570944.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-3","classId":"rom-knight","group":"primary","unlockLevel":6,"sourceSkillId":490175,"name":"Whirlwind Shield","description":"Deals (DMG0) + (FixDMG-500175) x the shield's defense value main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second on multiple targets. Each skill level adds to aggro.\n(Must have a shield equipped)\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575127,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500175],"components":[{"id":500175,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.4,"damagePowerSkillLevelArg":7,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":10},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":490175,"name":"Whirlwind Shield","description":"Deals (DMG0) + (FixDMG-500175) x the shield's defense value main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second on multiple targets. Each skill level adds to aggro.\n(Must have a shield equipped)\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575127,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500175]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/575127.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-4","classId":"rom-knight","group":"primary","unlockLevel":10,"sourceSkillId":490189,"name":"Shackles of Light","description":"Emanate shackles of light, Rooting all enemies for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":73,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570948,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500195],"components":[{"id":500195,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490189,"name":"Shackles of Light","description":"Emanate shackles of light, Rooting all enemies for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":73,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570948,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500195]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/570948.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-5","classId":"rom-knight","group":"primary","unlockLevel":14,"sourceSkillId":490168,"name":"Resolution","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff0-1)% + (Buff0-0) for (Buff0-Time) seconds, \nand restores (DMG-500950) + (current [SC_SKILLTIPS_HP]) x ((DMG-507222)).","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":3.5},"source":{"imageId":570960,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500211,500950,507222],"components":[{"id":500211,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":8,"value":350},{"type":167,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500950,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":68157440,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":350,"fixedValue":0,"attack":{"type":0,"damagePower":350,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":507222,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":68157440,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"damagePower":1,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490168,"name":"Resolution","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff0-1)% + (Buff0-0) for (Buff0-Time) seconds, \nand restores (DMG-500950) + (current [SC_SKILLTIPS_HP]) x ((DMG-507222)).","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":3.5},"source":{"imageId":570960,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500211,500950,507222]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/570960.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-6","classId":"rom-knight","group":"primary","unlockLevel":18,"sourceSkillId":490150,"name":"Charge","description":"Charging towards the target causes (DMG0) [SC_SKILLTIPS_DMG], stuns the target for (Buff4-Time) seconds and adds 2 layers Holy Seal effects.\n(For players the stun effect time lasts (Buff5-Time) seconds.)\nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff-Time-500140) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":570954,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500240,500243,504257,500169,500168,500146,500140],"components":[{"id":500240,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":5,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-25,"fixedValue":0,"attack":{"type":0,"damagePower":-25,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500243,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504257,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490150,"name":"Charge","description":"Charging towards the target causes (DMG0) [SC_SKILLTIPS_DMG], stuns the target for (Buff4-Time) seconds and adds 2 layers Holy Seal effects.\n(For players the stun effect time lasts (Buff5-Time) seconds.)\nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff-Time-500140) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":570954,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500240,500243,504257,500169,500168,500146,500140]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/570954.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-7","classId":"rom-knight","group":"primary","unlockLevel":20,"sourceSkillId":490153,"name":"Threaten","description":"Deals (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-505950) [SC_SKILLTIPS_DMG|Physical Light Damage] and increases your own aggro by (Buff8-0)% for (Buff8-Time) seconds.\nIf the target has the Holy Seal effect, it will deal (DMG-500242) to (DMG-500257) [SC_SKILLTIPS_DMG|Physical Light Damage] according to the number the effect stacks and reduce the target's [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff4-0)% to (Buff7-0)% for (Buff4-Time) seconds. The effect is enhanced according to the amount of the effect stacks.\n|cff99FF37 Each Holy Seal adds (DMG-500242) Light damage and reduces the target's [SC_SKILLTIPS_01|physical] and [SC_SKILLTIPS_02|magic attack power] by (Buff4-0)%.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575285,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505950,500225,500140,500227,500146,500228,500168,500241,500169,500246,500242,500257],"components":[{"id":505950,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":20,"fixedValue":-0.1,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500225,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":196,"abilityModifiers":[{"type":134,"value":-1},{"type":171,"value":-1}],"abilitySkillLevelArg":25,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500227,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":196,"abilityModifiers":[{"type":134,"value":-2},{"type":171,"value":-2}],"abilitySkillLevelArg":25,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500228,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":196,"abilityModifiers":[{"type":134,"value":-3},{"type":171,"value":-3}],"abilitySkillLevelArg":25,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500241,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":196,"abilityModifiers":[{"type":134,"value":-4},{"type":171,"value":-4}],"abilitySkillLevelArg":25,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500246,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":39,"abilityModifiers":[{"type":138,"value":21}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500242,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-5,"fixedValue":0,"attack":{"type":0,"damagePower":-5,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500257,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":0,"attack":{"type":0,"damagePower":-20,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490153,"name":"Threaten","description":"Deals (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-505950) [SC_SKILLTIPS_DMG|Physical Light Damage] and increases your own aggro by (Buff8-0)% for (Buff8-Time) seconds.\nIf the target has the Holy Seal effect, it will deal (DMG-500242) to (DMG-500257) [SC_SKILLTIPS_DMG|Physical Light Damage] according to the number the effect stacks and reduce the target's [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff4-0)% to (Buff7-0)% for (Buff4-Time) seconds. The effect is enhanced according to the amount of the effect stacks.\n|cff99FF37 Each Holy Seal adds (DMG-500242) Light damage and reduces the target's [SC_SKILLTIPS_01|physical] and [SC_SKILLTIPS_02|magic attack power] by (Buff4-0)%.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575285,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505950,500225,500140,500227,500146,500228,500168,500241,500169,500246,500242,500257]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/575285.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-8","classId":"rom-knight","group":"passive","unlockLevel":22,"sourceSkillId":490171,"name":"Shield Mastery","description":"Increases shield's [SC_SKILLTIPS_DEF] by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570937,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500215],"components":[{"id":500215,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":43,"value":5}],"abilitySkillLevelArg":23.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490171,"name":"Shield Mastery","description":"Increases shield's [SC_SKILLTIPS_DEF] by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570937,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500215]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/570937.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-10","classId":"rom-knight","group":"primary","unlockLevel":26,"sourceSkillId":490468,"name":"Shield of Valor","description":"Enhances shield with the power of Light, increasing [SC_SKILLTIPS_PARRY_RATE] by (Buff0-0)%. Each successful parry will reduce the cooldown time of the Holy Seal skill by 1 seconds for (Buff0-Time) seconds.\n(Must have a shield equipped)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570946,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500178],"components":[{"id":500178,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":227,"value":5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490468,"name":"Shield of Valor","description":"Enhances shield with the power of Light, increasing [SC_SKILLTIPS_PARRY_RATE] by (Buff0-0)%. Each successful parry will reduce the cooldown time of the Holy Seal skill by 1 seconds for (Buff0-Time) seconds.\n(Must have a shield equipped)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570946,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500178]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/570946.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-11","classId":"rom-knight","group":"primary","unlockLevel":28,"sourceSkillId":490186,"name":"Truth Shield Bash","description":"Deals (DMG0) + (FixDMG-500177) x the shield's defense value [SC_SKILLTIPS_DMG|Physical Light Damage] per second, based on the main hand weapon's damage per second. If the caster is under the \"[501827]\" effect, the inflicted aggro will also be increased.\nIf the target has the \"Holy Seal\" effect, all the Holy Seal effects will be consumed to generate a shield, absorbing an amount of damage equal to (Buff-Shield-500196)% to (Buff-Shield-500199)% [SC_SKILLTIPS_HP].\n|cff99FF37 Each shield generated by the Holy Seal can absorb an amount of damage equal to (Buff-Shield-500196)% maximal HP. The shield can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":570958,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500185,501827,500177,500186,500140,500187,500146,500188,500168,500189,500169,500196,500199],"components":[{"id":500185,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":10,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.4,"damagePowerSkillLevelArg":20,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":10},"summonCreatureId":0},{"id":501827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":235,"specialActionFlags":0,"assistType":24,"abilityModifiers":[{"type":138,"value":10}],"abilitySkillLevelArg":5,"dotTime":2,"dotType":6,"dotBase":3,"dot":{"timeSeconds":2,"type":6,"base":3,"skillLevelArg":0},"attackType":1,"damagePower":60,"fixedValue":0,"summonCreatureId":0},{"id":500177,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":10,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.4,"damagePowerSkillLevelArg":20,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500186,"magicFunc":7,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500187,"magicFunc":7,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500188,"magicFunc":7,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500189,"magicFunc":7,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500196,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":2,"skillLevelArg":3}},{"id":500199,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":8,"skillLevelArg":3}}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490186,"name":"Truth Shield Bash","description":"Deals (DMG0) + (FixDMG-500177) x the shield's defense value [SC_SKILLTIPS_DMG|Physical Light Damage] per second, based on the main hand weapon's damage per second. If the caster is under the \"[501827]\" effect, the inflicted aggro will also be increased.\nIf the target has the \"Holy Seal\" effect, all the Holy Seal effects will be consumed to generate a shield, absorbing an amount of damage equal to (Buff-Shield-500196)% to (Buff-Shield-500199)% [SC_SKILLTIPS_HP].\n|cff99FF37 Each shield generated by the Holy Seal can absorb an amount of damage equal to (Buff-Shield-500196)% maximal HP. The shield can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":570958,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500185,501827,500177,500186,500140,500187,500146,500188,500168,500189,500169,500196,500199]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/570958.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-12","classId":"rom-knight","group":"primary","unlockLevel":30,"sourceSkillId":490154,"name":"Shock","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second and stuns the target for (Buff4-Time) seconds.\nIf the target has the Holy Seal effect, it will deal additional (DMG-500946) to (DMG-500949) [SC_SKILLTIPS_DMG|Physical Light Damage] and increase the stun effect time by (Buff-Time-500248) to (Buff8-Time) seconds.\n|cff99FF37 Each Holy Seal increases Light damage by (DMG-500946) and the stun effect time by (Buff4-Time) seconds.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570938,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500263,500247,500259,500169,500253,500168,500249,500146,500248,500140,500946,500949],"components":[{"id":500263,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":12,"hateCost":30,"settingFlags":0,"specialActionFlags":4,"assistType":2,"abilityModifiers":[{"type":135,"value":-3}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":10,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500247,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500259,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500253,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":4,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500249,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":3,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500248,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":2,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500946,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":12,"hateCost":30,"settingFlags":66,"specialActionFlags":4,"assistType":2,"abilityModifiers":[{"type":135,"value":-3}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"attack":{"type":0,"damagePower":-10,"damagePowerSkillLevelArg":10,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500949,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":12,"hateCost":30,"settingFlags":66,"specialActionFlags":4,"assistType":2,"abilityModifiers":[{"type":135,"value":-3}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":0,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":10,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490154,"name":"Shock","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second and stuns the target for (Buff4-Time) seconds.\nIf the target has the Holy Seal effect, it will deal additional (DMG-500946) to (DMG-500949) [SC_SKILLTIPS_DMG|Physical Light Damage] and increase the stun effect time by (Buff-Time-500248) to (Buff8-Time) seconds.\n|cff99FF37 Each Holy Seal increases Light damage by (DMG-500946) and the stun effect time by (Buff4-Time) seconds.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570938,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500263,500247,500259,500169,500253,500168,500249,500146,500248,500140,500946,500949]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/570938.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-14","classId":"rom-knight","group":"primary","unlockLevel":34,"sourceSkillId":491321,"name":"Holy Strength","description":"Increases [SC_SKILLTIPS_STR] by (Buff0-0)% and Light damage dealt by you, by (Buff0-1)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575284,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500768],"components":[{"id":500768,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":161,"value":1},{"type":49,"value":1}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":491321,"name":"Holy Strength","description":"Increases [SC_SKILLTIPS_STR] by (Buff0-0)% and Light damage dealt by you, by (Buff0-1)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575284,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500768]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/575284.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-9","classId":"rom-knight","group":"passive","unlockLevel":24,"sourceSkillId":490191,"name":"Devotion","description":"Increases [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0), the healing you receive by (Buff8-0)% and Light damage dealt by you, by (Buff8-1)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570952,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500239,507204,500148],"components":[{"id":500239,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":30}],"abilitySkillLevelArg":50,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507204,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":168,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500148,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":144,"value":1},{"type":49,"value":1}],"abilitySkillLevelArg":24,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":490191,"name":"Devotion","description":"Increases [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0), the healing you receive by (Buff8-0)% and Light damage dealt by you, by (Buff8-1)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570952,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500239,507204,500148]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/570952.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-17","classId":"rom-knight","group":"primary","unlockLevel":42,"sourceSkillId":495724,"name":"Hall of Dead Heroes","description":"After use, all party members within range will receive the Hall of Dead Heroes effect. [SC_SKILLTIPS_HURT_PASSIVE] decreases by (Buff0-2)%, [SC_SKILLTIPS_MHURT_PASSIVE] decreases by (Buff0-1)%, and [SC_SKILLTIPS_MOVE] increases by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570972,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500266],"components":[{"id":500266,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":30},{"type":142,"value":10},{"type":143,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":42,"prerequisites":[],"sourceSkillId":495724,"name":"Hall of Dead Heroes","description":"After use, all party members within range will receive the Hall of Dead Heroes effect. [SC_SKILLTIPS_HURT_PASSIVE] decreases by (Buff0-2)%, [SC_SKILLTIPS_MHURT_PASSIVE] decreases by (Buff0-1)%, and [SC_SKILLTIPS_MOVE] increases by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570972,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500266]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/570972.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-0","classId":"rom-knight","group":"general","unlockLevel":1,"sourceSkillId":490151,"name":"Punishment","description":"If the target has the Holy Seal effect, According to the amount of the effect stacks, the Holy Seal will deal extra (DMG0) to (DMG3) + current [SC_SKILLTIPS_STA] x (FixDMG-500145) to (FixDMG-500219) [SC_SKILLTIPS_DMG|Physical Light Damage].\n|cff99FF37 Every Holy Seal stack adds (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-500145) Light damage.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":570928,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500145,500140,500216,500146,500217,500168,500219,500169,500143],"components":[{"id":500145,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500216,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-60,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500217,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-90,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-90,"damagePowerSkillLevelArg":30,"fixedValue":-0.3,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500219,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-120,"fixedValue":-0.4,"attack":{"type":0,"damagePower":-120,"damagePowerSkillLevelArg":30,"fixedValue":-0.4,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500143,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":-10,"settingFlags":524288,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490151,"name":"Punishment","description":"If the target has the Holy Seal effect, According to the amount of the effect stacks, the Holy Seal will deal extra (DMG0) to (DMG3) + current [SC_SKILLTIPS_STA] x (FixDMG-500145) to (FixDMG-500219) [SC_SKILLTIPS_DMG|Physical Light Damage].\n|cff99FF37 Every Holy Seal stack adds (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-500145) Light damage.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":570928,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500145,500140,500216,500146,500217,500168,500219,500169,500143]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/570928.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-1","classId":"rom-knight","group":"general","unlockLevel":1,"sourceSkillId":490148,"name":"Holy Strike","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second, and adds one layer of Holy Seal effect. Each skill level adds to aggro.\nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff4-Time) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575126,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500155,500169,500168,500146,500140],"components":[{"id":500155,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":0,"attack":{"type":0,"damagePower":-0.65,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2.5},"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490148,"name":"Holy Strike","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second, and adds one layer of Holy Seal effect. Each skill level adds to aggro.\nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff4-Time) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575126,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500155,500169,500168,500146,500140]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/575126.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-2","classId":"rom-knight","group":"general","unlockLevel":4,"sourceSkillId":490159,"name":"Disarmament","description":"Inflicts (DMG0) main hand weapon DPS to the target and reduces its armor value by (Buff7-0)% for (Buff7-Time) seconds. Can be stacked 4 times.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570942,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620959,500165,500159,500158,500157],"components":[{"id":620959,"magicFunc":0,"magicType":4,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":0,"attack":{"type":0,"damagePower":-0.65,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":2,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500165,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-12}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500159,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-9}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500158,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-6}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500157,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-3}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490159,"name":"Disarmament","description":"Inflicts (DMG0) main hand weapon DPS to the target and reduces its armor value by (Buff7-0)% for (Buff7-Time) seconds. Can be stacked 4 times.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570942,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620959,500165,500159,500158,500157]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/570942.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-3","classId":"rom-knight","group":"general","unlockLevel":8,"sourceSkillId":490179,"name":"Strike of Punishment","description":"Deals (DMG0) [SC_SKILLTIPS_DMG|Physical Light Damage] to the target and makes it unable to carry out physical and normal attacks for (Buff4-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":6,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":803035,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500767,500147],"components":[{"id":500767,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":10,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":0,"attack":{"type":0,"damagePower":-20,"damagePowerSkillLevelArg":25,"fixedValue":0,"fixedType":2,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500147,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":126,"effectFlagWords":[2,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490179,"name":"Strike of Punishment","description":"Deals (DMG0) [SC_SKILLTIPS_DMG|Physical Light Damage] to the target and makes it unable to carry out physical and normal attacks for (Buff4-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":6,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":803035,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500767,500147]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/803035.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-4","classId":"rom-knight","group":"general","unlockLevel":12,"sourceSkillId":490152,"name":"Enhanced Armor","description":"Increases [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570930,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500141],"components":[{"id":500141,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":300,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":2,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490152,"name":"Enhanced Armor","description":"Increases [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570930,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500141]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/570930.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-5","classId":"rom-knight","group":"passive","unlockLevel":16,"sourceSkillId":490174,"name":"Defense Technique","description":"Increases parry rate by (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570940,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500218],"components":[{"id":500218,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490174,"name":"Defense Technique","description":"Increases parry rate by (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570940,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500218]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/570940.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-6","classId":"rom-knight","group":"passive","unlockLevel":20,"sourceSkillId":490170,"name":"Resilience","description":"Increases [SC_SKILLTIPS_STA] by (current [SC_SKILLTIPS_STA] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570932,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500214],"components":[{"id":500214,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":3,"value":11},{"type":162,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490170,"name":"Resilience","description":"Increases [SC_SKILLTIPS_STA] by (current [SC_SKILLTIPS_STA] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570932,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500214]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/570932.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-7","classId":"rom-knight","group":"general","unlockLevel":36,"sourceSkillId":490192,"name":"Shield of Discipline","description":"Enhances shield with the power of Light, absorbing (Buff0-0)% [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] for 30 seconds. Also deals (DMG-500213) Light damage to the attacking spell caster. (Shield must be equipped.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":99,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":570965,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500149,500213],"components":[{"id":500149,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":268435683,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":143,"value":5},{"type":142,"value":5}],"abilitySkillLevelArg":23.2,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":490469,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500213,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"attack":{"type":0,"damagePower":-100,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":490192,"name":"Shield of Discipline","description":"Enhances shield with the power of Light, absorbing (Buff0-0)% [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] for 30 seconds. Also deals (DMG-500213) Light damage to the attacking spell caster. (Shield must be equipped.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":99,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":570965,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500149,500213]}}],"sourceFamily":"general:7","icon":"/assets/ui/rom-spells/570965.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-0","classId":"rom-warden","group":"primary","unlockLevel":1,"sourceSkillId":493644,"name":"Energy Absorb","description":"Absorbs target's natural energy to reduce his physical damage by (Buff0-0)% and increase your own physical damage by (Buff4-0)% for (Buff0-Time) seconds.","target":"hostile","range":8,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578296,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504136,504137],"components":[{"id":504136,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":-10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504137,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493644,"name":"Energy Absorb","description":"Absorbs target's natural energy to reduce his physical damage by (Buff0-0)% and increase your own physical damage by (Buff4-0)% for (Buff0-Time) seconds.","target":"hostile","range":8,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578296,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504136,504137]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/578296.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-1","classId":"rom-warden","group":"primary","unlockLevel":1,"sourceSkillId":493333,"name":"Summon Spirit of the Oak","description":"Summons a [102297] to assist you. While in effect, it will increase your [SC_SKILLTIPS_DEF] by (Buff4-0)% and [SC_SKILLTIPS_PARRY_RATE] by (Buff4-1)%.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102297},"source":{"imageId":578258,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503576,620682],"components":[{"id":503576,"magicFunc":3,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102297,"summon":{"creatureId":102297,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}},{"id":620682,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":135,"value":65},{"type":227,"value":20}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493333,"name":"Summon Spirit of the Oak","description":"Summons a [102297] to assist you. While in effect, it will increase your [SC_SKILLTIPS_DEF] by (Buff4-0)% and [SC_SKILLTIPS_PARRY_RATE] by (Buff4-1)%.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102297},"source":{"imageId":578258,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503576,620682]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/578258.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-2","classId":"rom-warden","group":"primary","unlockLevel":1,"sourceSkillId":493382,"name":"Punch","description":"Causes (DMG0) damage to your target and decreases the target's [SC_SKILLTIPS_01] by (Buff4-0)% for (Buff4-Time) seconds.\n[SC_SKILL_COLLECT_01]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":578264,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503575,503582,503650],"components":[{"id":503575,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":0,"attack":{"type":0,"damagePower":-20,"damagePowerSkillLevelArg":33,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503582,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503650,"magicFunc":7,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493382,"name":"Punch","description":"Causes (DMG0) damage to your target and decreases the target's [SC_SKILLTIPS_01] by (Buff4-0)% for (Buff4-Time) seconds.\n[SC_SKILL_COLLECT_01]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":578264,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503575,503582,503650]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/578264.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-3","classId":"rom-warden","group":"primary","unlockLevel":2,"sourceSkillId":493393,"name":"Thorny Vines","description":"Thorny vines pierce your target, causing (Buff0-Dot) physical damage every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578275,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503628],"components":[{"id":503628,"magicFunc":1,"magicType":0,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":493393,"name":"Thorny Vines","description":"Thorny vines pierce your target, causing (Buff0-Dot) physical damage every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578275,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503628]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/578275.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-4","classId":"rom-warden","group":"primary","unlockLevel":6,"sourceSkillId":493398,"name":"Elven Prayer","description":"Heals your pet restoring (current max HP x (DMG-507338)) + (DMG-503636) HP.","target":"self","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":578279,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620138,505155,507338,503636],"components":[{"id":620138,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505155,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":10},{"type":173,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507338,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":2,"fixedValue":0,"attack":{"type":0,"damagePower":2,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503636,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":20,"fixedValue":0,"attack":{"type":0,"damagePower":20,"damagePowerSkillLevelArg":24,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":493398,"name":"Elven Prayer","description":"Heals your pet restoring (current max HP x (DMG-507338)) + (DMG-503636) HP.","target":"self","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":578279,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620138,505155,507338,503636]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/578279.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-5","classId":"rom-warden","group":"primary","unlockLevel":10,"sourceSkillId":493400,"name":"Movement Restriction","description":"Your target is unable to move for (Buff0-Time) seconds. Afterwards it suffers (DMG-503945) damage.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":578281,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503638,504241,503943,503945],"components":[{"id":503638,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":194,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493419,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504241,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":194,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493419,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503943,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":524288,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503945,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-16.4,"fixedValue":0,"attack":{"type":0,"damagePower":-16.4,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":493400,"name":"Movement Restriction","description":"Your target is unable to move for (Buff0-Time) seconds. Afterwards it suffers (DMG-503945) damage.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":578281,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503638,504241,503943,503945]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/578281.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-6","classId":"rom-warden","group":"primary","unlockLevel":14,"sourceSkillId":493344,"name":"Summon Nature Crystal","description":"Summons a [102325] to assist you. While active, you will be immune to all attacks but will not be able to use any attack skills. When the [102325] is present, your [SC_SKILLTIPS_MOVE] will be increased by (Buff4-0)% and you can order the [102325] to cast [498201] and [498202] to assist your party members.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102325},"source":{"imageId":578260,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503578,503948],"components":[{"id":503578,"magicFunc":3,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102325,"summon":{"creatureId":102325,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}},{"id":503948,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":24,"value":7}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":493344,"name":"Summon Nature Crystal","description":"Summons a [102325] to assist you. While active, you will be immune to all attacks but will not be able to use any attack skills. When the [102325] is present, your [SC_SKILLTIPS_MOVE] will be increased by (Buff4-0)% and you can order the [102325] to cast [498201] and [498202] to assist your party members.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102325},"source":{"imageId":578260,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503578,503948]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/578260.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-7","classId":"rom-warden","group":"primary","unlockLevel":14,"sourceSkillId":498202,"name":"Crystalline Acceleration","description":"Increases the [SC_SKILLTIPS_DPS] and [SC_SKILLTIPS_CAST] of team members by (Buff0-620687)% for (Buff-Time-620687) seconds within a radius of 75 from the pet's master.\n[SC_SKILL_COLLECT_01]","target":"self","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578270,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620716,620687],"components":[{"id":620716,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620687,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-5},{"type":51,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":498202,"name":"Crystalline Acceleration","description":"Increases the [SC_SKILLTIPS_DPS] and [SC_SKILLTIPS_CAST] of team members by (Buff0-620687)% for (Buff-Time-620687) seconds within a radius of 75 from the pet's master.\n[SC_SKILL_COLLECT_01]","target":"self","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578270,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620716,620687]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/578270.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-8","classId":"rom-warden","group":"primary","unlockLevel":18,"sourceSkillId":493384,"name":"Entangle","description":"Binds the target tightly to your pet, making it unable to move, attack or cast spells for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578266,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503583,504243,503584],"components":[{"id":503583,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504243,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503584,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":493384,"name":"Entangle","description":"Binds the target tightly to your pet, making it unable to move, attack or cast spells for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578266,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503583,504243,503584]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/578266.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-9","classId":"rom-warden","group":"primary","unlockLevel":22,"sourceSkillId":493399,"name":"Damage Transfer","description":"For (Buff-Time-503643) seconds, (Buff4-0)% of the damage you receive is transferred to your pet. (Pet must be inside a radius of 300.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578280,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504305,503942,503643],"components":[{"id":504305,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503942,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":128,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":30},{"type":142,"value":30}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":493416,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503643,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":493399,"name":"Damage Transfer","description":"For (Buff-Time-503643) seconds, (Buff4-0)% of the damage you receive is transferred to your pet. (Pet must be inside a radius of 300.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578280,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504305,503942,503643]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/578280.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-10","classId":"rom-warden","group":"primary","unlockLevel":24,"sourceSkillId":491668,"name":"Heart of the Oak","description":"You are protected by the power of the Oak and will be able to resist the next 2 attacks. It lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":578261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620679,503946],"components":[{"id":620679,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":363,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5}],"abilitySkillLevelArg":0,"dotTime":3,"dotType":5,"dotBase":1,"dot":{"timeSeconds":3,"type":5,"base":1,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":2,"skillLevelArg":0}},{"id":503946,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":355,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":2,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":491668,"name":"Heart of the Oak","description":"You are protected by the power of the Oak and will be able to resist the next 2 attacks. It lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":578261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620679,503946]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/578261.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-11","classId":"rom-warden","group":"primary","unlockLevel":26,"sourceSkillId":493391,"name":"Frantic Briar","description":"Uses the power of Mother Earth to create a briar, causing (DMG0) main hand weapon DPS to all targets in a range of 80, and decreasing their [SC_SKILLTIPS_MOVE] by (Buff4-0)% for (Buff4-Time) seconds.","target":"self","range":8,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578273,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503481,620682,503626,503947,620694],"components":[{"id":503481,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0},{"id":620682,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":135,"value":65},{"type":227,"value":20}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503626,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503947,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-35}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620694,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":493391,"name":"Frantic Briar","description":"Uses the power of Mother Earth to create a briar, causing (DMG0) main hand weapon DPS to all targets in a range of 80, and decreasing their [SC_SKILLTIPS_MOVE] by (Buff4-0)% for (Buff4-Time) seconds.","target":"self","range":8,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578273,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503481,620682,503626,503947,620694]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/578273.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-13","classId":"rom-warden","group":"primary","unlockLevel":30,"sourceSkillId":493343,"name":"Summon Oak Walker","description":"Summons an [102324] to assist you. While in effect, it increases your [SC_SKILLTIPS_CRI] by (Buff4-0), [SC_SKILLTIPS_CRI_POWER] by (Buff4-1)%, [SC_SKILLTIPS_MCRI] by (Buff4-2), and [SC_SKILLTIPS_MCRI_POWER] by (Buff4-3)%. If your skill attacks land a critical hit during the effect time, the Oak Walker will additionally cast [493385] on your target.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102324},"source":{"imageId":578259,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503577,620678],"components":[{"id":503577,"magicFunc":3,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102324,"summon":{"creatureId":102324,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}},{"id":620678,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":18,"value":200},{"type":19,"value":10},{"type":20,"value":200},{"type":21,"value":10}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":493343,"name":"Summon Oak Walker","description":"Summons an [102324] to assist you. While in effect, it increases your [SC_SKILLTIPS_CRI] by (Buff4-0), [SC_SKILLTIPS_CRI_POWER] by (Buff4-1)%, [SC_SKILLTIPS_MCRI] by (Buff4-2), and [SC_SKILLTIPS_MCRI_POWER] by (Buff4-3)%. If your skill attacks land a critical hit during the effect time, the Oak Walker will additionally cast [493385] on your target.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102324},"source":{"imageId":578259,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503577,620678]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/578259.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-14","classId":"rom-warden","group":"primary","unlockLevel":30,"sourceSkillId":493385,"name":"Sepal Stab","description":"Precisely stab your target causing (DMG0) damage. \n[SC_SKILL_COLLECT_01]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":578267,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503619,503650],"components":[{"id":503619,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":0,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":26,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503650,"magicFunc":7,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":493385,"name":"Sepal Stab","description":"Precisely stab your target causing (DMG0) damage. \n[SC_SKILL_COLLECT_01]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":578267,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503619,503650]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/578267.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-15","classId":"rom-warden","group":"passive","unlockLevel":32,"sourceSkillId":493409,"name":"Two-Hand Weapon Mastery","description":"You can wield two-hand axes and swords, and your two-handed weapon damage is increased by (Buff0-3)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578290,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503647],"components":[{"id":503647,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":90,"value":1},{"type":92,"value":1},{"type":63,"value":5},{"type":65,"value":5},{"type":66,"value":5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":493409,"name":"Two-Hand Weapon Mastery","description":"You can wield two-hand axes and swords, and your two-handed weapon damage is increased by (Buff0-3)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578290,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503647]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/578290.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-16","classId":"rom-warden","group":"primary","unlockLevel":32,"sourceSkillId":493348,"name":"Protection of Nature","description":"Increases your [SC_SKILLTIPS_HP] by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578263,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503581],"components":[{"id":503581,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1},{"type":144,"value":3}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":493348,"name":"Protection of Nature","description":"Increases your [SC_SKILLTIPS_HP] by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578263,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503581]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/578263.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-17","classId":"rom-warden","group":"passive","unlockLevel":34,"sourceSkillId":493407,"name":"Natural Lifeline","description":"Permanently increases your pet's maximum HP by (Buff0-503645)%. Permanently increases your [SC_SKILLTIPS_STA] and [SC_SKILLTIPS_STR] by (current STA or STR + (Buff0-0)) x ((Buff0-1)%) + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578288,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620681,503645],"components":[{"id":620681,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":3,"value":10},{"type":162,"value":1},{"type":2,"value":10},{"type":161,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503645,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":50331747,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":3}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":493407,"name":"Natural Lifeline","description":"Permanently increases your pet's maximum HP by (Buff0-503645)%. Permanently increases your [SC_SKILLTIPS_STA] and [SC_SKILLTIPS_STR] by (current STA or STR + (Buff0-0)) x ((Buff0-1)%) + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578288,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620681,503645]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/578288.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-18","classId":"rom-warden","group":"primary","unlockLevel":36,"sourceSkillId":493397,"name":"Banish","description":"Banishes your target for (Buff0-Time) seconds making it unable to act but also unable to receive damage.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":60000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578278,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503635,504240],"components":[{"id":503635,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[95,24],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504240,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[95,24],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":493397,"name":"Banish","description":"Banishes your target for (Buff0-Time) seconds making it unable to act but also unable to receive damage.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":60000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578278,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503635,504240]}}],"sourceFamily":"primary:18","icon":"/assets/ui/rom-spells/578278.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-19","classId":"rom-warden","group":"primary","unlockLevel":38,"sourceSkillId":493386,"name":"Magic Interference","description":"Reduces your target's [SC_SKILLTIPS_MAG_HITP] and [SC_SKILLTIPS_HITP] by (Buff0-0)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578268,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620711,620712],"components":[{"id":620711,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":199,"value":-2},{"type":197,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620712,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":199,"value":-2},{"type":197,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":493386,"name":"Magic Interference","description":"Reduces your target's [SC_SKILLTIPS_MAG_HITP] and [SC_SKILLTIPS_HITP] by (Buff0-0)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578268,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620711,620712]}}],"sourceFamily":"primary:19","icon":"/assets/ui/rom-spells/578268.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-20","classId":"rom-warden","group":"passive","unlockLevel":40,"sourceSkillId":493401,"name":"Vitality Explosion","description":"The power of Mother Earth flows through you. When you hit your target with [493395] or [493392], you will have a chance of restoring your HP by (DMG-503648). This skill can't be triggered again within (Buff-Time-620677) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503648,620677],"components":[{"id":503648,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":10,"fixedValue":0,"attack":{"type":0,"damagePower":10,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620677,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":493401,"name":"Vitality Explosion","description":"The power of Mother Earth flows through you. When you hit your target with [493395] or [493392], you will have a chance of restoring your HP by (DMG-503648). This skill can't be triggered again within (Buff-Time-620677) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503648,620677]}}],"sourceFamily":"primary:20","icon":"/assets/ui/rom-spells/578282.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-21","classId":"rom-warden","group":"primary","unlockLevel":42,"sourceSkillId":493347,"name":"Power of the Oak","description":"You obtained the power of the Oak, temporary increasing two-hand weapon attack damage by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578262,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503580],"components":[{"id":503580,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":63,"value":3},{"type":65,"value":3},{"type":64,"value":3}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":42,"prerequisites":[],"sourceSkillId":493347,"name":"Power of the Oak","description":"You obtained the power of the Oak, temporary increasing two-hand weapon attack damage by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578262,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503580]}}],"sourceFamily":"primary:21","icon":"/assets/ui/rom-spells/578262.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-22","classId":"rom-warden","group":"primary","unlockLevel":44,"sourceSkillId":493403,"name":"Explosion of Power","description":"Vitalizes your pet's body, increasing your pet's physical and magical attack power by (Buff0-503641)% for (Buff-Time-503641) seconds. (Pet must be inside a radius of 300.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578284,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504198,503641],"components":[{"id":504198,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503641,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5},{"type":171,"value":5}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":44,"prerequisites":[],"sourceSkillId":493403,"name":"Explosion of Power","description":"Vitalizes your pet's body, increasing your pet's physical and magical attack power by (Buff0-503641)% for (Buff-Time-503641) seconds. (Pet must be inside a radius of 300.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578284,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504198,503641]}}],"sourceFamily":"primary:22","icon":"/assets/ui/rom-spells/578284.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-23","classId":"rom-warden","group":"primary","unlockLevel":46,"sourceSkillId":498201,"name":"Crystalline Protection","description":"Casts Crystalline Protection on all team members within a radius of 75 from the pet's master. Negates damage equal to (Buff-Shield-620686)% of maximum HP for (Buff-Time-620686) seconds. \n[SC_SKILL_COLLECT_01]","target":"self","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":578272,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620715,620686],"components":[{"id":620715,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620686,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435811,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":10,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":46,"prerequisites":[],"sourceSkillId":498201,"name":"Crystalline Protection","description":"Casts Crystalline Protection on all team members within a radius of 75 from the pet's master. Negates damage equal to (Buff-Shield-620686)% of maximum HP for (Buff-Time-620686) seconds. \n[SC_SKILL_COLLECT_01]","target":"self","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":578272,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620715,620686]}}],"sourceFamily":"primary:23","icon":"/assets/ui/rom-spells/578272.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-24","classId":"rom-warden","group":"primary","unlockLevel":48,"sourceSkillId":493405,"name":"Elven Guidance","description":"Cast this on your pet. If your pet lands a hit with Punch or Sepal Stab within the next (Buff-Time-503643) seconds you can recover (DMG-503652) MP. (Pet must be within a radius 300.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578286,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503960,503643,503652],"components":[{"id":503960,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503643,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503652,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":30,"fixedValue":0,"attack":{"type":1,"damagePower":30,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":48,"prerequisites":[],"sourceSkillId":493405,"name":"Elven Guidance","description":"Cast this on your pet. If your pet lands a hit with Punch or Sepal Stab within the next (Buff-Time-503643) seconds you can recover (DMG-503652) MP. (Pet must be within a radius 300.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578286,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503960,503643,503652]}}],"sourceFamily":"primary:24","icon":"/assets/ui/rom-spells/578286.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-25","classId":"rom-warden","group":"primary","unlockLevel":50,"sourceSkillId":493394,"name":"Cross Chop","description":"Chop crosswise against your target, dealing (DMG0) main hand weapon DPS plus (FixDMG-503629) times STR damage to the enemies in a straight line in front of your target. If the [102297] is summoned, the skill will grant extra aggro.","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578276,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503629,620682,503950],"components":[{"id":503629,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":8},"summonCreatureId":0},{"id":620682,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":135,"value":65},{"type":227,"value":20}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503950,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[],"sourceSkillId":493394,"name":"Cross Chop","description":"Chop crosswise against your target, dealing (DMG0) main hand weapon DPS plus (FixDMG-503629) times STR damage to the enemies in a straight line in front of your target. If the [102297] is summoned, the skill will grant extra aggro.","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578276,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503629,620682,503950]}}],"sourceFamily":"primary:25","icon":"/assets/ui/rom-spells/578276.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-26","classId":"rom-warden","group":"primary","unlockLevel":1,"sourceSkillId":493645,"name":"Recall Pet","description":"Recall your pet.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578384,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504199],"components":[{"id":504199,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493645,"name":"Recall Pet","description":"Recall your pet.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578384,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504199]}}],"sourceFamily":"primary:26","icon":"/assets/ui/rom-spells/578384.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-0","classId":"rom-warden","group":"general","unlockLevel":1,"sourceSkillId":493395,"name":"Charged Chop","description":"Concentrates power in your weapon, then releases it to strike a mighty blow! Causes (DMG0) main hand weapon DPS plus (FixDMG-503630) times STR to your target. \nIt shares [SC_SKILLTIPS_CDTIME] with [493392].","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":1000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578277,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503630],"components":[{"id":503630,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.2,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-1.2,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493395,"name":"Charged Chop","description":"Concentrates power in your weapon, then releases it to strike a mighty blow! Causes (DMG0) main hand weapon DPS plus (FixDMG-503630) times STR to your target. \nIt shares [SC_SKILLTIPS_CDTIME] with [493392].","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":1000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578277,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503630]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/578277.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-1","classId":"rom-warden","group":"general","unlockLevel":4,"sourceSkillId":493642,"name":"Briar Shield","description":"Thorns surround you for (Buff0-Time) seconds, increasing your [SC_SKILLTIPS_DEF] by (Buff0-0)%. When you are physically attacked, it reflects (DMG-503959) main hand weapon DPS.\n(Only effective on targets within a range of 50)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578293,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503958,503959],"components":[{"id":503958,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":183,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":11,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":493643,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503959,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.01,"fixedValue":0,"attack":{"type":0,"damagePower":-0.01,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":493642,"name":"Briar Shield","description":"Thorns surround you for (Buff0-Time) seconds, increasing your [SC_SKILLTIPS_DEF] by (Buff0-0)%. When you are physically attacked, it reflects (DMG-503959) main hand weapon DPS.\n(Only effective on targets within a range of 50)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578293,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503958,503959]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/578293.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-2","classId":"rom-warden","group":"general","unlockLevel":8,"sourceSkillId":493392,"name":"Power of the Wood Spirit","description":"Uses the Power of the Wood Spirit to attack up to 3 targets, causing (DMG0) main hand weapon DPS. It shares [SC_SKILLTIPS_CDTIME] with [493395].","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":1000,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578274,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503627],"components":[{"id":503627,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":493392,"name":"Power of the Wood Spirit","description":"Uses the Power of the Wood Spirit to attack up to 3 targets, causing (DMG0) main hand weapon DPS. It shares [SC_SKILLTIPS_CDTIME] with [493395].","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":1000,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578274,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503627]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/578274.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-3","classId":"rom-warden","group":"passive","unlockLevel":12,"sourceSkillId":493608,"name":"Enhanced Accuracy","description":"Increases your physical attack accuracy by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578292,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503956],"components":[{"id":503956,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":1}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":493608,"name":"Enhanced Accuracy","description":"Increases your physical attack accuracy by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578292,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503956]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/578292.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-4","classId":"rom-warden","group":"general","unlockLevel":16,"sourceSkillId":493402,"name":"Elven Amulet","description":"You obtain the protection of the Elves. Received physical damage is reduced by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":70000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578283,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503957],"components":[{"id":503957,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":493402,"name":"Elven Amulet","description":"You obtain the protection of the Elves. Received physical damage is reduced by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":70000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578283,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503957]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/578283.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-5","classId":"rom-warden","group":"general","unlockLevel":20,"sourceSkillId":493406,"name":"Savage Power","description":"Draws out the savage power inside of you, temporarily increasing your physical attack power by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578287,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503644],"components":[{"id":503644,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":3}],"abilitySkillLevelArg":9.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":493406,"name":"Savage Power","description":"Draws out the savage power inside of you, temporarily increasing your physical attack power by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578287,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503644]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/578287.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-0","classId":"rom-druid","group":"primary","unlockLevel":1,"sourceSkillId":493538,"name":"Earth Arrow","description":"The power of Mother Earth manifests in your hand causing (DMG0) Earth damage to your target, and also gaining 1 point of Nature's Power.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":12,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578366,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620211,504126],"components":[{"id":620211,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":28,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504126,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493538,"name":"Earth Arrow","description":"The power of Mother Earth manifests in your hand causing (DMG0) Earth damage to your target, and also gaining 1 point of Nature's Power.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":12,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578366,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620211,504126]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/578366.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-1","classId":"rom-druid","group":"primary","unlockLevel":2,"sourceSkillId":493539,"name":"Briar Entwinement","description":"Pours the power of Mother Earth into your target causing every 2 seconds (Buff0-Dot) Earth damage for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578367,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503808],"components":[{"id":503808,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":493539,"name":"Briar Entwinement","description":"Pours the power of Mother Earth into your target causing every 2 seconds (Buff0-Dot) Earth damage for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578367,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503808]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/578367.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-2","classId":"rom-druid","group":"primary","unlockLevel":2,"sourceSkillId":493534,"name":"Purify","description":"Cleanses your target from curses.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578362,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503803],"components":[{"id":503803,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":493534,"name":"Purify","description":"Cleanses your target from curses.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578362,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503803]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/578362.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-3","classId":"rom-druid","group":"primary","unlockLevel":6,"sourceSkillId":493526,"name":"Restore Life","description":"Condenses the power of Mother Earth to restore (DMG0) HP to your target. Also regain 1 point of Nature's Power.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":578354,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503794,503999],"components":[{"id":503794,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"damagePower":70,"damagePowerSkillLevelArg":28,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503999,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":493526,"name":"Restore Life","description":"Condenses the power of Mother Earth to restore (DMG0) HP to your target. Also regain 1 point of Nature's Power.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":578354,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503794,503999]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/578354.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-4","classId":"rom-druid","group":"primary","unlockLevel":10,"sourceSkillId":493527,"name":"Blossoming Life","description":"Lets your target regenerate (Buff0-Dot) HP every 2 seconds for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578355,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503795],"components":[{"id":503795,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":8299,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":25,"dot":{"timeSeconds":2,"type":0,"base":25,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":493527,"name":"Blossoming Life","description":"Lets your target regenerate (Buff0-Dot) HP every 2 seconds for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578355,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503795]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/578355.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-5","classId":"rom-druid","group":"primary","unlockLevel":10,"sourceSkillId":493548,"name":"Unity with Mother Earth","description":"Enables every spell you cast to land a critical attack, and increases [SC_SKILLTIPS_HEAL] by (Buff0-0)% for (Buff0-Time) seconds, but you will be unable to move during this time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578375,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503817],"components":[{"id":503817,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,64],"abilityModifiers":[{"type":149,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":493548,"name":"Unity with Mother Earth","description":"Enables every spell you cast to land a critical attack, and increases [SC_SKILLTIPS_HEAL] by (Buff0-0)% for (Buff0-Time) seconds, but you will be unable to move during this time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578375,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503817]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/578375.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-6","classId":"rom-druid","group":"primary","unlockLevel":12,"sourceSkillId":493537,"name":"Rebirth","description":"Uses the power of nature to revive your target. Reduces death debt by 30%. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[503806],"components":[{"id":503806,"magicFunc":8,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":30},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":493537,"name":"Rebirth","description":"Uses the power of nature to revive your target. Reduces death debt by 30%. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[503806]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/578365.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-7","classId":"rom-druid","group":"primary","unlockLevel":14,"sourceSkillId":493546,"name":"Weakening Seed","description":"Plants a seed into your target's body reducing its [SC_SKILLTIPS_MDEF] by (Buff1-0)% for (Buff1-Time) seconds, and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and reduce target's [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds. Also 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578374,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503815,503827,620458,504131],"components":[{"id":503815,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":170,"abilityModifiers":[{"type":170,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620458,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":170,"abilityModifiers":[{"type":170,"value":-2}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504131,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":493546,"name":"Weakening Seed","description":"Plants a seed into your target's body reducing its [SC_SKILLTIPS_MDEF] by (Buff1-0)% for (Buff1-Time) seconds, and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and reduce target's [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds. Also 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578374,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503815,503827,620458,504131]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/578374.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-8","classId":"rom-druid","group":"primary","unlockLevel":18,"sourceSkillId":493543,"name":"Rockslide","description":"Hits your target with falling stones after (Buff0-Time) seconds causing (DMG-503824) Earth damage.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578382,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503812,503823,503824],"components":[{"id":503812,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":8386,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493553,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503823,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503824,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":0,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":493543,"name":"Rockslide","description":"Hits your target with falling stones after (Buff0-Time) seconds causing (DMG-503824) Earth damage.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578382,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503812,503823,503824]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/578382.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-9","classId":"rom-druid","group":"passive","unlockLevel":22,"sourceSkillId":493550,"name":"Knowledge of the Earth","description":"Makes you understand the flow of Mother Earth's energy, permanently increasing your magical Earth damage by (Buff0-0)% and your Earth resistance by (Buff0-1).\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578378,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503820],"components":[{"id":503820,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":10,"abilityModifiers":[{"type":45,"value":5},{"type":27,"value":2}],"abilitySkillLevelArg":23.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":493550,"name":"Knowledge of the Earth","description":"Makes you understand the flow of Mother Earth's energy, permanently increasing your magical Earth damage by (Buff0-0)% and your Earth resistance by (Buff0-1).\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578378,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503820]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/578378.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-10","classId":"rom-druid","group":"primary","unlockLevel":24,"sourceSkillId":493541,"name":"Binding Silence","description":"Causes (DMG0) [SC_SKILLTIPS_EARTH] and interrupts target's spell casting, rewarding you with 1 point of Nature's Power. (The interrupted spell will enter a cooldown. If the interrupted spell has no cooldown time, all spells will receive a cooldown of 3 seconds.)","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":578369,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503810,502703,504127],"components":[{"id":503810,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"attack":{"type":0,"damagePower":-100,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502703,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504127,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":493541,"name":"Binding Silence","description":"Causes (DMG0) [SC_SKILLTIPS_EARTH] and interrupts target's spell casting, rewarding you with 1 point of Nature's Power. (The interrupted spell will enter a cooldown. If the interrupted spell has no cooldown time, all spells will receive a cooldown of 3 seconds.)","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":578369,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503810,502703,504127]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/578369.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-11","classId":"rom-druid","group":"primary","unlockLevel":26,"sourceSkillId":493547,"name":"Curing Seed","description":"Plants a healing seed into your target's body increasing the efficiency of heals received by (Buff0-0)% for (Buff0-Time) seconds. This restores 1 point of Nature's Power.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578381,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503816,504132],"components":[{"id":503816,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":174,"abilityModifiers":[{"type":144,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504132,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":493547,"name":"Curing Seed","description":"Plants a healing seed into your target's body increasing the efficiency of heals received by (Buff0-0)% for (Buff0-Time) seconds. This restores 1 point of Nature's Power.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578381,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503816,504132]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/578381.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-12","classId":"rom-druid","group":"primary","unlockLevel":28,"sourceSkillId":493530,"name":"Concentration Prayer","description":"Sends a prayer to Mother Nature, beseeching her to increase all of your party members' [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578358,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503799,507209],"components":[{"id":503799,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":600,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":5,"value":10}],"abilitySkillLevelArg":10,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495932,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507209,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":600,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":164,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":493530,"name":"Concentration Prayer","description":"Sends a prayer to Mother Nature, beseeching her to increase all of your party members' [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578358,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503799,507209]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/578358.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-13","classId":"rom-druid","group":"passive","unlockLevel":30,"sourceSkillId":493552,"name":"Pure Healing","description":"Permanently increases your heals by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578380,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503822],"components":[{"id":503822,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":5}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":493552,"name":"Pure Healing","description":"Permanently increases your heals by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578380,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503822]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/578380.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-14","classId":"rom-druid","group":"primary","unlockLevel":32,"sourceSkillId":493544,"name":"Rock Protection","description":"Makes your body as hard as rock reducing damage taken by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578372,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503813,509797],"components":[{"id":503813,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":178,"abilityModifiers":[{"type":143,"value":45}],"abilitySkillLevelArg":2.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509797,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268959969,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":45}],"abilitySkillLevelArg":2.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":493544,"name":"Rock Protection","description":"Makes your body as hard as rock reducing damage taken by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578372,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503813,509797]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/578372.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-15","classId":"rom-druid","group":"primary","unlockLevel":34,"sourceSkillId":493536,"name":"Spirit Guidance","description":"Consumes 1 point of Nature's Power, channeling it into your target, making it friendly for (Buff0-Time) seconds. (Cannot be used on players. If your reputation has a negative value, the target will still regard you as an enemy.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578364,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503805,503833,504109],"components":[{"id":503805,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":16777410,"specialActionFlags":0,"assistType":101,"effectFlagWords":[0,1024],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493557,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503833,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504109,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":493536,"name":"Spirit Guidance","description":"Consumes 1 point of Nature's Power, channeling it into your target, making it friendly for (Buff0-Time) seconds. (Cannot be used on players. If your reputation has a negative value, the target will still regard you as an enemy.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578364,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503805,503833,504109]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/578364.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-16","classId":"rom-druid","group":"primary","unlockLevel":36,"sourceSkillId":493532,"name":"Body Vitalization","description":"Increase target's [SC_SKILLTIPS_DPS] by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578360,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503801],"components":[{"id":503801,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":9,"abilityModifiers":[{"type":23,"value":-2}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":493532,"name":"Body Vitalization","description":"Increase target's [SC_SKILLTIPS_DPS] by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578360,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503801]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/578360.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-17","classId":"rom-druid","group":"primary","unlockLevel":38,"sourceSkillId":493529,"name":"Mother Earth's Fountain","description":"Restores (DMG1) HP to your friendly targets within a range of 100 around the target of your spell.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance the power and restore (DMG0) HP.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":578357,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503798,503827,503828,620441],"components":[{"id":503798,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"damagePower":70,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503828,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":56,"fixedValue":0,"attack":{"type":0,"damagePower":56,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":493529,"name":"Mother Earth's Fountain","description":"Restores (DMG1) HP to your friendly targets within a range of 100 around the target of your spell.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance the power and restore (DMG0) HP.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":578357,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503798,503827,503828,620441]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/578357.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-18","classId":"rom-druid","group":"passive","unlockLevel":40,"sourceSkillId":493555,"name":"Power of Protection","description":"Additionally increases the damage reduction of Mother Earth's Protection.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578383,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":493555,"name":"Power of Protection","description":"Additionally increases the damage reduction of Mother Earth's Protection.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578383,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"sourceFamily":"primary:18","icon":"/assets/ui/rom-spells/578383.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-19","classId":"rom-druid","group":"primary","unlockLevel":42,"sourceSkillId":493545,"name":"Withering Seed","description":"Plants a seed into your target's body reducing its [SC_SKILLTIPS_DEF] by (Buff1-0)% for (Buff1-Time) seconds, and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and reduce target's [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds. Also, 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578373,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503814,503827,620457,504130],"components":[{"id":503814,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620457,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-2}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504130,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":42,"prerequisites":[],"sourceSkillId":493545,"name":"Withering Seed","description":"Plants a seed into your target's body reducing its [SC_SKILLTIPS_DEF] by (Buff1-0)% for (Buff1-Time) seconds, and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and reduce target's [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds. Also, 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578373,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503814,503827,620457,504130]}}],"sourceFamily":"primary:19","icon":"/assets/ui/rom-spells/578373.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-20","classId":"rom-druid","group":"primary","unlockLevel":44,"sourceSkillId":493549,"name":"Mother Nature's Wrath","description":"Inflicts (DMG1) [SC_SKILLTIPS_EARTH] on your target, and (Buff4-Dot) [SC_SKILLTIPS_EARTH] every 2 seconds for (Buff4-Time) seconds. Also restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_EARTH] and (Buff4-Dot) [SC_SKILLTIPS_EARTH] every 2 seconds for (Buff4-Time) seconds. Also 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":65,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":578376,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620214,503827,620450,503819,503999],"components":[{"id":620214,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-60,"damagePowerSkillLevelArg":22,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620450,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-48,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-48,"damagePowerSkillLevelArg":22,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503819,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":23},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503999,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":44,"prerequisites":[],"sourceSkillId":493549,"name":"Mother Nature's Wrath","description":"Inflicts (DMG1) [SC_SKILLTIPS_EARTH] on your target, and (Buff4-Dot) [SC_SKILLTIPS_EARTH] every 2 seconds for (Buff4-Time) seconds. Also restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_EARTH] and (Buff4-Dot) [SC_SKILLTIPS_EARTH] every 2 seconds for (Buff4-Time) seconds. Also 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":65,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":578376,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620214,503827,620450,503819,503999]}}],"sourceFamily":"primary:20","icon":"/assets/ui/rom-spells/578376.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-21","classId":"rom-druid","group":"primary","unlockLevel":46,"sourceSkillId":493542,"name":"Summon Sandstorm","description":"Summons a large amount of sand and stones causing (DMG1) [SC_SKILLTIPS_EARTH] to multiple targets in range. \nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and cause (DMG0) [SC_SKILLTIPS_EARTH] to all targets in range twice.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578370,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620439,503827,620459,620441],"components":[{"id":620439,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":28,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620459,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":28,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":46,"prerequisites":[],"sourceSkillId":493542,"name":"Summon Sandstorm","description":"Summons a large amount of sand and stones causing (DMG1) [SC_SKILLTIPS_EARTH] to multiple targets in range. \nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and cause (DMG0) [SC_SKILLTIPS_EARTH] to all targets in range twice.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578370,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620439,503827,620459,620441]}}],"sourceFamily":"primary:21","icon":"/assets/ui/rom-spells/578370.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-22","classId":"rom-druid","group":"primary","unlockLevel":22,"sourceSkillId":493559,"name":"Advanced Rebirth","description":"Through Nature's power and the consumption of an [203606] you can revive your target with 45% less death debt. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[504134],"components":[{"id":504134,"magicFunc":8,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":45},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":493559,"name":"Advanced Rebirth","description":"Through Nature's power and the consumption of an [203606] you can revive your target with 45% less death debt. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[504134]}}],"sourceFamily":"primary:22","icon":"/assets/ui/rom-spells/578365.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-23","classId":"rom-druid","group":"primary","unlockLevel":32,"sourceSkillId":493560,"name":"Supreme Rebirth","description":"Through Nature's power and the consumption of a [203605] you can revive your target with 75% less death debt. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[504135],"components":[{"id":504135,"magicFunc":8,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":75},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":493560,"name":"Supreme Rebirth","description":"Through Nature's power and the consumption of a [203605] you can revive your target with 75% less death debt. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[504135]}}],"sourceFamily":"primary:23","icon":"/assets/ui/rom-spells/578365.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-0","classId":"rom-druid","group":"general","unlockLevel":1,"sourceSkillId":493528,"name":"Recover","description":"Restores (DMG0) HP to your target and (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.4},"source":{"imageId":578356,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503796,503797],"components":[{"id":503796,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":40,"fixedValue":0,"attack":{"type":0,"damagePower":40,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503797,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":14,"hateCost":0,"settingFlags":8299,"specialActionFlags":0,"assistType":131,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493528,"name":"Recover","description":"Restores (DMG0) HP to your target and (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.4},"source":{"imageId":578356,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503796,503797]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/578356.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-1","classId":"rom-druid","group":"general","unlockLevel":4,"sourceSkillId":493535,"name":"Antidote","description":"Cleanses your target from poison.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578363,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503804],"components":[{"id":503804,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":493535,"name":"Antidote","description":"Cleanses your target from poison.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578363,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503804]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/578363.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-2","classId":"rom-druid","group":"general","unlockLevel":8,"sourceSkillId":493531,"name":"Savage Blessing","description":"Increases target's [SC_SKILLTIPS_HIT] and [SC_SKILLTIPS_MAG_HIT] by (Buff0-0)% + (Buff4-0) for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578359,"sourceEffectType":0,"sourceTarget":7,"componentIds":[620454,620455],"components":[{"id":620454,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":1},{"type":199,"value":1}],"abilitySkillLevelArg":9,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493561,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620455,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":16,"value":20},{"type":195,"value":20}],"abilitySkillLevelArg":70,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":493531,"name":"Savage Blessing","description":"Increases target's [SC_SKILLTIPS_HIT] and [SC_SKILLTIPS_MAG_HIT] by (Buff0-0)% + (Buff4-0) for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578359,"sourceEffectType":0,"sourceTarget":7,"componentIds":[620454,620455]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/578359.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-3","classId":"rom-druid","group":"general","unlockLevel":12,"sourceSkillId":493540,"name":"Earth Pulse","description":"The power of Mother Earth strikes the targets in a straight line before you causing (DMG0) Earth damage.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":578368,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620212],"components":[{"id":620212,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":25,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":493540,"name":"Earth Pulse","description":"The power of Mother Earth strikes the targets in a straight line before you causing (DMG0) Earth damage.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":578368,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620212]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/578368.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-4","classId":"rom-druid","group":"passive","unlockLevel":16,"sourceSkillId":493551,"name":"Knowledge of Nature","description":"Increases [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff4-0)% + (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578379,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503821,507208],"components":[{"id":503821,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":5,"value":10}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507208,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":164,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":493551,"name":"Knowledge of Nature","description":"Increases [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff4-0)% + (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578379,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503821,507208]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/578379.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-5","classId":"rom-druid","group":"general","unlockLevel":20,"sourceSkillId":493533,"name":"Mother Earth's Protection","description":"Uses the power of Mother Earth to build a protective shield around your target reducing its suffered magical and physical damage by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578361,"sourceEffectType":0,"sourceTarget":1,"componentIds":[503802,509795],"components":[{"id":503802,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":178,"abilityModifiers":[{"type":143,"value":20}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509795,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268959969,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":20},{"type":143,"value":0}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":493533,"name":"Mother Earth's Protection","description":"Uses the power of Mother Earth to build a protective shield around your target reducing its suffered magical and physical damage by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578361,"sourceEffectType":0,"sourceTarget":1,"componentIds":[503802,509795]}},{"rank":2,"level":40,"prerequisites":[493555],"sourceSkillId":493558,"name":"Mother Earth's Protection","description":"Uses the power of Mother Earth to build a protective shield around your target reducing its suffered magical and physical damage by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578361,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503826,509796],"components":[{"id":503826,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":178,"abilityModifiers":[{"type":143,"value":40}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509796,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268959969,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":40}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/578361.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-0","classId":"rom-warlock","group":"primary","unlockLevel":6,"sourceSkillId":497960,"name":"Perception Extraction","description":"Steals the target's senses and inflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] every second. It also restores (Buff8-Dot) focus every 2 seconds. The effect lasts for (Buff0-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800083,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621701,621446,621655],"components":[{"id":621701,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":26,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":1,"type":0,"base":-6,"skillLevelArg":80},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621446,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":223,"value":9},{"type":226,"value":9}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621655,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":26,"hateCost":0,"settingFlags":75,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":3,"dotBase":2,"dot":{"timeSeconds":2,"type":3,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":497960,"name":"Perception Extraction","description":"Steals the target's senses and inflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] every second. It also restores (Buff8-Dot) focus every 2 seconds. The effect lasts for (Buff0-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800083,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621701,621446,621655]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/800083.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-1","classId":"rom-warlock","group":"primary","unlockLevel":6,"sourceSkillId":497955,"name":"Willpower Blade","description":"|cff9D53E3 Willpower becomes a keen blade, allowing powerful psychic attack skills to be used. |r\nWhen a Warlock has an energy influx of 6 psi, they can choose to release the power of [497955]. Specific skills can only be used in this state, which lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":18000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800374,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501571,621404],"components":[{"id":501571,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498680,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621404,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524355,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":163,"value":2}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":497955,"name":"Willpower Blade","description":"|cff9D53E3 Willpower becomes a keen blade, allowing powerful psychic attack skills to be used. |r\nWhen a Warlock has an energy influx of 6 psi, they can choose to release the power of [497955]. Specific skills can only be used in this state, which lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":18000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800374,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501571,621404]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/800374.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-2","classId":"rom-warlock","group":"primary","unlockLevel":6,"sourceSkillId":497956,"name":"Willpower Construct","description":"|cff6E6DE7 Thoughts are constructed to form solid willpower, allowing powerful psychic support skills to be used. |r\nWhen a Warlock has an energy influx of 6 psi, they can choose to release the power of [497956]. Specific skills can only be used in this state. Lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":18000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800375,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501572,621404],"components":[{"id":501572,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498680,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621404,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524355,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":163,"value":2}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":497956,"name":"Willpower Construct","description":"|cff6E6DE7 Thoughts are constructed to form solid willpower, allowing powerful psychic support skills to be used. |r\nWhen a Warlock has an energy influx of 6 psi, they can choose to release the power of [497956]. Specific skills can only be used in this state. Lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":18000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800375,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501572,621404]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/800375.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-3","classId":"rom-warlock","group":"primary","unlockLevel":10,"sourceSkillId":497962,"name":"Severed Consciousness","description":"[SC_SKILLTIPS_P1]\nSolid willpower is transformed into a keen weapon to continuously attack the target 4 times. Inflicts (DMG0) + (FixDMG-621186) x INT [SC_SKILLTIPS_DARK].\n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":800085,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621186],"components":[{"id":621186,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-50,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":497962,"name":"Severed Consciousness","description":"[SC_SKILLTIPS_P1]\nSolid willpower is transformed into a keen weapon to continuously attack the target 4 times. Inflicts (DMG0) + (FixDMG-621186) x INT [SC_SKILLTIPS_DARK].\n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":800085,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621186]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/800085.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-4","classId":"rom-warlock","group":"primary","unlockLevel":10,"sourceSkillId":497963,"name":"Locked Heart","description":"[SC_SKILLTIPS_P2]\nReduces the caster's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% for (Buff0-Time) seconds. Also increases [SC_SKILLTIPS_MOVE] by (Buff0-2)%, but no other skills can be used while in effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800086,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621187],"components":[{"id":621187,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[3,0],"abilityModifiers":[{"type":206,"value":-80},{"type":207,"value":-80},{"type":24,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":497963,"name":"Locked Heart","description":"[SC_SKILLTIPS_P2]\nReduces the caster's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% for (Buff0-Time) seconds. Also increases [SC_SKILLTIPS_MOVE] by (Buff0-2)%, but no other skills can be used while in effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800086,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621187]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/800086.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-5","classId":"rom-warlock","group":"primary","unlockLevel":14,"sourceSkillId":497965,"name":"Shield of Solid Mind","description":"Brainpower turns into a protective shield. Repels an amount of damage equal to (Buff0-Shield)% of the caster's healing bonus + 80 points for (Buff0-Time) seconds. The caster will receive the effect of [621190] and [497965] can't be cast on the caster while in effect.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":800088,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621189,621190],"components":[{"id":621189,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":179,"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":4,"effect":0,"point":8,"skillLevelArg":100}},{"id":621190,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":497965,"name":"Shield of Solid Mind","description":"Brainpower turns into a protective shield. Repels an amount of damage equal to (Buff0-Shield)% of the caster's healing bonus + 80 points for (Buff0-Time) seconds. The caster will receive the effect of [621190] and [497965] can't be cast on the caster while in effect.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":800088,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621189,621190]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/800088.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-6","classId":"rom-warlock","group":"primary","unlockLevel":20,"sourceSkillId":498542,"name":"Mind Barrier","description":"[SC_SKILLTIPS_P2]\nTransforms brainpower into a protective shield around a specified area. Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of multiple friendly targets in the area by (Buff0-621196)%. Also increases [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff2-621196)%. The effect lasts (Buff-Time-621682) seconds.","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573079,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621195,621196,621682],"components":[{"id":621195,"magicFunc":6,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621196,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":5},{"type":143,"value":5},{"type":144,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621682,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":9,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":498542,"name":"Mind Barrier","description":"[SC_SKILLTIPS_P2]\nTransforms brainpower into a protective shield around a specified area. Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of multiple friendly targets in the area by (Buff0-621196)%. Also increases [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff2-621196)%. The effect lasts (Buff-Time-621682) seconds.","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573079,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621195,621196,621682]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/573079.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-7","classId":"rom-warlock","group":"primary","unlockLevel":20,"sourceSkillId":498544,"name":"Ruthless Judgment","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] to the enemy. \nIf the target's HP falls below 20%, you will receive the [621199] state, increasing [SC_SKILLTIPS_MDMG] by (Buff0-621199)% for (Buff-Time-621199) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800093,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621197,621198,621199],"components":[{"id":621197,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-120,"fixedValue":0,"attack":{"type":0,"damagePower":-120,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621198,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621199,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":498544,"name":"Ruthless Judgment","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] to the enemy. \nIf the target's HP falls below 20%, you will receive the [621199] state, increasing [SC_SKILLTIPS_MDMG] by (Buff0-621199)% for (Buff-Time-621199) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800093,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621197,621198,621199]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/800093.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-8","classId":"rom-warlock","group":"primary","unlockLevel":22,"sourceSkillId":498545,"name":"Heart Collection Strike","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] to the target and restores (DMG8) focus. If target's HP is greater than 70%, this skill's critical hit rate will be raised by 50%. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":8000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.81},"source":{"imageId":800094,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621200,621201,621446,621193],"components":[{"id":621200,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-81,"fixedValue":0,"attack":{"type":0,"damagePower":-81,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":50,"hateRate":1},"summonCreatureId":0},{"id":621201,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-81,"fixedValue":0,"attack":{"type":0,"damagePower":-81,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621446,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":223,"value":9},{"type":226,"value":9}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621193,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":50,"fixedValue":0,"attack":{"type":3,"damagePower":50,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":498545,"name":"Heart Collection Strike","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] to the target and restores (DMG8) focus. If target's HP is greater than 70%, this skill's critical hit rate will be raised by 50%. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":8000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.81},"source":{"imageId":800094,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621200,621201,621446,621193]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/800094.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-9","classId":"rom-warlock","group":"passive","unlockLevel":24,"sourceSkillId":498546,"name":"Ill Will","description":"Permanently increases dark attribute magic power by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800095,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621267],"components":[{"id":621267,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":50,"value":6}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":498546,"name":"Ill Will","description":"Permanently increases dark attribute magic power by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800095,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621267]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/800095.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-10","classId":"rom-warlock","group":"primary","unlockLevel":26,"sourceSkillId":498547,"name":"Beast's Roar","description":"Summons beasts of evil to surround the caster. Constantly Inflicts (DMG-621271) [SC_SKILLTIPS_DARK] to multiple nearby targets for (Buff0-Time) seconds. Also reduces target's [SC_SKILLTIPS_MOVE] by (Buff0-621269)%. Lasts (Buff-Time-621269) seconds. \n(If the target is a player, effect lasts for (Buff-Time-621543) seconds.) \n[SC_SKILLTIPS_03]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800096,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621268,621271,621269,621543],"components":[{"id":621268,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":-1879048121,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498548,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621271,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"attack":{"type":0,"damagePower":-10,"damagePowerSkillLevelArg":35,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621269,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-20}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621543,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-20}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":498547,"name":"Beast's Roar","description":"Summons beasts of evil to surround the caster. Constantly Inflicts (DMG-621271) [SC_SKILLTIPS_DARK] to multiple nearby targets for (Buff0-Time) seconds. Also reduces target's [SC_SKILLTIPS_MOVE] by (Buff0-621269)%. Lasts (Buff-Time-621269) seconds. \n(If the target is a player, effect lasts for (Buff-Time-621543) seconds.) \n[SC_SKILLTIPS_03]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800096,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621268,621271,621269,621543]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/800096.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-11","classId":"rom-warlock","group":"primary","unlockLevel":28,"sourceSkillId":498549,"name":"Defense Net","description":"Reduces target's [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% for (Buff0-Time) seconds. Also provides immunity to the effects of Helpless, Stun, Root and Slow. \n(Target must be affected by Movement Impairing Effect or Stun for removal to work.) \n[SC_SKILLTIPS_FEAR]\n[SC_SKILLTIPS_LEVEL20]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800097,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621270],"components":[{"id":621270,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":50}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":498549,"name":"Defense Net","description":"Reduces target's [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% for (Buff0-Time) seconds. Also provides immunity to the effects of Helpless, Stun, Root and Slow. \n(Target must be affected by Movement Impairing Effect or Stun for removal to work.) \n[SC_SKILLTIPS_FEAR]\n[SC_SKILLTIPS_LEVEL20]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800097,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621270]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/800097.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-12","classId":"rom-warlock","group":"primary","unlockLevel":30,"sourceSkillId":498550,"name":"Soul Trauma","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] on the enemy. If target is in a [501577] state, the target will be stunned for (Buff8-Time) seconds. \n(If the target is a player, effect lasts for (Buff4-Time) seconds.) \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":800098,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621272,621274,501577,621273],"components":[{"id":621272,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":0,"attack":{"type":0,"damagePower":-50,"damagePowerSkillLevelArg":25,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621274,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621273,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":498550,"name":"Soul Trauma","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] on the enemy. If target is in a [501577] state, the target will be stunned for (Buff8-Time) seconds. \n(If the target is a player, effect lasts for (Buff4-Time) seconds.) \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":800098,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621272,621274,501577,621273]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/800098.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-13","classId":"rom-warlock","group":"primary","unlockLevel":30,"sourceSkillId":498551,"name":"Otherworldly Whisper","description":"[SC_SKILLTIPS_P2]\nWhispers a chant 5 times to give all nearby party members an [498551] increasing [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by 2% for (Buff0-Time) seconds. \nAlso reduces the caster's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff4-0)%.\n[SC_SKILLTIPS_LEVEL20]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800099,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621275,621276],"components":[{"id":621275,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":2},{"type":171,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621276,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":50},{"type":143,"value":50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":498551,"name":"Otherworldly Whisper","description":"[SC_SKILLTIPS_P2]\nWhispers a chant 5 times to give all nearby party members an [498551] increasing [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by 2% for (Buff0-Time) seconds. \nAlso reduces the caster's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff4-0)%.\n[SC_SKILLTIPS_LEVEL20]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800099,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621275,621276]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/800099.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-14","classId":"rom-warlock","group":"primary","unlockLevel":30,"sourceSkillId":498552,"name":"Knowledge Acquisition","description":"[SC_SKILLTIPS_P1]\nRecovers (Buff0-Dot) Focus every second for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800100,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621277],"components":[{"id":621277,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":75,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":1,"dotType":3,"dotBase":2,"dot":{"timeSeconds":1,"type":3,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":498552,"name":"Knowledge Acquisition","description":"[SC_SKILLTIPS_P1]\nRecovers (Buff0-Dot) Focus every second for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800100,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621277]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/800100.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-15","classId":"rom-warlock","group":"primary","unlockLevel":32,"sourceSkillId":498553,"name":"Puzzlement","description":"Confuses the target's awareness to deal heavy damage. Inflicts (DMG0) [SC_SKILLTIPS_DARK] on target. \n[SC_SKILLTIPS_9_2S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":25000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800101,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621278],"components":[{"id":621278,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"attack":{"type":0,"damagePower":-100,"damagePowerSkillLevelArg":45,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":498553,"name":"Puzzlement","description":"Confuses the target's awareness to deal heavy damage. Inflicts (DMG0) [SC_SKILLTIPS_DARK] on target. \n[SC_SKILLTIPS_9_2S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":25000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800101,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621278]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/800101.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-16","classId":"rom-warlock","group":"primary","unlockLevel":34,"sourceSkillId":498554,"name":"Calm Paradox","description":"Activates party members' latent potential for defense that is buried deep within. Increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-2)%. Also reduces [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. Lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800102,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621279],"components":[{"id":621279,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-5},{"type":171,"value":-5},{"type":135,"value":5},{"type":170,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":498554,"name":"Calm Paradox","description":"Activates party members' latent potential for defense that is buried deep within. Increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-2)%. Also reduces [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. Lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800102,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621279]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/800102.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-17","classId":"rom-warlock","group":"primary","unlockLevel":36,"sourceSkillId":498555,"name":"Surge of Awareness","description":"Activates the latent attack potential of nearby party members. Increases [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. Also reduces [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-2)%. Lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800108,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621280],"components":[{"id":621280,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5},{"type":171,"value":5},{"type":135,"value":-5},{"type":170,"value":-5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":498555,"name":"Surge of Awareness","description":"Activates the latent attack potential of nearby party members. Increases [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. Also reduces [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-2)%. Lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800108,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621280]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/800108.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-18","classId":"rom-warlock","group":"passive","unlockLevel":36,"sourceSkillId":498556,"name":"Opportune Strike","description":"If target is in a [501577] state, damage inflicted by [498545] or [498553] will be increased by (Buff0-621281)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800109,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501577,621281],"components":[{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621281,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32769,"specialActionFlags":0,"assistType":-1,"clearFlags":12288,"abilityModifiers":[{"type":44,"value":1}],"abilitySkillLevelArg":85,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":498556,"name":"Opportune Strike","description":"If target is in a [501577] state, damage inflicted by [498545] or [498553] will be increased by (Buff0-621281)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800109,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501577,621281]}}],"sourceFamily":"primary:18","icon":"/assets/ui/rom-spells/800109.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-19","classId":"rom-warlock","group":"primary","unlockLevel":38,"sourceSkillId":498558,"name":"Saces' Embrace","description":"Summons the psychic powers of Saces in a designated area. Inflicts (DMG0) [SC_SKILLTIPS_DARK] on multiple targets within range. Also allows friendly targets in range to resist an amount of damage equal to (Buff4-Shield)% of the caster's healing bonus + 80 points for (Buff4-Time) seconds.","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"focus","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":800110,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621284,621285],"components":[{"id":621284,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":0,"attack":{"type":0,"damagePower":-50,"damagePowerSkillLevelArg":25,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621285,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":179,"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":4,"effect":0,"point":4,"skillLevelArg":100}}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":498558,"name":"Saces' Embrace","description":"Summons the psychic powers of Saces in a designated area. Inflicts (DMG0) [SC_SKILLTIPS_DARK] on multiple targets within range. Also allows friendly targets in range to resist an amount of damage equal to (Buff4-Shield)% of the caster's healing bonus + 80 points for (Buff4-Time) seconds.","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"focus","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":800110,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621284,621285]}}],"sourceFamily":"primary:19","icon":"/assets/ui/rom-spells/800110.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-20","classId":"rom-warlock","group":"primary","unlockLevel":40,"sourceSkillId":498560,"name":"Life Weave","description":"[SC_SKILLTIPS_P2]\nResurrects a friendly target. Can be used during battle.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":800111,"sourceEffectType":0,"sourceTarget":15,"componentIds":[621282],"components":[{"id":621282,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":498560,"name":"Life Weave","description":"[SC_SKILLTIPS_P2]\nResurrects a friendly target. Can be used during battle.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":800111,"sourceEffectType":0,"sourceTarget":15,"componentIds":[621282]}}],"sourceFamily":"primary:20","icon":"/assets/ui/rom-spells/800111.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-61","classId":"rom-warlock","group":"primary","unlockLevel":18,"sourceSkillId":498914,"name":"Sublimation Weave Curse","description":"Weaves psychic energy around all party members and raises all attributes by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800090,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621736],"components":[{"id":621736,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":166,"value":2}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":498914,"name":"Sublimation Weave Curse","description":"Weaves psychic energy around all party members and raises all attributes by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800090,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621736]}}],"sourceFamily":"primary:61","icon":"/assets/ui/rom-spells/800090.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-62","classId":"rom-warlock","group":"primary","unlockLevel":2,"sourceSkillId":498935,"name":"Perplexed","description":"Target stands at original location at wit's end for (Buff0-Time) seconds. \n(For players this effect lasts for (Buff1-Time) seconds.)\n(This effect is broken when damage is received.) \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":2000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800081,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621184,622192],"components":[{"id":621184,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"clearFlags":2,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622192,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"clearFlags":2,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":498935,"name":"Perplexed","description":"Target stands at original location at wit's end for (Buff0-Time) seconds. \n(For players this effect lasts for (Buff1-Time) seconds.)\n(This effect is broken when damage is received.) \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":2000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800081,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621184,622192]}}],"sourceFamily":"primary:62","icon":"/assets/ui/rom-spells/800081.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-0","classId":"rom-warlock","group":"general","unlockLevel":1,"sourceSkillId":497957,"name":"Psychic Arrows","description":"Inflicts (DMG0) points of [SC_SKILLTIPS_DARK] on the enemy. \n[SC_SKILLTIPS_9_1S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":800079,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501573,621434],"components":[{"id":501573,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":0,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":25,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621434,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-0.4,"attack":{"type":0,"damagePower":0,"damagePowerSkillLevelArg":0,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":497957,"name":"Psychic Arrows","description":"Inflicts (DMG0) points of [SC_SKILLTIPS_DARK] on the enemy. \n[SC_SKILLTIPS_9_1S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":800079,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501573,621434]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/800079.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-1","classId":"rom-warlock","group":"general","unlockLevel":1,"sourceSkillId":497959,"name":"Weakening Weave Curse","description":"Inflicts (DMG0) dark damage to up to 3 targets and causes them to be [501577] for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":4000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.85},"source":{"imageId":800082,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501576,501577,621434],"components":[{"id":501576,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-85,"fixedValue":0,"attack":{"type":0,"damagePower":-85,"damagePowerSkillLevelArg":35,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621434,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-0.4,"attack":{"type":0,"damagePower":0,"damagePowerSkillLevelArg":0,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":497959,"name":"Weakening Weave Curse","description":"Inflicts (DMG0) dark damage to up to 3 targets and causes them to be [501577] for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":4000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.85},"source":{"imageId":800082,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501576,501577,621434]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/800082.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-2","classId":"rom-warlock","group":"general","unlockLevel":4,"sourceSkillId":497958,"name":"Warp Charge","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] on the enemy. Also increases [SC_SKILLTIPS_DPS] by (Buff4-0)% and [SC_SKILLTIPS_CAST] by (Buff4-1)%. Lasts for (Buff4-Time) seconds. \nIf target is in a [501577] state, damage inflicted is increased by (Buff0-501588)%. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800080,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501574,501575,501577,501588],"components":[{"id":501574,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":35,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501575,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-4},{"type":51,"value":-2}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501588,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":12288,"abilityModifiers":[{"type":192,"value":25}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":497958,"name":"Warp Charge","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] on the enemy. Also increases [SC_SKILLTIPS_DPS] by (Buff4-0)% and [SC_SKILLTIPS_CAST] by (Buff4-1)%. Lasts for (Buff4-Time) seconds. \nIf target is in a [501577] state, damage inflicted is increased by (Buff0-501588)%. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800080,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501574,501575,501577,501588]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/800080.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-3","classId":"rom-warlock","group":"passive","unlockLevel":8,"sourceSkillId":497961,"name":"Pure Soul","description":"Increases [SC_SKILLTIPS_INT] by (Current [SC_SKILLTIPS_INT] + (Buff0-0)) x ((Buff0-1)%) + (Buff0-0) points.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800084,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621185],"components":[{"id":621185,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":4,"value":11},{"type":163,"value":1}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":497961,"name":"Pure Soul","description":"Increases [SC_SKILLTIPS_INT] by (Current [SC_SKILLTIPS_INT] + (Buff0-0)) x ((Buff0-1)%) + (Buff0-0) points.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800084,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621185]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/800084.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-4","classId":"rom-warlock","group":"general","unlockLevel":12,"sourceSkillId":497964,"name":"Soul Pain","description":"Inflicts torture upon the target's soul, dealing (Buff0-Dot) of [SC_SKILLTIPS_DARK] every second for (Buff0-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800087,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621188,621446],"components":[{"id":621188,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":24,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":-7,"dot":{"timeSeconds":1,"type":0,"base":-7,"skillLevelArg":80},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621446,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":223,"value":9},{"type":226,"value":9}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":497964,"name":"Soul Pain","description":"Inflicts torture upon the target's soul, dealing (Buff0-Dot) of [SC_SKILLTIPS_DARK] every second for (Buff0-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800087,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621188,621446]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/800087.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-5","classId":"rom-warlock","group":"general","unlockLevel":16,"sourceSkillId":497966,"name":"Surge of Malice","description":"Unleashes malice on the target. Inflicts (DMG0) of [SC_SKILLTIPS_DARK] on a maximum of 3 targets. \nIf target is in a [501577] state, it also reduces [SC_SKILLTIPS_MOVE] by (Buff4-0)%. Lasts for (Buff4-Time) seconds. \n(If the target is a player, this effect lasts for (Buff5-Time) seconds.) \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800089,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621191,621192,501577,621291],"components":[{"id":621191,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":45,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621192,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621291,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":497966,"name":"Surge of Malice","description":"Unleashes malice on the target. Inflicts (DMG0) of [SC_SKILLTIPS_DARK] on a maximum of 3 targets. \nIf target is in a [501577] state, it also reduces [SC_SKILLTIPS_MOVE] by (Buff4-0)%. Lasts for (Buff4-Time) seconds. \n(If the target is a player, this effect lasts for (Buff5-Time) seconds.) \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800089,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621191,621192,501577,621291]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/800089.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-6","classId":"rom-warlock","group":"general","unlockLevel":20,"sourceSkillId":498541,"name":"Saces' Scorn","description":"Saces' thin smile strikes fear into the target's heart. Lasts for (Buff0-Time) seconds. \n(If the target is a player, effect lasts for (Buff1-Time) seconds.) \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800091,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621194,621292],"components":[{"id":621194,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":17,"effectFlagWords":[131091,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621292,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":17,"effectFlagWords":[131091,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":498541,"name":"Saces' Scorn","description":"Saces' thin smile strikes fear into the target's heart. Lasts for (Buff0-Time) seconds. \n(If the target is a player, effect lasts for (Buff1-Time) seconds.) \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800091,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621194,621292]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/800091.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-0","classId":"rom-champion","group":"primary","unlockLevel":2,"sourceSkillId":498523,"name":"Forge","description":"Increases caster's [SC_SKILLTIPS_01] by (Buff0-621168)% when normal attacks hit for a (Buff0-Time) second period. Can be stacked a maximum of 5 times and increases Rage by (Buff-Dot-621169).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589473,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621167,621168,621169],"components":[{"id":621167,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"onAttackTrigger":{"rate":100,"rank":0,"id":498524},"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":850077,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621168,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":134,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621169,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":73,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":10,"dot":{"timeSeconds":1,"type":2,"base":10,"skillLevelArg":5},"attackType":2,"damagePower":3,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":498523,"name":"Forge","description":"Increases caster's [SC_SKILLTIPS_01] by (Buff0-621168)% when normal attacks hit for a (Buff0-Time) second period. Can be stacked a maximum of 5 times and increases Rage by (Buff-Dot-621169).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589473,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621167,621168,621169]}},{"rank":2,"level":22,"prerequisites":[498535],"sourceSkillId":498604,"name":"Forge","description":"Normal attack hits increase caster's [SC_SKILLTIPS_01] by (Buff0-621168)% for (Buff0-Time) seconds. Can be stacked 5 times. Also increases rage by (Buff-Dot-621169) points and has a chance of triggering the effect [621252]. The effect lasts for (Buff-Time-621252) seconds.\n[621252]: Increases the damage inflicted by [498529] by (Buff0-621253)%. In addition the next Curse will be transformed into an instant spell.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589473,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621251,621168,621169,621252,621253],"components":[{"id":621251,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"onAttackTrigger":{"rate":100,"rank":0,"id":498590},"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":850077,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621168,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":134,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621169,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":73,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":10,"dot":{"timeSeconds":1,"type":2,"base":10,"skillLevelArg":5},"attackType":2,"damagePower":3,"fixedValue":0,"summonCreatureId":0},{"id":621252,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,524288],"clearFlags":1056,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621253,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":20},{"type":205,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/589473.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-1","classId":"rom-champion","group":"primary","unlockLevel":4,"sourceSkillId":498564,"name":"Rune Draw","description":"Uses rune power to drag the target to the front and interrupts its spell casting. Also forces it to concentrate on you and you become the one with the most aggro. It also increases your aggro by (Buff0-622322)%.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":40000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589474,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621215,621223,621224,622322],"components":[{"id":621215,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621223,"magicFunc":7,"magicType":5,"effectType":0,"effectTime":5,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621224,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622322,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":498564,"name":"Rune Draw","description":"Uses rune power to drag the target to the front and interrupts its spell casting. Also forces it to concentrate on you and you become the one with the most aggro. It also increases your aggro by (Buff0-622322)%.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":40000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589474,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621215,621223,621224,622322]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/589474.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-2","classId":"rom-champion","group":"primary","unlockLevel":10,"sourceSkillId":498529,"name":"Rune Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on target. When it hits, it will restore (Buff4-Dot) rage. \nIf used while in the [621218] state, the amount of aggro caused by this skill will be increased. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":6000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589478,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621176,621218,621175,622327],"components":[{"id":621176,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":10},"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621175,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":622327,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":0},"attackType":2,"damagePower":5,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":498529,"name":"Rune Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on target. When it hits, it will restore (Buff4-Dot) rage. \nIf used while in the [621218] state, the amount of aggro caused by this skill will be increased. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":6000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589478,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621176,621218,621175,622327]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/589478.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-3","classId":"rom-champion","group":"primary","unlockLevel":14,"sourceSkillId":498531,"name":"Fearless Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target and adds (Buff4-Dot) rage. When target's HP is less than 30%, this skill's damage is increased by (Buff0-621179)%. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589480,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621178,621183,621179],"components":[{"id":621178,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":0,"attack":{"type":0,"damagePower":-0.85,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621183,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":3,"dot":{"timeSeconds":1,"type":2,"base":3,"skillLevelArg":5},"attackType":2,"damagePower":3,"fixedValue":0,"summonCreatureId":0},{"id":621179,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":1,"abilityModifiers":[{"type":173,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":498531,"name":"Fearless Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target and adds (Buff4-Dot) rage. When target's HP is less than 30%, this skill's damage is increased by (Buff0-621179)%. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589480,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621178,621183,621179]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/589480.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-5","classId":"rom-champion","group":"passive","unlockLevel":18,"sourceSkillId":498563,"name":"Runecraft - Fortify","description":"While in a [621218] state, increases [SC_SKILLTIPS_DEF] by (Buff0-621222)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589483,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621218,621222],"components":[{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621222,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":50331649,"specialActionFlags":0,"assistType":-1,"clearFlags":32,"abilityModifiers":[{"type":135,"value":9}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":498563,"name":"Runecraft - Fortify","description":"While in a [621218] state, increases [SC_SKILLTIPS_DEF] by (Buff0-621222)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589483,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621218,621222]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/589483.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-6","classId":"rom-champion","group":"primary","unlockLevel":18,"sourceSkillId":498533,"name":"Rune Energy Influx","description":"Converts rage to life. Restores (DMG0) HP. \nIf used while in [621218], then the amount of aggro caused by attacks is increased by (Buff4-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589484,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621181,621182,621218],"components":[{"id":621181,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"damagePower":1,"damagePowerSkillLevelArg":2,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621182,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":15}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":5,"fixedValue":0,"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":498533,"name":"Rune Energy Influx","description":"Converts rage to life. Restores (DMG0) HP. \nIf used while in [621218], then the amount of aggro caused by attacks is increased by (Buff4-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589484,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621181,621182,621218]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/589484.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-7","classId":"rom-champion","group":"passive","unlockLevel":22,"sourceSkillId":498535,"name":"Chain Drive","description":"While Forge Effect is active, all hits landed by normal attacks have a chance to reset the cooldown time of [498529] and increase damage dealt. In addition the next Curse will be transformed into an instant spell.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589486,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":498535,"name":"Chain Drive","description":"While Forge Effect is active, all hits landed by normal attacks have a chance to reset the cooldown time of [498529] and increase damage dealt. In addition the next Curse will be transformed into an instant spell.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589486,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/589486.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-8","classId":"rom-champion","group":"primary","unlockLevel":24,"sourceSkillId":498536,"name":"Rune Growth","description":"When used without the [621218] state, [SC_SKILLTIPS_01] is increased by (Buff1-0)% for (Buff0-Time) seconds.\nWhen used while in a Shield Form state, causes a reduction of [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589487,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621208,621218,621209],"components":[{"id":621208,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":206,"value":-5},{"type":207,"value":-5}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621209,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":498536,"name":"Rune Growth","description":"When used without the [621218] state, [SC_SKILLTIPS_01] is increased by (Buff1-0)% for (Buff0-Time) seconds.\nWhen used while in a Shield Form state, causes a reduction of [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589487,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621208,621218,621209]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/589487.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-9","classId":"rom-champion","group":"primary","unlockLevel":26,"sourceSkillId":498538,"name":"Agitated Whirlpool","description":"[SC_SKILLTIPS_621218]\nForces multiple targets within a radius of 75 to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622323)%.\nWhen it hits, it will reduce [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff8-0)% for (Buff8-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589488,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621213,621212,621214,622323],"components":[{"id":621213,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621212,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621214,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":5,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":5},{"type":142,"value":5}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622323,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":1}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":498538,"name":"Agitated Whirlpool","description":"[SC_SKILLTIPS_621218]\nForces multiple targets within a radius of 75 to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622323)%.\nWhen it hits, it will reduce [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff8-0)% for (Buff8-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589488,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621213,621212,621214,622323]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/589488.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-10","classId":"rom-champion","group":"primary","unlockLevel":28,"sourceSkillId":498537,"name":"Vacuum Wave","description":"Silences multiple enemies within a radius of 75 for (Buff4-Time) seconds. \n(If the target is a player, state lasts (Buff5-Time) seconds.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589489,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621210,621211,621287],"components":[{"id":621210,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621211,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621287,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":498537,"name":"Vacuum Wave","description":"Silences multiple enemies within a radius of 75 for (Buff4-Time) seconds. \n(If the target is a player, state lasts (Buff5-Time) seconds.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589489,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621210,621211,621287]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/589489.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-11","classId":"rom-champion","group":"passive","unlockLevel":30,"sourceSkillId":498539,"name":"Last Line of Defense","description":"When used while in a [621218] state and current HP is less than 30%, it reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621230)% \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589490,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621218,621230],"components":[{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621230,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435523,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":2},{"type":143,"value":2}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":498539,"name":"Last Line of Defense","description":"When used while in a [621218] state and current HP is less than 30%, it reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621230)% \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589490,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621218,621230]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/589490.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-12","classId":"rom-champion","group":"primary","unlockLevel":32,"sourceSkillId":498566,"name":"Imprisonment Pulse","description":"Sets up an imprisonment field in a designated area, inflicting (DMG-621231) main hand weapon physical DPS on targets. Also reduces [SC_SKILLTIPS_MOVE] by (Buff0-621232)% for (Buff-Time-621232) seconds. \nReduces target's [SC_SKILLTIPS_MOVE] by a maximum of (Max-Buff0-621232)%. If the target is a player, this state lasts for (Buff-Time-621290) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589491,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621233,621231,621232,621290],"components":[{"id":621233,"magicFunc":6,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621231,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621232,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0},{"id":621290,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":498566,"name":"Imprisonment Pulse","description":"Sets up an imprisonment field in a designated area, inflicting (DMG-621231) main hand weapon physical DPS on targets. Also reduces [SC_SKILLTIPS_MOVE] by (Buff0-621232)% for (Buff-Time-621232) seconds. \nReduces target's [SC_SKILLTIPS_MOVE] by a maximum of (Max-Buff0-621232)%. If the target is a player, this state lasts for (Buff-Time-621290) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589491,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621233,621231,621232,621290]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/589491.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-13","classId":"rom-champion","group":"primary","unlockLevel":34,"sourceSkillId":498481,"name":"Kinetic Burn","description":"Heat is dispelled 30 times in an instant. Inflicts (DMG0) main hand weapon physical DPS to targets in range. Also inflicts (Buff4-Dot) [SC_SKILLTIPS_FLAME] damage every 2 seconds. Lasts for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589460,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621085,621254],"components":[{"id":621085,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.2,"fixedValue":0,"attack":{"type":0,"damagePower":-0.2,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621254,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-3,"dot":{"timeSeconds":2,"type":0,"base":-3,"skillLevelArg":45},"attackType":0,"damagePower":-1,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":498481,"name":"Kinetic Burn","description":"Heat is dispelled 30 times in an instant. Inflicts (DMG0) main hand weapon physical DPS to targets in range. Also inflicts (Buff4-Dot) [SC_SKILLTIPS_FLAME] damage every 2 seconds. Lasts for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589460,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621085,621254]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/589460.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-14","classId":"rom-champion","group":"primary","unlockLevel":36,"sourceSkillId":498568,"name":"Feedback Defense","description":"[SC_SKILLTIPS_621218]\nActivates a protective shield that lasts for (Buff0-Time) seconds. Raises [SC_SKILLTIPS_DEF] by (Buff0-0)% while in effect. Attacks received are reflected and cause (DMG-621235) main hand weapon physical DPS. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589492,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621234,621235],"components":[{"id":621234,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":498569,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0},{"id":621235,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":0}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.02,"fixedValue":0,"attack":{"type":0,"damagePower":-0.02,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":498568,"name":"Feedback Defense","description":"[SC_SKILLTIPS_621218]\nActivates a protective shield that lasts for (Buff0-Time) seconds. Raises [SC_SKILLTIPS_DEF] by (Buff0-0)% while in effect. Attacks received are reflected and cause (DMG-621235) main hand weapon physical DPS. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589492,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621234,621235]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/589492.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-15","classId":"rom-champion","group":"primary","unlockLevel":36,"sourceSkillId":498570,"name":"Overrule","description":"Provides immunity to the effects of Helpless, Stun, Root and Slow. Lasts (Buff0-Time) seconds. \n(Target must be affected by Movement Impairing Effect or Stun for removal to work.) \n[SC_SKILLTIPS_FEAR]\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589510,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621236],"components":[{"id":621236,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":498570,"name":"Overrule","description":"Provides immunity to the effects of Helpless, Stun, Root and Slow. Lasts (Buff0-Time) seconds. \n(Target must be affected by Movement Impairing Effect or Stun for removal to work.) \n[SC_SKILLTIPS_FEAR]\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589510,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621236]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/589510.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-16","classId":"rom-champion","group":"primary","unlockLevel":38,"sourceSkillId":498571,"name":"Remodeled Body","description":"[SC_SKILLTIPS_621218]\nCounteracts one fatal blow and restores all HP while in effect. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589493,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621237],"components":[{"id":621237,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[32768,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":498571,"name":"Remodeled Body","description":"[SC_SKILLTIPS_621218]\nCounteracts one fatal blow and restores all HP while in effect. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589493,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621237]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/589493.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-17","classId":"rom-champion","group":"primary","unlockLevel":40,"sourceSkillId":498572,"name":"Rune Overload","description":"Consumes (Buff0-Dot) points rage every second while in effect. Continuously inflicts (DMG-621243) main hand weapon physical DPS to multiple targets in the immediate vicinity. \n(This effect ceases when rage reaches 0.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589494,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621241,621243],"components":[{"id":621241,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":47,"specialActionFlags":0,"assistType":-1,"clearFlags":1152,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":498574,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":2,"dotBase":-15,"dot":{"timeSeconds":1,"type":2,"base":-15,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621243,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":498572,"name":"Rune Overload","description":"Consumes (Buff0-Dot) points rage every second while in effect. Continuously inflicts (DMG-621243) main hand weapon physical DPS to multiple targets in the immediate vicinity. \n(This effect ceases when rage reaches 0.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589494,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621241,621243]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/589494.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-58","classId":"rom-champion","group":"passive","unlockLevel":8,"sourceSkillId":498525,"name":"Finishing Hammer","description":"Increases damage of one-handed and two-handed hammers by (Buff0-0)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589477,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621161],"components":[{"id":621161,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":62,"value":5},{"type":66,"value":5},{"type":66,"value":0}],"abilitySkillLevelArg":28,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":498525,"name":"Finishing Hammer","description":"Increases damage of one-handed and two-handed hammers by (Buff0-0)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589477,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621161]}}],"sourceFamily":"primary:58","icon":"/assets/ui/rom-spells/589477.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-0","classId":"rom-champion","group":"general","unlockLevel":1,"sourceSkillId":498521,"name":"Heavy Bash","description":"Inflicts (DMG0) main hand weapon physical DPS on target. There is also a chance it will cause [621164] when it lands a hit. This reduces [SC_SKILLTIPS_01] and [SC_SKILLTIPS_DEF] by 2%. Lasts (Buff4-Time) seconds. Can be stacked max. 3 times. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589471,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621160,621164],"components":[{"id":621160,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":0,"attack":{"type":0,"damagePower":-0.65,"damagePowerSkillLevelArg":5.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621164,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilityModifiers":[{"type":134,"value":-2},{"type":135,"value":-2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":498521,"name":"Heavy Bash","description":"Inflicts (DMG0) main hand weapon physical DPS on target. There is also a chance it will cause [621164] when it lands a hit. This reduces [SC_SKILLTIPS_01] and [SC_SKILLTIPS_DEF] by 2%. Lasts (Buff4-Time) seconds. Can be stacked max. 3 times. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589471,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621160,621164]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/589471.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-1","classId":"rom-champion","group":"general","unlockLevel":1,"sourceSkillId":498522,"name":"Electrocution","description":"Inflicts (DMG0) main hand weapon physical DPS on target. Also invokes a state of [621166] and interrupts target's spell casting. Lasts (Buff5-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589472,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621165,621396,621166],"components":[{"id":621165,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621396,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilityModifiers":[{"type":226,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621166,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":498522,"name":"Electrocution","description":"Inflicts (DMG0) main hand weapon physical DPS on target. Also invokes a state of [621166] and interrupts target's spell casting. Lasts (Buff5-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589472,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621165,621396,621166]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/589472.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-2","classId":"rom-champion","group":"passive","unlockLevel":4,"sourceSkillId":498527,"name":"Hammer Weapon Proficiency","description":"Hammer weapons can be equipped.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589475,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621173],"components":[{"id":621173,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":89,"value":1},{"type":93,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":498527,"name":"Hammer Weapon Proficiency","description":"Hammer weapons can be equipped.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589475,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621173]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/589475.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-3","classId":"rom-champion","group":"general","unlockLevel":6,"sourceSkillId":498526,"name":"Energy Influx Strike","description":"Adds a Charge Rune to your attacks. Inflicts (DMG0) main hand weapon DPS physical damage on targets. \nIf target is in an [621166] state, this attack lands a critical hit. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589476,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621163,621166,621396,621162],"components":[{"id":621163,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":7,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-12},{"type":135,"value":-12}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":100,"hateRate":1},"summonCreatureId":0},{"id":621166,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621396,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilityModifiers":[{"type":226,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621162,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":7,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-8},{"type":135,"value":-8}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":498526,"name":"Energy Influx Strike","description":"Adds a Charge Rune to your attacks. Inflicts (DMG0) main hand weapon DPS physical damage on targets. \nIf target is in an [621166] state, this attack lands a critical hit. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589476,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621163,621166,621396,621162]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/589476.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-5","classId":"rom-champion","group":"passive","unlockLevel":12,"sourceSkillId":498530,"name":"Runecraft - Diversion","description":"Increases [SC_SKILLTIPS_PARRY] by (Buff0-0) points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589479,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621177],"components":[{"id":621177,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":75}],"abilitySkillLevelArg":15,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":498530,"name":"Runecraft - Diversion","description":"Increases [SC_SKILLTIPS_PARRY] by (Buff0-0) points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589479,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621177]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/589479.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-6","classId":"rom-champion","group":"passive","unlockLevel":16,"sourceSkillId":498532,"name":"Runecraft - Solidify","description":"Increases your stamina. (Current stamina + (Buff0-0) x (Buff0-1)% + (Buff0-0)) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589481,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621180],"components":[{"id":621180,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":3,"value":11},{"type":162,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":498532,"name":"Runecraft - Solidify","description":"Increases your stamina. (Current stamina + (Buff0-0) x (Buff0-1)% + (Buff0-0)) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589481,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621180]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/589481.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-7","classId":"rom-champion","group":"general","unlockLevel":20,"sourceSkillId":498534,"name":"Shock Strike","description":"Inflicts (DMG0) main hand weapon physical DPS on multiple targets within a range of 100 in a fan-shaped area in front of you. Also Stuns targets for (Buff4-Time) seconds. \nIf used while in a [621218], then there is an extra increase of aggro caused by this skill.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589485,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621206,621218,621205,621207],"components":[{"id":621206,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"damagePower":-0.75,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":10},"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621205,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"damagePower":-0.75,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621207,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777299,0],"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":498534,"name":"Shock Strike","description":"Inflicts (DMG0) main hand weapon physical DPS on multiple targets within a range of 100 in a fan-shaped area in front of you. Also Stuns targets for (Buff4-Time) seconds. \nIf used while in a [621218], then there is an extra increase of aggro caused by this skill.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589485,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621206,621218,621205,621207]}}],"sourceFamily":"general:7","icon":"/assets/ui/rom-spells/589485.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-15","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":545920,"sourceSkillId":498528,"name":"Arc Strike","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If target is in the [621166] state, then caster will earn an extra (Buff-Dot-621250) rage. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":5,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589495,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621225,621166,621250],"components":[{"id":621225,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621166,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621250,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":25,"dot":{"timeSeconds":1,"type":2,"base":25,"skillLevelArg":0},"attackType":2,"damagePower":25,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":498528,"name":"Arc Strike","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If target is in the [621166] state, then caster will earn an extra (Buff-Dot-621250) rage. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":5,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589495,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621225,621166,621250]}}],"icon":"/assets/ui/rom-spells/589495.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-20","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":545921,"sourceSkillId":498580,"name":"Rune Aggregation","description":"Using Enrage allows you to increase rage accumulation speed.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589496,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":498580,"name":"Rune Aggregation","description":"Using Enrage allows you to increase rage accumulation speed.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589496,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/589496.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-25","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":545922,"sourceSkillId":498582,"name":"Power Slash","description":"Your slash causes the target to suffer the effects of [621166].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589497,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621166],"components":[{"id":621166,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":498582,"name":"Power Slash","description":"Your slash causes the target to suffer the effects of [621166].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589497,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621166]}}],"icon":"/assets/ui/rom-spells/589497.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-30","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":545923,"sourceSkillId":498584,"name":"Determination Rune","description":"Use the power of this rune to protect yourself. It counteracts an amount of damage equal to (Buff0-Shield)% of Maximum HP for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":589498,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621246],"components":[{"id":621246,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":490363,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":2,"skillLevelArg":28}}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":498584,"name":"Determination Rune","description":"Use the power of this rune to protect yourself. It counteracts an amount of damage equal to (Buff0-Shield)% of Maximum HP for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":589498,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621246]}}],"icon":"/assets/ui/rom-spells/589498.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-35","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":545924,"sourceSkillId":498585,"name":"Eye for an Eye","description":"Temporarily increases parry rate by (Buff0-0)%. Lasts for (Buff0-Time) seconds. \nWhile in effect, successful parries have a chance of resetting [498522] and [498526]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589499,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621247],"components":[{"id":621247,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":227,"value":5}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":498585,"name":"Eye for an Eye","description":"Temporarily increases parry rate by (Buff0-0)%. Lasts for (Buff0-Time) seconds. \nWhile in effect, successful parries have a chance of resetting [498522] and [498526]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589499,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621247]}}],"icon":"/assets/ui/rom-spells/589499.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-40","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":545925,"sourceSkillId":498586,"name":"Superior Suppression","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If your HP ratio is higher than the targets when you land a hit, this skill will also raise [SC_SKILLTIPS_CRI] by (Buff0-621255) points. Lasts for (Buff-Time-621255) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589500,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621248,621249,621255],"components":[{"id":621248,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621249,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621255,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493092,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":498586,"name":"Superior Suppression","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If your HP ratio is higher than the targets when you land a hit, this skill will also raise [SC_SKILLTIPS_CRI] by (Buff0-621255) points. Lasts for (Buff-Time-621255) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589500,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621248,621249,621255]}}],"icon":"/assets/ui/rom-spells/589500.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-45","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":545926,"sourceSkillId":498588,"name":"Runecraft - Charge","description":"There is a chance that [498572] will stun the enemy when it hits.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589508,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621256],"components":[{"id":621256,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":498588,"name":"Runecraft - Charge","description":"There is a chance that [498572] will stun the enemy when it hits.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589508,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621256]}}],"icon":"/assets/ui/rom-spells/589508.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-50","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":545927,"sourceSkillId":498589,"name":"Enhancement Shield","description":"Using the Determination Rune while in a [621218] state increases damage resistance and reduces received damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589509,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621258,621218],"components":[{"id":621258,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":498589,"name":"Enhancement Shield","description":"Using the Determination Rune while in a [621218] state increases damage resistance and reduces received damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589509,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621258,621218]}}],"icon":"/assets/ui/rom-spells/589509.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-60","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":60,"keyItemId":546853,"sourceSkillId":499850,"name":"Blast of Vengeance","description":"Consumes half of caster's HP and attempts to Taunt all enemies in a range of 200. If the Taunt is successful, the caster will be unable to move for (Buff4-Time) seconds.\n[SC_SKILLTIPS_621218]","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801640,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623390,621685],"components":[{"id":623390,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498583],"sourceSkillId":499850,"name":"Blast of Vengeance","description":"Consumes half of caster's HP and attempts to Taunt all enemies in a range of 200. If the Taunt is successful, the caster will be unable to move for (Buff4-Time) seconds.\n[SC_SKILLTIPS_621218]","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801640,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623390,621685]}}],"icon":"/assets/ui/rom-spells/801640.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-70","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":70,"keyItemId":546854,"sourceSkillId":499848,"name":"Deadland Protection","description":"Increases caster's [SC_SKILLTIPS_DEF] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [623400] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801641,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623400],"components":[{"id":623400,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":2,"abilityModifiers":[{"type":135,"value":100},{"type":144,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498583],"sourceSkillId":499848,"name":"Deadland Protection","description":"Increases caster's [SC_SKILLTIPS_DEF] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [623400] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801641,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623400]}}],"icon":"/assets/ui/rom-spells/801641.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-15","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":15,"keyItemId":545928,"sourceSkillId":498725,"name":"Vicious Attack","description":"Makes your Shadowstab cause additional damage, but cancels Bleed effects.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581940,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":498725,"name":"Vicious Attack","description":"Makes your Shadowstab cause additional damage, but cancels Bleed effects.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581940,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581940.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-20","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":545929,"sourceSkillId":498726,"name":"Shadow Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on target. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581941,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621470,622365,622364],"components":[{"id":621470,"magicFunc":0,"magicType":5,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.85,"damagePowerSkillLevelArg":6.2,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":622365,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":53,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622364,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":45},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":498726,"name":"Shadow Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on target. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581941,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621470,622365,622364]}}],"icon":"/assets/ui/rom-spells/581941.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-25","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":545930,"sourceSkillId":498727,"name":"Shadow Drive","description":"When Chain Drive effect is activated, the cooldown time for Shadow Pulse will be reset.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581942,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":498727,"name":"Shadow Drive","description":"When Chain Drive effect is activated, the cooldown time for Shadow Pulse will be reset.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581942,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581942.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-30","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":545931,"sourceSkillId":498728,"name":"Waiting Game","description":"Reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% and reduces received area damage by (Buff0-2)% for (Buff0-Time) seconds. While skill is in effect, attacks won't have Waiting Game effect and Attack Launch effect will be earned. This increases the damage caused by your next attack by (Buff0-621472)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581943,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621471,621472],"components":[{"id":621471,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":12289,"abilityModifiers":[{"type":206,"value":-5},{"type":207,"value":-5},{"type":209,"value":-8}],"abilitySkillLevelArg":6,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498729,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621472,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435523,"specialActionFlags":0,"assistType":-1,"clearFlags":12289,"abilityModifiers":[{"type":173,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":498728,"name":"Waiting Game","description":"Reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% and reduces received area damage by (Buff0-2)% for (Buff0-Time) seconds. While skill is in effect, attacks won't have Waiting Game effect and Attack Launch effect will be earned. This increases the damage caused by your next attack by (Buff0-621472)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581943,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621471,621472]}}],"icon":"/assets/ui/rom-spells/581943.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-35","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":35,"keyItemId":545932,"sourceSkillId":498731,"name":"Sentence Execution","description":"Enhances Fearless Blow and reduces its cooldown time by 10 seconds. When the target's HP falls below 45%, damage caused by Fearless Blow will be increased.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581944,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":498731,"name":"Sentence Execution","description":"Enhances Fearless Blow and reduces its cooldown time by 10 seconds. When the target's HP falls below 45%, damage caused by Fearless Blow will be increased.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581944,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581944.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-40","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":40,"keyItemId":545933,"sourceSkillId":498737,"name":"Runecraft - Haste","description":"Increases off hand weapon accuracy level by (Buff0-0)% and off hand weapon damage by (Buff0-1)%. \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581945,"sourceEffectType":2,"sourceTarget":6,"componentIds":[621481],"components":[{"id":621481,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":12289,"abilityModifiers":[{"type":36,"value":3},{"type":37,"value":3}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":498737,"name":"Runecraft - Haste","description":"Increases off hand weapon accuracy level by (Buff0-0)% and off hand weapon damage by (Buff0-1)%. \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581945,"sourceEffectType":2,"sourceTarget":6,"componentIds":[621481]}}],"icon":"/assets/ui/rom-spells/581945.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-45","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":545934,"sourceSkillId":498738,"name":"Disaster Appears","description":"Increases [SC_SKILLTIPS_CRI_POWER] and [SC_SKILLTIPS_DPS] after Shadow Step is used.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581946,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":498738,"name":"Disaster Appears","description":"Increases [SC_SKILLTIPS_CRI_POWER] and [SC_SKILLTIPS_DPS] after Shadow Step is used.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581946,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581946.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-50","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":545935,"sourceSkillId":498730,"name":"Death Arrives","description":"Instantly recovers rage and energy by (Buff4-Dot). Also restores (Buff4-Dot) rage and energy every 5 seconds for (Buff4-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581947,"sourceEffectType":1,"sourceTarget":0,"componentIds":[622191,621485,621486],"components":[{"id":622191,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621485,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":5,"dotType":2,"dotBase":100,"dot":{"timeSeconds":5,"type":2,"base":100,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621486,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":41,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":5,"dotType":4,"dotBase":100,"dot":{"timeSeconds":5,"type":4,"base":100,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":498730,"name":"Death Arrives","description":"Instantly recovers rage and energy by (Buff4-Dot). Also restores (Buff4-Dot) rage and energy every 5 seconds for (Buff4-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581947,"sourceEffectType":1,"sourceTarget":0,"componentIds":[622191,621485,621486]}}],"icon":"/assets/ui/rom-spells/581947.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-60","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":60,"keyItemId":546855,"sourceSkillId":499846,"name":"Smoke Diffusion","description":"Consumes half of caster's HP and lets all party members in range disappear for (Buff-Time-623401) seconds. The caster is unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801642,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623401,623693,621685,623389],"components":[{"id":623401,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623693,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":524288,"specialActionFlags":16,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623389,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498733],"sourceSkillId":499846,"name":"Smoke Diffusion","description":"Consumes half of caster's HP and lets all party members in range disappear for (Buff-Time-623401) seconds. The caster is unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801642,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623401,623693,621685,623389]}}],"icon":"/assets/ui/rom-spells/801642.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-70","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":70,"keyItemId":546856,"sourceSkillId":499844,"name":"Shadow Explosion","description":"Increases caster's [SC_SKILLTIPS_01] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [499844] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801643,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623402],"components":[{"id":623402,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":35,"specialActionFlags":0,"assistType":42,"abilityModifiers":[{"type":134,"value":50},{"type":144,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498733],"sourceSkillId":499844,"name":"Shadow Explosion","description":"Increases caster's [SC_SKILLTIPS_01] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [499844] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801643,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623402]}}],"icon":"/assets/ui/rom-spells/801643.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-15","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":545936,"sourceSkillId":498656,"name":"Backlash Armor","description":"For (Buff0-Time) seconds, inflicts (DMG-621344) main hand weapon DPS on targets within range with each successful block and reduces their [SC_SKILLTIPS_DPS] by (Buff0-621346)% for (Buff-Time-621346) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589519,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621345,621344,621346],"components":[{"id":621345,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621344,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621346,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":45}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":498656,"name":"Backlash Armor","description":"For (Buff0-Time) seconds, inflicts (DMG-621344) main hand weapon DPS on targets within range with each successful block and reduces their [SC_SKILLTIPS_DPS] by (Buff0-621346)% for (Buff-Time-621346) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589519,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621345,621344,621346]}}],"icon":"/assets/ui/rom-spells/589519.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-20","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":545937,"sourceSkillId":498658,"name":"Suppression Offensive","description":"Overwhelming attack that inflicts (DMG0) main hand weapon DPS on all enemies near a straight line between the caster and the target. Also reduces current target's weapon damage by (Buff4-0)% for (Buff4-Time). \n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589520,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621347,621348,621411,621355],"components":[{"id":621347,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"damagePower":-0.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621348,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":-100},{"type":37,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621411,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"attack":{"type":0,"damagePower":50,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621355,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":2}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":498658,"name":"Suppression Offensive","description":"Overwhelming attack that inflicts (DMG0) main hand weapon DPS on all enemies near a straight line between the caster and the target. Also reduces current target's weapon damage by (Buff4-0)% for (Buff4-Time). \n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589520,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621347,621348,621411,621355]}}],"icon":"/assets/ui/rom-spells/589520.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-25","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":545938,"sourceSkillId":498659,"name":"Endless Rage","description":"Can be used during a successful dodge. Increases rage by (Buff4-Dot) and makes the next attack a critical attack.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589521,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621351,621350],"components":[{"id":621351,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,64],"clearFlags":13313,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621350,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":73,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":10,"dot":{"timeSeconds":1,"type":2,"base":10,"skillLevelArg":0},"attackType":2,"damagePower":20,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":498659,"name":"Endless Rage","description":"Can be used during a successful dodge. Increases rage by (Buff4-Dot) and makes the next attack a critical attack.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589521,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621351,621350]}}],"icon":"/assets/ui/rom-spells/589521.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-30","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":545939,"sourceSkillId":498682,"name":"Key Rescue","description":"Reduces a party member's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%. Lasts for (Buff0-Time) seconds. When this party member is hit during the time of the effect, your current [498564] cooldown time will be reduced by 12 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":17,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589522,"sourceEffectType":0,"sourceTarget":1,"componentIds":[621353],"components":[{"id":621353,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":142,"value":10},{"type":143,"value":10}],"abilitySkillLevelArg":6,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":498913,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":498682,"name":"Key Rescue","description":"Reduces a party member's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%. Lasts for (Buff0-Time) seconds. When this party member is hit during the time of the effect, your current [498564] cooldown time will be reduced by 12 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":17,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589522,"sourceEffectType":0,"sourceTarget":1,"componentIds":[621353]}}],"icon":"/assets/ui/rom-spells/589522.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-35","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":35,"keyItemId":545940,"sourceSkillId":498683,"name":"Bloody Experience","description":"For (Buff0-Time) seconds, the damage that is caused by your next use of [498658] will be converted to your HP and increase your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)%. When the skill hits, it will stun the target for (Buff-Time-621412) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589523,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621355,621412],"components":[{"id":621355,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":2}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621412,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777299,0],"clearFlags":1024,"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":498683,"name":"Bloody Experience","description":"For (Buff0-Time) seconds, the damage that is caused by your next use of [498658] will be converted to your HP and increase your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)%. When the skill hits, it will stun the target for (Buff-Time-621412) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589523,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621355,621412]}}],"icon":"/assets/ui/rom-spells/589523.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-40","classId":"rom-champion","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":545941,"sourceSkillId":498684,"name":"Obstacle Force Field","description":"Each time [498685] hits the target, the target's casting time is extended and skill cost is increased.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589524,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":498684,"name":"Obstacle Force Field","description":"Each time [498685] hits the target, the target's casting time is extended and skill cost is increased.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589524,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/589524.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-45","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":545942,"sourceSkillId":498687,"name":"High-Energy Barrier","description":"Uses energy to protect the target. Resists an amount of damage equal to (Buff0-Shield)% of Maximum HP for (Buff0-Time) seconds. Also increases [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% and [SC_SKILLTIPS_DMG] by (Buff0-0)%. When the effect ends, it deals (DMG-621419) main hand weapon physical DPS on targets in range and roots them for (Buff-Time-621420) seconds.\n[SC_SKILLTIPS_LEVEL50]\n[SC_SKILLTIPS_03]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":589525,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621416,621418,621419,621420],"components":[{"id":621416,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":483,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":173,"value":3},{"type":144,"value":5}],"abilitySkillLevelArg":6,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498688,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":2,"skillLevelArg":28}},{"id":621418,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"clearFlags":1072,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621419,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621420,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":498687,"name":"High-Energy Barrier","description":"Uses energy to protect the target. Resists an amount of damage equal to (Buff0-Shield)% of Maximum HP for (Buff0-Time) seconds. Also increases [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% and [SC_SKILLTIPS_DMG] by (Buff0-0)%. When the effect ends, it deals (DMG-621419) main hand weapon physical DPS on targets in range and roots them for (Buff-Time-621420) seconds.\n[SC_SKILLTIPS_LEVEL50]\n[SC_SKILLTIPS_03]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":589525,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621416,621418,621419,621420]}}],"icon":"/assets/ui/rom-spells/589525.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-50","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":545943,"sourceSkillId":498690,"name":"Rapid Spread","description":"Inflicts (DMG0) main hand weapon physical DPS on target. Also increases [SC_SKILLTIPS_PARRY] by (Buff4-1) and [SC_SKILLTIPS_DOGE] by (Buff4-0) for (Buff4-Time) seconds. \nIf the target is being affected by Suppression Offensive, then this skill will also cause (DMG0) main hand weapon physical DPS on nearby targets. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":36,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589526,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621422,621423],"components":[{"id":621422,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621423,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":17,"value":16},{"type":22,"value":16}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":498690,"name":"Rapid Spread","description":"Inflicts (DMG0) main hand weapon physical DPS on target. Also increases [SC_SKILLTIPS_PARRY] by (Buff4-1) and [SC_SKILLTIPS_DOGE] by (Buff4-0) for (Buff4-Time) seconds. \nIf the target is being affected by Suppression Offensive, then this skill will also cause (DMG0) main hand weapon physical DPS on nearby targets. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":36,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589526,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621422,621423]}}],"icon":"/assets/ui/rom-spells/589526.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-60","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":60,"keyItemId":546857,"sourceSkillId":499842,"name":"Elemental Rampage","description":"Consumes half of caster's HP, attempts to deal a high amount of damage to all enemies in a range of 200 and reduce their resistance by (Buff0-623404) and defense by (Buff1-623404)%. If the damage has been dealt successfully, the caster will not be able to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":801644,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623403,623404,621685,623389],"components":[{"id":623403,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"attack":{"type":0,"damagePower":-100,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623404,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":220,"value":-10},{"type":135,"value":-10},{"type":170,"value":-10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623389,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499842,"name":"Elemental Rampage","description":"Consumes half of caster's HP, attempts to deal a high amount of damage to all enemies in a range of 200 and reduce their resistance by (Buff0-623404) and defense by (Buff1-623404)%. If the damage has been dealt successfully, the caster will not be able to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":801644,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623403,623404,621685,623389]}}],"icon":"/assets/ui/rom-spells/801644.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-70","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":70,"keyItemId":546858,"sourceSkillId":499840,"name":"Elemental Defense","description":"Increases caster's [SC_SKILLTIPS_MDEF] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [499840] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801645,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623407],"components":[{"id":623407,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":97,"abilityModifiers":[{"type":170,"value":100},{"type":144,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499840,"name":"Elemental Defense","description":"Increases caster's [SC_SKILLTIPS_MDEF] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [499840] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801645,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623407]}}],"icon":"/assets/ui/rom-spells/801645.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-15","classId":"rom-champion","secondaryClassId":"rom-priest","group":"passive","unlockLevel":15,"keyItemId":545944,"sourceSkillId":498712,"name":"Runecraft - Devotion","description":"Extends the effect time of Holy Aura by 1 second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575748,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":498712,"name":"Runecraft - Devotion","description":"Extends the effect time of Holy Aura by 1 second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575748,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575748.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-20","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":545945,"sourceSkillId":498715,"name":"Divine Vengeance","description":"[SC_SKILLTIPS_621218]\nThere is a chance to use this when attacked while in a Shield Form state. Inflicts (DMG0) main hand weapon physical DPS on target and reduces the cooldown time for Holy Aura by (Buff-Time-621676) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575711,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621427,621428,621458,621676],"components":[{"id":621427,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":4},"summonCreatureId":0},{"id":621428,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621458,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":162,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621676,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":498715,"name":"Divine Vengeance","description":"[SC_SKILLTIPS_621218]\nThere is a chance to use this when attacked while in a Shield Form state. Inflicts (DMG0) main hand weapon physical DPS on target and reduces the cooldown time for Holy Aura by (Buff-Time-621676) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575711,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621427,621428,621458,621676]}}],"icon":"/assets/ui/rom-spells/575711.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-25","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":25,"keyItemId":545946,"sourceSkillId":498716,"name":"Rune Energy Consecration","description":"Restores (Buff-Dot-621429)% MP every 2 seconds and restores (Buff-Dot-621453) rage, (Buff-Dot-621455) energy, (Buff-Dot-621456) focus and (Buff-Dot-621430)% MP for all party members within a range of 200. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575712,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621429,621454,621453,621455,621456,621430],"components":[{"id":621429,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":239,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498717,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":850053,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":2,"dotType":6,"dotBase":3,"dot":{"timeSeconds":2,"type":6,"base":3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621454,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":524389,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498718,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621453,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":2,"dotBase":5,"dot":{"timeSeconds":2,"type":2,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621455,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":4,"dotBase":5,"dot":{"timeSeconds":2,"type":4,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621456,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":3,"dotBase":5,"dot":{"timeSeconds":2,"type":3,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621430,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":6,"dotBase":3,"dot":{"timeSeconds":2,"type":6,"base":3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":498716,"name":"Rune Energy Consecration","description":"Restores (Buff-Dot-621429)% MP every 2 seconds and restores (Buff-Dot-621453) rage, (Buff-Dot-621455) energy, (Buff-Dot-621456) focus and (Buff-Dot-621430)% MP for all party members within a range of 200. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575712,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621429,621454,621453,621455,621456,621430]}}],"icon":"/assets/ui/rom-spells/575712.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-30","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":545947,"sourceSkillId":498719,"name":"Salvation Engraving","description":"Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of nearby party members by (Buff0-0)%. Also reduces any aggro, inflicted while in effect, by (Buff0-2)%. Lasts for (Buff0-Time) seconds. \n(This skill has no effect on the caster.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575713,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621457],"components":[{"id":621457,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":5},{"type":143,"value":5},{"type":138,"value":-5}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":498719,"name":"Salvation Engraving","description":"Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of nearby party members by (Buff0-0)%. Also reduces any aggro, inflicted while in effect, by (Buff0-2)%. Lasts for (Buff0-Time) seconds. \n(This skill has no effect on the caster.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575713,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621457]}}],"icon":"/assets/ui/rom-spells/575713.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-35","classId":"rom-champion","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":545948,"sourceSkillId":498720,"name":"Way of Frenzy","description":"When Divine Vengeance hits, this skill increases stamina by an extra (Buff0-621458)%. This skill can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575716,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621458],"components":[{"id":621458,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":162,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":498720,"name":"Way of Frenzy","description":"When Divine Vengeance hits, this skill increases stamina by an extra (Buff0-621458)%. This skill can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575716,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621458]}}],"icon":"/assets/ui/rom-spells/575716.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-40","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":40,"keyItemId":545949,"sourceSkillId":498721,"name":"Light Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on nearby targets and restores (DMG-621459) HP for nearby party members. The higher your stamina, the more HP is restored. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575719,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621460,621461,621459],"components":[{"id":621460,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621461,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621459,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":6,"fixedValue":0.2,"attack":{"type":0,"damagePower":6,"damagePowerSkillLevelArg":5,"fixedValue":0.2,"fixedType":8,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":498721,"name":"Light Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on nearby targets and restores (DMG-621459) HP for nearby party members. The higher your stamina, the more HP is restored. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575719,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621460,621461,621459]}}],"icon":"/assets/ui/rom-spells/575719.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-45","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":45,"keyItemId":545950,"sourceSkillId":498722,"name":"Suicide Advance","description":"Sacrifices the caster's defense to increase the attack of him and his party members. Reduces the caster's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)%. Also increases the [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] of the caster and nearby party members by (Buff4-0)%. Lasts for (Buff0-Time). \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575737,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621462,621463],"components":[{"id":621462,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"clearFlags":1024,"abilityModifiers":[{"type":135,"value":-5},{"type":170,"value":-5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621463,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"clearFlags":1024,"abilityModifiers":[{"type":173,"value":5},{"type":192,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":498722,"name":"Suicide Advance","description":"Sacrifices the caster's defense to increase the attack of him and his party members. Reduces the caster's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)%. Also increases the [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] of the caster and nearby party members by (Buff4-0)%. Lasts for (Buff0-Time). \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575737,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621462,621463]}}],"icon":"/assets/ui/rom-spells/575737.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-50","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":545951,"sourceSkillId":498723,"name":"Holy Attack","description":"Inflicts (DMG0) main hand weapon physical DPS on target and randomly removes a negative magic, curse or poison effect from a party member. \n(Only one of these effects will appear at a time.) \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575747,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621464,621465],"components":[{"id":621464,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621465,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":498723,"name":"Holy Attack","description":"Inflicts (DMG0) main hand weapon physical DPS on target and randomly removes a negative magic, curse or poison effect from a party member. \n(Only one of these effects will appear at a time.) \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575747,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621464,621465]}}],"icon":"/assets/ui/rom-spells/575747.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-60","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":60,"keyItemId":546859,"sourceSkillId":499838,"name":"Reviving Blast","description":"Consumes half of caster's HP and recovers (DMG-623408) HP of all party members in range. The caster will be unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.6},"source":{"imageId":801646,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623408,621685,623389],"components":[{"id":623408,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":60,"fixedValue":0,"attack":{"type":0,"damagePower":60,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623389,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499838,"name":"Reviving Blast","description":"Consumes half of caster's HP and recovers (DMG-623408) HP of all party members in range. The caster will be unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.6},"source":{"imageId":801646,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623408,621685,623389]}}],"icon":"/assets/ui/rom-spells/801646.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-70","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":70,"keyItemId":546860,"sourceSkillId":499836,"name":"Righteous Explosion","description":"Casting takes 3 seconds and removes all harmful effects from all party members in range.","target":"self","range":15,"castTimeMs":3000,"cooldownMs":30000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801647,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623412],"components":[{"id":623412,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499836,"name":"Righteous Explosion","description":"Casting takes 3 seconds and removes all harmful effects from all party members in range.","target":"self","range":15,"castTimeMs":3000,"cooldownMs":30000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801647,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623412]}}],"icon":"/assets/ui/rom-spells/801647.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-15","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":15,"keyItemId":545952,"sourceSkillId":498593,"name":"Endless Pulse","description":"Consumes an extra 40% of current HP and increases [SC_SKILLTIPS_DPS] by (Buff0-0)%. Also recovers (Buff0-Dot)% HP every 2 seconds for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589511,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621260],"components":[{"id":621260,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-2}],"abilitySkillLevelArg":5,"dotTime":2,"dotType":5,"dotBase":5,"dot":{"timeSeconds":2,"type":5,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498593,"name":"Endless Pulse","description":"Consumes an extra 40% of current HP and increases [SC_SKILLTIPS_DPS] by (Buff0-0)%. Also recovers (Buff0-Dot)% HP every 2 seconds for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589511,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621260]}}],"icon":"/assets/ui/rom-spells/589511.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-20","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":20,"keyItemId":545953,"sourceSkillId":498595,"name":"Rune Siphon","description":"Inflicts (DMG0) main hand weapon physical DPS and (DMG4) [SC_SKILLTIPS_DARK] to a target. Also restores (DMG8) HP to the caster. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589512,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621262,621263,621264],"components":[{"id":621262,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621263,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":1,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621264,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":20,"fixedValue":0,"attack":{"type":0,"damagePower":20,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498595,"name":"Rune Siphon","description":"Inflicts (DMG0) main hand weapon physical DPS and (DMG4) [SC_SKILLTIPS_DARK] to a target. Also restores (DMG8) HP to the caster. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589512,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621262,621263,621264]}}],"icon":"/assets/ui/rom-spells/589512.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-25","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":25,"keyItemId":545954,"sourceSkillId":498596,"name":"Psychic Forge","description":"Restores focus while increasing rage. Can be stacked a maximum of 7 times.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589513,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498596,"name":"Psychic Forge","description":"Restores focus while increasing rage. Can be stacked a maximum of 7 times.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589513,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/589513.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-30","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":30,"keyItemId":545955,"sourceSkillId":498599,"name":"Dark Energy Strike","description":"Inflicts (DMG0) main hand weapon physical DPS and (DMG4) [SC_SKILLTIPS_DARK] on target. Also carries a chance to reset your Rune Siphon's cooldown time. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589514,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621305,621306,621307],"components":[{"id":621305,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621306,"magicFunc":0,"magicType":5,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":1,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621307,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498599,"name":"Dark Energy Strike","description":"Inflicts (DMG0) main hand weapon physical DPS and (DMG4) [SC_SKILLTIPS_DARK] on target. Also carries a chance to reset your Rune Siphon's cooldown time. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589514,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621305,621306,621307]}}],"icon":"/assets/ui/rom-spells/589514.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-35","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":35,"keyItemId":545956,"sourceSkillId":498600,"name":"Indomitable Spirit","description":"Can only be used when HP is less than 65%. The following 3 Dark Energy Strikes cause double the damage. Also restores (DMG-621310) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589515,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621309,621310],"components":[{"id":621309,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621310,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":2,"fixedValue":0,"attack":{"type":0,"damagePower":2,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498600,"name":"Indomitable Spirit","description":"Can only be used when HP is less than 65%. The following 3 Dark Energy Strikes cause double the damage. Also restores (DMG-621310) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589515,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621309,621310]}}],"icon":"/assets/ui/rom-spells/589515.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-40","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":40,"keyItemId":545957,"sourceSkillId":498651,"name":"Heart Collection Rune","description":"Immediately resets the cooldown time for Rune Siphon and increases the damage by (Buff0-621338)% the next time it's used. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589516,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621336,621337,621338],"components":[{"id":621336,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":35,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621337,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621338,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":65,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":2}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498651,"name":"Heart Collection Rune","description":"Immediately resets the cooldown time for Rune Siphon and increases the damage by (Buff0-621338)% the next time it's used. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589516,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621336,621337,621338]}}],"icon":"/assets/ui/rom-spells/589516.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-45","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":45,"keyItemId":545958,"sourceSkillId":498652,"name":"Soul Forge Mystery","description":"Increases [SC_SKILLTIPS_CRI] by (Buff0-0) for (Buff0-Time) seconds. If critical attack occurs while in effect, it increases dark attribute magic power by (Buff0-621341)% for (Buff-Time-621341) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-621342)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589517,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621339,621341,621342],"components":[{"id":621339,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621341,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":50,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621342,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":498652,"name":"Soul Forge Mystery","description":"Increases [SC_SKILLTIPS_CRI] by (Buff0-0) for (Buff0-Time) seconds. If critical attack occurs while in effect, it increases dark attribute magic power by (Buff0-621341)% for (Buff-Time-621341) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-621342)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589517,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621339,621341,621342]}}],"icon":"/assets/ui/rom-spells/589517.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-50","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":545959,"sourceSkillId":498655,"name":"Dark Energy Punishment","description":"Consumes (Buff0-Dot)% HP every second and increases [SC_SKILLTIPS_01] by (Buff0-0)% and [SC_SKILLTIPS_02] by (Buff0-1)%. \n(This state ends when HP has been exhausted.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"health","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589518,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621343],"components":[{"id":621343,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":65643,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":134,"value":5},{"type":171,"value":5}],"abilitySkillLevelArg":10,"dotTime":1,"dotType":5,"dotBase":-3,"dot":{"timeSeconds":1,"type":5,"base":-3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498655,"name":"Dark Energy Punishment","description":"Consumes (Buff0-Dot)% HP every second and increases [SC_SKILLTIPS_01] by (Buff0-0)% and [SC_SKILLTIPS_02] by (Buff0-1)%. \n(This state ends when HP has been exhausted.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"health","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589518,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621343]}}],"icon":"/assets/ui/rom-spells/589518.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-60","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":60,"keyItemId":546861,"sourceSkillId":499833,"name":"Blast of Remorse","description":"Consumes half of caster's HP and knocks down all enemies in range for (Buff-Time-623413) seconds. If any enemy has been Knocked down successfully, the caster will be unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801648,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623413,621685,623389],"components":[{"id":623413,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4179,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623389,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":499833,"name":"Blast of Remorse","description":"Consumes half of caster's HP and knocks down all enemies in range for (Buff-Time-623413) seconds. If any enemy has been Knocked down successfully, the caster will be unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801648,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623413,621685,623389]}}],"icon":"/assets/ui/rom-spells/801648.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-70","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":70,"keyItemId":546862,"sourceSkillId":499831,"name":"Psychic Rampage","description":"Increases caster's critical hit rate by (Buff0-0). While in effect, any healing received is reduced by (Buff0-2)%.\n(Right click the [499831] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801649,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623414],"components":[{"id":623414,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":2500},{"type":20,"value":2500},{"type":144,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499831,"name":"Psychic Rampage","description":"Increases caster's critical hit rate by (Buff0-0). While in effect, any healing received is reduced by (Buff0-2)%.\n(Right click the [499831] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801649,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623414]}}],"icon":"/assets/ui/rom-spells/801649.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-15","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"passive","unlockLevel":15,"keyItemId":545968,"sourceSkillId":498760,"name":"Wild Slash","description":"Increases damage caused by Slash and changes to consume HP. After it hits, Bleed effect can also increase [SC_SKILLTIPS_DPS] by (Buff0-621575)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800160,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621575],"components":[{"id":621575,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":23,"value":-1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498760,"name":"Wild Slash","description":"Increases damage caused by Slash and changes to consume HP. After it hits, Bleed effect can also increase [SC_SKILLTIPS_DPS] by (Buff0-621575)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800160,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621575]}}],"icon":"/assets/ui/rom-spells/800160.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-20","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":545969,"sourceSkillId":498762,"name":"Blood Rune Weapon","description":"[SC_SKILLTIPS_HP5]\nIncreases [SC_SKILLTIPS_01] by (Buff0-0)% and [SC_SKILLTIPS_CRI] by (Buff4-0) for (Buff0-Time) times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800161,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621590,621591,621594],"components":[{"id":621590,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":6,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498781,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621591,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":18,"value":25}],"abilitySkillLevelArg":7,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621594,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498762,"name":"Blood Rune Weapon","description":"[SC_SKILLTIPS_HP5]\nIncreases [SC_SKILLTIPS_01] by (Buff0-0)% and [SC_SKILLTIPS_CRI] by (Buff4-0) for (Buff0-Time) times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800161,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621590,621591,621594]}}],"icon":"/assets/ui/rom-spells/800161.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-25","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":25,"keyItemId":545970,"sourceSkillId":498763,"name":"Bloody Slash","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) + (FixDMG0) x STR main hand weapon physical DPS on target. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800162,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621592],"components":[{"id":621592,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498763,"name":"Bloody Slash","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) + (FixDMG0) x STR main hand weapon physical DPS on target. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800162,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621592]}}],"icon":"/assets/ui/rom-spells/800162.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-30","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":30,"keyItemId":545971,"sourceSkillId":498764,"name":"Unbridled Rage","description":"[SC_SKILLTIPS_HP5]\nIncreases [SC_SKILLTIPS_STR] by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800163,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621593],"components":[{"id":621593,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":161,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498764,"name":"Unbridled Rage","description":"[SC_SKILLTIPS_HP5]\nIncreases [SC_SKILLTIPS_STR] by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800163,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621593]}}],"icon":"/assets/ui/rom-spells/800163.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-35","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":35,"keyItemId":545972,"sourceSkillId":498817,"name":"Bloody Battle","description":"|cffFF5755Can be used while in a Blood Rune Weapon state.|r\nThis skill can be used 6 seconds after a critical attack. Recovers 25% of caster's lost HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800164,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621598],"components":[{"id":621598,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498817,"name":"Bloody Battle","description":"|cffFF5755Can be used while in a Blood Rune Weapon state.|r\nThis skill can be used 6 seconds after a critical attack. Recovers 25% of caster's lost HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800164,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621598]}}],"icon":"/assets/ui/rom-spells/800164.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-40","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":40,"keyItemId":545973,"sourceSkillId":498820,"name":"Fearless Rune","description":"Provides immunity to all magical damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800165,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621599],"components":[{"id":621599,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498820,"name":"Fearless Rune","description":"Provides immunity to all magical damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800165,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621599]}}],"icon":"/assets/ui/rom-spells/800165.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-45","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":45,"keyItemId":545974,"sourceSkillId":498821,"name":"Stifling Attack","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) main hand weapon physical DPS + (FixDMG0) x STR damage on the target and reduces the target's [SC_SKILLTIPS_DEF] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"health","amount":31,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800166,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621615,621616],"components":[{"id":621615,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621616,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":-8}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0.2,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498821,"name":"Stifling Attack","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) main hand weapon physical DPS + (FixDMG0) x STR damage on the target and reduces the target's [SC_SKILLTIPS_DEF] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"health","amount":31,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800166,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621615,621616]}}],"icon":"/assets/ui/rom-spells/800166.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-50","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":50,"keyItemId":545975,"sourceSkillId":498822,"name":"Vendetta Blow","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) main hand weapon physical DPS + (FixDMG0) x STR damage on a target. The more HP you lose, the more damage this skill inflicts. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800167,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621618],"components":[{"id":621618,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498822,"name":"Vendetta Blow","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) main hand weapon physical DPS + (FixDMG0) x STR damage on a target. The more HP you lose, the more damage this skill inflicts. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800167,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621618]}}],"icon":"/assets/ui/rom-spells/800167.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-60","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"passive","unlockLevel":60,"keyItemId":546746,"sourceSkillId":499823,"name":"Enhanced Shock","description":"Causes [499824] to Slow down target for (Buff-Time-623420) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801616,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623420],"components":[{"id":623420,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":499823,"name":"Enhanced Shock","description":"Causes [499824] to Slow down target for (Buff-Time-623420) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801616,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623420]}}],"icon":"/assets/ui/rom-spells/801616.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-70","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"passive","unlockLevel":70,"keyItemId":546747,"sourceSkillId":499804,"name":"Blood Whirlwind","description":"A [623422] effect will be added to [499822]. Each time an enemy is hit, the caster recovers (DMG-623423) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801617,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623422,623423],"components":[{"id":623422,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623423,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":3,"fixedValue":0,"attack":{"type":0,"damagePower":3,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":499804,"name":"Blood Whirlwind","description":"A [623422] effect will be added to [499822]. Each time an enemy is hit, the caster recovers (DMG-623423) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801617,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623422,623423]}}],"icon":"/assets/ui/rom-spells/801617.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-15","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":541885,"sourceSkillId":491328,"name":"Skull Breaker","description":"Precise strike at the enemy's head that causes (DMG0) main hand weapon DPS and has a 50% chance of lowering the target's accuracy by (Buff4-0)%.\n(Accuracy for players is decreased by (Buff5-0)%.)\n(This skill decreases the target's accuracy by a maximum of (Max-Buff0-501864)%).","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575211,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620362,501864,503843],"components":[{"id":620362,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501864,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":197,"value":-10}],"abilitySkillLevelArg":6.6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":503843,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":197,"value":-10}],"abilitySkillLevelArg":6.6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491328,"name":"Skull Breaker","description":"Precise strike at the enemy's head that causes (DMG0) main hand weapon DPS and has a 50% chance of lowering the target's accuracy by (Buff4-0)%.\n(Accuracy for players is decreased by (Buff5-0)%.)\n(This skill decreases the target's accuracy by a maximum of (Max-Buff0-501864)%).","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575211,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620362,501864,503843]}}],"icon":"/assets/ui/rom-spells/575211.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-20","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":20,"keyItemId":541915,"sourceSkillId":491452,"name":"Stun Shot","description":"Causes your target to be Stunned for (Buff0-Time) seconds. (Requires ranged weapon.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575240,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501858,503842,502719],"components":[{"id":501858,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":4,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":503842,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":4,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":491452,"name":"Stun Shot","description":"Causes your target to be Stunned for (Buff0-Time) seconds. (Requires ranged weapon.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575240,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501858,503842,502719]}}],"icon":"/assets/ui/rom-spells/575240.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-25","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":25,"keyItemId":541945,"sourceSkillId":491458,"name":"Moon Cleave Perfection","description":"Reduces your Moon Cleave rage cost by 10 points and cool down by 20 seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575732,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":491458,"name":"Moon Cleave Perfection","description":"Reduces your Moon Cleave rage cost by 10 points and cool down by 20 seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575732,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575732.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-30","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":541975,"sourceSkillId":491451,"name":"Aim for the Wound","description":"Inflict (DMG0) ranged weapon DPS. You have a chance of gaining an additional (Buff4-Dot) points of rage. (Requires ranged weapon.)\n(This skill generates a maximum of an additional (Max-Buff-Dot-501859) points of rage.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575239,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501857,501859],"components":[{"id":501857,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501859,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":1048585,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":12},"attackType":2,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":491451,"name":"Aim for the Wound","description":"Inflict (DMG0) ranged weapon DPS. You have a chance of gaining an additional (Buff4-Dot) points of rage. (Requires ranged weapon.)\n(This skill generates a maximum of an additional (Max-Buff-Dot-501859) points of rage.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575239,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501857,501859]}}],"icon":"/assets/ui/rom-spells/575239.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-35","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":542006,"sourceSkillId":492615,"name":"Sword Breath","description":"Sword breath pierces the target, inflicting (DMG0) main hand weapon DPS and with each hit also has a chance of increasing rage by (Buff4-Dot) points.\n(This skill generates a maximum of an additional (Max-Buff-Dot-502888) points of rage.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576990,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502887,502888],"components":[{"id":502887,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502888,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":1048585,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":8},"attackType":2,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":492615,"name":"Sword Breath","description":"Sword breath pierces the target, inflicting (DMG0) main hand weapon DPS and with each hit also has a chance of increasing rage by (Buff4-Dot) points.\n(This skill generates a maximum of an additional (Max-Buff-Dot-502888) points of rage.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576990,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502887,502888]}}],"icon":"/assets/ui/rom-spells/576990.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-40","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":40,"keyItemId":542036,"sourceSkillId":498032,"name":"Calm","description":"When Skull Breaker fails you have the opportunity to enter a state of calm in order to increase accuracy by (Buff0-620337)%. Effective for (Buff-Time-620337) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577572,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620337],"components":[{"id":620337,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":498032,"name":"Calm","description":"When Skull Breaker fails you have the opportunity to enter a state of calm in order to increase accuracy by (Buff0-620337)%. Effective for (Buff-Time-620337) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577572,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620337]}}],"icon":"/assets/ui/rom-spells/577572.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-45","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":542066,"sourceSkillId":492959,"name":"Waiting Game","description":"When you successfully use Aim for the Wound or hit the target with a Moon Cleave your physical attack power instantly increases.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577641,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":492959,"name":"Waiting Game","description":"When you successfully use Aim for the Wound or hit the target with a Moon Cleave your physical attack power instantly increases.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577641,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577641.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-50","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":542096,"sourceSkillId":493247,"name":"The Final Battle","description":"Inflicts (DMG0) main hand weapon DPS. If target's HP is lower than 30%, it will inflict (DMG1) main hand weapon DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577771,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503508,620363],"components":[{"id":503508,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620363,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.4,"fixedValue":0,"attack":{"type":0,"damagePower":-1.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493247,"name":"The Final Battle","description":"Inflicts (DMG0) main hand weapon DPS. If target's HP is lower than 30%, it will inflict (DMG1) main hand weapon DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577771,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503508,620363]}}],"icon":"/assets/ui/rom-spells/577771.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-60","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546730,"sourceSkillId":499473,"name":"Battle Focus","description":"Increases [SC_SKILLTIPS_HITP] when your [499625] hits, and recovers (Buff-Dot-622988) Focus. Lasts for (Buff-Time-620365). \n([SC_SKILLTIPS_CD_1] (Buff-Time-622989) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801259,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622988,620365,622989],"components":[{"id":622988,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":73,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":3,"dotBase":20,"dot":{"timeSeconds":1,"type":3,"base":20,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620365,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"summonCreatureId":0},{"id":622989,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499473,"name":"Battle Focus","description":"Increases [SC_SKILLTIPS_HITP] when your [499625] hits, and recovers (Buff-Dot-622988) Focus. Lasts for (Buff-Time-620365). \n([SC_SKILLTIPS_CD_1] (Buff-Time-622989) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801259,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622988,620365,622989]}}],"icon":"/assets/ui/rom-spells/801259.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-70","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546731,"sourceSkillId":499475,"name":"Blood Battle","description":"Increases your [499998|Blood Arrow's] [SC_SKILLTIPS_POWER] at the same time.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801307,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499475,"name":"Blood Battle","description":"Increases your [499998|Blood Arrow's] [SC_SKILLTIPS_POWER] at the same time.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801307,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801307.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-15","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":15,"keyItemId":541886,"sourceSkillId":491460,"name":"Shadowstab Perfection","description":"You no longer need to have a dagger equipped to gain the Bleed bonus of the Shadowstab skill. Bleed duration is increased by 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575733,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":491460,"name":"Shadowstab Perfection","description":"You no longer need to have a dagger equipped to gain the Bleed bonus of the Shadowstab skill. Bleed duration is increased by 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575733,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575733.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-20","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":20,"keyItemId":541916,"sourceSkillId":491463,"name":"Speed Up","description":"Increases your movement speed by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576384,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501869],"components":[{"id":501869,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":3}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":491463,"name":"Speed Up","description":"Increases your movement speed by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576384,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501869]}}],"icon":"/assets/ui/rom-spells/576384.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-25","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":25,"keyItemId":541946,"sourceSkillId":491329,"name":"Blood Dance","description":"Attack the enemy with full strength and spill his blood! Causes (DMG0) main hand weapon DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"health","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575212,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501800],"components":[{"id":501800,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":0,"attack":{"type":0,"damagePower":-1.1,"damagePowerSkillLevelArg":4.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":491329,"name":"Blood Dance","description":"Attack the enemy with full strength and spill his blood! Causes (DMG0) main hand weapon DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"health","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575212,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501800]}}],"icon":"/assets/ui/rom-spells/575212.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-30","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":541976,"sourceSkillId":491330,"name":"Frenzied Attack","description":"For (Buff0-Time) seconds you go into a Frenzy. During this time, your [SC_SKILLTIPS_CRI] for all kinds of attacks is increased by (Buff0-1). All Slow and Root effects are removed, but [SC_SKILLTIPS_DEF] is reduced by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575213,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501801],"components":[{"id":501801,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":-50},{"type":18,"value":700}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":491330,"name":"Frenzied Attack","description":"For (Buff0-Time) seconds you go into a Frenzy. During this time, your [SC_SKILLTIPS_CRI] for all kinds of attacks is increased by (Buff0-1). All Slow and Root effects are removed, but [SC_SKILLTIPS_DEF] is reduced by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575213,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501801]}}],"icon":"/assets/ui/rom-spells/575213.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-35","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542007,"sourceSkillId":492619,"name":"Keen Attack","description":"If the target is Vulnerable, two quick attacks cause (DMG0) main hand weapon DPS. Your critical damage will be increased by (Buff8-0)% for (Buff8-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576991,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502883,501520,623524],"components":[{"id":502883,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":128,"abilityModifiers":[{"type":135,"value":25},{"type":22,"value":5},{"type":17,"value":5},{"type":144,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501520,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0},{"id":623524,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":492619,"name":"Keen Attack","description":"If the target is Vulnerable, two quick attacks cause (DMG0) main hand weapon DPS. Your critical damage will be increased by (Buff8-0)% for (Buff8-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576991,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502883,501520,623524]}}],"icon":"/assets/ui/rom-spells/576991.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-40","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":542037,"sourceSkillId":492911,"name":"Splitting Chop","description":"When the target is Weakened, inflicts (DMG0) main hand weapon DPS to the target and decreases the target's [SC_SKILLTIPS_DEF] by (Buff4-0)% for (Buff4-Time) seconds.\n(This skill decreases the target's [SC_SKILLTIPS_DEF] by a maximum of (Max-Buff0-503161)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577574,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503160,503161,502923],"components":[{"id":503160,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"attack":{"type":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503161,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-2}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502923,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":492911,"name":"Splitting Chop","description":"When the target is Weakened, inflicts (DMG0) main hand weapon DPS to the target and decreases the target's [SC_SKILLTIPS_DEF] by (Buff4-0)% for (Buff4-Time) seconds.\n(This skill decreases the target's [SC_SKILLTIPS_DEF] by a maximum of (Max-Buff0-503161)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577574,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503160,503161,502923]}}],"icon":"/assets/ui/rom-spells/577574.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-45","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":542067,"sourceSkillId":492997,"name":"Frenzied Heart","description":"When you enter Frenzied Attack state, your physical critical damage is increased.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577642,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":492997,"name":"Frenzied Heart","description":"When you enter Frenzied Attack state, your physical critical damage is increased.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577642,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577642.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-50","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":50,"keyItemId":542097,"sourceSkillId":493248,"name":"Exhaustion","description":"Lowers the rage required by your Whirlwind by 20 points, and shortens cooldown by 10 seconds. Also when you use a Probing Attack, there is an additional chance that it will lower the target's energy, focus, rage, and mana. (This effect can only be used on players.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577772,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":493248,"name":"Exhaustion","description":"Lowers the rage required by your Whirlwind by 20 points, and shortens cooldown by 10 seconds. Also when you use a Probing Attack, there is an additional chance that it will lower the target's energy, focus, rage, and mana. (This effect can only be used on players.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577772,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577772.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-60","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546732,"sourceSkillId":499483,"name":"Attack Launch","description":"Stops your [499484] from reducing [SC_SKILLTIPS_DEF].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801260,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499483,"name":"Attack Launch","description":"Stops your [499484] from reducing [SC_SKILLTIPS_DEF].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801260,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801260.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-70","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":70,"keyItemId":546733,"sourceSkillId":499997,"name":"Desperate Measures","description":"When activated, it will prevent death once and restore full HP within (Buff0-Time) seconds. After death is averted, the caster will experience a Weakened state for (Buff-Time-622951) seconds. This will cause (Buff-Dot-622951)% HP damage for every second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801308,"sourceEffectType":0,"sourceTarget":0,"componentIds":[622949,622950,622951],"components":[{"id":622949,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[32768,0],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":499995,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622950,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":0,"summonCreatureId":0},{"id":622951,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":65610,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":1,"dotType":5,"dotBase":-15,"dot":{"timeSeconds":1,"type":5,"base":-15,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499997,"name":"Desperate Measures","description":"When activated, it will prevent death once and restore full HP within (Buff0-Time) seconds. After death is averted, the caster will experience a Weakened state for (Buff-Time-622951) seconds. This will cause (Buff-Dot-622951)% HP damage for every second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801308,"sourceEffectType":0,"sourceTarget":0,"componentIds":[622949,622950,622951]}}],"icon":"/assets/ui/rom-spells/801308.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-15","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541887,"sourceSkillId":491474,"name":"Electrical Rage","description":"Causes (DMG0) main hand weapon DPS and puts High Voltage on the caster. [SC_SKILLTIPS_02] is increased by (Buff7-0)% for (Buff7-Time) seconds. High Voltage stacks up to 3 times.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":15,"percentage":false},{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575246,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501880,501884,501882,501881],"components":[{"id":501880,"magicFunc":0,"magicType":3,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501884,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435523,"specialActionFlags":0,"assistType":13,"abilityModifiers":[{"type":171,"value":15}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":501882,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435523,"specialActionFlags":0,"assistType":13,"abilityModifiers":[{"type":171,"value":10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":501881,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435523,"specialActionFlags":0,"assistType":13,"abilityModifiers":[{"type":171,"value":5}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491474,"name":"Electrical Rage","description":"Causes (DMG0) main hand weapon DPS and puts High Voltage on the caster. [SC_SKILLTIPS_02] is increased by (Buff7-0)% for (Buff7-Time) seconds. High Voltage stacks up to 3 times.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":15,"percentage":false},{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575246,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501880,501884,501882,501881]}}],"icon":"/assets/ui/rom-spells/575246.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-20","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":541917,"sourceSkillId":491477,"name":"Lightning's Touch","description":"Your weapon strikes the enemy with a flash of lightning, dealing (DMG0) points of Wind damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":575247,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501883],"components":[{"id":501883,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":0,"attack":{"type":0,"damagePower":-50,"damagePowerSkillLevelArg":45,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":491477,"name":"Lightning's Touch","description":"Your weapon strikes the enemy with a flash of lightning, dealing (DMG0) points of Wind damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":575247,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501883]}}],"icon":"/assets/ui/rom-spells/575247.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-25","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":541947,"sourceSkillId":491331,"name":"Sense of Danger","description":"Lowers the damage you receive by (Buff0-0)% for (Buff0-Time) Seconds. Can only be activated when HP is below 30%. (Does not lower critical damage received)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575214,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501802,509772],"components":[{"id":501802,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435683,"specialActionFlags":0,"assistType":178,"abilityModifiers":[{"type":143,"value":10},{"type":142,"value":0}],"abilitySkillLevelArg":17,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509772,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268959969,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":143,"value":0},{"type":142,"value":10}],"abilitySkillLevelArg":17,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491331,"name":"Sense of Danger","description":"Lowers the damage you receive by (Buff0-0)% for (Buff0-Time) Seconds. Can only be activated when HP is below 30%. (Does not lower critical damage received)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575214,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501802,509772]}}],"icon":"/assets/ui/rom-spells/575214.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-30","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":541977,"sourceSkillId":491332,"name":"Thunder Sword","description":"Fires 4 sword shaped thunder bolts at the target inflicting (DMG0) points of Wind damage.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":575215,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501803],"components":[{"id":501803,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":35,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491332,"name":"Thunder Sword","description":"Fires 4 sword shaped thunder bolts at the target inflicting (DMG0) points of Wind damage.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":575215,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501803]}}],"icon":"/assets/ui/rom-spells/575215.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-35","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":35,"keyItemId":542008,"sourceSkillId":492618,"name":"Electric Attack","description":"For (Buff0-Time) seconds, your normal attacks additionally cause (Buff0-0) Wind damage.\n[SC_SKILLTIPS_492618]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576992,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502886],"components":[{"id":502886,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":187,"value":100}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":492618,"name":"Electric Attack","description":"For (Buff0-Time) seconds, your normal attacks additionally cause (Buff0-0) Wind damage.\n[SC_SKILLTIPS_492618]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576992,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502886]}}],"icon":"/assets/ui/rom-spells/576992.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-40","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":40,"keyItemId":542038,"sourceSkillId":492913,"name":"Lava Weapon","description":"Adds (Buff0-0) Fire damage to your normal attacks for (Buff0-Time) seconds. (The value of this damage varies considerably.)\n[SC_SKILLTIPS_492618]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577575,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503163],"components":[{"id":503163,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":186,"value":70}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":492913,"name":"Lava Weapon","description":"Adds (Buff0-0) Fire damage to your normal attacks for (Buff0-Time) seconds. (The value of this damage varies considerably.)\n[SC_SKILLTIPS_492618]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577575,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503163]}}],"icon":"/assets/ui/rom-spells/577575.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-45","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"passive","unlockLevel":45,"keyItemId":542068,"sourceSkillId":493000,"name":"Power Control","description":"Causes your Electric Attack to additionally increase your physical accuracy and your Lava Weapon to raise your physical critical hit rate.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577643,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":493000,"name":"Power Control","description":"Causes your Electric Attack to additionally increase your physical accuracy and your Lava Weapon to raise your physical critical hit rate.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577643,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577643.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-50","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"passive","unlockLevel":50,"keyItemId":542098,"sourceSkillId":499486,"name":"Wind Bastion","description":"When you use [499487], a defensive wind will protect you, lowering the physical damage inflicted upon you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577773,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":499486,"name":"Wind Bastion","description":"When you use [499487], a defensive wind will protect you, lowering the physical damage inflicted upon you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577773,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577773.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-60","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":60,"keyItemId":546734,"sourceSkillId":490062,"name":"Lightning Burn Weapon","description":"A special power that controls wind and fire. Instills flame and electricity in your weapon, but their power is reduced by 25%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500162,500163],"components":[{"id":500162,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":110,"clearFlags":1024,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":490063,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500163,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":490062,"name":"Lightning Burn Weapon","description":"A special power that controls wind and fire. Instills flame and electricity in your weapon, but their power is reduced by 25%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500162,500163]}}],"icon":"/assets/ui/rom-spells/801261.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-70","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546735,"sourceSkillId":499485,"name":"Possessed by Anger","description":"Makes your [499994] stackable and have an extra [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] bonus increase.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801309,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499485,"name":"Possessed by Anger","description":"Makes your [499994] stackable and have an extra [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] bonus increase.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801309,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801309.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-15","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":15,"keyItemId":541888,"sourceSkillId":491466,"name":"Defender's Roar","description":"Increases your and your party members' [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"health","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575244,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501872,506365],"components":[{"id":501872,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":120,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":102,"abilityModifiers":[{"type":8,"value":300}],"abilitySkillLevelArg":10,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495381,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":506365,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":120,"hateCost":-10,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491466,"name":"Defender's Roar","description":"Increases your and your party members' [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"health","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575244,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501872,506365]}}],"icon":"/assets/ui/rom-spells/575244.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-20","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":541918,"sourceSkillId":491469,"name":"Interrupting Strike","description":"Interrupts target's casting and causes (DMG0) points of damage. (The interrupted spell will enter a cooldown phase. If the interrupted spell has no cooldown, all spells will enter a cooldown time of 3 seconds.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":575556,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501875,502703],"components":[{"id":501875,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":30,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-16.4,"fixedValue":0,"attack":{"type":0,"damagePower":-16.4,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502703,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":491469,"name":"Interrupting Strike","description":"Interrupts target's casting and causes (DMG0) points of damage. (The interrupted spell will enter a cooldown phase. If the interrupted spell has no cooldown, all spells will enter a cooldown time of 3 seconds.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":575556,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501875,502703]}}],"icon":"/assets/ui/rom-spells/575556.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-25","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":25,"keyItemId":541948,"sourceSkillId":491471,"name":"Magic Barrier Perfection","description":"Your Magic Barrier now also decreases the [SC_SKILLTIPS_MDMG] received.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575735,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":491471,"name":"Magic Barrier Perfection","description":"Your Magic Barrier now also decreases the [SC_SKILLTIPS_MDMG] received.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575735,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575735.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-30","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":541978,"sourceSkillId":492332,"name":"Bloodlust","description":"Convert 10% of your HP into 30 points of rage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"health","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575736,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501873],"components":[{"id":501873,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":18,"abilityModifiers":[{"type":8,"value":150}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":30,"fixedValue":0,"attack":{"type":2,"damagePower":30,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":492332,"name":"Bloodlust","description":"Convert 10% of your HP into 30 points of rage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"health","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575736,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501873]}}],"icon":"/assets/ui/rom-spells/575736.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-35","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":35,"keyItemId":542009,"sourceSkillId":492617,"name":"Opportunity","description":"When the target is Weakened, (DMG0) main hand weapon DPS is dealt to the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576993,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502884,502923],"components":[{"id":502884,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.4,"fixedValue":0,"attack":{"type":0,"damagePower":-1.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502923,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":492617,"name":"Opportunity","description":"When the target is Weakened, (DMG0) main hand weapon DPS is dealt to the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576993,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502884,502923]}}],"icon":"/assets/ui/rom-spells/576993.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-40","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":40,"keyItemId":542039,"sourceSkillId":492912,"name":"Blood Retention","description":"When you use Bloodlust, you'll gain 3 rage points every 2 seconds for 10 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577576,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":492912,"name":"Blood Retention","description":"When you use Bloodlust, you'll gain 3 rage points every 2 seconds for 10 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577576,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577576.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-45","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542069,"sourceSkillId":492998,"name":"Morale Boost","description":"Causes your Berserk to increase the [SC_SKILLTIPS_DMG] of nearby party members' next four attacks for 30 seconds. Disappears after four attacks or 30 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577644,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":492998,"name":"Morale Boost","description":"Causes your Berserk to increase the [SC_SKILLTIPS_DMG] of nearby party members' next four attacks for 30 seconds. Disappears after four attacks or 30 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577644,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577644.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-50","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":542099,"sourceSkillId":493249,"name":"Barbarian Battle Cry","description":"Causes multiple targets within a radius of 80 to fear your power, and lowers their [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-0)% for (Buff0-Time) seconds. If the target has been inflicted with Fear, your Slash and Probing Attack will cause additional damage.","target":"self","range":8,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577774,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503511],"components":[{"id":503511,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":1,"abilityModifiers":[{"type":173,"value":-2},{"type":44,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":493249,"name":"Barbarian Battle Cry","description":"Causes multiple targets within a radius of 80 to fear your power, and lowers their [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-0)% for (Buff0-Time) seconds. If the target has been inflicted with Fear, your Slash and Probing Attack will cause additional damage.","target":"self","range":8,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577774,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503511]}}],"icon":"/assets/ui/rom-spells/577774.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-60","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":60,"keyItemId":546736,"sourceSkillId":499488,"name":"Combat Expertise","description":"Stops your [499489] from reducing [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801262,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499488,"name":"Combat Expertise","description":"Stops your [499489] from reducing [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801262,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801262.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-70","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546737,"sourceSkillId":499490,"name":"Blood Fury Battle Cry","description":"When you use [499992] it will carry an additional increase of [SC_SKILLTIPS_DPS] by (Buff1-622956)% and [SC_SKILLTIPS_CRI] by (Buff0-622956) points. Lasts for 15 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801310,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622956],"components":[{"id":622956,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":18,"value":30},{"type":23,"value":-1}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499490,"name":"Blood Fury Battle Cry","description":"When you use [499992] it will carry an additional increase of [SC_SKILLTIPS_DPS] by (Buff1-622956)% and [SC_SKILLTIPS_CRI] by (Buff0-622956) points. Lasts for 15 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801310,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622956]}}],"icon":"/assets/ui/rom-spells/801310.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-15","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"elite","unlockLevel":15,"keyItemId":541889,"sourceSkillId":491333,"name":"Throw Shield","description":"Throws your shield at the target causing (DMG0) main hand weapon DPS + (FixDMG-620344) x (shield's defense value) damage.\n(Must have a shield equipped)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575216,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620344],"components":[{"id":620344,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":491333,"name":"Throw Shield","description":"Throws your shield at the target causing (DMG0) main hand weapon DPS + (FixDMG-620344) x (shield's defense value) damage.\n(Must have a shield equipped)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575216,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620344]}}],"icon":"/assets/ui/rom-spells/575216.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-20","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"elite","unlockLevel":20,"keyItemId":541919,"sourceSkillId":491480,"name":"Blocking Stance","description":"Increases your chance to parry by (Buff0-0) points for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575558,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502007],"components":[{"id":502007,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":491480,"name":"Blocking Stance","description":"Increases your chance to parry by (Buff0-0) points for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575558,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502007]}}],"icon":"/assets/ui/rom-spells/575558.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-25","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"elite","unlockLevel":25,"keyItemId":541949,"sourceSkillId":491334,"name":"Ignore Pain","description":"Immune to Helpless, Stun, Root and Slow for (Buff0-Time) seconds.\n(Effect can only be removed if target has Movement Impairing Effect or Stun)\n\n[SC_SKILLTIPS_FEAR]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575217,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501805],"components":[{"id":501805,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":491334,"name":"Ignore Pain","description":"Immune to Helpless, Stun, Root and Slow for (Buff0-Time) seconds.\n(Effect can only be removed if target has Movement Impairing Effect or Stun)\n\n[SC_SKILLTIPS_FEAR]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575217,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501805]}}],"icon":"/assets/ui/rom-spells/575217.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-30","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541979,"sourceSkillId":491484,"name":"Shield Bash","description":"Immediately strike at the target with your shield causing (DMG0) main hand weapon DPS + (FixDMG-620345) x (shield's defense value) damage and restore you (DMG4) rage.\n(Must have a shield equipped)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575557,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620345,502012],"components":[{"id":620345,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.55,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.55,"damagePowerSkillLevelArg":6,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502012,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":30,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":5,"fixedValue":0,"attack":{"type":2,"damagePower":5,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491484,"name":"Shield Bash","description":"Immediately strike at the target with your shield causing (DMG0) main hand weapon DPS + (FixDMG-620345) x (shield's defense value) damage and restore you (DMG4) rage.\n(Must have a shield equipped)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575557,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620345,502012]}}],"icon":"/assets/ui/rom-spells/575557.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-35","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":35,"keyItemId":542010,"sourceSkillId":492661,"name":"Heroic Surprise Attack","description":"Your Surprise Attack generates additional rage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576994,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492661,"name":"Heroic Surprise Attack","description":"Your Surprise Attack generates additional rage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576994,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/576994.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-40","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":40,"keyItemId":542040,"sourceSkillId":492914,"name":"Concentrated Precision","description":"Increases [SC_SKILLTIPS_HIT] by (Buff0-0) and allows you to equip plate armor.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577577,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620374],"components":[{"id":620374,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":16,"value":10},{"type":99,"value":1}],"abilitySkillLevelArg":10.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":492914,"name":"Concentrated Precision","description":"Increases [SC_SKILLTIPS_HIT] by (Buff0-0) and allows you to equip plate armor.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577577,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620374]}}],"icon":"/assets/ui/rom-spells/577577.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-45","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":45,"keyItemId":542070,"sourceSkillId":493003,"name":"Fierce Attack","description":"When you hit the target with your Throw Shield, instantly decreases your target's [SC_SKILLTIPS_CRI_PASSIVE] for (Buff-Time-503253) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503312)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577645,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503253,503312],"components":[{"id":503253,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":1342177474,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":182,"value":-22}],"abilitySkillLevelArg":12.5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493053,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503312,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493003,"name":"Fierce Attack","description":"When you hit the target with your Throw Shield, instantly decreases your target's [SC_SKILLTIPS_CRI_PASSIVE] for (Buff-Time-503253) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503312)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577645,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503253,503312]}}],"icon":"/assets/ui/rom-spells/577645.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-50","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":50,"keyItemId":542100,"sourceSkillId":493251,"name":"Resist","description":"In Blocking Stance you will receive less physical damage, and there is an additional chance that your rage will increase.\n([SC_SKILLTIPS_CD_1](Buff-Time-503572)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577775,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503572],"components":[{"id":503572,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493251,"name":"Resist","description":"In Blocking Stance you will receive less physical damage, and there is an additional chance that your rage will increase.\n([SC_SKILLTIPS_CD_1](Buff-Time-503572)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577775,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503572]}}],"icon":"/assets/ui/rom-spells/577775.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-60","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546738,"sourceSkillId":499491,"name":"Whirlwind Battle Technique","description":"Reduces your [499989|Whirlwind's] rage by 25 and cooldown time by 15 seconds. If a shield is equipped then it increases aggro.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801263,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499491,"name":"Whirlwind Battle Technique","description":"Reduces your [499989|Whirlwind's] rage by 25 and cooldown time by 15 seconds. If a shield is equipped then it increases aggro.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801263,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801263.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-70","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":70,"keyItemId":546739,"sourceSkillId":499492,"name":"Bullseye","description":"Makes your [499988] hits cause an additional Stun effect for (Buff-Time-622972) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801311,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622972],"components":[{"id":622972,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":2,"hateCost":0,"settingFlags":1342701634,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":499492,"name":"Bullseye","description":"Makes your [499988] hits cause an additional Stun effect for (Buff-Time-622972) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801311,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622972]}}],"icon":"/assets/ui/rom-spells/801311.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-15","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":15,"keyItemId":543016,"sourceSkillId":494031,"name":"Savage Strike","description":"Increases your [SC_SKILLTIPS_01] after you hit a target with a Surprise Attack.\n([SC_SKILLTIPS_CD_1](Buff-Time-506367)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579101,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506367],"components":[{"id":506367,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494031,"name":"Savage Strike","description":"Increases your [SC_SKILLTIPS_01] after you hit a target with a Surprise Attack.\n([SC_SKILLTIPS_CD_1](Buff-Time-506367)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579101,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506367]}}],"icon":"/assets/ui/rom-spells/579101.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-20","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":20,"keyItemId":543024,"sourceSkillId":494032,"name":"Attack Weakener","description":"Use when the target is Vulnerable to inflict (DMG0) main hand weapon DPS and reduce target's physical attack by (Buff4-0)% for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579102,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620346,504584,501520],"components":[{"id":620346,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":0,"attack":{"type":0,"damagePower":-1.1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504584,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501520,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494032,"name":"Attack Weakener","description":"Use when the target is Vulnerable to inflict (DMG0) main hand weapon DPS and reduce target's physical attack by (Buff4-0)% for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579102,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620346,504584,501520]}}],"icon":"/assets/ui/rom-spells/579102.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-25","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":25,"keyItemId":543032,"sourceSkillId":494033,"name":"Mental Bestiary","description":"Understand the structure of organisms, increasing the damage of your Slash attacks on vulnerable beasts and humanoid monsters.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579103,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494033,"name":"Mental Bestiary","description":"Understand the structure of organisms, increasing the damage of your Slash attacks on vulnerable beasts and humanoid monsters.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579103,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579103.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-30","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":30,"keyItemId":543040,"sourceSkillId":494324,"name":"Savage Whirlwind","description":"Harness primal natural forces to launch an attack. Inflicts (DMG0) main hand weapon DPS on target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579879,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503952],"components":[{"id":503952,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":0,"attack":{"type":0,"damagePower":-1.1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494324,"name":"Savage Whirlwind","description":"Harness primal natural forces to launch an attack. Inflicts (DMG0) main hand weapon DPS on target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579879,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503952]}}],"icon":"/assets/ui/rom-spells/579879.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-35","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":35,"keyItemId":543048,"sourceSkillId":494374,"name":"Wild Howl","description":"Upon hitting the target your Savage Whirlwind can temporary increase your own and your party members' [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG].\n([SC_SKILLTIPS_CD_1](Buff-Time-505168)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579880,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505168],"components":[{"id":505168,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494374,"name":"Wild Howl","description":"Upon hitting the target your Savage Whirlwind can temporary increase your own and your party members' [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG].\n([SC_SKILLTIPS_CD_1](Buff-Time-505168)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579880,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505168]}}],"icon":"/assets/ui/rom-spells/579880.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-40","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":40,"keyItemId":543056,"sourceSkillId":499495,"name":"Awakening of the Wild","description":"Renders you immune to Root and Slow effects for (Buff0-Time) seconds, and makes your next attack a critical attack.\n(Effect can only be removed if target has Movement Impairing Effect)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579881,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623004,623005],"components":[{"id":623004,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623005,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,64],"clearFlags":1057,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":499495,"name":"Awakening of the Wild","description":"Renders you immune to Root and Slow effects for (Buff0-Time) seconds, and makes your next attack a critical attack.\n(Effect can only be removed if target has Movement Impairing Effect)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579881,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623004,623005]}}],"icon":"/assets/ui/rom-spells/579881.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-45","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":45,"keyItemId":543064,"sourceSkillId":494624,"name":"Battle Creed","description":"Increases your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)% for (Buff0-Time) seconds. While the effect lasts, when you hit a target with Slash or Probing Attack, your attacks generate (Buff0-505845)% less aggro for (Buff-Time-505845) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-505846)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581098,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505208,505845,505846],"components":[{"id":505208,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505845,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":-15}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494972,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505846,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":494624,"name":"Battle Creed","description":"Increases your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)% for (Buff0-Time) seconds. While the effect lasts, when you hit a target with Slash or Probing Attack, your attacks generate (Buff0-505845)% less aggro for (Buff-Time-505845) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-505846)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581098,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505208,505845,505846]}}],"icon":"/assets/ui/rom-spells/581098.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-50","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543072,"sourceSkillId":494625,"name":"Air Tremor","description":"Coalesces the power within the surrounding atmosphere in your body and then releases it in an instant, inflicting (DMG0) main hand weapon DPS to all targets within a radius of 80.","target":"self","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581099,"sourceEffectType":1,"sourceTarget":0,"componentIds":[505209],"components":[{"id":505209,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494625,"name":"Air Tremor","description":"Coalesces the power within the surrounding atmosphere in your body and then releases it in an instant, inflicting (DMG0) main hand weapon DPS to all targets within a radius of 80.","target":"self","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581099,"sourceEffectType":1,"sourceTarget":0,"componentIds":[505209]}}],"icon":"/assets/ui/rom-spells/581099.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-60","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":60,"keyItemId":546740,"sourceSkillId":499493,"name":"Visceral Impact","description":"Makes your [499987] hits cause an additional reduction of [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801264,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499493,"name":"Visceral Impact","description":"Makes your [499987] hits cause an additional reduction of [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801264,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801264.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-70","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":70,"keyItemId":546741,"sourceSkillId":499494,"name":"Barbaric Execution","description":"Makes it possible for your [499986] hits to inflict an additional Stun effect for (Buff-Time-622974) seconds. The higher the level of [499986], the longer the effect works. Also increases critical hit rate by 50% against enemies with less than 30% HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801312,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622974],"components":[{"id":622974,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499494,"name":"Barbaric Execution","description":"Makes it possible for your [499986] hits to inflict an additional Stun effect for (Buff-Time-622974) seconds. The higher the level of [499986], the longer the effect works. Also increases critical hit rate by 50% against enemies with less than 30% HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801312,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622974]}}],"icon":"/assets/ui/rom-spells/801312.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-15","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543017,"sourceSkillId":494034,"name":"Rose Vine","description":"When the sharp rose vines entwine your weapon, your standard attacks cause your target to bleed, inflicting (Buff-Dot-504585) points of blood damage every 2 seconds for (Buff-Time-504585) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504712)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579104,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504543,504585,504712],"components":[{"id":504543,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"onAttackTrigger":{"rate":100,"rank":0,"id":495278},"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504585,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":1342185674,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494210,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":2,"dotType":0,"dotBase":-20,"dot":{"timeSeconds":2,"type":0,"base":-20,"skillLevelArg":10},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504712,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":268443648,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494034,"name":"Rose Vine","description":"When the sharp rose vines entwine your weapon, your standard attacks cause your target to bleed, inflicting (Buff-Dot-504585) points of blood damage every 2 seconds for (Buff-Time-504585) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504712)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579104,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504543,504585,504712]}}],"icon":"/assets/ui/rom-spells/579104.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-20","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":20,"keyItemId":543025,"sourceSkillId":494035,"name":"Tremor","description":"Use when target is Weakened to cause fierce tremors that inflict (DMG0) main hand weapon DPS. Each successful hit has a chance of reducing the target's [SC_SKILLTIPS_HIT] by (Buff4-0) points for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-506417)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579105,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504544,504586,502923,506417],"components":[{"id":504544,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"attack":{"type":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504586,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":1073742018,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":16,"value":-6}],"abilitySkillLevelArg":12,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495409,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502923,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506417,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":494035,"name":"Tremor","description":"Use when target is Weakened to cause fierce tremors that inflict (DMG0) main hand weapon DPS. Each successful hit has a chance of reducing the target's [SC_SKILLTIPS_HIT] by (Buff4-0) points for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-506417)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579105,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504544,504586,502923,506417]}}],"icon":"/assets/ui/rom-spells/579105.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-25","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":25,"keyItemId":543033,"sourceSkillId":494036,"name":"Guardian's Pledge","description":"Temporarily increases you and your party members' [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0). Also raises [SC_SKILLTIPS_CRI_PASSIVE] by (Buff8-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579106,"sourceEffectType":1,"sourceTarget":0,"componentIds":[504545,506227,506228],"components":[{"id":504545,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":8,"value":40}],"abilitySkillLevelArg":22,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495287,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506227,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506228,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":182,"value":22}],"abilitySkillLevelArg":12.5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494036,"name":"Guardian's Pledge","description":"Temporarily increases you and your party members' [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0). Also raises [SC_SKILLTIPS_CRI_PASSIVE] by (Buff8-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579106,"sourceEffectType":1,"sourceTarget":0,"componentIds":[504545,506227,506228]}}],"icon":"/assets/ui/rom-spells/579106.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-30","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":30,"keyItemId":543041,"sourceSkillId":494325,"name":"Redemption","description":"When you use your Probing Attack, physical and magical accuracy for all party members in a range of 100 will be increased by (Buff0-620359) for (Buff-Time-620359) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579882,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620359],"components":[{"id":620359,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":32,"abilityModifiers":[{"type":16,"value":10},{"type":195,"value":10}],"abilitySkillLevelArg":46,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494340,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494325,"name":"Redemption","description":"When you use your Probing Attack, physical and magical accuracy for all party members in a range of 100 will be increased by (Buff0-620359) for (Buff-Time-620359) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579882,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620359]}}],"icon":"/assets/ui/rom-spells/579882.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-35","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":35,"keyItemId":543049,"sourceSkillId":494376,"name":"Remove Magic","description":"Cleanses harmful magical effects from your target.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579883,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504903],"components":[{"id":504903,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":494376,"name":"Remove Magic","description":"Cleanses harmful magical effects from your target.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579883,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504903]}}],"icon":"/assets/ui/rom-spells/579883.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-40","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":40,"keyItemId":543057,"sourceSkillId":494377,"name":"Recovery of Life","description":"Your Whirlwind's cooldown time is reduced by 10 seconds, and the required rage is reduced by 10. Upon hitting the target, rage requirement for the skill is immediately decreased.\n([SC_SKILLTIPS_CD_1](Buff-Time-506368)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579884,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506368],"components":[{"id":506368,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494377,"name":"Recovery of Life","description":"Your Whirlwind's cooldown time is reduced by 10 seconds, and the required rage is reduced by 10. Upon hitting the target, rage requirement for the skill is immediately decreased.\n([SC_SKILLTIPS_CD_1](Buff-Time-506368)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579884,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506368]}}],"icon":"/assets/ui/rom-spells/579884.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-45","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":45,"keyItemId":543065,"sourceSkillId":494626,"name":"Resistance","description":"When you are attacked when you have the Berserk buff active, you will be able to completely resist the next attack.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581100,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494626,"name":"Resistance","description":"When you are attacked when you have the Berserk buff active, you will be able to completely resist the next attack.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581100,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581100.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-50","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":50,"keyItemId":543073,"sourceSkillId":494627,"name":"Stifle","description":"When the target is Vulnerable and is not able to respond in time your attack will deal him (DMG0) main hand weapon DPS. Additionally the next 10 times physical damage is dealt to the target it will be increased by 20%. Starting with the first attack the Stifle effect will gradually decrease by 2% with the overall time span being (Buff-Time-505906) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581101,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505680,501520,505906],"components":[{"id":505680,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501520,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0},{"id":505906,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":32834,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":494627,"name":"Stifle","description":"When the target is Vulnerable and is not able to respond in time your attack will deal him (DMG0) main hand weapon DPS. Additionally the next 10 times physical damage is dealt to the target it will be increased by 20%. Starting with the first attack the Stifle effect will gradually decrease by 2% with the overall time span being (Buff-Time-505906) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581101,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505680,501520,505906]}}],"icon":"/assets/ui/rom-spells/581101.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-60","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546742,"sourceSkillId":499496,"name":"Revival Slash","description":"When targets are hit by your [499497], there is a chance that you will receive a [493528] effect. However, the healing effect is reduced. \n(Can't be re-triggered while [493528] is in effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801265,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499496,"name":"Revival Slash","description":"When targets are hit by your [499497], there is a chance that you will receive a [493528] effect. However, the healing effect is reduced. \n(Can't be re-triggered while [493528] is in effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801265,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801265.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-70","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":70,"keyItemId":546743,"sourceSkillId":499498,"name":"Irresistible Force","description":"When you use [499499] and a target is hit, there is a chance you will achieve a [499498] effect. This effect will increase your inflicted damage and lasts for (Buff-Time-623013) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-623014) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801313,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623013,623014],"components":[{"id":623013,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":2},{"type":205,"value":2}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623014,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499498,"name":"Irresistible Force","description":"When you use [499499] and a target is hit, there is a chance you will achieve a [499498] effect. This effect will increase your inflicted damage and lasts for (Buff-Time-623013) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-623014) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801313,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623013,623014]}}],"icon":"/assets/ui/rom-spells/801313.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-15","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":15,"keyItemId":545960,"sourceSkillId":498706,"name":"Rage Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If target is attacking you, the skill will increase your rage by (DMG4). If nothing is attacking then it will restore (DMG5) points of your focus. \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800120,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621447,621448,621449],"components":[{"id":621447,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621448,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":15,"fixedValue":0,"attack":{"type":2,"damagePower":15,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621449,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":15,"fixedValue":0,"attack":{"type":3,"damagePower":15,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498706,"name":"Rage Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If target is attacking you, the skill will increase your rage by (DMG4). If nothing is attacking then it will restore (DMG5) points of your focus. \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800120,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621447,621448,621449]}}],"icon":"/assets/ui/rom-spells/800120.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-20","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":20,"keyItemId":545961,"sourceSkillId":498707,"name":"Psychic Whirlwind","description":"Inflicts (DMG0) main hand weapon physical DPS on targets nearby the designated target. If target is in a Weakened state, then skill will cause extra damage. \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800129,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621476,501577,621480,621478],"components":[{"id":621476,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621480,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621478,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498707,"name":"Psychic Whirlwind","description":"Inflicts (DMG0) main hand weapon physical DPS on targets nearby the designated target. If target is in a Weakened state, then skill will cause extra damage. \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800129,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621476,501577,621480,621478]}}],"icon":"/assets/ui/rom-spells/800129.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-25","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":25,"keyItemId":545962,"sourceSkillId":498734,"name":"Divine Battle Spirit","description":"Earns (Buff0-Dot) rage every second for (Buff0-Time). \n(Effect disappears after you cross the line or change areas.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800130,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621477],"components":[{"id":621477,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"clearFlags":1072,"abilitySkillLevelArg":0,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":5},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498734,"name":"Divine Battle Spirit","description":"Earns (Buff0-Dot) rage every second for (Buff0-Time). \n(Effect disappears after you cross the line or change areas.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800130,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621477]}}],"icon":"/assets/ui/rom-spells/800130.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-30","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":30,"keyItemId":545963,"sourceSkillId":498735,"name":"Psychic Battle Cry","description":"Earns Psychic Torrent state. \nWhen you use an elite skill that inflicts area damage, party members in the damage area will earn Spirit Shield Protection. This effect will resist an amount of damage equal to (Buff-Shield-621479)% of the caster's healing bonus for (Buff-Time-621479) seconds. Shield can be stacked a maximum of 3 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":8000},"source":{"imageId":800131,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621478,621479],"components":[{"id":621478,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621479,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":33123,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":4,"effect":0,"point":50,"skillLevelArg":100}}]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498735,"name":"Psychic Battle Cry","description":"Earns Psychic Torrent state. \nWhen you use an elite skill that inflicts area damage, party members in the damage area will earn Spirit Shield Protection. This effect will resist an amount of damage equal to (Buff-Shield-621479)% of the caster's healing bonus for (Buff-Time-621479) seconds. Shield can be stacked a maximum of 3 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":8000},"source":{"imageId":800131,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621478,621479]}}],"icon":"/assets/ui/rom-spells/800131.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-35","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":35,"keyItemId":545964,"sourceSkillId":498739,"name":"Psychic Ghost Step","description":"Charges the target and inflicts (DMG0) main hand weapon physical DPS on nearby targets. If Divine Battle Spirit is in effect then additional damage is inflicted on most targets. \n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800132,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621483,621484,621477,621480],"components":[{"id":621483,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.3,"fixedValue":0,"attack":{"type":0,"damagePower":-0.3,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621484,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4163,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.2,"fixedValue":0,"summonCreatureId":0},{"id":621477,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"clearFlags":1072,"abilitySkillLevelArg":0,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":5},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621480,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498739,"name":"Psychic Ghost Step","description":"Charges the target and inflicts (DMG0) main hand weapon physical DPS on nearby targets. If Divine Battle Spirit is in effect then additional damage is inflicted on most targets. \n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800132,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621483,621484,621477,621480]}}],"icon":"/assets/ui/rom-spells/800132.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-40","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":40,"keyItemId":545965,"sourceSkillId":498740,"name":"Spirit-Cracking Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target and carries a Spirit Wound state. Every 2 seconds, this state inflicts (Buff4-Dot) physical damage on the target and increases the caster's rage by (Buff8-Dot). Lasts for (Buff4-Time). \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800133,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621487,621488,621489],"components":[{"id":621487,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621488,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":45},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621489,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":75,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":2,"dotBase":4,"dot":{"timeSeconds":2,"type":2,"base":4,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498740,"name":"Spirit-Cracking Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target and carries a Spirit Wound state. Every 2 seconds, this state inflicts (Buff4-Dot) physical damage on the target and increases the caster's rage by (Buff8-Dot). Lasts for (Buff4-Time). \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800133,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621487,621488,621489]}}],"icon":"/assets/ui/rom-spells/800133.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-45","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":45,"keyItemId":545966,"sourceSkillId":498741,"name":"Lightning Spell","description":"Inflicts (DMG0) main hand weapon physical DPS on targets in range. Also increases [SC_SKILLTIPS_MOVE] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":7.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579904,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621490,621491,621480,621478],"components":[{"id":621490,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621491,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621480,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621478,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":498741,"name":"Lightning Spell","description":"Inflicts (DMG0) main hand weapon physical DPS on targets in range. Also increases [SC_SKILLTIPS_MOVE] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":7.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579904,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621490,621491,621480,621478]}}],"icon":"/assets/ui/rom-spells/579904.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-50","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":545967,"sourceSkillId":498742,"name":"Spirit Blade Storm","description":"Summons a Spirit Blade Storm that engulfs targets in range. Inflicts (DMG-621497) main hand weapon physical DPS for 6 seconds. Also reduces [SC_SKILLTIPS_MOVE] by (Buff0-621498)% for (Buff-Time-621498) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800204,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621496,621480,621478,621497,621498],"components":[{"id":621496,"magicFunc":6,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621480,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621478,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621497,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.2,"fixedValue":0,"attack":{"type":0,"damagePower":-0.2,"damagePowerSkillLevelArg":6.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621498,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498742,"name":"Spirit Blade Storm","description":"Summons a Spirit Blade Storm that engulfs targets in range. Inflicts (DMG-621497) main hand weapon physical DPS for 6 seconds. Also reduces [SC_SKILLTIPS_MOVE] by (Buff0-621498)% for (Buff-Time-621498) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800204,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621496,621480,621478,621497,621498]}}],"icon":"/assets/ui/rom-spells/800204.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-60","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":60,"keyItemId":546744,"sourceSkillId":499827,"name":"Speed Slash","description":"There is a chance that [499828] will reset the cooldown timer of [498739].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801614,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":499827,"name":"Speed Slash","description":"There is a chance that [499828] will reset the cooldown timer of [498739].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801614,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801614.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-70","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":70,"keyItemId":546745,"sourceSkillId":499806,"name":"Excellent Combat Training","description":"The cooldown time of [499825] is reduced to 10 seconds, and each time [499826] hits a target, the cooldown time of [498742] is reduced by 3 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801615,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499806,"name":"Excellent Combat Training","description":"The cooldown time of [499825] is reduced to 10 seconds, and each time [499826] hits a target, the cooldown time of [498742] is reduced by 3 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801615,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801615.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-15","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":541890,"sourceSkillId":491337,"name":"Battle Instinct","description":"Temporarily increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575220,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501821,506361],"components":[{"id":501821,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":6,"value":20}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495379,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506361,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":165,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491337,"name":"Battle Instinct","description":"Temporarily increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575220,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501821,506361]}}],"icon":"/assets/ui/rom-spells/575220.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-20","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":541920,"sourceSkillId":491488,"name":"Master of Survival","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575705,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501889,506369],"components":[{"id":501889,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":8,"value":50}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":506369,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":491488,"name":"Master of Survival","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575705,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501889,506369]}}],"icon":"/assets/ui/rom-spells/575705.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-25","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":541950,"sourceSkillId":491489,"name":"Enhanced Throat Attack","description":"Your Throat Attack can cause an additional 4 seconds of Silence to the target, and also increases the range of Throat Attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575575,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":491489,"name":"Enhanced Throat Attack","description":"Your Throat Attack can cause an additional 4 seconds of Silence to the target, and also increases the range of Throat Attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575575,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575575.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-30","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":541980,"sourceSkillId":491491,"name":"Mental Focus","description":"Recovers (Buff0-Dot) focus points every 5 seconds for a total of (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575704,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501892],"components":[{"id":501892,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":120,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":40,"abilitySkillLevelArg":5,"dotTime":5,"dotType":3,"dotBase":5,"dot":{"timeSeconds":5,"type":3,"base":5,"skillLevelArg":11.2},"attackType":3,"damagePower":5,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":491491,"name":"Mental Focus","description":"Recovers (Buff0-Dot) focus points every 5 seconds for a total of (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575704,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501892]}}],"icon":"/assets/ui/rom-spells/575704.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-35","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542011,"sourceSkillId":492620,"name":"Target Lock","description":"Physical damage received by the target is increased by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576995,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502920],"components":[{"id":502920,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":492620,"name":"Target Lock","description":"Physical damage received by the target is increased by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576995,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502920]}}],"icon":"/assets/ui/rom-spells/576995.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-40","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":40,"keyItemId":542041,"sourceSkillId":492915,"name":"Gale","description":"Increases damage of Combo Shot and prevents you from being interrupted by an attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577578,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492915,"name":"Gale","description":"Increases damage of Combo Shot and prevents you from being interrupted by an attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577578,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577578.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-45","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":542071,"sourceSkillId":493006,"name":"Accurate Targeting","description":"When your Shot hits a target, it instantly increases your [SC_SKILLTIPS_01]. Effective for (Buff-Time-503255) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503254)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577646,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503255,503254],"components":[{"id":503255,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":12,"value":50}],"abilitySkillLevelArg":11,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493054,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"summonCreatureId":0},{"id":503254,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":493006,"name":"Accurate Targeting","description":"When your Shot hits a target, it instantly increases your [SC_SKILLTIPS_01]. Effective for (Buff-Time-503255) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503254)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577646,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503255,503254]}}],"icon":"/assets/ui/rom-spells/577646.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-50","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":542101,"sourceSkillId":493252,"name":"Recover Vitality","description":"Upon hitting a target with Snipe or Piercing Arrow, there is an additional chance that you will gain rage points. Also, upon hitting a target with Snipe, there is an additional chance of canceling beneficial effects on the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577776,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":493252,"name":"Recover Vitality","description":"Upon hitting a target with Snipe or Piercing Arrow, there is an additional chance that you will gain rage points. Also, upon hitting a target with Snipe, there is an additional chance of canceling beneficial effects on the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577776,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577776.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-60","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546748,"sourceSkillId":499511,"name":"Vital Reflection","description":"Increases damage inflicted by your [499512] on targets that have less than 30% HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801266,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499511,"name":"Vital Reflection","description":"Increases damage inflicted by your [499512] on targets that have less than 30% HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801266,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801266.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-70","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546749,"sourceSkillId":499513,"name":"Breathing Obstruction","description":"If a target uses a skill in the time allotted after being hit by your [490442], then that skills cooldown time will be increased by an extra (Buff-Time-623057) seconds. If the skill doesn't have a cooldown time then the cooldown times for all skills will be (Buff-Time-623060) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801382,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623057,623060],"components":[{"id":623057,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623060,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499513,"name":"Breathing Obstruction","description":"If a target uses a skill in the time allotted after being hit by your [490442], then that skills cooldown time will be increased by an extra (Buff-Time-623057) seconds. If the skill doesn't have a cooldown time then the cooldown times for all skills will be (Buff-Time-623060) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801382,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623057,623060]}}],"icon":"/assets/ui/rom-spells/801382.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-15","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":541891,"sourceSkillId":491493,"name":"Weak Spot","description":"Aiming at the target's weak spot inflicts (DMG0) ranged weapon DPS. Also increases your [SC_SKILLTIPS_CRI] by (Buff4-0) for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575572,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501894,501895],"components":[{"id":501894,"magicFunc":0,"magicType":4,"effectType":1,"effectTime":-1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":34,"abilityModifiers":[{"type":18,"value":5}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501895,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":34,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":491493,"name":"Weak Spot","description":"Aiming at the target's weak spot inflicts (DMG0) ranged weapon DPS. Also increases your [SC_SKILLTIPS_CRI] by (Buff4-0) for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575572,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501894,501895]}}],"icon":"/assets/ui/rom-spells/575572.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-20","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":541921,"sourceSkillId":491336,"name":"Blinding Powder","description":"Prevents your target from attacking for (Buff0-Time) seconds. \n(For players this effect lasts for (Buff1-Time) seconds.)\n(Effect will be removed when target is attacked)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575219,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501820,503840,502719],"components":[{"id":501820,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":126,"effectFlagWords":[2099,0],"clearFlags":2,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503840,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[51,0],"clearFlags":2,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":491336,"name":"Blinding Powder","description":"Prevents your target from attacking for (Buff0-Time) seconds. \n(For players this effect lasts for (Buff1-Time) seconds.)\n(Effect will be removed when target is attacked)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575219,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501820,503840,502719]}}],"icon":"/assets/ui/rom-spells/575219.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-25","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":541951,"sourceSkillId":492342,"name":"Lasso Master","description":"Your lasso now hinders the target from movement and attacks.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575561,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":492342,"name":"Lasso Master","description":"Your lasso now hinders the target from movement and attacks.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575561,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575561.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-30","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":541981,"sourceSkillId":491496,"name":"Sapping Arrow","description":"Decreases the target's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575576,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501897],"components":[{"id":501897,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":170,"value":-1},{"type":135,"value":-1}],"abilitySkillLevelArg":28,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":491496,"name":"Sapping Arrow","description":"Decreases the target's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575576,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501897]}}],"icon":"/assets/ui/rom-spells/575576.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-35","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542012,"sourceSkillId":492621,"name":"Deadly Poison Bite","description":"The deadly poison on your arrow inflicts (DMG0) ranged weapon DPS. When the target is under the effect of [501690], Deadly Poison Bite will also cause (DMG4) ranged weapon DPS.","target":"hostile","range":16,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576996,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502890,620183,501690],"components":[{"id":502890,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620183,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"damagePower":-0.4,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501690,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":492621,"name":"Deadly Poison Bite","description":"The deadly poison on your arrow inflicts (DMG0) ranged weapon DPS. When the target is under the effect of [501690], Deadly Poison Bite will also cause (DMG4) ranged weapon DPS.","target":"hostile","range":16,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576996,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502890,620183,501690]}}],"icon":"/assets/ui/rom-spells/576996.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-40","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":40,"keyItemId":542042,"sourceSkillId":492916,"name":"Exploiting Shot","description":"When your Shot makes a critical hit, you increase your targets received Physical Damage by (Buff0-503169)%. Lasts (Buff-Time-503169) seconds. \n(This skill increases the target's received Physical Damage by a maximum of (Max-Buff0-503169)%.)\n([SC_SKILLTIPS_CD_1](Buff-Time-503453)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577579,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503169,503453],"components":[{"id":503169,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":1342177506,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":-2}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493245,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503453,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":492916,"name":"Exploiting Shot","description":"When your Shot makes a critical hit, you increase your targets received Physical Damage by (Buff0-503169)%. Lasts (Buff-Time-503169) seconds. \n(This skill increases the target's received Physical Damage by a maximum of (Max-Buff0-503169)%.)\n([SC_SKILLTIPS_CD_1](Buff-Time-503453)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577579,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503169,503453]}}],"icon":"/assets/ui/rom-spells/577579.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-45","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":542072,"sourceSkillId":493007,"name":"Deadly Counterattack","description":"When your Piercing Arrow hits the target, it instantly increases your [SC_SKILLTIPS_CRI].\n([SC_SKILLTIPS_CD_1](Buff-Time-503299)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577647,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503299],"components":[{"id":503299,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":-20,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":493007,"name":"Deadly Counterattack","description":"When your Piercing Arrow hits the target, it instantly increases your [SC_SKILLTIPS_CRI].\n([SC_SKILLTIPS_CD_1](Buff-Time-503299)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577647,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503299]}}],"icon":"/assets/ui/rom-spells/577647.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-50","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":50,"keyItemId":542102,"sourceSkillId":493253,"name":"Poisonous Spit","description":"Keeps your Reflected Shot from losing reflective damage. Also, with every successful hit of your Reflected Shot or Combo Shot, the target will be poisoned if you are carrying Poison Powder.\n([SC_SKILLTIPS_CD_1](Buff-Time-503521)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577777,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503521],"components":[{"id":503521,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":493253,"name":"Poisonous Spit","description":"Keeps your Reflected Shot from losing reflective damage. Also, with every successful hit of your Reflected Shot or Combo Shot, the target will be poisoned if you are carrying Poison Powder.\n([SC_SKILLTIPS_CD_1](Buff-Time-503521)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577777,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503521]}}],"icon":"/assets/ui/rom-spells/577777.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-60","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546750,"sourceSkillId":499534,"name":"Master Reflected Shot","description":"Makes your [499535] fire 2 additional shots. Also increases damage from each [499535].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801267,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499534,"name":"Master Reflected Shot","description":"Makes your [499535] fire 2 additional shots. Also increases damage from each [499535].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801267,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801267.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-70","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546751,"sourceSkillId":499536,"name":"Meridian Attack","description":"Makes your [499537] cause an additional decrease in the target's [SC_SKILLTIPS_MDMG]. Also prolongs the effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801315,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499536,"name":"Meridian Attack","description":"Makes your [499537] cause an additional decrease in the target's [SC_SKILLTIPS_MDMG]. Also prolongs the effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801315,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801315.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-15","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541892,"sourceSkillId":491507,"name":"Purifying Arrow","description":"Removes curses and harmful effects from target.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575564,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501908],"components":[{"id":501908,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-5,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491507,"name":"Purifying Arrow","description":"Removes curses and harmful effects from target.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575564,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501908]}}],"icon":"/assets/ui/rom-spells/575564.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-20","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":541922,"sourceSkillId":499538,"name":"Blazing Energy","description":"When activated, power of your Fire based spells increases by (Buff0-0)% and area damage increases by (Buff0-1)%. This effect lasts (Buff0-Time) seconds. If you shoot while this is in effect, there is a chance of casting Fireball automatically.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575706,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501907],"components":[{"id":501907,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":47,"value":2},{"type":208,"value":3}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-5,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":499538,"name":"Blazing Energy","description":"When activated, power of your Fire based spells increases by (Buff0-0)% and area damage increases by (Buff0-1)%. This effect lasts (Buff0-Time) seconds. If you shoot while this is in effect, there is a chance of casting Fireball automatically.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575706,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501907]}}],"icon":"/assets/ui/rom-spells/575706.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-25","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":541952,"sourceSkillId":491509,"name":"Ignite","description":"Inflicts ((DMG0), based on the DPS of the ranged weapon, + (FixDMG-501910) x intelligence) [SC_SKILLTIPS_FLAME] to multiple targets within range.\n\n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575699,"sourceEffectType":0,"sourceTarget":16,"componentIds":[501910],"components":[{"id":501910,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.35,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.35,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491509,"name":"Ignite","description":"Inflicts ((DMG0), based on the DPS of the ranged weapon, + (FixDMG-501910) x intelligence) [SC_SKILLTIPS_FLAME] to multiple targets within range.\n\n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575699,"sourceEffectType":0,"sourceTarget":16,"componentIds":[501910]}}],"icon":"/assets/ui/rom-spells/575699.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-30","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":541982,"sourceSkillId":491510,"name":"Gone with the Wind","description":"Wind magic makes the caster invisible for (Buff0-Time) seconds, clearing aggro and ending combat.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":575709,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501909,501567],"components":[{"id":501909,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501567,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":16,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491510,"name":"Gone with the Wind","description":"Wind magic makes the caster invisible for (Buff0-Time) seconds, clearing aggro and ending combat.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":575709,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501909,501567]}}],"icon":"/assets/ui/rom-spells/575709.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-35","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":35,"keyItemId":542013,"sourceSkillId":492623,"name":"Cursed Arrow","description":"Puts a poisonous curse on your arrow to inflict (DMG0) damage on the target, based on the DPS of the ranged weapon. After a hit, Healing effects on the target are reduced by (Buff4-0)% for (Buff4-Time) seconds.\n(Received healing of players is reduced by (Buff5-0)% for (Buff5-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50] \n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576997,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502880,502892,504248],"components":[{"id":502880,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502892,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504248,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":492623,"name":"Cursed Arrow","description":"Puts a poisonous curse on your arrow to inflict (DMG0) damage on the target, based on the DPS of the ranged weapon. After a hit, Healing effects on the target are reduced by (Buff4-0)% for (Buff4-Time) seconds.\n(Received healing of players is reduced by (Buff5-0)% for (Buff5-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50] \n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576997,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502880,502892,504248]}}],"icon":"/assets/ui/rom-spells/576997.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-40","classId":"rom-scout","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":542043,"sourceSkillId":492918,"name":"Prairie Fire","description":"Increases damage of Ignite and has a chance of triggering Root on your opponent.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577581,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":492918,"name":"Prairie Fire","description":"Increases damage of Ignite and has a chance of triggering Root on your opponent.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577581,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577581.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-45","classId":"rom-scout","secondaryClassId":"rom-mage","group":"passive","unlockLevel":45,"keyItemId":542073,"sourceSkillId":493013,"name":"Wilderness Campaign","description":"When your Combo Shot makes a successful hit, it instantly increases the [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] of all nearby party members.\n([SC_SKILLTIPS_CD_1](Buff-Time-503292)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577648,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503292],"components":[{"id":503292,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":493013,"name":"Wilderness Campaign","description":"When your Combo Shot makes a successful hit, it instantly increases the [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] of all nearby party members.\n([SC_SKILLTIPS_CD_1](Buff-Time-503292)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577648,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503292]}}],"icon":"/assets/ui/rom-spells/577648.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-50","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":542103,"sourceSkillId":493255,"name":"Aggro Transfer","description":"Using Shot while Aggro Transfer is in effect triggers Secret Hatred, which lasts for (Buff-Time-503574) seconds. While Secret Hatred is in effect, you can transfer your aggro to a party member through the power of the wind.\nAggro Transfer is in effect for (Buff0-Time) seconds, during this time this party member will receive (Buff0-Dot) MP every 2 seconds. \n(In order to transfer aggro to a party member your target needs to be within a range of 500.)\n(Cannot be cast on yourself.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577778,"sourceEffectType":0,"sourceTarget":1,"componentIds":[501912,501911,503574],"components":[{"id":501912,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1048683,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":1,"dotBase":3,"dot":{"timeSeconds":2,"type":1,"base":3,"skillLevelArg":30},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501911,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503574,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":-100,"settingFlags":268435651,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1073741824,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":491512,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":493255,"name":"Aggro Transfer","description":"Using Shot while Aggro Transfer is in effect triggers Secret Hatred, which lasts for (Buff-Time-503574) seconds. While Secret Hatred is in effect, you can transfer your aggro to a party member through the power of the wind.\nAggro Transfer is in effect for (Buff0-Time) seconds, during this time this party member will receive (Buff0-Dot) MP every 2 seconds. \n(In order to transfer aggro to a party member your target needs to be within a range of 500.)\n(Cannot be cast on yourself.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577778,"sourceEffectType":0,"sourceTarget":1,"componentIds":[501912,501911,503574]}}],"icon":"/assets/ui/rom-spells/577778.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-60","classId":"rom-scout","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546752,"sourceSkillId":499539,"name":"Cross-Domain Discipline","description":"Allows you to equip a staff. When hitting a target with your [499540], there is a chance that it will carry ((DMG-623064) + (FixDMG-623064) * INT) wind damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801268,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623062,623064],"components":[{"id":623062,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":91,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623064,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499539,"name":"Cross-Domain Discipline","description":"Allows you to equip a staff. When hitting a target with your [499540], there is a chance that it will carry ((DMG-623064) + (FixDMG-623064) * INT) wind damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801268,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623062,623064]}}],"icon":"/assets/ui/rom-spells/801268.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-70","classId":"rom-scout","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546753,"sourceSkillId":499548,"name":"Wind Return","description":"Earns you a [499548] effect after your [499549] effect wears off. Increases [SC_SKILLTIPS_01] by (Buff0-623070)% and [SC_SKILLTIPS_02] by (Buff1-623070)%. Also recovers (Buff-Dot-623083) HP every two seconds. Lasts (Buff-Time-623070) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801316,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623070,623083],"components":[{"id":623070,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1},{"type":171,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623083,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":20,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499548,"name":"Wind Return","description":"Earns you a [499548] effect after your [499549] effect wears off. Increases [SC_SKILLTIPS_01] by (Buff0-623070)% and [SC_SKILLTIPS_02] by (Buff1-623070)%. Also recovers (Buff-Dot-623083) HP every two seconds. Lasts (Buff-Time-623070) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801316,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623070,623083]}}],"icon":"/assets/ui/rom-spells/801316.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-15","classId":"rom-scout","secondaryClassId":"rom-priest","group":"elite","unlockLevel":15,"keyItemId":541893,"sourceSkillId":491504,"name":"Purifying Shot","description":"Removes harmful effects from target.","target":"friendly","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575574,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501904],"components":[{"id":501904,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":-30,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491504,"name":"Purifying Shot","description":"Removes harmful effects from target.","target":"friendly","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575574,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501904]}}],"icon":"/assets/ui/rom-spells/575574.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-20","classId":"rom-scout","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":541923,"sourceSkillId":491513,"name":"Mana Arrows","description":"Casting Mana Arrow to the party members of your range of 50 absorbs all damage equal to (Buff0-Shield)% of the targets' max HP for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":575562,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620186],"components":[{"id":620186,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":5,"skillLevelArg":3}}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":491513,"name":"Mana Arrows","description":"Casting Mana Arrow to the party members of your range of 50 absorbs all damage equal to (Buff0-Shield)% of the targets' max HP for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":575562,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620186]}}],"icon":"/assets/ui/rom-spells/575562.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-25","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":25,"keyItemId":541953,"sourceSkillId":492344,"name":"Sniper","description":"Reduces casting time of Snipe by 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575563,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":492344,"name":"Sniper","description":"Reduces casting time of Snipe by 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575563,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575563.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-30","classId":"rom-scout","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":541983,"sourceSkillId":491335,"name":"Spiritual Leader","description":"Raises the speed of physical attacks and spell casting of you and your party members by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":30,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575218,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501819],"components":[{"id":501819,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":25,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":9,"abilityModifiers":[{"type":23,"value":-2},{"type":51,"value":-2}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":491335,"name":"Spiritual Leader","description":"Raises the speed of physical attacks and spell casting of you and your party members by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":30,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575218,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501819]}}],"icon":"/assets/ui/rom-spells/575218.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-35","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":542014,"sourceSkillId":492622,"name":"Vampiric Transformation","description":"Transforms the blood drawn by your Vampire Arrows into heals for your own group members.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576998,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":492622,"name":"Vampiric Transformation","description":"Transforms the blood drawn by your Vampire Arrows into heals for your own group members.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576998,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/576998.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-40","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":40,"keyItemId":542044,"sourceSkillId":492917,"name":"Target Neck","description":"Extends the range of your Neck Strike, but requires long range weapons.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577582,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":492917,"name":"Target Neck","description":"Extends the range of your Neck Strike, but requires long range weapons.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577582,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577582.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-45","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542074,"sourceSkillId":493010,"name":"Drums of War","description":"Each time you hit your target with a Shot, it instantly increases the [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] of party members near you. Effective for (Buff-Time-503258) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503310)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577649,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503258,503310],"components":[{"id":503258,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":1342177379,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20},{"type":20,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503310,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":493010,"name":"Drums of War","description":"Each time you hit your target with a Shot, it instantly increases the [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] of party members near you. Effective for (Buff-Time-503258) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503310)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577649,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503258,503310]}}],"icon":"/assets/ui/rom-spells/577649.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-50","classId":"rom-scout","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":542104,"sourceSkillId":493254,"name":"Aggro Lead","description":"Using Shot while Aggro Lead is in effect triggers Secret Hatred, which lasts for (Buff-Time-503574) seconds. While Secret Hatred is in effect, you can transfer your aggro to a party member through the power of the wind.\nAggro Lead is in effect for (Buff0-Time) seconds, during this time [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] suffered by this party member are decreased by (Buff0-0)%. (Cannot be cast on yourself.)\n(In order to transfer aggro to a party member your target needs to be within a range of 500.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577779,"sourceEffectType":0,"sourceTarget":1,"componentIds":[501901,509801,501900,503574],"components":[{"id":501901,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":2},{"type":142,"value":0}],"abilitySkillLevelArg":8,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509801,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":268959969,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":0},{"type":142,"value":2}],"abilitySkillLevelArg":8,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501900,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503574,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":-100,"settingFlags":268435651,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1073741824,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":491512,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":493254,"name":"Aggro Lead","description":"Using Shot while Aggro Lead is in effect triggers Secret Hatred, which lasts for (Buff-Time-503574) seconds. While Secret Hatred is in effect, you can transfer your aggro to a party member through the power of the wind.\nAggro Lead is in effect for (Buff0-Time) seconds, during this time [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] suffered by this party member are decreased by (Buff0-0)%. (Cannot be cast on yourself.)\n(In order to transfer aggro to a party member your target needs to be within a range of 500.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577779,"sourceEffectType":0,"sourceTarget":1,"componentIds":[501901,509801,501900,503574]}}],"icon":"/assets/ui/rom-spells/577779.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-60","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":60,"keyItemId":546754,"sourceSkillId":499552,"name":"Revival Engraving","description":"Increases your companions' [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-623087)%, reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MDMG] by (Buff1-623087)% after a target is hit by your [490443]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801269,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623087],"components":[{"id":623087,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":144,"value":3},{"type":142,"value":3},{"type":143,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499552,"name":"Revival Engraving","description":"Increases your companions' [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-623087)%, reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MDMG] by (Buff1-623087)% after a target is hit by your [490443]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801269,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623087]}}],"icon":"/assets/ui/rom-spells/801269.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-70","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546755,"sourceSkillId":499555,"name":"Screen Attack","description":"Causes an additional (Buff0-623089)% increase in damage inflicted by your and your friendly targets' [499578]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801317,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623089],"components":[{"id":623089,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":2},{"type":192,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499555,"name":"Screen Attack","description":"Causes an additional (Buff0-623089)% increase in damage inflicted by your and your friendly targets' [499578]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801317,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623089]}}],"icon":"/assets/ui/rom-spells/801317.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-15","classId":"rom-scout","secondaryClassId":"rom-knight","group":"elite","unlockLevel":15,"keyItemId":541894,"sourceSkillId":491516,"name":"Repelling Arrow","description":"Repelling your target Roots it for (Buff4-Time) seconds and inflicts (DMG0) ranged weapon DPS.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575573,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502016,502013,503847],"components":[{"id":502016,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":2,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502013,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilityModifiers":[{"type":0,"value":-60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503847,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilityModifiers":[{"type":0,"value":-60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":491516,"name":"Repelling Arrow","description":"Repelling your target Roots it for (Buff4-Time) seconds and inflicts (DMG0) ranged weapon DPS.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575573,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502016,502013,503847]}}],"icon":"/assets/ui/rom-spells/575573.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-20","classId":"rom-scout","secondaryClassId":"rom-knight","group":"elite","unlockLevel":20,"keyItemId":541924,"sourceSkillId":499558,"name":"Healing Shot","description":"Fires one Shot at the target causing (DMG0) ranged weapon DPS. When it hits, it will also heal the party member with the lowest maximum HP by (DMG-501888) + (FixDMG-501888) x (ranged weapon damage).","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575703,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620194,623090,501888],"components":[{"id":620194,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623090,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501888,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":23,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0.2,"attack":{"type":0,"damagePower":30,"damagePowerSkillLevelArg":18,"fixedValue":0.2,"fixedType":3,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":499558,"name":"Healing Shot","description":"Fires one Shot at the target causing (DMG0) ranged weapon DPS. When it hits, it will also heal the party member with the lowest maximum HP by (DMG-501888) + (FixDMG-501888) x (ranged weapon damage).","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575703,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620194,623090,501888]}}],"icon":"/assets/ui/rom-spells/575703.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-25","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":25,"keyItemId":541954,"sourceSkillId":492346,"name":"Enhanced Armor Perfection","description":"Enhanced Armor now lasts (Buff-Time-501823) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575568,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501823],"components":[{"id":501823,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":2,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":492346,"name":"Enhanced Armor Perfection","description":"Enhanced Armor now lasts (Buff-Time-501823) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575568,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501823]}}],"icon":"/assets/ui/rom-spells/575568.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-30","classId":"rom-scout","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541984,"sourceSkillId":491519,"name":"Mana Conversion","description":"Converts mana into (DMG0) focus points.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":5,"percentage":true},{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575701,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502019],"components":[{"id":502019,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":10,"fixedValue":0,"attack":{"type":3,"damagePower":10,"damagePowerSkillLevelArg":18,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491519,"name":"Mana Conversion","description":"Converts mana into (DMG0) focus points.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":5,"percentage":true},{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575701,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502019]}}],"icon":"/assets/ui/rom-spells/575701.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-35","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":35,"keyItemId":542015,"sourceSkillId":492624,"name":"Mana Recovery","description":"Gives your Healing Shots an additional chance of recovering mana.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576999,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492624,"name":"Mana Recovery","description":"Gives your Healing Shots an additional chance of recovering mana.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576999,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/576999.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-40","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":40,"keyItemId":542045,"sourceSkillId":490431,"name":"Armor-Piercing Arrow","description":"Extends the range of your Disarmament. The damage caused is increased according to the DPS of the ranged weapon. (Requires ranged weapon.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577583,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":490431,"name":"Armor-Piercing Arrow","description":"Extends the range of your Disarmament. The damage caused is increased according to the DPS of the ranged weapon. (Requires ranged weapon.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577583,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577583.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-45","classId":"rom-scout","secondaryClassId":"rom-knight","group":"elite","unlockLevel":45,"keyItemId":542075,"sourceSkillId":493016,"name":"Escape Danger","description":"For (Buff0-Time) seconds you are immune against Helpless, Stun, Root, and Slow effects.\n(Effect can only be removed if target has Movement Impairing Effect or Stun)\n[SC_SKILLTIPS_FEAR]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577650,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503261],"components":[{"id":503261,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493016,"name":"Escape Danger","description":"For (Buff0-Time) seconds you are immune against Helpless, Stun, Root, and Slow effects.\n(Effect can only be removed if target has Movement Impairing Effect or Stun)\n[SC_SKILLTIPS_FEAR]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577650,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503261]}}],"icon":"/assets/ui/rom-spells/577650.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-50","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":50,"keyItemId":542105,"sourceSkillId":493256,"name":"Spirit Meld","description":"Keeps your Reflected Shots from losing reflective damage. Also, with every successful hit of your Reflected Shot, it boosts the [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] of party members within a radius of 100.\n([SC_SKILLTIPS_CD_1](Buff-Time-503563)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577780,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503563],"components":[{"id":503563,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493256,"name":"Spirit Meld","description":"Keeps your Reflected Shots from losing reflective damage. Also, with every successful hit of your Reflected Shot, it boosts the [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] of party members within a radius of 100.\n([SC_SKILLTIPS_CD_1](Buff-Time-503563)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577780,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503563]}}],"icon":"/assets/ui/rom-spells/577780.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-60","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546756,"sourceSkillId":499561,"name":"Blessed Quiver","description":"Reduces your [499562] cooldown time by 4 seconds. Also increases your [499562] critical hit rate. When your [499562] is a critical attack, it will definitely trigger a [492624].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801270,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499561,"name":"Blessed Quiver","description":"Reduces your [499562] cooldown time by 4 seconds. Also increases your [499562] critical hit rate. When your [499562] is a critical attack, it will definitely trigger a [492624].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801270,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801270.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-70","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":70,"keyItemId":546757,"sourceSkillId":499564,"name":"Transformation Torrent","description":"When you use [499565], it affects all companions in a range of 90 by recovering Energy, Rage, and Focus.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801318,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":499564,"name":"Transformation Torrent","description":"When you use [499565], it affects all companions in a range of 90 by recovering Energy, Rage, and Focus.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801318,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801318.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-15","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":15,"keyItemId":543018,"sourceSkillId":494037,"name":"Thorn Arrow","description":"Use it when you have a Briar Shield to turn the thorns that surround you into thorn arrows that attack your target inflicting (DMG0) ranged weapon DPS. (The Briar Shield will not disappear.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579107,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504546],"components":[{"id":504546,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494037,"name":"Thorn Arrow","description":"Use it when you have a Briar Shield to turn the thorns that surround you into thorn arrows that attack your target inflicting (DMG0) ranged weapon DPS. (The Briar Shield will not disappear.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579107,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504546]}}],"icon":"/assets/ui/rom-spells/579107.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-20","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":20,"keyItemId":543026,"sourceSkillId":494038,"name":"Entling Offering","description":"For (Buff0-Time) seconds, each time your Shot hits a target, the target will also take ranged damage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579108,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504547],"components":[{"id":504547,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494038,"name":"Entling Offering","description":"For (Buff0-Time) seconds, each time your Shot hits a target, the target will also take ranged damage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579108,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504547]}}],"icon":"/assets/ui/rom-spells/579108.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-25","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":25,"keyItemId":543034,"sourceSkillId":494039,"name":"Hidden Peril","description":"You attack your target using the forest for cover, inflicting (DMG0) ranged weapon DPS on the target. There is a chance of reducing the casting time of Snipe to 1 second the next time you cast it.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579109,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504548,504588],"components":[{"id":504548,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504588,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494039,"name":"Hidden Peril","description":"You attack your target using the forest for cover, inflicting (DMG0) ranged weapon DPS on the target. There is a chance of reducing the casting time of Snipe to 1 second the next time you cast it.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579109,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504548,504588]}}],"icon":"/assets/ui/rom-spells/579109.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-30","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":30,"keyItemId":543042,"sourceSkillId":494326,"name":"Charged Power","description":"Your Charged Chop can be activated from a distance, but cooldown is changed to 15 seconds and it also causes a Knockdown effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579885,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494326,"name":"Charged Power","description":"Your Charged Chop can be activated from a distance, but cooldown is changed to 15 seconds and it also causes a Knockdown effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579885,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579885.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-35","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":35,"keyItemId":543050,"sourceSkillId":494378,"name":"Natural Care","description":"Permanently increases the amount of healing you receive by (Buff0-0)%, and also increases your ranged weapon damage by (Buff4-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579886,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504905,505169],"components":[{"id":504905,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":144,"value":1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505169,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":52,"value":1}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494378,"name":"Natural Care","description":"Permanently increases the amount of healing you receive by (Buff0-0)%, and also increases your ranged weapon damage by (Buff4-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579886,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504905,505169]}}],"icon":"/assets/ui/rom-spells/579886.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-40","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":40,"keyItemId":543058,"sourceSkillId":494379,"name":"Hide Scent","description":"While merged with your surrounding, all enemies will lose interest in you allowing you to leave combat for (Buff0-Time) seconds and erasing all aggro. Additionally, your next Hidden Peril damage is increased by (Buff0-505194)% for (Buff4-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":579887,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504906,505193,501567,505194],"components":[{"id":504906,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505193,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501567,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":16,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505194,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":8193,"abilityModifiers":[{"type":173,"value":20}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":494379,"name":"Hide Scent","description":"While merged with your surrounding, all enemies will lose interest in you allowing you to leave combat for (Buff0-Time) seconds and erasing all aggro. Additionally, your next Hidden Peril damage is increased by (Buff0-505194)% for (Buff4-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":579887,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504906,505193,501567,505194]}}],"icon":"/assets/ui/rom-spells/579887.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-45","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":45,"keyItemId":543066,"sourceSkillId":494628,"name":"Wind Attack","description":"Your Combo Shots cannot be interrupted by damage. Also, when you make a critical hit it will additionally decrease the target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE].\n([SC_SKILLTIPS_CD_1](Buff-Time-507327)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581102,"sourceEffectType":2,"sourceTarget":0,"componentIds":[507327],"components":[{"id":507327,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":494628,"name":"Wind Attack","description":"Your Combo Shots cannot be interrupted by damage. Also, when you make a critical hit it will additionally decrease the target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE].\n([SC_SKILLTIPS_CD_1](Buff-Time-507327)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581102,"sourceEffectType":2,"sourceTarget":0,"componentIds":[507327]}}],"icon":"/assets/ui/rom-spells/581102.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-50","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543074,"sourceSkillId":494629,"name":"Gryphon Bash","description":"Like a mighty gryphon using its sharp claws to attack an enemy, it shoots a fierce arrow, causing (DMG0) ranged weapon DPS. When the target is struck, it may also damage all targets within a radius of 80.\n(This skill has a fairly high chance to make a critical hit.)","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581103,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620195],"components":[{"id":620195,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":10,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494629,"name":"Gryphon Bash","description":"Like a mighty gryphon using its sharp claws to attack an enemy, it shoots a fierce arrow, causing (DMG0) ranged weapon DPS. When the target is struck, it may also damage all targets within a radius of 80.\n(This skill has a fairly high chance to make a critical hit.)","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581103,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620195]}}],"icon":"/assets/ui/rom-spells/581103.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-60","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":60,"keyItemId":546758,"sourceSkillId":499571,"name":"Deep Roots","description":"Increases the distance of your [499573] reflected shot to 180. Also each reflected shot has a a chance to root the enemy for (Buff-Time-623114) seconds. \n(When the reflected shot target is a player, the rooting effect is reduced.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801271,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623114],"components":[{"id":623114,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499571,"name":"Deep Roots","description":"Increases the distance of your [499573] reflected shot to 180. Also each reflected shot has a a chance to root the enemy for (Buff-Time-623114) seconds. \n(When the reflected shot target is a player, the rooting effect is reduced.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801271,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623114]}}],"icon":"/assets/ui/rom-spells/801271.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-70","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":70,"keyItemId":546759,"sourceSkillId":499575,"name":"Forest Guidance","description":"When a target is hit by your [499576], it causes a (Buff0-623117)% increase in [SC_SKILLTIPS_DMG] received by the enemy. Lasts for (Buff-Time-623117) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801319,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623117],"components":[{"id":623117,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":143,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499575,"name":"Forest Guidance","description":"When a target is hit by your [499576], it causes a (Buff0-623117)% increase in [SC_SKILLTIPS_DMG] received by the enemy. Lasts for (Buff-Time-623117) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801319,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623117]}}],"icon":"/assets/ui/rom-spells/801319.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-15","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543019,"sourceSkillId":494040,"name":"Curse Breaker","description":"Removes target's cursed status. (Requires ranged weapon.)","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579110,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504549],"components":[{"id":504549,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494040,"name":"Curse Breaker","description":"Removes target's cursed status. (Requires ranged weapon.)","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579110,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504549]}}],"icon":"/assets/ui/rom-spells/579110.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-20","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":20,"keyItemId":543027,"sourceSkillId":499583,"name":"Snake Poison Arrow","description":"Turns your magic into poisonous snakes, inflicting (DMG0) ranged weapon DPS and (Buff4-Dot) poison every 2 seconds for (Buff4-Time) seconds. When the target is affected by Vampire Arrows, it will stun the target for (Buff8-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579111,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504550,504590,504589,501690],"components":[{"id":504550,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504590,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-11,"dot":{"timeSeconds":2,"type":0,"base":-11,"skillLevelArg":24},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504589,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777331,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501690,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":499583,"name":"Snake Poison Arrow","description":"Turns your magic into poisonous snakes, inflicting (DMG0) ranged weapon DPS and (Buff4-Dot) poison every 2 seconds for (Buff4-Time) seconds. When the target is affected by Vampire Arrows, it will stun the target for (Buff8-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579111,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504550,504590,504589,501690]}}],"icon":"/assets/ui/rom-spells/579111.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-25","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":25,"keyItemId":543035,"sourceSkillId":494042,"name":"Unbinding Magic","description":"Removes Root and Slow from target's body. (Requires ranged weapon)\n(Effective only when the Movement Impairing Effect on the target is displayed.)","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579112,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504551],"components":[{"id":504551,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494042,"name":"Unbinding Magic","description":"Removes Root and Slow from target's body. (Requires ranged weapon)\n(Effective only when the Movement Impairing Effect on the target is displayed.)","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579112,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504551]}}],"icon":"/assets/ui/rom-spells/579112.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-30","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":30,"keyItemId":543043,"sourceSkillId":494327,"name":"Elven Eye","description":"Temporarily increases critical physical hit rate by (Buff0-0) points for (Buff0-Time) seconds. Every second costs (Buff0-Dot)% mana.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579888,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504719],"components":[{"id":504719,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":34,"clearFlags":2048,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":22,"dotTime":2,"dotType":6,"dotBase":-5,"dot":{"timeSeconds":2,"type":6,"base":-5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494327,"name":"Elven Eye","description":"Temporarily increases critical physical hit rate by (Buff0-0) points for (Buff0-Time) seconds. Every second costs (Buff0-Dot)% mana.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579888,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504719]}}],"icon":"/assets/ui/rom-spells/579888.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-35","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":35,"keyItemId":543051,"sourceSkillId":494380,"name":"Devour Blood","description":"A successful hit of your Vampire Arrows restores MP to party members in a range of 100.\n([SC_SKILLTIPS_CD_1](Buff-Time-506370)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579889,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506370],"components":[{"id":506370,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":494380,"name":"Devour Blood","description":"A successful hit of your Vampire Arrows restores MP to party members in a range of 100.\n([SC_SKILLTIPS_CD_1](Buff-Time-506370)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579889,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506370]}}],"icon":"/assets/ui/rom-spells/579889.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-40","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":40,"keyItemId":543059,"sourceSkillId":494529,"name":"Focus","description":"For (Buff-Time-504908) seconds 50% of your wisdom will be converted into [SC_SKILLTIPS_01].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579890,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505273,504908],"components":[{"id":505273,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504908,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":268435559,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":12,"value":1}],"abilitySkillLevelArg":100,"triggers":{"onTimeMagicId":494681,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494529,"name":"Focus","description":"For (Buff-Time-504908) seconds 50% of your wisdom will be converted into [SC_SKILLTIPS_01].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579890,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505273,504908]}}],"icon":"/assets/ui/rom-spells/579890.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-45","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":45,"keyItemId":543067,"sourceSkillId":494919,"name":"Archer Blessing","description":"When your shot hits a target, the damage received from the next attack for 3 party members or pets is reduced.\n([SC_SKILLTIPS_CD_1](Buff-Time-505718)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581104,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505718],"components":[{"id":505718,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494919,"name":"Archer Blessing","description":"When your shot hits a target, the damage received from the next attack for 3 party members or pets is reduced.\n([SC_SKILLTIPS_CD_1](Buff-Time-505718)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581104,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505718]}}],"icon":"/assets/ui/rom-spells/581104.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-50","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":50,"keyItemId":543075,"sourceSkillId":499584,"name":"Ancestor's Blessing","description":"Permanently reduces the damage you receive by (Buff0-0)% and when you strike a target with Piercing Arrow, the aggro caused by the next action of the party member with the second most aggro will be reduced.\n([SC_SKILLTIPS_CD_1](Buff-Time-503954)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581105,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505684,503954],"components":[{"id":505684,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":1},{"type":143,"value":1}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503954,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":499584,"name":"Ancestor's Blessing","description":"Permanently reduces the damage you receive by (Buff0-0)% and when you strike a target with Piercing Arrow, the aggro caused by the next action of the party member with the second most aggro will be reduced.\n([SC_SKILLTIPS_CD_1](Buff-Time-503954)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581105,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505684,503954]}}],"icon":"/assets/ui/rom-spells/581105.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-60","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546760,"sourceSkillId":499587,"name":"Efficiency Guidance","description":"When your [499592] is triggered, it recovers (DMG-623151) of your companions' Rage, Focus, and Energy. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801272,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623151],"components":[{"id":623151,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":2,"fixedValue":0,"attack":{"type":2,"damagePower":2,"damagePowerSkillLevelArg":28,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499587,"name":"Efficiency Guidance","description":"When your [499592] is triggered, it recovers (DMG-623151) of your companions' Rage, Focus, and Energy. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801272,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623151]}}],"icon":"/assets/ui/rom-spells/801272.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-70","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":70,"keyItemId":546761,"sourceSkillId":499594,"name":"Soul Blessing","description":"When your [494919] is triggered, it affects your entire party and has an enhanced effect.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801320,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499594,"name":"Soul Blessing","description":"When your [494919] is triggered, it affects your entire party and has an enhanced effect.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801320,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801320.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-15","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":15,"keyItemId":541895,"sourceSkillId":491526,"name":"Throwing Mastery","description":"Your Throw can now Slow the target for 5 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575245,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491526,"name":"Throwing Mastery","description":"Your Throw can now Slow the target for 5 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575245,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575245.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-20","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":541925,"sourceSkillId":491527,"name":"One-Hand Axe Mastery","description":"One-hand axe damage increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575734,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620315],"components":[{"id":620315,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":61,"value":5}],"abilitySkillLevelArg":26,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":491527,"name":"One-Hand Axe Mastery","description":"One-hand axe damage increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575734,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620315]}}],"icon":"/assets/ui/rom-spells/575734.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-25","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":541955,"sourceSkillId":492349,"name":"Whirlwind Mastery","description":"Reduces the cost of Whirlwind by 20 rage and decreases cooldown by 20 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575738,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":492349,"name":"Whirlwind Mastery","description":"Reduces the cost of Whirlwind by 20 rage and decreases cooldown by 20 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575738,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575738.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-30","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":541985,"sourceSkillId":491339,"name":"Death's Touch","description":"For (Buff8-Time) seconds causes (DMG4) main hand weapon DPS + (FixDMG4) x Dexterity physical damage to your target, reduces healing effects received by the target by (Buff0-0)% and increases your [SC_SKILLTIPS_01] by (Buff8-0)%.\n(This skill reduces the target's received healing by a maximum of (Max-Buff0-501815)%.)\n(Received healing of players is reduced by (Buff1-0)% for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575222,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501815,506383,620285,506222],"components":[{"id":501815,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":48,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506383,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":48,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620285,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":506222,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":491339,"name":"Death's Touch","description":"For (Buff8-Time) seconds causes (DMG4) main hand weapon DPS + (FixDMG4) x Dexterity physical damage to your target, reduces healing effects received by the target by (Buff0-0)% and increases your [SC_SKILLTIPS_01] by (Buff8-0)%.\n(This skill reduces the target's received healing by a maximum of (Max-Buff0-501815)%.)\n(Received healing of players is reduced by (Buff1-0)% for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575222,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501815,506383,620285,506222]}}],"icon":"/assets/ui/rom-spells/575222.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-35","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542016,"sourceSkillId":492625,"name":"Poisonous Infection","description":"While Poisonous, each successful hit can poison the target inflicting (Buff4-Dot) poison damage every 2 seconds. Additionally (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage is dealt to the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577000,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620287,502894,500715],"components":[{"id":620287,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.85,"damagePowerSkillLevelArg":7.5,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502894,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":113,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-12,"dot":{"timeSeconds":2,"type":0,"base":-12,"skillLevelArg":35},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500715,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":106,"onAttackTrigger":{"rate":50,"rank":0,"id":490357},"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":492625,"name":"Poisonous Infection","description":"While Poisonous, each successful hit can poison the target inflicting (Buff4-Dot) poison damage every 2 seconds. Additionally (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage is dealt to the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577000,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620287,502894,500715]}}],"icon":"/assets/ui/rom-spells/577000.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-40","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":542046,"sourceSkillId":492920,"name":"Poison Spray","description":"Can be used when the target is Poisoned from a Poisonous Infection to spread the poison to nearby targets and cause (DMG-503223) damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":2},"source":{"imageId":577591,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503222,503223],"components":[{"id":503222,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503223,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"attack":{"type":0,"damagePower":-200,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492920,"name":"Poison Spray","description":"Can be used when the target is Poisoned from a Poisonous Infection to spread the poison to nearby targets and cause (DMG-503223) damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":2},"source":{"imageId":577591,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503222,503223]}}],"icon":"/assets/ui/rom-spells/577591.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-45","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":45,"keyItemId":542076,"sourceSkillId":493017,"name":"Decay","description":"Can be used when Poisonous. It causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage and increases your [SC_SKILLTIPS_CRI] by (Buff8-0) and [SC_SKILLTIPS_CRI_POWER] by (Buff4-0)%. Effective for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503309)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577651,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620288,503263,506231,503309],"components":[{"id":620288,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.85,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503263,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":1}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493179,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506231,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503309,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":493017,"name":"Decay","description":"Can be used when Poisonous. It causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage and increases your [SC_SKILLTIPS_CRI] by (Buff8-0) and [SC_SKILLTIPS_CRI_POWER] by (Buff4-0)%. Effective for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503309)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577651,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620288,503263,506231,503309]}}],"icon":"/assets/ui/rom-spells/577651.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-50","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":542106,"sourceSkillId":493257,"name":"Reclaim Energy","description":"When you use Shadowstab, you have a chance of recovering energy. When you use Poisonous Infection, there is a chance that your rage will increase.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577781,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":493257,"name":"Reclaim Energy","description":"When you use Shadowstab, you have a chance of recovering energy. When you use Poisonous Infection, there is a chance that your rage will increase.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577781,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577781.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-60","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546762,"sourceSkillId":499476,"name":"Toxic Splash","description":"Makes [499477] trigger a [493296] effect that causes damage and poisons all surrounding enemies.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801273,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499476,"name":"Toxic Splash","description":"Makes [499477] trigger a [493296] effect that causes damage and poisons all surrounding enemies.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801273,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801273.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-70","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546763,"sourceSkillId":499480,"name":"Poison Battle Technique","description":"If target hit by your [499481] has a [499476] effect, then extra damage is inflicted.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801321,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499480,"name":"Poison Battle Technique","description":"If target hit by your [499481] has a [499476] effect, then extra damage is inflicted.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801321,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801321.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-15","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":15,"keyItemId":545984,"sourceSkillId":498826,"name":"Confusion Mechanism","description":"Creates a Confusion Mechanism near the target. This mechanism forces the target to attack it and reduces the target's [SC_SKILLTIPS_DEF] by (Buff0-621600)% and [SC_SKILLTIPS_MDEF] by (Buff0-621600)% in the process. Confusion Mechanism exists for 3 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800184,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623430,621601,621653,621600],"components":[{"id":623430,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[262144,0],"abilityModifiers":[{"type":135,"value":-5},{"type":170,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621601,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621600,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[262144,0],"abilityModifiers":[{"type":135,"value":-5},{"type":170,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498826,"name":"Confusion Mechanism","description":"Creates a Confusion Mechanism near the target. This mechanism forces the target to attack it and reduces the target's [SC_SKILLTIPS_DEF] by (Buff0-621600)% and [SC_SKILLTIPS_MDEF] by (Buff0-621600)% in the process. Confusion Mechanism exists for 3 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800184,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623430,621601,621653,621600]}}],"icon":"/assets/ui/rom-spells/800184.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-20","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":545985,"sourceSkillId":498828,"name":"Foot Mechanism","description":"Creates a Foot Mechanism under the caster's feet. When a a friendly target hits the mechanism, it will increase [SC_SKILLTIPS_MOVE] by (Buff0-621605)% for (Buff-Time-621605) seconds. This mechanism will affect a maximum of 6 friendly targets or last for 30 seconds then disappear.","target":"self","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800185,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623432,621604,621653,621605],"components":[{"id":623432,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621604,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621605,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498828,"name":"Foot Mechanism","description":"Creates a Foot Mechanism under the caster's feet. When a a friendly target hits the mechanism, it will increase [SC_SKILLTIPS_MOVE] by (Buff0-621605)% for (Buff-Time-621605) seconds. This mechanism will affect a maximum of 6 friendly targets or last for 30 seconds then disappear.","target":"self","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800185,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623432,621604,621653,621605]}}],"icon":"/assets/ui/rom-spells/800185.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-25","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":25,"keyItemId":545986,"sourceSkillId":498830,"name":"Stepping Mechanism","description":"Creates a Stepping Mechanism under the caster's feet. When a target passes through the mechanism, it will activate and create a Slow area which reduces the [SC_SKILLTIPS_MOVE] of targets in the area by (Buff0-621608)%. This mechanism lasts for 10 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800186,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623429,621606,621653,621608],"components":[{"id":623429,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621606,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621608,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":2,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498830,"name":"Stepping Mechanism","description":"Creates a Stepping Mechanism under the caster's feet. When a target passes through the mechanism, it will activate and create a Slow area which reduces the [SC_SKILLTIPS_MOVE] of targets in the area by (Buff0-621608)%. This mechanism lasts for 10 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800186,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623429,621606,621653,621608]}}],"icon":"/assets/ui/rom-spells/800186.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-30","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":30,"keyItemId":545987,"sourceSkillId":498833,"name":"Silent Rune Bomb","description":"Drops a Silent Rune Bomb that inflicts (DMG0) main hand weapon [SC_SKILLTIPS_NONE] DPS on targets in the area. Also carries a Silenced effect for (Buff4-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800187,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621609,621610,621653],"components":[{"id":621609,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621610,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":22,"effectFlagWords":[1,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498833,"name":"Silent Rune Bomb","description":"Drops a Silent Rune Bomb that inflicts (DMG0) main hand weapon [SC_SKILLTIPS_NONE] DPS on targets in the area. Also carries a Silenced effect for (Buff4-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800187,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621609,621610,621653]}}],"icon":"/assets/ui/rom-spells/800187.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-35","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":35,"keyItemId":545988,"sourceSkillId":498834,"name":"Pulse Rune Bomb","description":"Drops a Pulse Rune Bomb that inflicts (DMG0) main hand weapon [SC_SKILLTIPS_NONE] DPS on targets in the area. Also carries a Stunned effect for (Buff4-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800188,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621609,621611,621653],"components":[{"id":621609,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621611,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498834,"name":"Pulse Rune Bomb","description":"Drops a Pulse Rune Bomb that inflicts (DMG0) main hand weapon [SC_SKILLTIPS_NONE] DPS on targets in the area. Also carries a Stunned effect for (Buff4-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800188,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621609,621611,621653]}}],"icon":"/assets/ui/rom-spells/800188.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-40","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"passive","unlockLevel":40,"keyItemId":545989,"sourceSkillId":498836,"name":"Mechanism Activation Spike","description":"Each time an elite skill is used , your next normal attack will cause extra damage. Lasts for (Buff-Time-621613) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800189,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621613],"components":[{"id":621613,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":181,"value":100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498836,"name":"Mechanism Activation Spike","description":"Each time an elite skill is used , your next normal attack will cause extra damage. Lasts for (Buff-Time-621613) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800189,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621613]}}],"icon":"/assets/ui/rom-spells/800189.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-45","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":45,"keyItemId":545990,"sourceSkillId":498837,"name":"Burying Mechanism","description":"Creates a Burying Mechanism under the caster's feet. When a target passes through the mechanism, it activates and increases the damage received by the target by (Buff0-621651)%. It also reduces the target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE] by (Buff2-621651) for (Buff-Time-621651) seconds. This mechanism lasts for 25 seconds. \n\n(Only one mechanism can exist at a time.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800190,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623431,621614,621653,621651],"components":[{"id":623431,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621614,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621651,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":-10},{"type":143,"value":-10},{"type":183,"value":-100},{"type":182,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498837,"name":"Burying Mechanism","description":"Creates a Burying Mechanism under the caster's feet. When a target passes through the mechanism, it activates and increases the damage received by the target by (Buff0-621651)%. It also reduces the target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE] by (Buff2-621651) for (Buff-Time-621651) seconds. This mechanism lasts for 25 seconds. \n\n(Only one mechanism can exist at a time.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800190,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623431,621614,621653,621651]}}],"icon":"/assets/ui/rom-spells/800190.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-50","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"passive","unlockLevel":50,"keyItemId":545991,"sourceSkillId":498839,"name":"Nerve Gear","description":"Every time an elite skill is used, it increases [SC_SKILLTIPS_DPS] by (Buff0-621652)% and [SC_SKILLTIPS_DOGEP] by (Buff1-621652)% for (Buff-Time-621652) seconds. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800191,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621652],"components":[{"id":621652,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-5},{"type":198,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498839,"name":"Nerve Gear","description":"Every time an elite skill is used, it increases [SC_SKILLTIPS_DPS] by (Buff0-621652)% and [SC_SKILLTIPS_DOGEP] by (Buff1-621652)% for (Buff-Time-621652) seconds. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800191,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621652]}}],"icon":"/assets/ui/rom-spells/800191.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-60","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"passive","unlockLevel":60,"keyItemId":546778,"sourceSkillId":499817,"name":"Guidance Feedback","description":"Each time the mechanism is triggered it reduces the cooldown time of all mechanism skills to 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801620,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":499817,"name":"Guidance Feedback","description":"Each time the mechanism is triggered it reduces the cooldown time of all mechanism skills to 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801620,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801620.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-70","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":70,"keyItemId":546779,"sourceSkillId":499816,"name":"Electrocution Mechanism","description":"Creates a mechanism at the casting location that continuously releases electrical shocks to enemies within a range of 60 at a maximum of three targets per second. The electrical shocks inflict (DMG-623471) main hand weapon DPS for (Buff-Time-623479) seconds.\n[SC_SKILLTIPS_03]\n(Affected targets will be in a state of Electrocution)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801621,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623470,621653,623471,623479],"components":[{"id":623470,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623471,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":8388608,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-5,"fixedValue":0,"attack":{"type":0,"damagePower":-5,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623479,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":5,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":499815,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":499816,"name":"Electrocution Mechanism","description":"Creates a mechanism at the casting location that continuously releases electrical shocks to enemies within a range of 60 at a maximum of three targets per second. The electrical shocks inflict (DMG-623471) main hand weapon DPS for (Buff-Time-623479) seconds.\n[SC_SKILLTIPS_03]\n(Affected targets will be in a state of Electrocution)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801621,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623470,621653,623471,623479]}}],"icon":"/assets/ui/rom-spells/801621.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-15","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":15,"keyItemId":541896,"sourceSkillId":491530,"name":"Deadly Shot","description":"Increases your Shot's critical hit rate by 30%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575565,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491530,"name":"Deadly Shot","description":"Increases your Shot's critical hit rate by 30%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575565,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575565.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-20","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":541926,"sourceSkillId":491532,"name":"Slit Throat","description":"Your Throat Attack now also Silences the target for 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575739,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":491532,"name":"Slit Throat","description":"Your Throat Attack now also Silences the target for 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575739,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575739.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-25","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":541956,"sourceSkillId":491528,"name":"Energy Thief","description":"Every normal attack restores 20 points of energy. This effect will last (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575560,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501924],"components":[{"id":501924,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"onAttackTrigger":{"rate":100,"rank":1,"id":491529},"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":491528,"name":"Energy Thief","description":"Every normal attack restores 20 points of energy. This effect will last (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575560,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501924]}}],"icon":"/assets/ui/rom-spells/575560.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-30","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":541986,"sourceSkillId":491525,"name":"Combat Master","description":"Raises your [SC_SKILLTIPS_CRI] by (Buff0-0) and enhances [SC_SKILLTIPS_CRI_POWER] by (Buff4-0)% for (Buff0-Time) seconds.\n(This skill increases [SC_SKILLTIPS_CRI_POWER] by a maximum of (Max-Buff0-506223)%.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575566,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501921,506223],"components":[{"id":501921,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":34,"abilityModifiers":[{"type":18,"value":25}],"abilitySkillLevelArg":15.3,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495281,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506223,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":900,"hateCost":-10,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":491525,"name":"Combat Master","description":"Raises your [SC_SKILLTIPS_CRI] by (Buff0-0) and enhances [SC_SKILLTIPS_CRI_POWER] by (Buff4-0)% for (Buff0-Time) seconds.\n(This skill increases [SC_SKILLTIPS_CRI_POWER] by a maximum of (Max-Buff0-506223)%.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575566,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501921,506223]}}],"icon":"/assets/ui/rom-spells/575566.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-35","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":542017,"sourceSkillId":492626,"name":"Substitute","description":"Conjures a substitute for you for (Buff0-Time) seconds to take 1 physical attack for you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":20000},"source":{"imageId":577001,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620305],"components":[{"id":620305,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":1,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":492626,"name":"Substitute","description":"Conjures a substitute for you for (Buff0-Time) seconds to take 1 physical attack for you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":20000},"source":{"imageId":577001,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620305]}}],"icon":"/assets/ui/rom-spells/577001.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-40","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":542047,"sourceSkillId":492922,"name":"Tongue Poison","description":"Using [492922] on your target causes the target's Casting Time to increase by (Buff0-0)% for (Buff0-Time) seconds.\n(Casting time of players increases by (Buff1-0)% for (Buff1-Time) seconds.)\n(Consumes one poison bottle.)","target":"hostile","range":12,"castTimeMs":1000,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577594,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503180,504246],"components":[{"id":503180,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504246,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":492922,"name":"Tongue Poison","description":"Using [492922] on your target causes the target's Casting Time to increase by (Buff0-0)% for (Buff0-Time) seconds.\n(Casting time of players increases by (Buff1-0)% for (Buff1-Time) seconds.)\n(Consumes one poison bottle.)","target":"hostile","range":12,"castTimeMs":1000,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577594,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503180,504246]}}],"icon":"/assets/ui/rom-spells/577594.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-45","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":542077,"sourceSkillId":493019,"name":"Coerce","description":"The energy cost for using Low Blow is reduced by 5. When your target's HP drops below 30%, using Low Blow on your target will increase the damage of your physical attack by (Buff0-503264)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577652,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503264],"components":[{"id":503264,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":8192,"abilityModifiers":[{"type":173,"value":2}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":493019,"name":"Coerce","description":"The energy cost for using Low Blow is reduced by 5. When your target's HP drops below 30%, using Low Blow on your target will increase the damage of your physical attack by (Buff0-503264)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577652,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503264]}}],"icon":"/assets/ui/rom-spells/577652.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-50","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":50,"keyItemId":542107,"sourceSkillId":493258,"name":"Wraith Attack","description":"Your Shadowstab will damage 2 targets at once. However, damage done to the second target will be half.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577782,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493258,"name":"Wraith Attack","description":"Your Shadowstab will damage 2 targets at once. However, damage done to the second target will be half.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577782,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577782.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-60","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546764,"sourceSkillId":499611,"name":"Paralysis Attack","description":"Transforms your [490347] to arrow use.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801274,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499611,"name":"Paralysis Attack","description":"Transforms your [490347] to arrow use.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801274,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801274.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-70","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546765,"sourceSkillId":499482,"name":"Shadow Figure","description":"Summons a real [499501] on the spot when a [499501] is used. The [499501] exists for (Buff-Time-620305) seconds and maintains a [499503] with a range of 70. After it is attacked 5 times it will blow up, causing damage and [503174] for (Buff-Time-503174) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801322,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620305,503174],"components":[{"id":620305,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":1,"skillLevelArg":0}},{"id":503174,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499482,"name":"Shadow Figure","description":"Summons a real [499501] on the spot when a [499501] is used. The [499501] exists for (Buff-Time-620305) seconds and maintains a [499503] with a range of 70. After it is attacked 5 times it will blow up, causing damage and [503174] for (Buff-Time-503174) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801322,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620305,503174]}}],"icon":"/assets/ui/rom-spells/801322.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-15","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541897,"sourceSkillId":491178,"name":"Enchanted Throw","description":"Enchants your projectile weapons so that every normal attack will carry additional [490309] damage. \n(Launching during an attack will consume one projectile weapon.)\n(This effect is mutually exclusive with [490329].)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801383,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501279,501274],"components":[{"id":501279,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":163,"specialActionFlags":0,"assistType":106,"onAttackTrigger":{"rate":100,"rank":0,"id":492506},"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":491185,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501274,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":35,"specialActionFlags":0,"assistType":106,"onAttackTrigger":{"rate":100,"rank":0,"id":492506},"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491178,"name":"Enchanted Throw","description":"Enchants your projectile weapons so that every normal attack will carry additional [490309] damage. \n(Launching during an attack will consume one projectile weapon.)\n(This effect is mutually exclusive with [490329].)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801383,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501279,501274]}}],"icon":"/assets/ui/rom-spells/801383.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-20","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":541927,"sourceSkillId":491180,"name":"Enlivened Blade","description":"Launches an enchanted projectile at the specified area and causes (DMG0) main hand weapon DPS + (FixDMG0) * [SC_SKILLTIPS_THROWDMG] physical damage to a maximum of 5 enemies in the area. If the attack causes damage to more than 3 enemies, then the skill's cooldown time is reduced by half. \n(Consumes one projectile weapon.)","target":"self","range":20,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801359,"sourceEffectType":1,"sourceTarget":16,"componentIds":[501276,502598],"components":[{"id":501276,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-1,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":7,"fixedValue":-1,"fixedType":4,"fixedDamageSkillLevelArg":7,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502598,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"effectFlagWords":[2,0],"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":491180,"name":"Enlivened Blade","description":"Launches an enchanted projectile at the specified area and causes (DMG0) main hand weapon DPS + (FixDMG0) * [SC_SKILLTIPS_THROWDMG] physical damage to a maximum of 5 enemies in the area. If the attack causes damage to more than 3 enemies, then the skill's cooldown time is reduced by half. \n(Consumes one projectile weapon.)","target":"self","range":20,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801359,"sourceEffectType":1,"sourceTarget":16,"componentIds":[501276,502598]}}],"icon":"/assets/ui/rom-spells/801359.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-25","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"passive","unlockLevel":25,"keyItemId":541957,"sourceSkillId":491181,"name":"Evil Intent","description":"Enables you to use [491182] in a battle, but it will have a 90 second cooldown time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801384,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491181,"name":"Evil Intent","description":"Enables you to use [491182] in a battle, but it will have a 90 second cooldown time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801384,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801384.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-30","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":541987,"sourceSkillId":491183,"name":"Day of Rain","description":"Launches a projectile at all surrounding enemies and causes (DMG0) projectile DPS + (FixDMG0) x [SC_SKILLTIPS_THROWDMG] physical damage. Every time [490309] is used, the skill's cooldown time can be reduced by 1 second. If [491178] is used in conjunction, then it only has a 50% hit rate. \n(Consumes 2 projectiles.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":25000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801363,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501278,502598],"components":[{"id":501278,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":-1,"attack":{"type":0,"damagePower":-1,"damagePowerSkillLevelArg":7,"fixedValue":-1,"fixedType":4,"fixedDamageSkillLevelArg":7,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502598,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"effectFlagWords":[2,0],"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491183,"name":"Day of Rain","description":"Launches a projectile at all surrounding enemies and causes (DMG0) projectile DPS + (FixDMG0) x [SC_SKILLTIPS_THROWDMG] physical damage. Every time [490309] is used, the skill's cooldown time can be reduced by 1 second. If [491178] is used in conjunction, then it only has a 50% hit rate. \n(Consumes 2 projectiles.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":25000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801363,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501278,502598]}}],"icon":"/assets/ui/rom-spells/801363.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-35","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":542018,"sourceSkillId":491184,"name":"Vengeance Sting","description":"If you are attacked while [491178] is in effect, this will inflict (DMG-502595) main hand weapon DPS + (FixDMG-502595) * [SC_SKILLTIPS_THROWDMG] physical damage to your attacker. You will also receive a [502596] effect which reduces received [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-502596)%. Lasts (Buff-Time-502596) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801385,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502595,502596],"components":[{"id":502595,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-1,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":7,"fixedValue":-1,"fixedType":4,"fixedDamageSkillLevelArg":7,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0},{"id":502596,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":10},{"type":143,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":491184,"name":"Vengeance Sting","description":"If you are attacked while [491178] is in effect, this will inflict (DMG-502595) main hand weapon DPS + (FixDMG-502595) * [SC_SKILLTIPS_THROWDMG] physical damage to your attacker. You will also receive a [502596] effect which reduces received [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-502596)%. Lasts (Buff-Time-502596) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801385,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502595,502596]}}],"icon":"/assets/ui/rom-spells/801385.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-40","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":542048,"sourceSkillId":491186,"name":"Life Rope Throw","description":"Reduces the interval time of [491187] to 0.5 seconds and increases the number of throws to 4. \nConsumes four projectile weapons each time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801386,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":491186,"name":"Life Rope Throw","description":"Reduces the interval time of [491187] to 0.5 seconds and increases the number of throws to 4. \nConsumes four projectile weapons each time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801386,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801386.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-45","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":542078,"sourceSkillId":498024,"name":"Create Opportunity","description":"Increase [SC_SKILLTIPS_CRI] by (Buff0-0) for (Buff0-Time) seconds, and there is a chance to stun the target for (Buff-Time-503267) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577653,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620301,503267],"components":[{"id":620301,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"onAttackTrigger":{"rate":100,"rank":5,"id":490851},"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503267,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":4,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777331,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":498024,"name":"Create Opportunity","description":"Increase [SC_SKILLTIPS_CRI] by (Buff0-0) for (Buff0-Time) seconds, and there is a chance to stun the target for (Buff-Time-503267) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577653,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620301,503267]}}],"icon":"/assets/ui/rom-spells/577653.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-50","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"passive","unlockLevel":50,"keyItemId":542108,"sourceSkillId":491188,"name":"Disabling Blade","description":"Renders enemies that are being attacked by [491180] and [491183] unable to carry out physical attacks and use physical skills, and slows their [SC_SKILLTIPS_MOVE] by (Buff0-502598)% for a period of time. Lasts for (Buff-Time-502598) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801387,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502598],"components":[{"id":502598,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"effectFlagWords":[2,0],"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":491188,"name":"Disabling Blade","description":"Renders enemies that are being attacked by [491180] and [491183] unable to carry out physical attacks and use physical skills, and slows their [SC_SKILLTIPS_MOVE] by (Buff0-502598)% for a period of time. Lasts for (Buff-Time-502598) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801387,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502598]}}],"icon":"/assets/ui/rom-spells/801387.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-60","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":60,"keyItemId":546766,"sourceSkillId":497206,"name":"Instant Shadow","description":"This effect can be triggered after you do a dodge maneuver. It quickly conceals you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":15,"percentage":false},{"resource":"mana","amount":6,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801275,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502597],"components":[{"id":502597,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":497206,"name":"Instant Shadow","description":"This effect can be triggered after you do a dodge maneuver. It quickly conceals you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":15,"percentage":false},{"resource":"mana","amount":6,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801275,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502597]}}],"icon":"/assets/ui/rom-spells/801275.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-70","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":70,"keyItemId":546767,"sourceSkillId":497205,"name":"Illusion Blade Dance","description":"After this is cast, you enter a [491189] state that lasts for (Buff-Time-502599) seconds. It will also cause (DMG-502577) projectile DPS + (FixDMG-502577) x [SC_SKILLTIPS_THROWDMG] physical damage to surrounding enemies every 2 seconds. While in effect, it also increases [SC_SKILLTIPS_DPS] by (Buff0-0)% and critical damage by (Buff0-1)%. \n(Consumes 10 projectiles.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801323,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502599,502577],"components":[{"id":502599,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":103,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-2},{"type":19,"value":5}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":491189,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502577,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":-1,"attack":{"type":0,"damagePower":-1,"damagePowerSkillLevelArg":7,"fixedValue":-1,"fixedType":4,"fixedDamageSkillLevelArg":7,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":497205,"name":"Illusion Blade Dance","description":"After this is cast, you enter a [491189] state that lasts for (Buff-Time-502599) seconds. It will also cause (DMG-502577) projectile DPS + (FixDMG-502577) x [SC_SKILLTIPS_THROWDMG] physical damage to surrounding enemies every 2 seconds. While in effect, it also increases [SC_SKILLTIPS_DPS] by (Buff0-0)% and critical damage by (Buff0-1)%. \n(Consumes 10 projectiles.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801323,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502599,502577]}}],"icon":"/assets/ui/rom-spells/801323.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-15","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"elite","unlockLevel":15,"keyItemId":541898,"sourceSkillId":491536,"name":"Quickness Aura","description":"Your and your party members' dodge rate raises by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575559,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501932],"components":[{"id":501932,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":31,"abilityModifiers":[{"type":198,"value":2}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491536,"name":"Quickness Aura","description":"Your and your party members' dodge rate raises by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575559,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501932]}}],"icon":"/assets/ui/rom-spells/575559.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-20","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":20,"keyItemId":541928,"sourceSkillId":491539,"name":"Wound Tear","description":"Raises your Wound Attack's critical hit rate by 30%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575740,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":491539,"name":"Wound Tear","description":"Raises your Wound Attack's critical hit rate by 30%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575740,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575740.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-25","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":25,"keyItemId":541958,"sourceSkillId":491537,"name":"Shadow Walker","description":"You can use Sneak Attack during battle. The energy cost is reduced by 10, but the cooldown is increased by 10 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575741,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":491537,"name":"Shadow Walker","description":"You can use Sneak Attack during battle. The energy cost is reduced by 10, but the cooldown is increased by 10 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575741,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575741.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-30","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":541988,"sourceSkillId":491540,"name":"Fearless","description":"Immune to Fear effect for the next (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575742,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501933],"components":[{"id":501933,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":17,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":491540,"name":"Fearless","description":"Immune to Fear effect for the next (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575742,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501933]}}],"icon":"/assets/ui/rom-spells/575742.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-35","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"elite","unlockLevel":35,"keyItemId":542019,"sourceSkillId":492627,"name":"Kick","description":"Kicks the targets shinbone causing (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage . Due to great pain the target's movement speed is lowered by (Buff4-0)% for (Buff4-Time) seconds.\n(Movement speed of players is lowered by (Buff5-0)% for (Buff5-Time) seconds.)\n(This skill lowers the movement speed by a maximum of (Max-Buff0-502896)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577003,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620293,502896,503852],"components":[{"id":620293,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502896,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503852,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":492627,"name":"Kick","description":"Kicks the targets shinbone causing (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage . Due to great pain the target's movement speed is lowered by (Buff4-0)% for (Buff4-Time) seconds.\n(Movement speed of players is lowered by (Buff5-0)% for (Buff5-Time) seconds.)\n(This skill lowers the movement speed by a maximum of (Max-Buff0-502896)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577003,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620293,502896,503852]}}],"icon":"/assets/ui/rom-spells/577003.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-40","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"elite","unlockLevel":40,"keyItemId":542049,"sourceSkillId":492921,"name":"Slowing Poison","description":"Using [492351] on your target reduces the target's Physical Attack Speed by (Buff0-0)% for (Buff0-Time) seconds.\n(Physical Attack Speed of players reduces by (Buff1-0)% for (Buff1-Time) seconds.)\n(Consumes one poison bottle.)","target":"hostile","range":12,"castTimeMs":1000,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577592,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503176,504247],"components":[{"id":503176,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":115,"abilityModifiers":[{"type":23,"value":60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504247,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":115,"abilityModifiers":[{"type":23,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":492921,"name":"Slowing Poison","description":"Using [492351] on your target reduces the target's Physical Attack Speed by (Buff0-0)% for (Buff0-Time) seconds.\n(Physical Attack Speed of players reduces by (Buff1-0)% for (Buff1-Time) seconds.)\n(Consumes one poison bottle.)","target":"hostile","range":12,"castTimeMs":1000,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577592,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503176,504247]}}],"icon":"/assets/ui/rom-spells/577592.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-45","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542079,"sourceSkillId":493020,"name":"Sinister Methods","description":"Making a successful hit with Low Blow or Blind Spot instantly increases your [SC_SKILLTIPS_CRI] for (Buff-Time-503265) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503300)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577654,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503265,503300],"components":[{"id":503265,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493023,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503300,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":493020,"name":"Sinister Methods","description":"Making a successful hit with Low Blow or Blind Spot instantly increases your [SC_SKILLTIPS_CRI] for (Buff-Time-503265) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503300)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577654,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503265,503300]}}],"icon":"/assets/ui/rom-spells/577654.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-50","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":50,"keyItemId":542109,"sourceSkillId":493260,"name":"Mana Surge","description":"Magic Barrier will recover MP whenever you receive a physical attack, and reduce the damage inflicted on you by (Buff0-503181)%.\n([SC_SKILLTIPS_CD_1](Buff-Time-503529)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577784,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503181,503529],"components":[{"id":503181,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":-5},{"type":207,"value":-5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503529,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":493260,"name":"Mana Surge","description":"Magic Barrier will recover MP whenever you receive a physical attack, and reduce the damage inflicted on you by (Buff0-503181)%.\n([SC_SKILLTIPS_CD_1](Buff-Time-503529)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577784,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503181,503529]}}],"icon":"/assets/ui/rom-spells/577784.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-60","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":60,"keyItemId":546768,"sourceSkillId":499505,"name":"Mana Needle","description":"While in a [493297], received [SC_SKILLTIPS_DMG] will stun the attacker for (Buff-Time-623033) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-623034) [SC_SKILLTIPS_CD_2].)","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801276,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623033,623034],"components":[{"id":623033,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623034,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499505,"name":"Mana Needle","description":"While in a [493297], received [SC_SKILLTIPS_DMG] will stun the attacker for (Buff-Time-623033) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-623034) [SC_SKILLTIPS_CD_2].)","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801276,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623033,623034]}}],"icon":"/assets/ui/rom-spells/801276.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-70","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546769,"sourceSkillId":499510,"name":"Demonstration of Evil","description":"When [493020] are triggered, your party members receive half the effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801324,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499510,"name":"Demonstration of Evil","description":"When [493020] are triggered, your party members receive half the effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801324,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801324.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-15","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"passive","unlockLevel":15,"keyItemId":541899,"sourceSkillId":491551,"name":"Armor Breaker","description":"Raises the damage by way of Disarmament, and adds a cooldown time of 3 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575744,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":491551,"name":"Armor Breaker","description":"Raises the damage by way of Disarmament, and adds a cooldown time of 3 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575744,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575744.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-20","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":20,"keyItemId":541929,"sourceSkillId":491549,"name":"Poison Protection","description":"When activated, this will protect you from getting Poisoned for the next (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575745,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501943],"components":[{"id":501943,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":5,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":491549,"name":"Poison Protection","description":"When activated, this will protect you from getting Poisoned for the next (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575745,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501943]}}],"icon":"/assets/ui/rom-spells/575745.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-25","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":25,"keyItemId":541959,"sourceSkillId":491552,"name":"Lion's Protection","description":"You feel strong like a lion! Your [SC_SKILLTIPS_01] is increased by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575567,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620316],"components":[{"id":620316,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":112,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":491552,"name":"Lion's Protection","description":"You feel strong like a lion! Your [SC_SKILLTIPS_01] is increased by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575567,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620316]}}],"icon":"/assets/ui/rom-spells/575567.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-30","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541989,"sourceSkillId":491546,"name":"Holy Light Protection","description":"Lowers [SC_SKILLTIPS_MDMG] you suffer by (Buff0-0)% and renders you immune to Root or Slow effects for the next (Buff0-Time) seconds.\n(Effect can only be removed if target has Movement Impairing Effect)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575571,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501940],"components":[{"id":501940,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":2}],"abilitySkillLevelArg":54,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491546,"name":"Holy Light Protection","description":"Lowers [SC_SKILLTIPS_MDMG] you suffer by (Buff0-0)% and renders you immune to Root or Slow effects for the next (Buff0-Time) seconds.\n(Effect can only be removed if target has Movement Impairing Effect)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575571,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501940]}}],"icon":"/assets/ui/rom-spells/575571.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-35","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":35,"keyItemId":542020,"sourceSkillId":492629,"name":"Courageous Guard","description":"Protects party members in a range of 100 from Fear for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"self","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577004,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502898],"components":[{"id":502898,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":17,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492629,"name":"Courageous Guard","description":"Protects party members in a range of 100 from Fear for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"self","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577004,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502898]}}],"icon":"/assets/ui/rom-spells/577004.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-40","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":40,"keyItemId":542050,"sourceSkillId":492924,"name":"Power of the Lion","description":"While you are under the Lion's Protection, you can turn it into Power of the Lion to instantly restore your HP by (current [SC_SKILLTIPS_HP] x (DMG4)) + (DMG0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":577595,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503185,506308,503225],"components":[{"id":503185,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"damagePower":30,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":506308,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"damagePower":1,"damagePowerSkillLevelArg":14,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503225,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":112,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":492924,"name":"Power of the Lion","description":"While you are under the Lion's Protection, you can turn it into Power of the Lion to instantly restore your HP by (current [SC_SKILLTIPS_HP] x (DMG4)) + (DMG0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":577595,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503185,506308,503225]}}],"icon":"/assets/ui/rom-spells/577595.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-45","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":45,"keyItemId":542080,"sourceSkillId":493025,"name":"Searing Light","description":"Causes your normal attacks to deal additional (Buff0-0) Light damage for (Buff0-Time) seconds. Also, when your physical attacks hit the target your [SC_SKILLTIPS_CRI] increases by (Buff0-503270) points for (Buff-Time-503270) seconds. (This effect is mutually exclusive with Poisonous.)\n([SC_SKILLTIPS_CD_1](Buff-Time-506385)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577655,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503268,503270,506385],"components":[{"id":503268,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":106,"abilityModifiers":[{"type":188,"value":10}],"onAttackTrigger":{"rate":100,"rank":0,"id":495578},"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503270,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495385,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506385,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493025,"name":"Searing Light","description":"Causes your normal attacks to deal additional (Buff0-0) Light damage for (Buff0-Time) seconds. Also, when your physical attacks hit the target your [SC_SKILLTIPS_CRI] increases by (Buff0-503270) points for (Buff-Time-503270) seconds. (This effect is mutually exclusive with Poisonous.)\n([SC_SKILLTIPS_CD_1](Buff-Time-506385)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577655,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503268,503270,506385]}}],"icon":"/assets/ui/rom-spells/577655.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-50","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"passive","unlockLevel":50,"keyItemId":542110,"sourceSkillId":493261,"name":"Reckless Warrior","description":"Whenever you use Low Blow or Blind Spot and successfully hit your target your [SC_SKILLTIPS_01] increases. Effective for (Buff-Time-503531) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503532)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577785,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503531,503532],"components":[{"id":503531,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":12,"value":50}],"abilitySkillLevelArg":11,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493284,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503532,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493261,"name":"Reckless Warrior","description":"Whenever you use Low Blow or Blind Spot and successfully hit your target your [SC_SKILLTIPS_01] increases. Effective for (Buff-Time-503531) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503532)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577785,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503531,503532]}}],"icon":"/assets/ui/rom-spells/577785.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-60","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546770,"sourceSkillId":499529,"name":"Illegal Punishment","description":"Inflicts additional damage caused by your [490074] depending on [SC_SKILLTIPS_AGI].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801277,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499529,"name":"Illegal Punishment","description":"Inflicts additional damage caused by your [490074] depending on [SC_SKILLTIPS_AGI].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801277,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801277.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-70","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"passive","unlockLevel":70,"keyItemId":546771,"sourceSkillId":490069,"name":"Punishment Thrust","description":"[490185] will now cause the Stun effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801325,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":490069,"name":"Punishment Thrust","description":"[490185] will now cause the Stun effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801325,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801325.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-15","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":15,"keyItemId":543020,"sourceSkillId":494043,"name":"Weak Point Strike","description":"Inflicts (DMG1) main hand weapon DPS + (FixDMG1) x Dexterity physical damage. This skill has a chance of causing the target's weak point to suffer a powerful attack, suffering (DMG0) + (FixDMG0) x Dexterity main hand weapon physical DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579113,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620294,620295],"components":[{"id":620294,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.95,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.95,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620295,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494043,"name":"Weak Point Strike","description":"Inflicts (DMG1) main hand weapon DPS + (FixDMG1) x Dexterity physical damage. This skill has a chance of causing the target's weak point to suffer a powerful attack, suffering (DMG0) + (FixDMG0) x Dexterity main hand weapon physical DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579113,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620294,620295]}}],"icon":"/assets/ui/rom-spells/579113.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-20","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"passive","unlockLevel":20,"keyItemId":543028,"sourceSkillId":494044,"name":"Hidden Master","description":"Reduces [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] received while in Hide status.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579114,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494044,"name":"Hidden Master","description":"Reduces [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] received while in Hide status.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579114,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579114.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-25","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":25,"keyItemId":543036,"sourceSkillId":494045,"name":"Bloodthirsty Blade","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. Successful attacks increase your [SC_SKILLTIPS_CRI] by (Buff4-0) points for (Buff4-Time) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-507326)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579115,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620296,504595,504598,507326],"components":[{"id":620296,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504595,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":1073741923,"specialActionFlags":0,"assistType":34,"abilityModifiers":[{"type":18,"value":6}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504598,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":268959809,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507326,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":268959809,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494045,"name":"Bloodthirsty Blade","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. Successful attacks increase your [SC_SKILLTIPS_CRI] by (Buff4-0) points for (Buff4-Time) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-507326)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579115,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620296,504595,504598,507326]}}],"icon":"/assets/ui/rom-spells/579115.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-30","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"passive","unlockLevel":30,"keyItemId":543044,"sourceSkillId":494328,"name":"Crazed Creed","description":"Permanently raises your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579891,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504720],"components":[{"id":504720,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":1}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494328,"name":"Crazed Creed","description":"Permanently raises your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579891,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504720]}}],"icon":"/assets/ui/rom-spells/579891.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-35","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":35,"keyItemId":543052,"sourceSkillId":494545,"name":"Emotional Obstruction","description":"Creates a purple fog that temporarily reduces the magical damage done by the target by (Buff0-0)% for (Buff0-Time) seconds.\n(If the target is a player, the damage done will be reduced by (Buff1-0)% for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579892,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504909,504249],"components":[{"id":504909,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":44,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504249,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":44,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494545,"name":"Emotional Obstruction","description":"Creates a purple fog that temporarily reduces the magical damage done by the target by (Buff0-0)% for (Buff0-Time) seconds.\n(If the target is a player, the damage done will be reduced by (Buff1-0)% for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579892,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504909,504249]}}],"icon":"/assets/ui/rom-spells/579892.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-40","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"passive","unlockLevel":40,"keyItemId":543060,"sourceSkillId":494546,"name":"Wood Spirit's Grasp","description":"Increases the damage of Power of the Wood Spirit. Additionally, a successful hit will increase your and your party members' [SC_SKILLTIPS_MDMG] and [SC_SKILLTIPS_DMG].\n([SC_SKILLTIPS_CD_1](Buff-Time-505171)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579893,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505171],"components":[{"id":505171,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":494546,"name":"Wood Spirit's Grasp","description":"Increases the damage of Power of the Wood Spirit. Additionally, a successful hit will increase your and your party members' [SC_SKILLTIPS_MDMG] and [SC_SKILLTIPS_DMG].\n([SC_SKILLTIPS_CD_1](Buff-Time-505171)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579893,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505171]}}],"icon":"/assets/ui/rom-spells/579893.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-45","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":45,"keyItemId":543068,"sourceSkillId":494921,"name":"Wound Patch","description":"When you suffer physical or magic attacks within (Buff0-Time) seconds, you will recover (DMG-620302) HP and your dodge rate will be continuously increased by (Buff0-623527)% for (Buff-Time-623527) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-505731)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":581106,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505685,620302,623527,505731],"components":[{"id":505685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":494948,"onMagicAttackReboundMagicId":494948,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620302,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"damagePower":30,"damagePowerSkillLevelArg":18,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623527,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":20},{"type":200,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505731,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":494921,"name":"Wound Patch","description":"When you suffer physical or magic attacks within (Buff0-Time) seconds, you will recover (DMG-620302) HP and your dodge rate will be continuously increased by (Buff0-623527)% for (Buff-Time-623527) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-505731)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":581106,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505685,620302,623527,505731]}}],"icon":"/assets/ui/rom-spells/581106.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-50","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543076,"sourceSkillId":494922,"name":"Phantom Blade","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. A successful hit will summon two Oak Walkers that will attack your opponent for 15 seconds. \n\n(Oak Walkers will also use Phantom Blade for attacking. Damage increases with skill level.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"health","amount":5,"percentage":true},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102324},"source":{"imageId":581107,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620311,505942,505943],"components":[{"id":620311,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505942,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102324,"summon":{"creatureId":102324,"level":0,"rangeLevel":0,"lifetimeSeconds":15,"skillLevelArg":0,"type":1,"groupId":3,"ownerPowerRate":0.6}},{"id":505943,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102324,"summon":{"creatureId":102324,"level":0,"rangeLevel":0,"lifetimeSeconds":15,"skillLevelArg":0,"type":1,"groupId":4,"ownerPowerRate":0.6}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494922,"name":"Phantom Blade","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. A successful hit will summon two Oak Walkers that will attack your opponent for 15 seconds. \n\n(Oak Walkers will also use Phantom Blade for attacking. Damage increases with skill level.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"health","amount":5,"percentage":true},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102324},"source":{"imageId":581107,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620311,505942,505943]}}],"icon":"/assets/ui/rom-spells/581107.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-60","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":60,"keyItemId":546772,"sourceSkillId":499542,"name":"Revival","description":"While in a [499544] state, each time you receive physical or magic attack you can stack a [499542] effect. Effect can be stacked a maximum of 10 times. Actively using [499542] makes you recover HP. The amount of HP you recover is dependent on [499542].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801278,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623078],"components":[{"id":623078,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499542,"name":"Revival","description":"While in a [499544] state, each time you receive physical or magic attack you can stack a [499542] effect. Effect can be stacked a maximum of 10 times. Actively using [499542] makes you recover HP. The amount of HP you recover is dependent on [499542].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801278,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623078]}}],"icon":"/assets/ui/rom-spells/801278.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-70","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"passive","unlockLevel":70,"keyItemId":546773,"sourceSkillId":499547,"name":"Group Panic","description":"Makes your [499546] cause an additional reduction of physical and magic damage. Also changes effects from solo to group.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801326,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499547,"name":"Group Panic","description":"Makes your [499546] cause an additional reduction of physical and magic damage. Also changes effects from solo to group.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801326,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801326.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-15","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543021,"sourceSkillId":494046,"name":"Hysteric Vengeance","description":"If you are hit by physical attacks in the next (Buff0-Time) seconds, your [SC_SKILLTIPS_CRI] will increase by (Buff0-620303) for (Buff-Time-620303) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504593)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579116,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504555,620303,504593],"components":[{"id":504555,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":494072,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620303,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494073,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504593,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268443649,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494046,"name":"Hysteric Vengeance","description":"If you are hit by physical attacks in the next (Buff0-Time) seconds, your [SC_SKILLTIPS_CRI] will increase by (Buff0-620303) for (Buff-Time-620303) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504593)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579116,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504555,620303,504593]}}],"icon":"/assets/ui/rom-spells/579116.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-20","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":20,"keyItemId":543029,"sourceSkillId":494047,"name":"Poison Antibodies","description":"Makes it so you cannot be affected by poison for 5 seconds after you successfully use Antidote.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579117,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":494047,"name":"Poison Antibodies","description":"Makes it so you cannot be affected by poison for 5 seconds after you successfully use Antidote.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579117,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579117.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-25","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"elite","unlockLevel":25,"keyItemId":543037,"sourceSkillId":494048,"name":"Poison Shroud","description":"Poison Shroud inflicts (Buff0-Dot) points of poison damage every 2 seconds on targets within a range of 70 for (Buff0-Time) seconds. (Consumes one poison bottle.)","target":"self","range":15,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579118,"sourceEffectType":1,"sourceTarget":16,"componentIds":[620304],"components":[{"id":620304,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":8394,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494962,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":2,"dotType":0,"dotBase":-40,"dot":{"timeSeconds":2,"type":0,"base":-40,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494048,"name":"Poison Shroud","description":"Poison Shroud inflicts (Buff0-Dot) points of poison damage every 2 seconds on targets within a range of 70 for (Buff0-Time) seconds. (Consumes one poison bottle.)","target":"self","range":15,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579118,"sourceEffectType":1,"sourceTarget":16,"componentIds":[620304]}}],"icon":"/assets/ui/rom-spells/579118.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-30","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"elite","unlockLevel":30,"keyItemId":543045,"sourceSkillId":494329,"name":"Killin' Time","description":"Increases the critical physical hit rate of your next 4 attacks by (Buff0-504872) points and critical damage by (Buff1-504872)% for (Buff-Time-504872) seconds. (This effect continues until expended or time runs out.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579894,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504872,504881],"components":[{"id":504872,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"clearFlags":8193,"abilityModifiers":[{"type":18,"value":120},{"type":19,"value":1}],"abilitySkillLevelArg":16,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494339,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504881,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494329,"name":"Killin' Time","description":"Increases the critical physical hit rate of your next 4 attacks by (Buff0-504872) points and critical damage by (Buff1-504872)% for (Buff-Time-504872) seconds. (This effect continues until expended or time runs out.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579894,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504872,504881]}}],"icon":"/assets/ui/rom-spells/579894.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-35","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":35,"keyItemId":543053,"sourceSkillId":498027,"name":"Crippling Poison","description":"Causes your Poisonous effect to additionally reduce the target's [SC_SKILLTIPS_CAST] and [SC_SKILLTIPS_DPS].","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579895,"sourceEffectType":2,"sourceTarget":6,"componentIds":[505173,504250],"components":[{"id":505173,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":170,"abilityModifiers":[{"type":170,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504250,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":170,"abilityModifiers":[{"type":170,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":498027,"name":"Crippling Poison","description":"Causes your Poisonous effect to additionally reduce the target's [SC_SKILLTIPS_CAST] and [SC_SKILLTIPS_DPS].","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579895,"sourceEffectType":2,"sourceTarget":6,"componentIds":[505173,504250]}}],"icon":"/assets/ui/rom-spells/579895.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-40","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"elite","unlockLevel":40,"keyItemId":543061,"sourceSkillId":494548,"name":"Slaughter Blessing","description":"Instantly restores (current [SC_SKILLTIPS_HP] x (DMG4)) + (DMG8) HP to you and your party members, and temporarily increases [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":579896,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505175,506387,504912],"components":[{"id":505175,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5},{"type":171,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506387,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"damagePower":1,"damagePowerSkillLevelArg":8.4,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504912,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"damagePower":30,"damagePowerSkillLevelArg":9.6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494548,"name":"Slaughter Blessing","description":"Instantly restores (current [SC_SKILLTIPS_HP] x (DMG4)) + (DMG8) HP to you and your party members, and temporarily increases [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":579896,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505175,506387,504912]}}],"icon":"/assets/ui/rom-spells/579896.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-45","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":45,"keyItemId":543069,"sourceSkillId":494923,"name":"Shadow Smash","description":"Extends your Poison Shroud effect by 4 seconds and inflicts dark damage to targets within a range of 70.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581108,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494923,"name":"Shadow Smash","description":"Extends your Poison Shroud effect by 4 seconds and inflicts dark damage to targets within a range of 70.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581108,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581108.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-50","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":50,"keyItemId":543077,"sourceSkillId":494924,"name":"Quick Light Protection","description":"Reduces the energy required for your Blind Spot attack by 10 and when you strike a target it has a chance of restoring HP to the party member with the lowest HP.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581109,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":494924,"name":"Quick Light Protection","description":"Reduces the energy required for your Blind Spot attack by 10 and when you strike a target it has a chance of restoring HP to the party member with the lowest HP.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581109,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581109.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-60","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546774,"sourceSkillId":499566,"name":"Malicious Intent Release","description":"Your [499567] will not be limited in the times it can be used, but its time limit is reduced from 15 seconds to 7 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801279,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499566,"name":"Malicious Intent Release","description":"Your [499567] will not be limited in the times it can be used, but its time limit is reduced from 15 seconds to 7 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801279,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801279.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-70","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":70,"keyItemId":546775,"sourceSkillId":499568,"name":"Erosion","description":"Causes an additional reduction of your target's armor and [SC_SKILLTIPS_MDEF] while [499569] is in effect. Causes additional damage from triggered [494923] in level with [SC_SKILLTIPS_AGI].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801327,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499568,"name":"Erosion","description":"Causes an additional reduction of your target's armor and [SC_SKILLTIPS_MDEF] while [499569] is in effect. Causes additional damage from triggered [494923] in level with [SC_SKILLTIPS_AGI].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801327,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801327.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-15","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":15,"keyItemId":545976,"sourceSkillId":498799,"name":"Dark Soul Barrier","description":"Sets up a dark spirit barrier in a designated area. This barrier will increase the [SC_SKILLTIPS_DOGEP] of all party members inside the barrier by (Buff0-621565)%. The Dark Soul Barrier lasts for 12 seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800220,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621560,621565],"components":[{"id":621560,"magicFunc":6,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621565,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":268435459,"specialActionFlags":0,"assistType":31,"abilityModifiers":[{"type":198,"value":10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498799,"name":"Dark Soul Barrier","description":"Sets up a dark spirit barrier in a designated area. This barrier will increase the [SC_SKILLTIPS_DOGEP] of all party members inside the barrier by (Buff0-621565)%. The Dark Soul Barrier lasts for 12 seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800220,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621560,621565]}}],"icon":"/assets/ui/rom-spells/800220.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-20","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":20,"keyItemId":545977,"sourceSkillId":498801,"name":"Energy Conservation","description":"Use of this skill requires an HP less than 75%.\nRestores (Buff0-Dot)% HP every second until HP reaches 75% or the effect lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800153,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621561],"components":[{"id":621561,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":79,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498802,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":5,"dotBase":3,"dot":{"timeSeconds":1,"type":5,"base":3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498801,"name":"Energy Conservation","description":"Use of this skill requires an HP less than 75%.\nRestores (Buff0-Dot)% HP every second until HP reaches 75% or the effect lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800153,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621561]}}],"icon":"/assets/ui/rom-spells/800153.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-25","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":25,"keyItemId":545978,"sourceSkillId":498803,"name":"Soul Stab","description":"Inflicts (DMG1) + (FixDMG1) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS on the target. If target is in a Weakened state then they will receive (DMG0) + (FixDMG0) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800154,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621564,501577,621563],"components":[{"id":621564,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.5,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-1.5,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621563,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498803,"name":"Soul Stab","description":"Inflicts (DMG1) + (FixDMG1) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS on the target. If target is in a Weakened state then they will receive (DMG0) + (FixDMG0) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800154,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621564,501577,621563]}}],"icon":"/assets/ui/rom-spells/800154.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-30","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":30,"keyItemId":545979,"sourceSkillId":498804,"name":"Begin When Ready","description":"Immediately resets the cooldown time for Fervent Attack and Evasion.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800155,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621566],"components":[{"id":621566,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498804,"name":"Begin When Ready","description":"Immediately resets the cooldown time for Fervent Attack and Evasion.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800155,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621566]}}],"icon":"/assets/ui/rom-spells/800155.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-35","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":35,"keyItemId":545980,"sourceSkillId":498805,"name":"Dark Soul Precision","description":"Soul Pain doesn't need any casting time and reduces target's [SC_SKILLTIPS_DEF].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800156,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498805,"name":"Dark Soul Precision","description":"Soul Pain doesn't need any casting time and reduces target's [SC_SKILLTIPS_DEF].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800156,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800156.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-40","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":40,"keyItemId":545981,"sourceSkillId":498807,"name":"Soul Agility","description":"Increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800157,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621568,621569],"components":[{"id":621568,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":6,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621569,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":165,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498807,"name":"Soul Agility","description":"Increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800157,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621568,621569]}}],"icon":"/assets/ui/rom-spells/800157.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-45","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":45,"keyItemId":545982,"sourceSkillId":498808,"name":"Dark Soul Smelt","description":"While in a Poisonous state, normal attack hits can cause additional [SC_SKILLTIPS_DARK].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800158,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":498808,"name":"Dark Soul Smelt","description":"While in a Poisonous state, normal attack hits can cause additional [SC_SKILLTIPS_DARK].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800158,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800158.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-50","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":545983,"sourceSkillId":498811,"name":"Ghostly Strike","description":"Inflicts (DMG0) + (FixDMG0) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS and carries a Weakened effect. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800159,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621572,501577],"components":[{"id":621572,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.5,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-1.5,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498811,"name":"Ghostly Strike","description":"Inflicts (DMG0) + (FixDMG0) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS and carries a Weakened effect. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800159,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621572,501577]}}],"icon":"/assets/ui/rom-spells/800159.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-60","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":60,"keyItemId":546776,"sourceSkillId":498813,"name":"Dark Soul Assail","description":"Increases [SC_SKILLTIPS_DARK]. In a state of [498814], [SC_SKILLTIPS_DARK] is additionally increased.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801618,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623424],"components":[{"id":623424,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524295,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":50,"value":50}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":499803,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":498813,"name":"Dark Soul Assail","description":"Increases [SC_SKILLTIPS_DARK]. In a state of [498814], [SC_SKILLTIPS_DARK] is additionally increased.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801618,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623424]}}],"icon":"/assets/ui/rom-spells/801618.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-70","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":70,"keyItemId":546777,"sourceSkillId":499820,"name":"Soul Curtain","description":"Decreases the cooldown time of [499819] by 60 seconds. When [499819] is being cast, it removes the effect of being Helpless and leaves a Substitute that Taunts nearby enemies for 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801619,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499820,"name":"Soul Curtain","description":"Decreases the cooldown time of [499819] by 60 seconds. When [499819] is being cast, it removes the effect of being Helpless and leaves a Substitute that Taunts nearby enemies for 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801619,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801619.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-15","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":541900,"sourceSkillId":491562,"name":"Magical Talent","description":"Temporarily increases your [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575729,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501947,506398],"components":[{"id":501947,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":50}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495400,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":506398,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":168,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491562,"name":"Magical Talent","description":"Temporarily increases your [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575729,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501947,506398]}}],"icon":"/assets/ui/rom-spells/575729.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-20","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":20,"keyItemId":541930,"sourceSkillId":491563,"name":"Magical Enlightenment","description":"Lets you regenerate (Buff0-Dot) MP every 5 seconds for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575726,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501948],"components":[{"id":501948,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":5,"dotType":1,"dotBase":10,"dot":{"timeSeconds":5,"type":1,"base":10,"skillLevelArg":10},"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":491563,"name":"Magical Enlightenment","description":"Lets you regenerate (Buff0-Dot) MP every 5 seconds for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575726,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501948]}}],"icon":"/assets/ui/rom-spells/575726.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-25","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":25,"keyItemId":541960,"sourceSkillId":491564,"name":"Elemental Explosion","description":"Your [SC_SKILLTIPS_MCRI] is increased by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575720,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501949],"components":[{"id":501949,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":491564,"name":"Elemental Explosion","description":"Your [SC_SKILLTIPS_MCRI] is increased by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575720,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501949]}}],"icon":"/assets/ui/rom-spells/575720.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-30","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":541990,"sourceSkillId":491565,"name":"Rage Mana","description":"Converts your rage into (DMG0) MP and increases your magical damage by (Buff4-0)% for (Buff4-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575569,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501951,623528],"components":[{"id":501951,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":180,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":26,"abilityModifiers":[{"type":2,"value":10}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":20,"fixedValue":0,"attack":{"type":1,"damagePower":20,"damagePowerSkillLevelArg":100,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623528,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":10}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":491565,"name":"Rage Mana","description":"Converts your rage into (DMG0) MP and increases your magical damage by (Buff4-0)% for (Buff4-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575569,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501951,623528]}}],"icon":"/assets/ui/rom-spells/575569.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-35","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542021,"sourceSkillId":492630,"name":"Activate Mana","description":"Transforms your mana into (DMG0) rage and reduces Aggro by (Buff4-0)% for (Buff4-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":80,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577005,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502899,623531],"components":[{"id":502899,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":20,"fixedValue":0,"attack":{"type":2,"damagePower":20,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623531,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":492630,"name":"Activate Mana","description":"Transforms your mana into (DMG0) rage and reduces Aggro by (Buff4-0)% for (Buff4-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":80,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577005,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502899,623531]}}],"icon":"/assets/ui/rom-spells/577005.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-40","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":40,"keyItemId":542051,"sourceSkillId":492925,"name":"Magic Boost","description":"Lets your Berserk simultaneously raise your magic attack and physical attack while lowering your [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577596,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503186],"components":[{"id":503186,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":64,"abilityModifiers":[{"type":135,"value":-3},{"type":134,"value":3},{"type":171,"value":2},{"type":170,"value":-2}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492925,"name":"Magic Boost","description":"Lets your Berserk simultaneously raise your magic attack and physical attack while lowering your [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577596,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503186]}}],"icon":"/assets/ui/rom-spells/577596.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-45","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":542081,"sourceSkillId":493026,"name":"Enhanced Intensification","description":"Lets your Intensification increase the [SC_SKILLTIPS_MDMG]. Also increases [SC_SKILLTIPS_MCRI_POWER] while in effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577656,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":493026,"name":"Enhanced Intensification","description":"Lets your Intensification increase the [SC_SKILLTIPS_MDMG]. Also increases [SC_SKILLTIPS_MCRI_POWER] while in effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577656,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577656.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-50","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":542111,"sourceSkillId":493262,"name":"Meditative Current","description":"Whenever you hit a target with Plasma Arrow or Flame, your Casting Speed increases additionally. Effective for (Buff-Time-503533) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503534)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577791,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503533,503534],"components":[{"id":503533,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":-10}],"abilitySkillLevelArg":4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493319,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503534,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":493262,"name":"Meditative Current","description":"Whenever you hit a target with Plasma Arrow or Flame, your Casting Speed increases additionally. Effective for (Buff-Time-503533) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503534)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577791,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503533,503534]}}],"icon":"/assets/ui/rom-spells/577791.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-60","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546780,"sourceSkillId":499588,"name":"Meditation Path","description":"When you cast [490204], [490212], [490242] or [490239], you can achieve a mobile casting skill state. Lasts for 7 seconds. (Can't be re-triggered within the next 15 seconds.)","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801280,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499588,"name":"Meditation Path","description":"When you cast [490204], [490212], [490242] or [490239], you can achieve a mobile casting skill state. Lasts for 7 seconds. (Can't be re-triggered within the next 15 seconds.)","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801280,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801280.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-70","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":70,"keyItemId":546781,"sourceSkillId":499589,"name":"Wisdom and Bravery","description":"Gives your [499590] an extra increase in [SC_SKILLTIPS_STA]. \nAfter it is used, it increases your [SC_SKILLTIPS_INT] by 50% of your [SC_SKILLTIPS_STA] plus 50% of your [SC_SKILLTIPS_STR]. Lasts (Buff-Time-623148) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801328,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623150,623148],"components":[{"id":623150,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623148,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":4,"value":1}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499589,"name":"Wisdom and Bravery","description":"Gives your [499590] an extra increase in [SC_SKILLTIPS_STA]. \nAfter it is used, it increases your [SC_SKILLTIPS_INT] by 50% of your [SC_SKILLTIPS_STA] plus 50% of your [SC_SKILLTIPS_STR]. Lasts (Buff-Time-623148) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801328,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623150,623148]}}],"icon":"/assets/ui/rom-spells/801328.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-15","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":15,"keyItemId":546015,"sourceSkillId":498823,"name":"Electric Explosion Expertise","description":"While in a Charged state, every Electric Explosion hit adds additional rage and recovers MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800168,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498823,"name":"Electric Explosion Expertise","description":"While in a Charged state, every Electric Explosion hit adds additional rage and recovers MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800168,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800168.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-20","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":546016,"sourceSkillId":498825,"name":"Brain Shock","description":"Ends the cooldown time for your Lightning and Discharge. Also increases [SC_SKILLTIPS_INT] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800169,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621621,621622],"components":[{"id":621621,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":163,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621622,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498825,"name":"Brain Shock","description":"Ends the cooldown time for your Lightning and Discharge. Also increases [SC_SKILLTIPS_INT] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800169,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621621,621622]}}],"icon":"/assets/ui/rom-spells/800169.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-25","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":25,"keyItemId":546017,"sourceSkillId":498862,"name":"Electric Current Arc","description":"Increases Plasma Arrow damage and continuously adds rage while in a Charged state.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800170,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498862,"name":"Electric Current Arc","description":"Increases Plasma Arrow damage and continuously adds rage while in a Charged state.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800170,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800170.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-30","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":30,"keyItemId":546018,"sourceSkillId":498864,"name":"Voltage Seize","description":"There is a chance to use this skill when a current inflicts continuous damage. Inflicts (DMG0) + (FixDMG0) x INT [SC_SKILLTIPS_WIND]. \n[SC_SKILLTIPS_03]","target":"hostile","range":22,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800171,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621626],"components":[{"id":621626,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":-0.4,"attack":{"type":0,"damagePower":-100,"damagePowerSkillLevelArg":35,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498864,"name":"Voltage Seize","description":"There is a chance to use this skill when a current inflicts continuous damage. Inflicts (DMG0) + (FixDMG0) x INT [SC_SKILLTIPS_WIND]. \n[SC_SKILLTIPS_03]","target":"hostile","range":22,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800171,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621626]}}],"icon":"/assets/ui/rom-spells/800171.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-35","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":35,"keyItemId":546019,"sourceSkillId":498867,"name":"Energy Passage","description":"After a Static Field finishes, this skill inflicts an extra reduction of the target's [SC_SKILLTIPS_MOVE] by (Buff0-621662)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800172,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621662],"components":[{"id":621662,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498867,"name":"Energy Passage","description":"After a Static Field finishes, this skill inflicts an extra reduction of the target's [SC_SKILLTIPS_MOVE] by (Buff0-621662)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800172,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621662]}}],"icon":"/assets/ui/rom-spells/800172.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-40","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":40,"keyItemId":546020,"sourceSkillId":498869,"name":"Electrolysis Power","description":"Largely increases damage caused by Discharge and reduces the cooldown time by 10 seconds, but also cancels Stun effect.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800173,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621631,621632],"components":[{"id":621631,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":496444,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621632,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498869,"name":"Electrolysis Power","description":"Largely increases damage caused by Discharge and reduces the cooldown time by 10 seconds, but also cancels Stun effect.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800173,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621631,621632]}}],"icon":"/assets/ui/rom-spells/800173.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-45","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":45,"keyItemId":546021,"sourceSkillId":498871,"name":"Electrostatic Charge Expertise","description":"Reduces Electrostatic Charge cooldown time by 30 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800174,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498871,"name":"Electrostatic Charge Expertise","description":"Reduces Electrostatic Charge cooldown time by 30 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800174,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800174.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-50","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":50,"keyItemId":546022,"sourceSkillId":498873,"name":"Ion Storm","description":"Consumes (Buff0-Dot) rage every second to cause (DMG-621635) [SC_SKILLTIPS_WIND] on targets nearby. Also reduces wind attribute resistance by 2% for (Buff-Time-621636) seconds and can be stacked 10 times. \n(This state ends when rage has been exhausted.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"dot","coefficient":0.25,"ticks":2,"intervalMs":2000},"source":{"imageId":800175,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621634,621635,621636],"components":[{"id":621634,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":111,"specialActionFlags":0,"assistType":-1,"clearFlags":1152,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498874,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":2,"dotBase":-5,"dot":{"timeSeconds":1,"type":2,"base":-5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621635,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":79,"specialActionFlags":0,"assistType":-1,"clearFlags":3072,"abilitySkillLevelArg":5,"dotTime":1,"dotType":6,"dotBase":2,"dot":{"timeSeconds":1,"type":6,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":-25,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-25,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621636,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":32834,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":224,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498873,"name":"Ion Storm","description":"Consumes (Buff0-Dot) rage every second to cause (DMG-621635) [SC_SKILLTIPS_WIND] on targets nearby. Also reduces wind attribute resistance by 2% for (Buff-Time-621636) seconds and can be stacked 10 times. \n(This state ends when rage has been exhausted.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"dot","coefficient":0.25,"ticks":2,"intervalMs":2000},"source":{"imageId":800175,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621634,621635,621636]}}],"icon":"/assets/ui/rom-spells/800175.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-60","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":60,"keyItemId":546797,"sourceSkillId":499811,"name":"Lightning Shield","description":"Obtain a [623438] that deals (DMG-623435) + (FixDMG-623435) x INT [SC_SKILLTIPS_WIND] to the source of any damage dealt to you and has a chance to trigger a [498864].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":801624,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623438,623435],"components":[{"id":623438,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":180,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":499810,"onMagicAttackReboundMagicId":499810,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623435,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-65,"fixedValue":-0.4,"attack":{"type":0,"damagePower":-65,"damagePowerSkillLevelArg":5,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":499811,"name":"Lightning Shield","description":"Obtain a [623438] that deals (DMG-623435) + (FixDMG-623435) x INT [SC_SKILLTIPS_WIND] to the source of any damage dealt to you and has a chance to trigger a [498864].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":801624,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623438,623435]}}],"icon":"/assets/ui/rom-spells/801624.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-70","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":70,"keyItemId":546798,"sourceSkillId":499807,"name":"Ion Barrier","description":"While in a [499809] state, reduces damage suffered by (Buff0-623444)% but increases the required rage points by 10.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801625,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623444],"components":[{"id":623444,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524359,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":-30},{"type":207,"value":-30}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":499808,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":499807,"name":"Ion Barrier","description":"While in a [499809] state, reduces damage suffered by (Buff0-623444)% but increases the required rage points by 10.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801625,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623444]}}],"icon":"/assets/ui/rom-spells/801625.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-15","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":541901,"sourceSkillId":491570,"name":"Thunderclap","description":"A magic arrow binds the target for (Buff0-Time) seconds to its current location. \n(If the target is a player, they cannot move for (Buff1-Time) seconds.)\n(The effect is removed when the target is attacked.)","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575728,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501956,507286],"components":[{"id":501956,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507286,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491570,"name":"Thunderclap","description":"A magic arrow binds the target for (Buff0-Time) seconds to its current location. \n(If the target is a player, they cannot move for (Buff1-Time) seconds.)\n(The effect is removed when the target is attacked.)","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575728,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501956,507286]}}],"icon":"/assets/ui/rom-spells/575728.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-20","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":20,"keyItemId":541931,"sourceSkillId":491573,"name":"Fire Arrow","description":"Your [SC_SKILLTIPS_MCRI] is increased by (Buff0-0) and Shot inflicts additional fire damage. This effect lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_491573]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575248,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501955],"components":[{"id":501955,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":20,"value":150}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":491573,"name":"Fire Arrow","description":"Your [SC_SKILLTIPS_MCRI] is increased by (Buff0-0) and Shot inflicts additional fire damage. This effect lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_491573]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575248,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501955]}}],"icon":"/assets/ui/rom-spells/575248.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-25","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":541961,"sourceSkillId":491343,"name":"Fire Rose","description":"Plants a rose seed inside the target that causes (Buff3-Dot) Fire damage every 2 seconds for (Buff3-Time) seconds.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575226,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501842,501814,501806],"components":[{"id":501842,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":133,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-24,"dot":{"timeSeconds":2,"type":0,"base":-24,"skillLevelArg":20},"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0},{"id":501814,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":133,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":20},"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0},{"id":501806,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":133,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":20},"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":491343,"name":"Fire Rose","description":"Plants a rose seed inside the target that causes (Buff3-Dot) Fire damage every 2 seconds for (Buff3-Time) seconds.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575226,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501842,501814,501806]}}],"icon":"/assets/ui/rom-spells/575226.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-30","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":541991,"sourceSkillId":491344,"name":"Fire Rose Explosion","description":"Instantly ignites all Fire Roses planted in target, causing (DMG0) + (FixDMG-620220) x INT [SC_SKILLTIPS_FLAME]. \n(Requires 3 seeds in the target.)","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":575227,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620220],"components":[{"id":620220,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":-0.8,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":40,"fixedValue":-0.8,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":491344,"name":"Fire Rose Explosion","description":"Instantly ignites all Fire Roses planted in target, causing (DMG0) + (FixDMG-620220) x INT [SC_SKILLTIPS_FLAME]. \n(Requires 3 seeds in the target.)","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":575227,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620220]}}],"icon":"/assets/ui/rom-spells/575227.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-35","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":542022,"sourceSkillId":492631,"name":"Flame Spirit","description":"Turns your flame energy for 40 seconds into concrete substance to support your attacks.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":101686},"source":{"imageId":577006,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502900],"components":[{"id":502900,"magicFunc":3,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":101686,"summon":{"creatureId":101686,"level":0,"rangeLevel":0,"lifetimeSeconds":40,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0.3}}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":492631,"name":"Flame Spirit","description":"Turns your flame energy for 40 seconds into concrete substance to support your attacks.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":101686},"source":{"imageId":577006,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502900]}}],"icon":"/assets/ui/rom-spells/577006.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-40","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":542052,"sourceSkillId":492926,"name":"Power of the Wind","description":"Increases [SC_SKILLTIPS_MAG_HIT] by (Buff0-0). Shot also inflicts Wind damage for (Buff0-Time) seconds.\n[SC_SKILLTIPS_491573]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577597,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503187],"components":[{"id":503187,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":195,"value":50}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":492926,"name":"Power of the Wind","description":"Increases [SC_SKILLTIPS_MAG_HIT] by (Buff0-0). Shot also inflicts Wind damage for (Buff0-Time) seconds.\n[SC_SKILLTIPS_491573]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577597,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503187]}}],"icon":"/assets/ui/rom-spells/577597.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-45","classId":"rom-mage","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":542082,"sourceSkillId":493028,"name":"Fire Rose Storm","description":"You deal extra [SC_SKILLTIPS_MDMG] when you successfully launch a Fire Rose.\n([SC_SKILLTIPS_CD_1](Buff-Time-503272)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577657,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503272],"components":[{"id":503272,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":493028,"name":"Fire Rose Storm","description":"You deal extra [SC_SKILLTIPS_MDMG] when you successfully launch a Fire Rose.\n([SC_SKILLTIPS_CD_1](Buff-Time-503272)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577657,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503272]}}],"icon":"/assets/ui/rom-spells/577657.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-50","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":542112,"sourceSkillId":493263,"name":"Magic Crossflow","description":"Raises the casting speed of master and pet by (Buff0-0)% for (Buff0-Time) seconds.\n(If the pet disappears, this effect will be cancelled.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577792,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503535],"components":[{"id":503535,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":25,"hateCost":0,"settingFlags":71,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":-2}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":493496,"onTimeSeconds":5,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493263,"name":"Magic Crossflow","description":"Raises the casting speed of master and pet by (Buff0-0)% for (Buff0-Time) seconds.\n(If the pet disappears, this effect will be cancelled.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577792,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503535]}}],"icon":"/assets/ui/rom-spells/577792.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-60","classId":"rom-mage","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546782,"sourceSkillId":491576,"name":"Strength of Ashes","description":"After your [491577] disappears, this provides you with an increase in [SC_SKILLTIPS_MDMG]. Lasts (Buff-Time-623178) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801281,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623178],"components":[{"id":623178,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":20}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":491576,"name":"Strength of Ashes","description":"After your [491577] disappears, this provides you with an increase in [SC_SKILLTIPS_MDMG]. Lasts (Buff-Time-623178) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801281,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623178]}}],"icon":"/assets/ui/rom-spells/801281.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-70","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":70,"keyItemId":546783,"sourceSkillId":499597,"name":"Wind Fire Cultivation","description":"Earn both [491573] and [623181] at the same time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801329,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623179,623181],"components":[{"id":623179,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623181,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":97,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":195,"value":10}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499597,"name":"Wind Fire Cultivation","description":"Earn both [491573] and [623181] at the same time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801329,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623179,623181]}}],"icon":"/assets/ui/rom-spells/801329.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-15","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":541902,"sourceSkillId":491578,"name":"Cursed Fangs","description":"Puts a curse on your hidden weapons. For (Buff0-Time) seconds targets hit with these cursed projectiles suffer (Buff0-Dot) Dark damage every 2 seconds. (As long as your Fang Ritual is active, additional (DMG4) + (FixDMG-620238) x INT [SC_SKILLTIPS_DARK] will be done.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":575725,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501960,620238,502036,623195],"components":[{"id":501960,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":21,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":30},"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":620238,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":5,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-20,"damagePowerSkillLevelArg":25,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502036,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":15,"abilityModifiers":[{"type":50,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":623195,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":15,"abilityModifiers":[{"type":50,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":491578,"name":"Cursed Fangs","description":"Puts a curse on your hidden weapons. For (Buff0-Time) seconds targets hit with these cursed projectiles suffer (Buff0-Dot) Dark damage every 2 seconds. (As long as your Fang Ritual is active, additional (DMG4) + (FixDMG-620238) x INT [SC_SKILLTIPS_DARK] will be done.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":575725,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501960,620238,502036,623195]}}],"icon":"/assets/ui/rom-spells/575725.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-20","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":541932,"sourceSkillId":491345,"name":"Kiss of the Vampire","description":"Inflicts (DMG0) + (FixDMG-620199) x INT [SC_SKILLTIPS_DARK] on your opponent and restores (DMG4) to your HP.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575228,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620237,501560,620199],"components":[{"id":620237,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":20,"settingFlags":0,"specialActionFlags":0,"assistType":23,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":25,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501560,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":20,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":10,"fixedValue":0,"attack":{"type":0,"damagePower":10,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620199,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-70,"damagePowerSkillLevelArg":40,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":491345,"name":"Kiss of the Vampire","description":"Inflicts (DMG0) + (FixDMG-620199) x INT [SC_SKILLTIPS_DARK] on your opponent and restores (DMG4) to your HP.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575228,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620237,501560,620199]}}],"icon":"/assets/ui/rom-spells/575228.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-25","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":25,"keyItemId":541962,"sourceSkillId":491348,"name":"Demoralize","description":"Your target cannot attack for (Buff0-Time) seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575231,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501813,503839,502719],"components":[{"id":501813,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":126,"effectFlagWords":[3,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503839,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":126,"effectFlagWords":[3,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":491348,"name":"Demoralize","description":"Your target cannot attack for (Buff0-Time) seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575231,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501813,503839,502719]}}],"icon":"/assets/ui/rom-spells/575231.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-30","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":541992,"sourceSkillId":491581,"name":"Fang Ritual","description":"Raises the damage dealt by Dark magic by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575724,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502036],"components":[{"id":502036,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":15,"abilityModifiers":[{"type":50,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":491581,"name":"Fang Ritual","description":"Raises the damage dealt by Dark magic by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575724,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502036]}}],"icon":"/assets/ui/rom-spells/575724.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-35","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542023,"sourceSkillId":492632,"name":"Distract","description":"Distracts the target, so that it loses its focus on you. You get the lowest place in the aggro table for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577007,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502901],"components":[{"id":502901,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1073741824,0],"abilityModifiers":[{"type":138,"value":-35}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":492632,"name":"Distract","description":"Distracts the target, so that it loses its focus on you. You get the lowest place in the aggro table for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577007,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502901]}}],"icon":"/assets/ui/rom-spells/577007.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-40","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":40,"keyItemId":542053,"sourceSkillId":492927,"name":"Shadow Shroud","description":"Sinister magic shrouds your target, causing your Demoralize to additionally lower the target's magic defense.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577598,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":492927,"name":"Shadow Shroud","description":"Sinister magic shrouds your target, causing your Demoralize to additionally lower the target's magic defense.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577598,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577598.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-45","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":45,"keyItemId":542083,"sourceSkillId":493030,"name":"Shadow Protection","description":"Increases your casting speed by (Buff0-0)% for (Buff0-Time) seconds. If you receive a critical physical hit while it is in effect, your movement speed is instantly increased by (Buff0-503275)% for (Buff-Time-503275) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503303)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577658,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503274,503275,503303],"components":[{"id":503274,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":204,"abilityModifiers":[{"type":51,"value":-1}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503275,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10}],"abilitySkillLevelArg":11,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493178,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503303,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":60,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":493030,"name":"Shadow Protection","description":"Increases your casting speed by (Buff0-0)% for (Buff0-Time) seconds. If you receive a critical physical hit while it is in effect, your movement speed is instantly increased by (Buff0-503275)% for (Buff-Time-503275) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503303)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577658,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503274,503275,503303]}}],"icon":"/assets/ui/rom-spells/577658.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-50","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":50,"keyItemId":542113,"sourceSkillId":493264,"name":"Gift of the Baron","description":"When you succeed in casting Kiss of the Vampire, you will additionally increase the damage of your next two magical attacks. Effective for (Buff-Time-503538) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577793,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503538],"components":[{"id":503538,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"clearFlags":4096,"abilityModifiers":[{"type":44,"value":1}],"abilitySkillLevelArg":24,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493322,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":493264,"name":"Gift of the Baron","description":"When you succeed in casting Kiss of the Vampire, you will additionally increase the damage of your next two magical attacks. Effective for (Buff-Time-503538) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577793,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503538]}}],"icon":"/assets/ui/rom-spells/577793.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-60","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546784,"sourceSkillId":499600,"name":"Night Refuge","description":"When [499601] is in effect and you receive a normal attack, this instills Fear in the attacker for (Buff-Time-623192) seconds. It also immediately casts [493320] on the attacker. \n([SC_SKILLTIPS_CD_1] (Buff-Time-503303) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623192,503303],"components":[{"id":623192,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[131075,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503303,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":60,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499600,"name":"Night Refuge","description":"When [499601] is in effect and you receive a normal attack, this instills Fear in the attacker for (Buff-Time-623192) seconds. It also immediately casts [493320] on the attacker. \n([SC_SKILLTIPS_CD_1] (Buff-Time-503303) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623192,503303]}}],"icon":"/assets/ui/rom-spells/801282.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-70","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546785,"sourceSkillId":499604,"name":"Pride of the Baron","description":"When you have the [499605] effect, the critical attack caused by your spells will reduce the cooldown time of [493320] by 3 seconds. Your [493321] will then have an additional increase to the [SC_SKILLTIPS_MCRI].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801330,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499604,"name":"Pride of the Baron","description":"When you have the [499605] effect, the critical attack caused by your spells will reduce the cooldown time of [493320] by 3 seconds. Your [493321] will then have an additional increase to the [SC_SKILLTIPS_MCRI].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801330,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801330.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-15","classId":"rom-mage","secondaryClassId":"rom-priest","group":"elite","unlockLevel":15,"keyItemId":541903,"sourceSkillId":491587,"name":"Essence of Magic","description":"Increases [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-0)) x ((Buff4-0)%) + (Buff0-0) for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576262,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501962,506232],"components":[{"id":501962,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":15,"value":10}],"abilitySkillLevelArg":60,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495283,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506232,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491587,"name":"Essence of Magic","description":"Increases [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-0)) x ((Buff4-0)%) + (Buff0-0) for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576262,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501962,506232]}}],"icon":"/assets/ui/rom-spells/576262.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-20","classId":"rom-mage","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":541933,"sourceSkillId":491588,"name":"Purify","description":"Can dispel curses from your target.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575722,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501963],"components":[{"id":501963,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":491588,"name":"Purify","description":"Can dispel curses from your target.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575722,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501963]}}],"icon":"/assets/ui/rom-spells/575722.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-25","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":25,"keyItemId":541963,"sourceSkillId":491589,"name":"Outburst","description":"Flame and Fireball now have a higher chance to deal additional damage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575730,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":491589,"name":"Outburst","description":"Flame and Fireball now have a higher chance to deal additional damage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575730,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575730.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-30","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":30,"keyItemId":541993,"sourceSkillId":491590,"name":"Rising Tide Mastery","description":"Your Rising Tide is now an instant cast with a cooldown of 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575570,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":491590,"name":"Rising Tide Mastery","description":"Your Rising Tide is now an instant cast with a cooldown of 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575570,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575570.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-35","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":542024,"sourceSkillId":492633,"name":"Shine of the Holy Aura","description":"Used with a Holy Aura, there is extra recovery of HP but all mana costs raise by 1%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577008,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":492633,"name":"Shine of the Holy Aura","description":"Used with a Holy Aura, there is extra recovery of HP but all mana costs raise by 1%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577008,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577008.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-40","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":40,"keyItemId":542054,"sourceSkillId":492928,"name":"Grand Dispel","description":"Allows your Purify to also dispel harmful effects.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577599,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":492928,"name":"Grand Dispel","description":"Allows your Purify to also dispel harmful effects.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577599,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577599.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-45","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542084,"sourceSkillId":493031,"name":"Disable","description":"A successful Flame or Plasma Arrow hit decreases the target's [SC_SKILLTIPS_MCRI_PASSIVE] for (Buff-Time-503277) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503276)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577659,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503277,503276],"components":[{"id":503277,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177474,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":183,"value":-22}],"abilitySkillLevelArg":12.5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493088,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503276,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":493031,"name":"Disable","description":"A successful Flame or Plasma Arrow hit decreases the target's [SC_SKILLTIPS_MCRI_PASSIVE] for (Buff-Time-503277) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503276)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577659,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503277,503276]}}],"icon":"/assets/ui/rom-spells/577659.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-50","classId":"rom-mage","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":542114,"sourceSkillId":493265,"name":"Magic Drain","description":"Steals the target's attack power, and lowers the target's [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. It also increases your own [SC_SKILLTIPS_02] by (Buff4-0)%. Effective for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577794,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503713,503714],"components":[{"id":503713,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-2},{"type":171,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503714,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":493265,"name":"Magic Drain","description":"Steals the target's attack power, and lowers the target's [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. It also increases your own [SC_SKILLTIPS_02] by (Buff4-0)%. Effective for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577794,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503713,503714]}}],"icon":"/assets/ui/rom-spells/577794.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-60","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":60,"keyItemId":546786,"sourceSkillId":499607,"name":"Boiling Impact","description":"Increases [490256] damage and transforms your [499608] into [SC_SKILLTIPS_FLAME]. It can also be affected by [490221].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801388,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499607,"name":"Boiling Impact","description":"Increases [490256] damage and transforms your [499608] into [SC_SKILLTIPS_FLAME]. It can also be affected by [490221].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801388,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801388.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-70","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546787,"sourceSkillId":499609,"name":"Intelligence Seize","description":"Makes your [499610] cause an extra reduction of the target's [SC_SKILLTIPS_INT] and increases your [SC_SKILLTIPS_INT].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801331,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499609,"name":"Intelligence Seize","description":"Makes your [499610] cause an extra reduction of the target's [SC_SKILLTIPS_INT] and increases your [SC_SKILLTIPS_INT].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801331,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801331.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-15","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":15,"keyItemId":541904,"sourceSkillId":491594,"name":"Holy Light Strike","description":"Inflicts (DMG0) + (FixDMG-620224) x INT [SC_SKILLTIPS_LIGHT] on the target.","target":"hostile","range":15,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":575731,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620224,501972,503845],"components":[{"id":620224,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.4,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":40,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501972,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503845,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":491594,"name":"Holy Light Strike","description":"Inflicts (DMG0) + (FixDMG-620224) x INT [SC_SKILLTIPS_LIGHT] on the target.","target":"hostile","range":15,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":575731,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620224,501972,503845]}}],"icon":"/assets/ui/rom-spells/575731.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-20","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":20,"keyItemId":541934,"sourceSkillId":491347,"name":"Stars of Light","description":"The opponent is showered with exploding hexagrams of Light. For 5 seconds each second one flare explodes, dealing (DMG0) + (FixDMG-620223) x INT [SC_SKILLTIPS_LIGHT].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":2000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":575230,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620223],"components":[{"id":620223,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-25,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-25,"damagePowerSkillLevelArg":40,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":491347,"name":"Stars of Light","description":"The opponent is showered with exploding hexagrams of Light. For 5 seconds each second one flare explodes, dealing (DMG0) + (FixDMG-620223) x INT [SC_SKILLTIPS_LIGHT].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":2000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":575230,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620223]}}],"icon":"/assets/ui/rom-spells/575230.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-25","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":25,"keyItemId":541964,"sourceSkillId":491597,"name":"Enhanced Holy Light Strike","description":"Holy Light Strike now has a 30% chance to Stun the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575700,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":491597,"name":"Enhanced Holy Light Strike","description":"Holy Light Strike now has a 30% chance to Stun the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575700,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575700.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-30","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541994,"sourceSkillId":491599,"name":"Messenger of Light","description":"When activated, all damage caused by your Light based spells is increased by (Buff0-0)%. This lasts (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575727,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502034],"components":[{"id":502034,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":49,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491599,"name":"Messenger of Light","description":"When activated, all damage caused by your Light based spells is increased by (Buff0-0)%. This lasts (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575727,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502034]}}],"icon":"/assets/ui/rom-spells/575727.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-35","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":35,"keyItemId":542025,"sourceSkillId":492634,"name":"Light Charge","description":"The power of Light enters your enemy's body with a violent shock, inflicting (DMG0) + (FixDMG-620225) x INT [SC_SKILLTIPS_LIGHT] and Slowing him down by (Buff4-0)% for (Buff4-Time) seconds.\n(This skill slows the target down by a maximum of (Max-Buff0-502881)%.)\n(Players get slowed down by (Buff5-0)%.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":577009,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620225,502881,503851],"components":[{"id":620225,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":30,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":3,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502881,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10},{"type":169,"value":-10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503851,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10},{"type":169,"value":-10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492634,"name":"Light Charge","description":"The power of Light enters your enemy's body with a violent shock, inflicting (DMG0) + (FixDMG-620225) x INT [SC_SKILLTIPS_LIGHT] and Slowing him down by (Buff4-0)% for (Buff4-Time) seconds.\n(This skill slows the target down by a maximum of (Max-Buff0-502881)%.)\n(Players get slowed down by (Buff5-0)%.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":577009,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620225,502881,503851]}}],"icon":"/assets/ui/rom-spells/577009.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-40","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":40,"keyItemId":542055,"sourceSkillId":492929,"name":"Concentrated Attention","description":"Causes your Messenger of Light to increase your [SC_SKILLTIPS_MAG_HIT].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577600,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":492929,"name":"Concentrated Attention","description":"Causes your Messenger of Light to increase your [SC_SKILLTIPS_MAG_HIT].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577600,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577600.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-45","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":45,"keyItemId":542085,"sourceSkillId":493034,"name":"Light of Day","description":"When you successfully strike your opponent with Holy Light Strike or Light Charge, it instantly increases your [SC_SKILLTIPS_LIGHT] for (Buff-Time-620182) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503278)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577660,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620182,503278],"components":[{"id":620182,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":49,"value":8}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493037,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503278,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493034,"name":"Light of Day","description":"When you successfully strike your opponent with Holy Light Strike or Light Charge, it instantly increases your [SC_SKILLTIPS_LIGHT] for (Buff-Time-620182) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503278)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577660,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620182,503278]}}],"icon":"/assets/ui/rom-spells/577660.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-50","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":50,"keyItemId":542115,"sourceSkillId":493266,"name":"Energy Recovery","description":"Causes your Energy Influx to boost your [SC_SKILLTIPS_MCRI_POWER] by an additional (Buff0-503746)%. While this is in effect, each critical strike your Holy Light Strike lands will also recover (current [SC_SKILLTIPS_MP] x (DMG-506530)) + (DMG-503571) MP.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577795,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503746,506530,503571],"components":[{"id":503746,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524451,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":21,"value":2}],"abilitySkillLevelArg":8,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497727,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506530,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1048576,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":1,"fixedValue":0,"attack":{"type":1,"damagePower":1,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503571,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":15,"fixedValue":0,"attack":{"type":1,"damagePower":15,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493266,"name":"Energy Recovery","description":"Causes your Energy Influx to boost your [SC_SKILLTIPS_MCRI_POWER] by an additional (Buff0-503746)%. While this is in effect, each critical strike your Holy Light Strike lands will also recover (current [SC_SKILLTIPS_MP] x (DMG-506530)) + (DMG-503571) MP.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577795,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503746,506530,503571]}}],"icon":"/assets/ui/rom-spells/577795.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-60","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546788,"sourceSkillId":499612,"name":"Brilliance Award","description":"Reduces your [499613] chant time by half. Also increases target's [SC_SKILLTIPS_LIGHT] by 3%. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801284,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499612,"name":"Brilliance Award","description":"Reduces your [499613] chant time by half. Also increases target's [SC_SKILLTIPS_LIGHT] by 3%. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801284,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801284.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-70","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":70,"keyItemId":546789,"sourceSkillId":499614,"name":"Saint's Resilience","description":"Removes Helpless, Dizzy, Root, Slow and Fear states. (Target must be in a Root, Slow or Dizzy state for removal effect to work.) \nThis skill can be used under any state that hinders casting. Also reduces your received damage by (Buff0-0)% and lasts for (Buff0-Time) seconds. After the [499614] effect wears off, it causes an extra increase in your [SC_SKILLTIPS_MOVE]. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801332,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623214],"components":[{"id":623214,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":60},{"type":143,"value":60}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":499615,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":499614,"name":"Saint's Resilience","description":"Removes Helpless, Dizzy, Root, Slow and Fear states. (Target must be in a Root, Slow or Dizzy state for removal effect to work.) \nThis skill can be used under any state that hinders casting. Also reduces your received damage by (Buff0-0)% and lasts for (Buff0-Time) seconds. After the [499614] effect wears off, it causes an extra increase in your [SC_SKILLTIPS_MOVE]. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801332,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623214]}}],"icon":"/assets/ui/rom-spells/801332.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-15","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":15,"keyItemId":543022,"sourceSkillId":494049,"name":"Earth Surge","description":"Causes massive damage to target, but the chance of hitting the target is pretty low. Inflicts (DMG0) + (FixDMG-620236) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1.4},"source":{"imageId":579119,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620236],"components":[{"id":620236,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-140,"fixedValue":-0.6,"attack":{"type":0,"damagePower":-140,"damagePowerSkillLevelArg":30,"fixedValue":-0.6,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494049,"name":"Earth Surge","description":"Causes massive damage to target, but the chance of hitting the target is pretty low. Inflicts (DMG0) + (FixDMG-620236) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1.4},"source":{"imageId":579119,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620236]}}],"icon":"/assets/ui/rom-spells/579119.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-20","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":20,"keyItemId":543030,"sourceSkillId":494050,"name":"Absence","description":"Causes target to become absent minded, reducing [SC_SKILLTIPS_MAG_HITP] by (Buff0-0)% for (Buff0-Time) seconds.\n(When the target is a player, lowers [SC_SKILLTIPS_MAG_HITP] by (Buff1-0)% for (Buff1-Time) seconds. )\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579120,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504559,504245],"components":[{"id":504559,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":199,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504245,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":199,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494050,"name":"Absence","description":"Causes target to become absent minded, reducing [SC_SKILLTIPS_MAG_HITP] by (Buff0-0)% for (Buff0-Time) seconds.\n(When the target is a player, lowers [SC_SKILLTIPS_MAG_HITP] by (Buff1-0)% for (Buff1-Time) seconds. )\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579120,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504559,504245]}}],"icon":"/assets/ui/rom-spells/579120.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-25","classId":"rom-mage","secondaryClassId":"rom-warden","group":"passive","unlockLevel":25,"keyItemId":543038,"sourceSkillId":494051,"name":"Flame Follower","description":"The flame follower understands the flow of flame energy, reducing your Fireball cooldown by 1 second and increasing your Fireball critical rate.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579121,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494051,"name":"Flame Follower","description":"The flame follower understands the flow of flame energy, reducing your Fireball cooldown by 1 second and increasing your Fireball critical rate.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579121,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579121.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-30","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":30,"keyItemId":543046,"sourceSkillId":494330,"name":"Earth Groaning Wind Blade","description":"Combines the power of earth and wind. Slices through the air, causing the earth to resonate, inflicting (DMG4) + (FixDMG-620234) x INT [SC_SKILLTIPS_WIND] and (DMG0) + (FixDMG-620233) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":579897,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620234,620233],"components":[{"id":620234,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620233,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494330,"name":"Earth Groaning Wind Blade","description":"Combines the power of earth and wind. Slices through the air, causing the earth to resonate, inflicting (DMG4) + (FixDMG-620234) x INT [SC_SKILLTIPS_WIND] and (DMG0) + (FixDMG-620233) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":579897,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620234,620233]}}],"icon":"/assets/ui/rom-spells/579897.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-35","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":35,"keyItemId":543054,"sourceSkillId":494562,"name":"Earth Scepter","description":"Your done magical Earth damage is increased by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579898,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504913],"components":[{"id":504913,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":45,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494562,"name":"Earth Scepter","description":"Your done magical Earth damage is increased by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579898,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504913]}}],"icon":"/assets/ui/rom-spells/579898.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-40","classId":"rom-mage","secondaryClassId":"rom-warden","group":"passive","unlockLevel":40,"keyItemId":543062,"sourceSkillId":494563,"name":"Feedback","description":"A successful hit of your Earth Groaning Wind Blade has a chance of restoring MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579899,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":494563,"name":"Feedback","description":"A successful hit of your Earth Groaning Wind Blade has a chance of restoring MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579899,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579899.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-45","classId":"rom-mage","secondaryClassId":"rom-warden","group":"passive","unlockLevel":45,"keyItemId":543070,"sourceSkillId":850318,"name":"Elves' Favor","description":"When you use Elven Amulet, any attack damage received while the effect lasts may cause your next spell casting time to be 1 second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581110,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":850318,"name":"Elves' Favor","description":"When you use Elven Amulet, any attack damage received while the effect lasts may cause your next spell casting time to be 1 second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581110,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581110.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-50","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543078,"sourceSkillId":494926,"name":"Earth Marking","description":"Earth Markings branded on your body will increase your chance to inflict critical damage with magic attacks by (Buff0-0) for (Buff0-Time) seconds. When using earth spells this chance will be additionally increased by another (Buff0-505904) points. This effect can be stacked up to 10 times.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":100,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581111,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505690,505904],"components":[{"id":505690,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505904,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":40}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494926,"name":"Earth Marking","description":"Earth Markings branded on your body will increase your chance to inflict critical damage with magic attacks by (Buff0-0) for (Buff0-Time) seconds. When using earth spells this chance will be additionally increased by another (Buff0-505904) points. This effect can be stacked up to 10 times.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":100,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581111,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505690,505904]}}],"icon":"/assets/ui/rom-spells/581111.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-60","classId":"rom-mage","secondaryClassId":"rom-warden","group":"passive","unlockLevel":60,"keyItemId":546790,"sourceSkillId":499617,"name":"Follower's Ground","description":"While [494562] is in effect, this provides an extra increase in your [SC_SKILLTIPS_INT] and [SC_SKILLTIPS_STA]. Also your [494050] will cause an additional increase in the [SC_SKILLTIPS_EARTH] received by the target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801285,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499617,"name":"Follower's Ground","description":"While [494562] is in effect, this provides an extra increase in your [SC_SKILLTIPS_INT] and [SC_SKILLTIPS_STA]. Also your [494050] will cause an additional increase in the [SC_SKILLTIPS_EARTH] received by the target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801285,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801285.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-70","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":70,"keyItemId":546791,"sourceSkillId":499620,"name":"Earth Core Barrier","description":"Reduces your received damage by (Buff0-0)%. Also all spells are transformed to instant spells. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801333,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623219],"components":[{"id":623219,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,524288],"abilityModifiers":[{"type":142,"value":60},{"type":143,"value":60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499620,"name":"Earth Core Barrier","description":"Reduces your received damage by (Buff0-0)%. Also all spells are transformed to instant spells. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801333,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623219]}}],"icon":"/assets/ui/rom-spells/801333.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-15","classId":"rom-mage","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543023,"sourceSkillId":494052,"name":"Perception","description":"Temporarily increases [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-1)% + (Buff0-0). Also increases [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-1)) x (Buff4-0)% + (Buff0-1) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579122,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504561,506234],"components":[{"id":504561,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":30},{"type":15,"value":20}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495284,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506234,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":1},{"type":168,"value":1}],"abilitySkillLevelArg":7,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494052,"name":"Perception","description":"Temporarily increases [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-1)% + (Buff0-0). Also increases [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-1)) x (Buff4-0)% + (Buff0-1) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579122,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504561,506234]}}],"icon":"/assets/ui/rom-spells/579122.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-20","classId":"rom-mage","secondaryClassId":"rom-druid","group":"elite","unlockLevel":20,"keyItemId":543031,"sourceSkillId":494053,"name":"Magic Target","description":"Temporarily increases your magic accuracy by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579123,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504562],"components":[{"id":504562,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":195,"value":10}],"abilitySkillLevelArg":10.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":494053,"name":"Magic Target","description":"Temporarily increases your magic accuracy by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579123,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504562]}}],"icon":"/assets/ui/rom-spells/579123.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-25","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":25,"keyItemId":543039,"sourceSkillId":494054,"name":"Control Flame","description":"When your Eruption effect is triggered, [SC_SKILLTIPS_02] additionally increases by (Buff0-504563)% .\n([SC_SKILLTIPS_CD_1](Buff-Time-504869)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579124,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504563,504869],"components":[{"id":504563,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":8}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494078,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504869,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494054,"name":"Control Flame","description":"When your Eruption effect is triggered, [SC_SKILLTIPS_02] additionally increases by (Buff0-504563)% .\n([SC_SKILLTIPS_CD_1](Buff-Time-504869)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579124,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504563,504869]}}],"icon":"/assets/ui/rom-spells/579124.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-30","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":30,"keyItemId":543047,"sourceSkillId":494331,"name":"Green Guardian","description":"After Mother Earth's Protection effect ends, additionally restores (Buff-Dot-620188)% + (Buff-Dot-504874) HP every 2 seconds for (Buff-Time-504874) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579900,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620188,504874],"components":[{"id":620188,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":8297,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":5,"dotBase":2,"dot":{"timeSeconds":2,"type":5,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504874,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":8299,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":30,"dot":{"timeSeconds":2,"type":0,"base":30,"skillLevelArg":30},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494331,"name":"Green Guardian","description":"After Mother Earth's Protection effect ends, additionally restores (Buff-Dot-620188)% + (Buff-Dot-504874) HP every 2 seconds for (Buff-Time-504874) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579900,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620188,504874]}}],"icon":"/assets/ui/rom-spells/579900.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-35","classId":"rom-mage","secondaryClassId":"rom-druid","group":"elite","unlockLevel":35,"keyItemId":543055,"sourceSkillId":494564,"name":"Magma Blade","description":"Forms the power of earth and fire into a blade dealing (DMG0) + (FixDMG-620227) x INT [SC_SKILLTIPS_FLAME] and (DMG4) + (FixDMG-620228) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":579901,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620227,620228],"components":[{"id":620227,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.15,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.15,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620228,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":-0.15,"attack":{"type":0,"damagePower":-10,"damagePowerSkillLevelArg":30,"fixedValue":-0.15,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":494564,"name":"Magma Blade","description":"Forms the power of earth and fire into a blade dealing (DMG0) + (FixDMG-620227) x INT [SC_SKILLTIPS_FLAME] and (DMG4) + (FixDMG-620228) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":579901,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620227,620228]}}],"icon":"/assets/ui/rom-spells/579901.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-40","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":40,"keyItemId":543063,"sourceSkillId":494565,"name":"Boiling Rock","description":"The critical hit rate for your [494564|Magma Blade's] Fire damage is increased and its Earth damage has a chance of restoring MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579902,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494565,"name":"Boiling Rock","description":"The critical hit rate for your [494564|Magma Blade's] Fire damage is increased and its Earth damage has a chance of restoring MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579902,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579902.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-45","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":45,"keyItemId":543071,"sourceSkillId":494927,"name":"Earth Attack","description":"Causes the damage range of Earth Pulse to become fan-shaped and reduces cooldown by 5 seconds. When it hits, it will increase earth damage inflicted on the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581112,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494927,"name":"Earth Attack","description":"Causes the damage range of Earth Pulse to become fan-shaped and reduces cooldown by 5 seconds. When it hits, it will increase earth damage inflicted on the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581112,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581112.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-50","classId":"rom-mage","secondaryClassId":"rom-druid","group":"elite","unlockLevel":50,"keyItemId":543079,"sourceSkillId":494928,"name":"Elven Mystic","description":"Using ancient Elven magic lets you concentrate magical energy inside your body for (Buff0-Time) seconds. While in effect casting offensive spells will give you the chance to get Energetically Charged. When this effect stacks 5 times, further casting of offensive spells will give you the chance of receiving Mystic Energy. Mystic Energy can be released to inflict (DMG-620231) + (FixDMG-620231) x INT [SC_SKILLTIPS_WIND] on your target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":3.5},"source":{"imageId":581155,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505914,505913,620231],"components":[{"id":505914,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505913,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"clearFlags":4096,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495070,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620231,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-700,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-700,"damagePowerSkillLevelArg":5,"fixedValue":-0.2,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":494928,"name":"Elven Mystic","description":"Using ancient Elven magic lets you concentrate magical energy inside your body for (Buff0-Time) seconds. While in effect casting offensive spells will give you the chance to get Energetically Charged. When this effect stacks 5 times, further casting of offensive spells will give you the chance of receiving Mystic Energy. Mystic Energy can be released to inflict (DMG-620231) + (FixDMG-620231) x INT [SC_SKILLTIPS_WIND] on your target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":3.5},"source":{"imageId":581155,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505914,505913,620231]}}],"icon":"/assets/ui/rom-spells/581155.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-60","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546792,"sourceSkillId":499621,"name":"Infiltration Spirit","description":"After a target is hit by your [499622], it causes an additional reduction of the target's [SC_SKILLTIPS_MDEF].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801286,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499621,"name":"Infiltration Spirit","description":"After a target is hit by your [499622], it causes an additional reduction of the target's [SC_SKILLTIPS_MDEF].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801286,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801286.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-70","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":70,"keyItemId":546793,"sourceSkillId":499623,"name":"Pulse Link","description":"You will receive [499624] as well when you use [499624] on a target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801334,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499623,"name":"Pulse Link","description":"You will receive [499624] as well when you use [499624] on a target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801334,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801334.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-15","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":15,"keyItemId":545992,"sourceSkillId":498744,"name":"Static Resonance","description":"Immediately resets the cooldown time for Electrostatic Charge.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800136,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621500],"components":[{"id":621500,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498744,"name":"Static Resonance","description":"Immediately resets the cooldown time for Electrostatic Charge.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800136,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621500]}}],"icon":"/assets/ui/rom-spells/800136.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-20","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":20,"keyItemId":545993,"sourceSkillId":498745,"name":"Industry Fire","description":"Increases damage dealt by Soul Pain and transforms it into fire damage. Also inflicts extra fire damage when used.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800137,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498745,"name":"Industry Fire","description":"Increases damage dealt by Soul Pain and transforms it into fire damage. Also inflicts extra fire damage when used.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800137,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800137.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-25","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":25,"keyItemId":545994,"sourceSkillId":498748,"name":"Lightning Display","description":"Increases the effective time of [621505] caused by the Plasma Arrow to (Buff-Time-621505) seconds and increases your [SC_SKILLTIPS_WIND].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800138,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621505],"components":[{"id":621505,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":18,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":96,"abilityModifiers":[{"type":20,"value":20},{"type":48,"value":1}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498748,"name":"Lightning Display","description":"Increases the effective time of [621505] caused by the Plasma Arrow to (Buff-Time-621505) seconds and increases your [SC_SKILLTIPS_WIND].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800138,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621505]}}],"icon":"/assets/ui/rom-spells/800138.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-30","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":30,"keyItemId":545995,"sourceSkillId":498750,"name":"Breath Erase","description":"Aggro is reduced by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800139,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621506],"components":[{"id":621506,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":138,"value":-10}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498750,"name":"Breath Erase","description":"Aggro is reduced by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800139,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621506]}}],"icon":"/assets/ui/rom-spells/800139.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-35","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":35,"keyItemId":545996,"sourceSkillId":498751,"name":"Elements of Pride","description":"You will receive [621508] effect when Flame is used, increasing the [SC_SKILLTIPS_WIND]. You will receive [621507] effect when Electric Explosion is used, increasing the [SC_SKILLTIPS_FLAME]. These effects can be stacked individually up to 2 times. The effects last (Buff-Time-621507) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800140,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621508,621507],"components":[{"id":621508,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":13,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":48,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621507,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":13,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":47,"value":1}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498751,"name":"Elements of Pride","description":"You will receive [621508] effect when Flame is used, increasing the [SC_SKILLTIPS_WIND]. You will receive [621507] effect when Electric Explosion is used, increasing the [SC_SKILLTIPS_FLAME]. These effects can be stacked individually up to 2 times. The effects last (Buff-Time-621507) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800140,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621508,621507]}}],"icon":"/assets/ui/rom-spells/800140.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-40","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":40,"keyItemId":545997,"sourceSkillId":498757,"name":"Soul Stepping","description":"For (Buff0-Time) seconds, allows you to move while casting any spell. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800141,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623434,621509],"components":[{"id":623434,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilityModifiers":[{"type":24,"value":20},{"type":51,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621509,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498757,"name":"Soul Stepping","description":"For (Buff0-Time) seconds, allows you to move while casting any spell. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800141,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623434,621509]}}],"icon":"/assets/ui/rom-spells/800141.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-45","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":45,"keyItemId":545998,"sourceSkillId":498758,"name":"Deep Inspiration","description":"Immediately resets the cooldown time for Intensification and Energy Well.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800142,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621510],"components":[{"id":621510,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":498758,"name":"Deep Inspiration","description":"Immediately resets the cooldown time for Intensification and Energy Well.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800142,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621510]}}],"icon":"/assets/ui/rom-spells/800142.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-50","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":545999,"sourceSkillId":498759,"name":"Fire Lightning Burst","description":"Inflicts (DMG0) + (FixDMG-621511) x INT [SC_SKILLTIPS_FLAME] and (DMG4) + (FixDMG-621512) x INT [SC_SKILLTIPS_WIND] on target. If the target doesn't die during this attack, then the skill's cooldown time is immediately reset. \n([SC_SKILLTIPS_CD_1](Buff-Time-621514)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":7000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":800143,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621511,621512,621514],"components":[{"id":621511,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-60,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621512,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-60,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621514,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498759,"name":"Fire Lightning Burst","description":"Inflicts (DMG0) + (FixDMG-621511) x INT [SC_SKILLTIPS_FLAME] and (DMG4) + (FixDMG-621512) x INT [SC_SKILLTIPS_WIND] on target. If the target doesn't die during this attack, then the skill's cooldown time is immediately reset. \n([SC_SKILLTIPS_CD_1](Buff-Time-621514)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":7000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":800143,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621511,621512,621514]}}],"icon":"/assets/ui/rom-spells/800143.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-60","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":60,"keyItemId":546794,"sourceSkillId":499813,"name":"Soul Speed","description":"Causes [498757] to additionally increase [SC_SKILLTIPS_MOVE] by (Buff0-623434)% and [SC_SKILLTIPS_CAST] by (Buff0-623434)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801622,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623434],"components":[{"id":623434,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilityModifiers":[{"type":24,"value":20},{"type":51,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":499813,"name":"Soul Speed","description":"Causes [498757] to additionally increase [SC_SKILLTIPS_MOVE] by (Buff0-623434)% and [SC_SKILLTIPS_CAST] by (Buff0-623434)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801622,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623434]}}],"icon":"/assets/ui/rom-spells/801622.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-70","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":70,"keyItemId":546796,"sourceSkillId":499814,"name":"Elemental Extraction","description":"When critically hit by [499812] or [491170], the target's [SC_SKILLTIPS_DEF] will be reduced by (Buff0-623436)% and [SC_SKILLTIPS_MDEF] by (Buff1-623436)% for (Buff-Time-623436) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801623,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623436],"components":[{"id":623436,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":-30},{"type":170,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499814,"name":"Elemental Extraction","description":"When critically hit by [499812] or [491170], the target's [SC_SKILLTIPS_DEF] will be reduced by (Buff0-623436)% and [SC_SKILLTIPS_MDEF] by (Buff1-623436)% for (Buff-Time-623436) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801623,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623436]}}],"icon":"/assets/ui/rom-spells/801623.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-15","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":541905,"sourceSkillId":491600,"name":"Battle Monk Stance","description":"When the stance is activated, [SC_SKILLTIPS_01] will be increased by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff0-506388)% + (Buff0-0), and [SC_SKILLTIPS_DEF] will be increased by (Buff0-507324)%, but healing ability will be reduced by (Buff0-506386)%. The stance is effective for(Buff0-Time) seconds. (This skill increases defense by a maximum of (Max-Buff0-507324)% and reduces healing ability by a maximum of(Max-Buff0-506386)%).","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575718,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501977,507325,506388,507324,506386],"components":[{"id":501977,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":12,"value":30}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495280,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507325,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506388,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":2}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507324,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":10}],"abilitySkillLevelArg":9.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506386,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":-3}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491600,"name":"Battle Monk Stance","description":"When the stance is activated, [SC_SKILLTIPS_01] will be increased by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff0-506388)% + (Buff0-0), and [SC_SKILLTIPS_DEF] will be increased by (Buff0-507324)%, but healing ability will be reduced by (Buff0-506386)%. The stance is effective for(Buff0-Time) seconds. (This skill increases defense by a maximum of (Max-Buff0-507324)% and reduces healing ability by a maximum of(Max-Buff0-506386)%).","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575718,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501977,507325,506388,507324,506386]}}],"icon":"/assets/ui/rom-spells/575718.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-20","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":20,"keyItemId":541935,"sourceSkillId":491362,"name":"Explosion of Fighting Spirit","description":"Mana is converted into fighting spirit to attack the target and inflict (DMG0) main hand weapon DPS. \n(Requires the Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575233,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501789],"components":[{"id":501789,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":491362,"name":"Explosion of Fighting Spirit","description":"Mana is converted into fighting spirit to attack the target and inflict (DMG0) main hand weapon DPS. \n(Requires the Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575233,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501789]}}],"icon":"/assets/ui/rom-spells/575233.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-25","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":25,"keyItemId":541965,"sourceSkillId":491363,"name":"Fighting Spirit Combination","description":"Releases two successive bursts of fighting spirit, that cause (DMG0) main hand weapon DPS. \n(Requires Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575234,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501790],"components":[{"id":501790,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":491363,"name":"Fighting Spirit Combination","description":"Releases two successive bursts of fighting spirit, that cause (DMG0) main hand weapon DPS. \n(Requires Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575234,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501790]}}],"icon":"/assets/ui/rom-spells/575234.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-30","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":541995,"sourceSkillId":491364,"name":"Ascending Dragon Strike","description":"Transforms rage into a dragon-like form inflicting (DMG0) main hand weapon DPS. \n(Requires Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575235,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501791],"components":[{"id":501791,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.8,"fixedValue":0,"attack":{"type":0,"damagePower":-1.8,"damagePowerSkillLevelArg":4,"fixedValue":0,"fixedType":1,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":491364,"name":"Ascending Dragon Strike","description":"Transforms rage into a dragon-like form inflicting (DMG0) main hand weapon DPS. \n(Requires Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575235,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501791]}}],"icon":"/assets/ui/rom-spells/575235.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-35","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542026,"sourceSkillId":492635,"name":"Power Build-Up","description":"Converts Mana into fighting spirit, which accumulates in you. Increases for (Buff0-Time) seconds your 1-H Weapon Damage by (Buff0-1)%, 2-H Staff Damage by (Buff0-3)%, and your maximum HP by (Buff0-0)%.\n(Requires the Battle Monk Stance.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577010,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502904],"components":[{"id":502904,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1},{"type":61,"value":3},{"type":62,"value":3},{"type":64,"value":2}],"abilitySkillLevelArg":28,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":492635,"name":"Power Build-Up","description":"Converts Mana into fighting spirit, which accumulates in you. Increases for (Buff0-Time) seconds your 1-H Weapon Damage by (Buff0-1)%, 2-H Staff Damage by (Buff0-3)%, and your maximum HP by (Buff0-0)%.\n(Requires the Battle Monk Stance.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577010,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502904]}}],"icon":"/assets/ui/rom-spells/577010.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-40","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":542056,"sourceSkillId":492930,"name":"Vindictive Strike","description":"Inflicts (DMG0) DPS on the target, and Stuns it for (Buff4-Time) seconds.","target":"hostile","range":7,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":3},"source":{"imageId":577601,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503193,503194,503855,502719],"components":[{"id":503193,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-300,"fixedValue":0,"attack":{"type":0,"damagePower":-300,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503194,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777331,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503855,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777331,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492930,"name":"Vindictive Strike","description":"Inflicts (DMG0) DPS on the target, and Stuns it for (Buff4-Time) seconds.","target":"hostile","range":7,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":3},"source":{"imageId":577601,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503193,503194,503855,502719]}}],"icon":"/assets/ui/rom-spells/577601.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-45","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":45,"keyItemId":542086,"sourceSkillId":493038,"name":"Condensed Rage","description":"Instantly lets you enter Condensed Rage state for (Buff0-Time) seconds. When attacked in this state you recover (Buff-Dot-503301) HP.\n(Requires [491600])\n(After the effect has ended it cannot be triggered again for (Buff-Time-506323) seconds.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577661,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503280,503301,506323],"components":[{"id":503280,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":107,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":493056,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503301,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":137,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495293,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":0,"dotBase":50,"dot":{"timeSeconds":1,"type":0,"base":50,"skillLevelArg":20},"attackType":0,"damagePower":50,"fixedValue":0,"summonCreatureId":0},{"id":506323,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":65,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":493038,"name":"Condensed Rage","description":"Instantly lets you enter Condensed Rage state for (Buff0-Time) seconds. When attacked in this state you recover (Buff-Dot-503301) HP.\n(Requires [491600])\n(After the effect has ended it cannot be triggered again for (Buff-Time-506323) seconds.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577661,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503280,503301,506323]}}],"icon":"/assets/ui/rom-spells/577661.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-50","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":50,"keyItemId":542116,"sourceSkillId":493267,"name":"Fire Fairy","description":"Summons a fire fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102104},"source":{"imageId":577786,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503164],"components":[{"id":503164,"magicFunc":3,"magicType":2,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"summonCreatureId":102104,"summon":{"creatureId":102104,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":493267,"name":"Fire Fairy","description":"Summons a fire fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102104},"source":{"imageId":577786,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503164]}}],"icon":"/assets/ui/rom-spells/577786.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-60","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546799,"sourceSkillId":499984,"name":"Light Healer Fighting Spirit","description":"When [622997] hits a target, it can recover the caster's HP.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801287,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622997],"components":[{"id":622997,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499984,"name":"Light Healer Fighting Spirit","description":"When [622997] hits a target, it can recover the caster's HP.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801287,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622997]}}],"icon":"/assets/ui/rom-spells/801287.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-70","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546800,"sourceSkillId":499982,"name":"Violent Kick","description":"When [493277] is in effect, [501791] carries a Stun effect and when this effect wears off, a Slow effect is invoked.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801335,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501791],"components":[{"id":501791,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.8,"fixedValue":0,"attack":{"type":0,"damagePower":-1.8,"damagePowerSkillLevelArg":4,"fixedValue":0,"fixedType":1,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499982,"name":"Violent Kick","description":"When [493277] is in effect, [501791] carries a Stun effect and when this effect wears off, a Slow effect is invoked.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801335,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501791]}}],"icon":"/assets/ui/rom-spells/801335.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-15","classId":"rom-priest","secondaryClassId":"rom-champion","group":"passive","unlockLevel":15,"keyItemId":546031,"sourceSkillId":498610,"name":"Infused Light Chain","description":"Increases damage caused by Chain of Light and doesn't require cooldown time. Hits can carry an extra addition of rage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800176,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498610,"name":"Infused Light Chain","description":"Increases damage caused by Chain of Light and doesn't require cooldown time. Hits can carry an extra addition of rage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800176,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800176.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-20","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":546032,"sourceSkillId":498612,"name":"Heart Rune Energy","description":"Restores (DMG1) HP to friendly targets. Also increases caster's [SC_SKILLTIPS_MND] by (Buff4-0)% for (Buff4-Time) seconds.","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":800177,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621152,621546,621547],"components":[{"id":621152,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0.4,"attack":{"type":0,"damagePower":70,"damagePowerSkillLevelArg":20,"fixedValue":0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":621546,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":35,"fixedValue":0.2,"attack":{"type":0,"damagePower":35,"damagePowerSkillLevelArg":20,"fixedValue":0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":621547,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":7,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":164,"value":2}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498612,"name":"Heart Rune Energy","description":"Restores (DMG1) HP to friendly targets. Also increases caster's [SC_SKILLTIPS_MND] by (Buff4-0)% for (Buff4-Time) seconds.","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":800177,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621152,621546,621547]}}],"icon":"/assets/ui/rom-spells/800177.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-25","classId":"rom-priest","secondaryClassId":"rom-champion","group":"passive","unlockLevel":25,"keyItemId":546033,"sourceSkillId":498613,"name":"Protection Rune Seal","description":"Increases Regeneration's healing effect and carries an 8% chance to immediately reset the cooldown time of Heart Rune Energy every time Regeneration is invoked.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800178,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498613,"name":"Protection Rune Seal","description":"Increases Regeneration's healing effect and carries an 8% chance to immediately reset the cooldown time of Heart Rune Energy every time Regeneration is invoked.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800178,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800178.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-30","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":30,"keyItemId":546034,"sourceSkillId":498615,"name":"Healing Diamond Light","description":"Converts (Buff0-Dot)% MP to Diamond Light every second while in effect. Also recovers (DMG-621551) + (FixDMG-621551) x INT HP for all party members in contact in a range of 120. \n(This state ends when MP has been exhausted.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":29,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.35},"source":{"imageId":800179,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621550,621551],"components":[{"id":621550,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":111,"specialActionFlags":0,"assistType":-1,"clearFlags":2080,"abilityModifiers":[{"type":0,"value":8}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":498616,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":6,"dotBase":-7,"dot":{"timeSeconds":1,"type":6,"base":-7,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621551,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":35,"fixedValue":0.1,"attack":{"type":0,"damagePower":35,"damagePowerSkillLevelArg":12,"fixedValue":0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498615,"name":"Healing Diamond Light","description":"Converts (Buff0-Dot)% MP to Diamond Light every second while in effect. Also recovers (DMG-621551) + (FixDMG-621551) x INT HP for all party members in contact in a range of 120. \n(This state ends when MP has been exhausted.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":29,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.35},"source":{"imageId":800179,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621550,621551]}}],"icon":"/assets/ui/rom-spells/800179.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-35","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":35,"keyItemId":546035,"sourceSkillId":498617,"name":"Diamond Light Activation","description":"Immediately recovers (DMG4) MP and increases amount of healing by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800180,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621151,621150],"components":[{"id":621151,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"clearFlags":2048,"abilityModifiers":[{"type":149,"value":4}],"abilitySkillLevelArg":15,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621150,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":33,"fixedValue":0,"attack":{"type":1,"damagePower":33,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498617,"name":"Diamond Light Activation","description":"Immediately recovers (DMG4) MP and increases amount of healing by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800180,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621151,621150]}}],"icon":"/assets/ui/rom-spells/800180.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-40","classId":"rom-priest","secondaryClassId":"rom-champion","group":"passive","unlockLevel":40,"keyItemId":546036,"sourceSkillId":498618,"name":"Quick Heal","description":"Increases the amount of HP restored by Heart Rune Energy when current target's HP falls below 40%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800181,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498618,"name":"Quick Heal","description":"Increases the amount of HP restored by Heart Rune Energy when current target's HP falls below 40%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800181,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800181.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-45","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":45,"keyItemId":546037,"sourceSkillId":498619,"name":"Rune Footstep","description":"Increases [SC_SKILLTIPS_MOVE] by (Buff0-0)% and [SC_SKILLTIPS_HEAL] by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800182,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621552],"components":[{"id":621552,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10},{"type":149,"value":5}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498619,"name":"Rune Footstep","description":"Increases [SC_SKILLTIPS_MOVE] by (Buff0-0)% and [SC_SKILLTIPS_HEAL] by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800182,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621552]}}],"icon":"/assets/ui/rom-spells/800182.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-50","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":50,"keyItemId":546038,"sourceSkillId":498620,"name":"Beacon of Regeneration","description":"After a beacon has been created on a friendly party member, it will restore (DMG-621227) points of this member's HP every time you invoke a healing effect. \n(Beacon of Regeneration lasts for (Buff0-Time) seconds.)","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":29,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800183,"sourceEffectType":0,"sourceTarget":1,"componentIds":[620489,620490,621227],"components":[{"id":620489,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":0,"value":10},{"type":0,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620490,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":524481,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":0,"value":10},{"type":0,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621227,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":35,"dot":{"timeSeconds":1,"type":0,"base":35,"skillLevelArg":30},"attackType":0,"damagePower":35,"fixedValue":0.2,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498620,"name":"Beacon of Regeneration","description":"After a beacon has been created on a friendly party member, it will restore (DMG-621227) points of this member's HP every time you invoke a healing effect. \n(Beacon of Regeneration lasts for (Buff0-Time) seconds.)","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":29,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800183,"sourceEffectType":0,"sourceTarget":1,"componentIds":[620489,620490,621227]}}],"icon":"/assets/ui/rom-spells/800183.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-60","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":60,"keyItemId":546811,"sourceSkillId":498625,"name":"Tower of Vitality","description":"Creates a tower that increases the attributes of friendly targets within range by (Buff0-622051)% for 20 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":6,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801628,"sourceEffectType":0,"sourceTarget":0,"componentIds":[622047,622051],"components":[{"id":622047,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622051,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":166,"value":6}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":498625,"name":"Tower of Vitality","description":"Creates a tower that increases the attributes of friendly targets within range by (Buff0-622051)% for 20 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":6,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801628,"sourceEffectType":0,"sourceTarget":0,"componentIds":[622047,622051]}}],"icon":"/assets/ui/rom-spells/801628.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-70","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":70,"keyItemId":546812,"sourceSkillId":498626,"name":"Light Connection","description":"Creates a shield on a target party member that reduces damage taken by (Buff1-623068)% and increases the target's and caster's [SC_SKILLTIPS_MOVE] by (Buff0-623068)%.\n(Cannot be cast on yourself.)","target":"friendly","range":21.700000000000003,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801629,"sourceEffectType":0,"sourceTarget":1,"componentIds":[622994,623068],"components":[{"id":622994,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":268435456,"specialActionFlags":8,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623068,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":5},{"type":206,"value":-5},{"type":207,"value":-5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":498626,"name":"Light Connection","description":"Creates a shield on a target party member that reduces damage taken by (Buff1-623068)% and increases the target's and caster's [SC_SKILLTIPS_MOVE] by (Buff0-623068)%.\n(Cannot be cast on yourself.)","target":"friendly","range":21.700000000000003,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801629,"sourceEffectType":0,"sourceTarget":1,"componentIds":[622994,623068]}}],"icon":"/assets/ui/rom-spells/801629.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-15","classId":"rom-priest","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":541906,"sourceSkillId":491323,"name":"Embrace of the Water Spirit","description":"Beseeches the Water Spirits for their blessing, and raises your and your party members' [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501778,506321],"components":[{"id":501778,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":15,"value":20}],"abilitySkillLevelArg":40,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495292,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506321,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491323,"name":"Embrace of the Water Spirit","description":"Beseeches the Water Spirits for their blessing, and raises your and your party members' [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501778,506321]}}],"icon":"/assets/ui/rom-spells/575261.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-20","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":541936,"sourceSkillId":492396,"name":"Throat Stab","description":"Increase the range of Throat Attack","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575264,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":492396,"name":"Throat Stab","description":"Increase the range of Throat Attack","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575264,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575264.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-25","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":25,"keyItemId":541966,"sourceSkillId":492357,"name":"Enhanced Wave Armor","description":"Your Wave Armor now also increases defense.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575714,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":492357,"name":"Enhanced Wave Armor","description":"Your Wave Armor now also increases defense.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575714,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575714.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-30","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":30,"keyItemId":541996,"sourceSkillId":492398,"name":"Tide Control","description":"Rising Tide now additionaly causes ranged weapon damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575265,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":492398,"name":"Tide Control","description":"Rising Tide now additionaly causes ranged weapon damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575265,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575265.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-35","classId":"rom-priest","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":542027,"sourceSkillId":492636,"name":"Curing Shot","description":"Shoots an arrow filled with the power of Light on 5 friendly targets within reach, healing them for (DMG0) HP and additionally restores (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":12000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":577011,"sourceEffectType":0,"sourceTarget":16,"componentIds":[502905,502914],"components":[{"id":502905,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":20,"fixedValue":0,"attack":{"type":0,"damagePower":20,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502914,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":10,"dot":{"timeSeconds":2,"type":0,"base":10,"skillLevelArg":15},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":492636,"name":"Curing Shot","description":"Shoots an arrow filled with the power of Light on 5 friendly targets within reach, healing them for (DMG0) HP and additionally restores (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":12000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":577011,"sourceEffectType":0,"sourceTarget":16,"componentIds":[502905,502914]}}],"icon":"/assets/ui/rom-spells/577011.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-40","classId":"rom-priest","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":542057,"sourceSkillId":490070,"name":"Ice Blade","description":"Turns magic into a knife blade to attack the target, causing (DMG0) [SC_SKILLTIPS_WATER].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":577602,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620410],"components":[{"id":620410,"magicFunc":0,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-25,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-25,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":490070,"name":"Ice Blade","description":"Turns magic into a knife blade to attack the target, causing (DMG0) [SC_SKILLTIPS_WATER].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":577602,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620410]}}],"icon":"/assets/ui/rom-spells/577602.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-45","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":542087,"sourceSkillId":493039,"name":"Saint's Blessing","description":"When you cast a Heal on a friendly target whose HP is lower than 30%, the healing effect will be additionally enhanced by (Buff0-503283) + (Buff0-620406)%.","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577662,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503283,620406],"components":[{"id":503283,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":81920,"abilityModifiers":[{"type":150,"value":30}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"summonCreatureId":0},{"id":620406,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":81920,"abilityModifiers":[{"type":149,"value":1}],"abilitySkillLevelArg":19,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":493039,"name":"Saint's Blessing","description":"When you cast a Heal on a friendly target whose HP is lower than 30%, the healing effect will be additionally enhanced by (Buff0-503283) + (Buff0-620406)%.","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577662,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503283,620406]}}],"icon":"/assets/ui/rom-spells/577662.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-50","classId":"rom-priest","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":542117,"sourceSkillId":493268,"name":"Water Fairy","description":"Summons a water fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102105},"source":{"imageId":577787,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503456],"components":[{"id":503456,"magicFunc":3,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102105,"summon":{"creatureId":102105,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493268,"name":"Water Fairy","description":"Summons a water fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102105},"source":{"imageId":577787,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503456]}}],"icon":"/assets/ui/rom-spells/577787.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-60","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546801,"sourceSkillId":499980,"name":"Area of Light Chain","description":"When [499979] hits, it recovers the HP of all party members within an area of 60.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801288,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499980,"name":"Area of Light Chain","description":"When [499979] hits, it recovers the HP of all party members within an area of 60.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801288,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801288.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-70","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546802,"sourceSkillId":499978,"name":"Waterstop Curse","description":"When [493278] is in effect, casting [499977] has a chance to reset the cooldown time of [492636].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801336,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499978,"name":"Waterstop Curse","description":"When [493278] is in effect, casting [499977] has a chance to reset the cooldown time of [492636].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801336,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801336.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-15","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":541907,"sourceSkillId":492403,"name":"Snake Curse","description":"Your curse inflicts (Buff0-Dot) points of Dark damage every 2 seconds for (Buff0-Time) seconds on your target.","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575708,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502663],"components":[{"id":502663,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":26},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":492403,"name":"Snake Curse","description":"Your curse inflicts (Buff0-Dot) points of Dark damage every 2 seconds for (Buff0-Time) seconds on your target.","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575708,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502663]}}],"icon":"/assets/ui/rom-spells/575708.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-20","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":541937,"sourceSkillId":492402,"name":"Infectious Wound","description":"Infects target's wounds, causing (DMG0) points of [SC_SKILLTIPS_DARK] and lowers the effectiveness of heals received by the target by (Buff4-0)%. Lasts (Buff4-Time) seconds.\n(This skill lowers the effectiveness of heals received by the target by a maximum of (Max-Buff0-502006)%.)\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575552,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620412,502006,504251],"components":[{"id":620412,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8256,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":25,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502006,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504251,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":492402,"name":"Infectious Wound","description":"Infects target's wounds, causing (DMG0) points of [SC_SKILLTIPS_DARK] and lowers the effectiveness of heals received by the target by (Buff4-0)%. Lasts (Buff4-Time) seconds.\n(This skill lowers the effectiveness of heals received by the target by a maximum of (Max-Buff0-502006)%.)\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575552,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620412,502006,504251]}}],"icon":"/assets/ui/rom-spells/575552.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-25","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":541967,"sourceSkillId":492400,"name":"Quick Spellcasting","description":"Uses your Nimble Hands for greatly increased spell casting speed.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575551,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":492400,"name":"Quick Spellcasting","description":"Uses your Nimble Hands for greatly increased spell casting speed.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575551,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575551.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-30","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":541997,"sourceSkillId":492360,"name":"Purge","description":"Removes all beneficial effects on target.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575249,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502549],"components":[{"id":502549,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":492360,"name":"Purge","description":"Removes all beneficial effects on target.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575249,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502549]}}],"icon":"/assets/ui/rom-spells/575249.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-35","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542028,"sourceSkillId":492637,"name":"Lure of the Snake Woman","description":"Lures the target into a poisoned dreamland for (Buff-Time-502906) seconds. Inflicts (Buff0-Dot) Dark damage every 2 seconds for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":45000,"costs":[{"resource":"energy","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577012,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502882,502906,503865],"components":[{"id":502882,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-10,"dot":{"timeSeconds":2,"type":0,"base":-10,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502906,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":43,"effectFlagWords":[33554547,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":492646,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503865,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":43,"effectFlagWords":[33554547,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":492646,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":492637,"name":"Lure of the Snake Woman","description":"Lures the target into a poisoned dreamland for (Buff-Time-502906) seconds. Inflicts (Buff0-Dot) Dark damage every 2 seconds for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":45000,"costs":[{"resource":"energy","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577012,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502882,502906,503865]}}],"icon":"/assets/ui/rom-spells/577012.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-40","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":542058,"sourceSkillId":492932,"name":"Shadow Fury","description":"Increases the whole party's [SC_SKILLTIPS_MCRI] by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577603,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503196],"components":[{"id":503196,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":492932,"name":"Shadow Fury","description":"Increases the whole party's [SC_SKILLTIPS_MCRI] by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577603,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503196]}}],"icon":"/assets/ui/rom-spells/577603.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-45","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":542088,"sourceSkillId":493040,"name":"Snake Spirit","description":"Replenishes your mana when the effect of your Snake Curse wears off. (This effect can only be used on one target at one time.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577663,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":493040,"name":"Snake Spirit","description":"Replenishes your mana when the effect of your Snake Curse wears off. (This effect can only be used on one target at one time.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577663,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577663.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-50","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":542118,"sourceSkillId":493269,"name":"Shadow Fairy","description":"Summons a shadow fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102106},"source":{"imageId":577788,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503458],"components":[{"id":503458,"magicFunc":3,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102106,"summon":{"creatureId":102106,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":493269,"name":"Shadow Fairy","description":"Summons a shadow fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102106},"source":{"imageId":577788,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503458]}}],"icon":"/assets/ui/rom-spells/577788.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-60","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546803,"sourceSkillId":499961,"name":"Toxic Feedback","description":"Makes your [499975] have a chance to make the next [499976] an instant spell.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801289,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499961,"name":"Toxic Feedback","description":"Makes your [499975] have a chance to make the next [499976] an instant spell.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801289,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801289.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-70","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546804,"sourceSkillId":499974,"name":"Black Source Resonance","description":"When [493279] is in effect, [499973] can cause additional [SC_SKILLTIPS_DARK]. Lasts for (Buff-Time-623027) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801337,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623027],"components":[{"id":623027,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":1,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":1,"type":0,"base":-16,"skillLevelArg":30},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499974,"name":"Black Source Resonance","description":"When [493279] is in effect, [499973] can cause additional [SC_SKILLTIPS_DARK]. Lasts for (Buff-Time-623027) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801337,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623027]}}],"icon":"/assets/ui/rom-spells/801337.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-15","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541908,"sourceSkillId":491586,"name":"Freeze","description":"Frost roots your target for (Buff0-Time) seconds. (For players this effect lasts for (Buff1-Time) seconds. Effect is removed when target receives damage.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575250,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501961,503844],"components":[{"id":501961,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":10,"hateCost":50,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[83,0],"clearFlags":2,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503844,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":5,"hateCost":50,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[83,0],"clearFlags":2,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491586,"name":"Freeze","description":"Frost roots your target for (Buff0-Time) seconds. (For players this effect lasts for (Buff1-Time) seconds. Effect is removed when target receives damage.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575250,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501961,503844]}}],"icon":"/assets/ui/rom-spells/575250.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-20","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":541938,"sourceSkillId":491646,"name":"Remove Curse","description":"Removes curse from target.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575252,"sourceEffectType":0,"sourceTarget":4,"componentIds":[502063],"components":[{"id":502063,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":491646,"name":"Remove Curse","description":"Removes curse from target.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575252,"sourceEffectType":0,"sourceTarget":4,"componentIds":[502063]}}],"icon":"/assets/ui/rom-spells/575252.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-25","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":541968,"sourceSkillId":491644,"name":"Angel's Blessing","description":"The Angel's Blessing grants your party restoration of additional (Buff0-Dot) MP every 5 seconds. Lasts (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575715,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502026],"components":[{"id":502026,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":5,"dotType":1,"dotBase":10,"dot":{"timeSeconds":5,"type":1,"base":10,"skillLevelArg":8},"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491644,"name":"Angel's Blessing","description":"The Angel's Blessing grants your party restoration of additional (Buff0-Dot) MP every 5 seconds. Lasts (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575715,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502026]}}],"icon":"/assets/ui/rom-spells/575715.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-30","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":541998,"sourceSkillId":491365,"name":"Angel's Carol","description":"Angels appear among the group and all party members regenerate (DMG-502064) MP every 2 seconds. Lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575236,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501792,502064],"components":[{"id":501792,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435527,"specialActionFlags":0,"assistType":24,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":491647,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":60,"fixedValue":0,"summonCreatureId":0},{"id":502064,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":30,"fixedValue":0,"attack":{"type":1,"damagePower":30,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491365,"name":"Angel's Carol","description":"Angels appear among the group and all party members regenerate (DMG-502064) MP every 2 seconds. Lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575236,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501792,502064]}}],"icon":"/assets/ui/rom-spells/575236.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-35","classId":"rom-priest","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":542029,"sourceSkillId":492638,"name":"Lightning Rod","description":"If Bone Chill is on the target, striking it with Lightning will also cause an Electric Shock, which raises suffered Water and Wind damage for (Buff-Time-502907) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577014,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502907],"components":[{"id":502907,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":28,"value":-50},{"type":30,"value":-50}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":492638,"name":"Lightning Rod","description":"If Bone Chill is on the target, striking it with Lightning will also cause an Electric Shock, which raises suffered Water and Wind damage for (Buff-Time-502907) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577014,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502907]}}],"icon":"/assets/ui/rom-spells/577014.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-40","classId":"rom-priest","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":542059,"sourceSkillId":492933,"name":"Enlightenment","description":"When you use Heal, you temporarily increase your Wisdom.\n(This skill increases your Wisdom by a maximum of (Max-Buff0-503197)%.)\n([SC_SKILLTIPS_CD_1](Buff-Time-506532)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577604,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503197,506532],"components":[{"id":503197,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":29,"abilityModifiers":[{"type":164,"value":1}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495295,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506532,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":492933,"name":"Enlightenment","description":"When you use Heal, you temporarily increase your Wisdom.\n(This skill increases your Wisdom by a maximum of (Max-Buff0-503197)%.)\n([SC_SKILLTIPS_CD_1](Buff-Time-506532)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577604,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503197,506532]}}],"icon":"/assets/ui/rom-spells/577604.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-45","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":542089,"sourceSkillId":493043,"name":"Icewind Blade","description":"Water and wind energies combine to form a sharpened blade that inflicts (DMG4) Wind damage and (DMG0) Water damage to the target.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":577664,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620413,620414],"components":[{"id":620413,"magicFunc":0,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620414,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":493043,"name":"Icewind Blade","description":"Water and wind energies combine to form a sharpened blade that inflicts (DMG4) Wind damage and (DMG0) Water damage to the target.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":577664,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620413,620414]}}],"icon":"/assets/ui/rom-spells/577664.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-50","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":542119,"sourceSkillId":493270,"name":"Wind Fairy","description":"Summons a wind fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102107},"source":{"imageId":577789,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503460],"components":[{"id":503460,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102107,"summon":{"creatureId":102107,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":493270,"name":"Wind Fairy","description":"Summons a wind fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102107},"source":{"imageId":577789,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503460]}}],"icon":"/assets/ui/rom-spells/577789.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-60","classId":"rom-priest","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546805,"sourceSkillId":499972,"name":"Element Defense","description":"Casting [499971] will earn a blessing that reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by 3%. Can be stacked a maximum of 3 times.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801290,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499972,"name":"Element Defense","description":"Casting [499971] will earn a blessing that reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by 3%. Can be stacked a maximum of 3 times.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801290,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801290.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-70","classId":"rom-priest","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546806,"sourceSkillId":499958,"name":"Spinning Wind","description":"While [499970] is in effect, the caster's [SC_SKILLTIPS_CAST] will increase by (Buff0-623018)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801338,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623018],"components":[{"id":623018,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"clearFlags":32,"abilityModifiers":[{"type":51,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499958,"name":"Spinning Wind","description":"While [499970] is in effect, the caster's [SC_SKILLTIPS_CAST] will increase by (Buff0-623018)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801338,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623018]}}],"icon":"/assets/ui/rom-spells/801338.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-15","classId":"rom-priest","secondaryClassId":"rom-knight","group":"passive","unlockLevel":15,"keyItemId":541909,"sourceSkillId":492355,"name":"Enhanced Grace of Life","description":"Your Grace of Life also increases the maximum MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575707,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":492355,"name":"Enhanced Grace of Life","description":"Your Grace of Life also increases the maximum MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575707,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575707.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-20","classId":"rom-priest","secondaryClassId":"rom-knight","group":"passive","unlockLevel":20,"keyItemId":541939,"sourceSkillId":492361,"name":"Life Link","description":"Your Urgent Heal now also heals you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575255,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":492361,"name":"Life Link","description":"Your Urgent Heal now also heals you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575255,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575255.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-25","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":25,"keyItemId":541969,"sourceSkillId":491648,"name":"Last Prayer","description":"Your next spell's casting time is reduced to 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575717,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502030],"components":[{"id":502030,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1601536,"abilityModifiers":[{"type":51,"value":-1000}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":1,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":491648,"name":"Last Prayer","description":"Your next spell's casting time is reduced to 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575717,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502030]}}],"icon":"/assets/ui/rom-spells/575717.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-30","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541999,"sourceSkillId":491366,"name":"Divine Incarnation","description":"By transforming into a Divine Incarnation the effectiveness of your heals is increased by (Buff0-0)% and the MP cost is reduced by (Buff0-4)%, but [SC_SKILLTIPS_02] also decreases by (Buff0-3)%. Effect lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575237,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501793],"components":[{"id":501793,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":15},{"type":171,"value":-50},{"type":33,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491366,"name":"Divine Incarnation","description":"By transforming into a Divine Incarnation the effectiveness of your heals is increased by (Buff0-0)% and the MP cost is reduced by (Buff0-4)%, but [SC_SKILLTIPS_02] also decreases by (Buff0-3)%. Effect lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575237,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501793]}}],"icon":"/assets/ui/rom-spells/575237.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-35","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":35,"keyItemId":542030,"sourceSkillId":492639,"name":"Calm Heart","description":"Cast on a friendly target making it resist Fear for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577016,"sourceEffectType":0,"sourceTarget":4,"componentIds":[502908],"components":[{"id":502908,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":17,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492639,"name":"Calm Heart","description":"Cast on a friendly target making it resist Fear for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577016,"sourceEffectType":0,"sourceTarget":4,"componentIds":[502908]}}],"icon":"/assets/ui/rom-spells/577016.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-40","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":40,"keyItemId":542060,"sourceSkillId":492934,"name":"Sacrificial Cure","description":"Sacrifice your own life energy to restore a party member's HP by (DMG0).\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":70,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":577605,"sourceEffectType":0,"sourceTarget":1,"componentIds":[503199],"components":[{"id":503199,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"damagePower":30,"damagePowerSkillLevelArg":4.6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":492934,"name":"Sacrificial Cure","description":"Sacrifice your own life energy to restore a party member's HP by (DMG0).\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":70,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":577605,"sourceEffectType":0,"sourceTarget":1,"componentIds":[503199]}}],"icon":"/assets/ui/rom-spells/577605.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-45","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":45,"keyItemId":542090,"sourceSkillId":493044,"name":"Holy Power","description":"Temporarily increases [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff0-1)% + (Buff0-0) for (Buff0-Time) seconds. This effect disappears if you use Heal three times.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577665,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503287,503445],"components":[{"id":503287,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"clearFlags":16384,"abilityModifiers":[{"type":5,"value":60},{"type":164,"value":1}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493090,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503445,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493044,"name":"Holy Power","description":"Temporarily increases [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff0-1)% + (Buff0-0) for (Buff0-Time) seconds. This effect disappears if you use Heal three times.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577665,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503287,503445]}}],"icon":"/assets/ui/rom-spells/577665.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-50","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":50,"keyItemId":542120,"sourceSkillId":493271,"name":"Light Fairy","description":"Summons a light fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102108},"source":{"imageId":577790,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503506],"components":[{"id":503506,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102108,"summon":{"creatureId":102108,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493271,"name":"Light Fairy","description":"Summons a light fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102108},"source":{"imageId":577790,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503506]}}],"icon":"/assets/ui/rom-spells/577790.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-60","classId":"rom-priest","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546807,"sourceSkillId":499968,"name":"Splendor Ripple","description":"When [499967] is cast, it will recover extra HP for the target.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801291,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499968,"name":"Splendor Ripple","description":"When [499967] is cast, it will recover extra HP for the target.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801291,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801291.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-70","classId":"rom-priest","secondaryClassId":"rom-knight","group":"passive","unlockLevel":70,"keyItemId":546808,"sourceSkillId":499957,"name":"Light Guidance","description":"(While [499966] is in effect, the caster's [SC_SKILLTIPS_HEAL] will increase by (Buff0-623015)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801339,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623015],"components":[{"id":623015,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":499957,"name":"Light Guidance","description":"(While [499966] is in effect, the caster's [SC_SKILLTIPS_HEAL] will increase by (Buff0-623015)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801339,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623015]}}],"icon":"/assets/ui/rom-spells/801339.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-15","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":15,"keyItemId":546023,"sourceSkillId":498766,"name":"Psychic Passage","description":"When Psychic Arrows hit, this skill restores (DMG-621518) HP to the target's current target.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800144,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621518],"components":[{"id":621518,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"attack":{"type":0,"damagePower":50,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498766,"name":"Psychic Passage","description":"When Psychic Arrows hit, this skill restores (DMG-621518) HP to the target's current target.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800144,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621518]}}],"icon":"/assets/ui/rom-spells/800144.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-20","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":20,"keyItemId":546024,"sourceSkillId":498769,"name":"Touch of Revival","description":"Restores (DMG0) HP to all party members in a fan-shaped range of 120.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":800145,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621519],"components":[{"id":621519,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"damagePower":70,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498769,"name":"Touch of Revival","description":"Restores (DMG0) HP to all party members in a fan-shaped range of 120.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":800145,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621519]}}],"icon":"/assets/ui/rom-spells/800145.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-25","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":25,"keyItemId":546025,"sourceSkillId":498770,"name":"Prayer of Tribulation","description":"Continuously heals a friendly target 4 times. Each time restores (DMG0) HP. When target's HP reaches over 40%, the skill increases the target's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by 2% for (Buff-Time-621522) seconds. When the target's HP falls below 40%, this skill can be stacked 2 times at once, up to 8 times.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":577662,"sourceEffectType":0,"sourceTarget":7,"componentIds":[621520,621521,621522],"components":[{"id":621520,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"damagePower":30,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621521,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621522,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":2},{"type":170,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498770,"name":"Prayer of Tribulation","description":"Continuously heals a friendly target 4 times. Each time restores (DMG0) HP. When target's HP reaches over 40%, the skill increases the target's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by 2% for (Buff-Time-621522) seconds. When the target's HP falls below 40%, this skill can be stacked 2 times at once, up to 8 times.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":577662,"sourceEffectType":0,"sourceTarget":7,"componentIds":[621520,621521,621522]}}],"icon":"/assets/ui/rom-spells/577662.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-30","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":30,"keyItemId":546026,"sourceSkillId":498771,"name":"Soul Cleansing Ceremony","description":"Cleanse can also remove cursed states.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800147,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498771,"name":"Soul Cleansing Ceremony","description":"Cleanse can also remove cursed states.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800147,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800147.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-35","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":35,"keyItemId":546027,"sourceSkillId":498773,"name":"Spirit Jump","description":"Blessed by the holy spirit, you are able to pull a friendly target close to you.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800148,"sourceEffectType":0,"sourceTarget":1,"componentIds":[621524],"components":[{"id":621524,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":-2147483648,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498773,"name":"Spirit Jump","description":"Blessed by the holy spirit, you are able to pull a friendly target close to you.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800148,"sourceEffectType":0,"sourceTarget":1,"componentIds":[621524]}}],"icon":"/assets/ui/rom-spells/800148.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-40","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":40,"keyItemId":546028,"sourceSkillId":498774,"name":"Spirit Spring","description":"Blessed Spring Water can increase the healing you receive.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800149,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498774,"name":"Spirit Spring","description":"Blessed Spring Water can increase the healing you receive.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800149,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800149.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-45","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":45,"keyItemId":546029,"sourceSkillId":495296,"name":"Holy Salvation Candle","description":"Once this is used, your next Holy Aura can be cast on friendly targets. However, the effect time is reduced by 2 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800150,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621556,621557],"components":[{"id":621556,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1072,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621557,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":495296,"name":"Holy Salvation Candle","description":"Once this is used, your next Holy Aura can be cast on friendly targets. However, the effect time is reduced by 2 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800150,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621556,621557]}}],"icon":"/assets/ui/rom-spells/800150.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-50","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":546030,"sourceSkillId":498798,"name":"Spirit Embodiment","description":"Summons the Spirit Embodiment. For the duration of its existence, the embodiment will recover (DMG-621099) HP for the party member with the lowest HP every time a spell is cast. It also reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621149)% for (Buff-Time-621149) seconds.\nThe Spirit Embodiment remains for 30 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.9},"source":{"imageId":800151,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621097,621098,621099,621149],"components":[{"id":621097,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621098,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"clearFlags":48,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621099,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":90,"fixedValue":0,"attack":{"type":0,"damagePower":90,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":621149,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":-1879048125,"specialActionFlags":0,"assistType":20,"clearFlags":48,"abilityModifiers":[{"type":206,"value":-10},{"type":207,"value":-10},{"type":209,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498798,"name":"Spirit Embodiment","description":"Summons the Spirit Embodiment. For the duration of its existence, the embodiment will recover (DMG-621099) HP for the party member with the lowest HP every time a spell is cast. It also reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621149)% for (Buff-Time-621149) seconds.\nThe Spirit Embodiment remains for 30 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.9},"source":{"imageId":800151,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621097,621098,621099,621149]}}],"icon":"/assets/ui/rom-spells/800151.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-60","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":60,"keyItemId":546809,"sourceSkillId":498628,"name":"Spatial Jump","description":"Blessed by the holy spirit, you are able to pull friendly targets in a range of 180 close to you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801626,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623175],"components":[{"id":623175,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":498628,"name":"Spatial Jump","description":"Blessed by the holy spirit, you are able to pull friendly targets in a range of 180 close to you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801626,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623175]}}],"icon":"/assets/ui/rom-spells/801626.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-70","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":70,"keyItemId":546810,"sourceSkillId":499829,"name":"Life Surge","description":"Continuous casting for 15 seconds. Increases all attributes of friendly targets in range by (Buff4-0)% and recovers (DMG0) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801627,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623468,623200],"components":[{"id":623468,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":4,"fixedValue":0,"attack":{"type":0,"damagePower":4,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623200,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":166,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499829,"name":"Life Surge","description":"Continuous casting for 15 seconds. Increases all attributes of friendly targets in range by (Buff4-0)% and recovers (DMG0) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801627,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623468,623200]}}],"icon":"/assets/ui/rom-spells/801627.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-15","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":15,"keyItemId":541910,"sourceSkillId":491609,"name":"Whirlwind Shield Mastery","description":"Increases the main hand weapon damage dealt by Whirlwind Shield.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575555,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491609,"name":"Whirlwind Shield Mastery","description":"Increases the main hand weapon damage dealt by Whirlwind Shield.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575555,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575555.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-20","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":541940,"sourceSkillId":490065,"name":"Weapon Master","description":"Allows you to equip all swords, axes, and hammers and increases their damage by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575229,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500221],"components":[{"id":500221,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":56,"value":4},{"type":92,"value":1},{"type":88,"value":1}],"abilitySkillLevelArg":17,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":490065,"name":"Weapon Master","description":"Allows you to equip all swords, axes, and hammers and increases their damage by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575229,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500221]}}],"icon":"/assets/ui/rom-spells/575229.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-25","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":541970,"sourceSkillId":491639,"name":"Deadly Whirlwind","description":"The rage cost for Whirlwind is reduced by 10 points, cooldown is reduced by 20 seconds. For 10 seconds the target suffers Deadly Wounds and the effectiveness of healings is reduced by 30%.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575549,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":491639,"name":"Deadly Whirlwind","description":"The rage cost for Whirlwind is reduced by 10 points, cooldown is reduced by 20 seconds. For 10 seconds the target suffers Deadly Wounds and the effectiveness of healings is reduced by 30%.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575549,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575549.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-30","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":542001,"sourceSkillId":490064,"name":"Quick Reflexes","description":"Gives you panther-like reflexes. Raises your [SC_SKILLTIPS_PARRY] by (Buff0-0) and your critical hit rate by (Buff0-1) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575209,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500220],"components":[{"id":500220,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":210},{"type":18,"value":150},{"type":20,"value":150}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":490064,"name":"Quick Reflexes","description":"Gives you panther-like reflexes. Raises your [SC_SKILLTIPS_PARRY] by (Buff0-0) and your critical hit rate by (Buff0-1) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575209,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500220]}}],"icon":"/assets/ui/rom-spells/575209.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-35","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542031,"sourceSkillId":490088,"name":"Fearless","description":"Increases your courage. During the effect time, you are immune against Fear. Also increases [SC_SKILLTIPS_STR] and [SC_SKILLTIPS_STA] for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577017,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502113],"components":[{"id":502113,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":17,"abilityModifiers":[{"type":161,"value":3},{"type":162,"value":3}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":490088,"name":"Fearless","description":"Increases your courage. During the effect time, you are immune against Fear. Also increases [SC_SKILLTIPS_STR] and [SC_SKILLTIPS_STA] for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577017,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502113]}}],"icon":"/assets/ui/rom-spells/577017.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-40","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":542061,"sourceSkillId":492935,"name":"Master of Parry","description":"Increases your [SC_SKILLTIPS_PARRY] by (Buff0-0). (Disappears after two successful blocks)","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577606,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503192],"components":[{"id":503192,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":103,"specialActionFlags":0,"assistType":33,"abilityModifiers":[{"type":22,"value":5000}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":493094,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492935,"name":"Master of Parry","description":"Increases your [SC_SKILLTIPS_PARRY] by (Buff0-0). (Disappears after two successful blocks)","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577606,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503192]}}],"icon":"/assets/ui/rom-spells/577606.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-45","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":542091,"sourceSkillId":490086,"name":"Survival Instinct","description":"When attacked while under [490085] and [490084] states, there is a chance that [502114] will be activated and the cooldown time of [492935] will be reduced by 1 second.\n[502114]: Temporarily increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_AGI] for (Buff-Time-502114) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577666,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502114],"components":[{"id":502114,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":2},{"type":165,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":490086,"name":"Survival Instinct","description":"When attacked while under [490085] and [490084] states, there is a chance that [502114] will be activated and the cooldown time of [492935] will be reduced by 1 second.\n[502114]: Temporarily increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_AGI] for (Buff-Time-502114) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577666,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502114]}}],"icon":"/assets/ui/rom-spells/577666.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-50","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":50,"keyItemId":542121,"sourceSkillId":490018,"name":"Authoritative Deterrence","description":"Forces a target to face and attack you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622319)%. Increases all damage on the target by (Buff4-0)% for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577796,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503557,502112,622319],"components":[{"id":503557,"magicFunc":7,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502112,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":5},{"type":207,"value":5}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622319,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":1}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":490018,"name":"Authoritative Deterrence","description":"Forces a target to face and attack you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622319)%. Increases all damage on the target by (Buff4-0)% for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577796,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503557,502112,622319]}}],"icon":"/assets/ui/rom-spells/577796.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-60","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":60,"keyItemId":546813,"sourceSkillId":499930,"name":"United Efforts","description":"Rushes to party members and provides a shield for them and you. Reduces [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-0)%. Lasts for (Buff0-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801292,"sourceEffectType":0,"sourceTarget":1,"componentIds":[623154],"components":[{"id":623154,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":30},{"type":142,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499930,"name":"United Efforts","description":"Rushes to party members and provides a shield for them and you. Reduces [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-0)%. Lasts for (Buff0-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801292,"sourceEffectType":0,"sourceTarget":1,"componentIds":[623154]}}],"icon":"/assets/ui/rom-spells/801292.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-70","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546814,"sourceSkillId":491608,"name":"Divine Punishment","description":"Increases damage dealt by [490151] by (Buff0-500284)%. When [490151] hits the target, it will increase the Light damage on the target by (Buff0-502052)% for (Buff-Time-502052) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801340,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500284,502052],"components":[{"id":500284,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":1},{"type":205,"value":1}],"abilitySkillLevelArg":50,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502052,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":190,"abilityModifiers":[{"type":225,"value":1}],"abilitySkillLevelArg":50,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":491608,"name":"Divine Punishment","description":"Increases damage dealt by [490151] by (Buff0-500284)%. When [490151] hits the target, it will increase the Light damage on the target by (Buff0-502052)% for (Buff-Time-502052) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801340,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500284,502052]}}],"icon":"/assets/ui/rom-spells/801340.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-15","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":541911,"sourceSkillId":491616,"name":"Arrow of Vengeance","description":"Fires an arrow full of aggro that taunts your target. You become the one with the most aggro. Also increases your aggro by (Buff0-622326)%.\n(Requires ranged weapon.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575253,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502061,622326],"components":[{"id":502061,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":200,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"summonCreatureId":0},{"id":622326,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491616,"name":"Arrow of Vengeance","description":"Fires an arrow full of aggro that taunts your target. You become the one with the most aggro. Also increases your aggro by (Buff0-622326)%.\n(Requires ranged weapon.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575253,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502061,622326]}}],"icon":"/assets/ui/rom-spells/575253.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-20","classId":"rom-knight","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":541941,"sourceSkillId":491610,"name":"Enhanced Holy Strike","description":"Increases the main weapon damage of your Holy Strike.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575550,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":491610,"name":"Enhanced Holy Strike","description":"Increases the main weapon damage of your Holy Strike.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575550,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575550.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-25","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":541971,"sourceSkillId":491613,"name":"Holy Chains","description":"Roots your target with your holy powers for (Buff0-Time) seconds. (Can only be used on undead and demons)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575548,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502058],"components":[{"id":502058,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":0,"effectFlagWords":[67,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":491613,"name":"Holy Chains","description":"Roots your target with your holy powers for (Buff0-Time) seconds. (Can only be used on undead and demons)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575548,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502058]}}],"icon":"/assets/ui/rom-spells/575548.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-30","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":542002,"sourceSkillId":491354,"name":"Heavenly Arrow","description":"As you pray for the power of the holy Light, an arrow of Light shoots down from the sky and taunts up the enemies within a range of 100. You become the one with the most aggro. Also increases your aggro by (Buff0-622320)%.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575207,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501795,622320],"components":[{"id":501795,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":200,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"summonCreatureId":0},{"id":622320,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":491354,"name":"Heavenly Arrow","description":"As you pray for the power of the holy Light, an arrow of Light shoots down from the sky and taunts up the enemies within a range of 100. You become the one with the most aggro. Also increases your aggro by (Buff0-622320)%.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575207,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501795,622320]}}],"icon":"/assets/ui/rom-spells/575207.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-35","classId":"rom-knight","secondaryClassId":"rom-scout","group":"passive","unlockLevel":35,"keyItemId":542032,"sourceSkillId":490066,"name":"Weaken Weapon Strength","description":"When you use your Heavenly Arrow to taunt a target, the physical damage of the target will be lowered.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577018,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":490066,"name":"Weaken Weapon Strength","description":"When you use your Heavenly Arrow to taunt a target, the physical damage of the target will be lowered.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577018,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577018.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-40","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":542062,"sourceSkillId":492939,"name":"Sacred Resistance","description":"Causes (DMG0) ranged weapon DPS to your target and increases your [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff4-0)) x (Buff8-0)% + (Buff4-0) for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503454)[SC_SKILLTIPS_CD_2])","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577610,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503206,503207,506236,503454],"components":[{"id":503206,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":-1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503207,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342701795,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":6,"value":20}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493246,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506236,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268959841,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":165,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503454,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":492939,"name":"Sacred Resistance","description":"Causes (DMG0) ranged weapon DPS to your target and increases your [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff4-0)) x (Buff8-0)% + (Buff4-0) for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503454)[SC_SKILLTIPS_CD_2])","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577610,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503206,503207,506236,503454]}}],"icon":"/assets/ui/rom-spells/577610.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-45","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":45,"keyItemId":542092,"sourceSkillId":493046,"name":"Sacred Protection","description":"Focuses holy energy onto your shield, temporarily increasing your chance to shield block by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577667,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503290],"components":[{"id":503290,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":33,"abilityModifiers":[{"type":172,"value":100}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":493046,"name":"Sacred Protection","description":"Focuses holy energy onto your shield, temporarily increasing your chance to shield block by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577667,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503290]}}],"icon":"/assets/ui/rom-spells/577667.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-50","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":542122,"sourceSkillId":493273,"name":"Disregard Danger","description":"Shares (Buff0-0)% damage of one attack on a party member. Also increases [SC_SKILLTIPS_PARRY] by (Buff4-0) for (Buff4-Time) seconds.\n(Cannot be cast on yourself.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577797,"sourceEffectType":1,"sourceTarget":1,"componentIds":[502056,506305],"components":[{"id":502056,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":40}],"abilitySkillLevelArg":2,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":491614,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506305,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493273,"name":"Disregard Danger","description":"Shares (Buff0-0)% damage of one attack on a party member. Also increases [SC_SKILLTIPS_PARRY] by (Buff4-0) for (Buff4-Time) seconds.\n(Cannot be cast on yourself.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577797,"sourceEffectType":1,"sourceTarget":1,"componentIds":[502056,506305]}}],"icon":"/assets/ui/rom-spells/577797.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-60","classId":"rom-knight","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546815,"sourceSkillId":499926,"name":"Evil Shackles","description":"[499925] is not limited to any target type, but when target is not an Undead or Demon target, effect time is reduced by half.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801293,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499926,"name":"Evil Shackles","description":"[499925] is not limited to any target type, but when target is not an Undead or Demon target, effect time is reduced by half.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801293,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801293.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-70","classId":"rom-knight","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546816,"sourceSkillId":499923,"name":"Blood Punishment","description":"When [499924] is activated it increases your received healing by (Buff0-623167)%. Also increases damage inflicted by [499923] by (Buff0-623168)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801341,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623167,623168],"components":[{"id":623167,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":101,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":144,"value":50}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":499910,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623168,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":100},{"type":205,"value":100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499923,"name":"Blood Punishment","description":"When [499924] is activated it increases your received healing by (Buff0-623167)%. Also increases damage inflicted by [499923] by (Buff0-623168)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801341,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623167,623168]}}],"icon":"/assets/ui/rom-spells/801341.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-15","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":15,"keyItemId":541912,"sourceSkillId":491621,"name":"God's Sword","description":"Your Holy Strike's critical hit rate is increased by 40%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575232,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":491621,"name":"God's Sword","description":"Your Holy Strike's critical hit rate is increased by 40%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575232,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575232.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-20","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":541942,"sourceSkillId":490019,"name":"Smash","description":"Direct attack on your enemy causing (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-504896) [SC_SKILLTIPS_DMG|Physical Light Damage]. (Can only be used after you inflict a critical hit.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":7,"percentage":true}],"passive":false,"effect":{"kind":"dot","coefficient":0.9,"ticks":5,"intervalMs":2000},"source":{"imageId":575702,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504896],"components":[{"id":504896,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":106,"specialActionFlags":0,"assistType":39,"abilityModifiers":[{"type":138,"value":20}],"abilitySkillLevelArg":5,"dotTime":10,"dotType":0,"dotBase":20,"dot":{"timeSeconds":10,"type":0,"base":20,"skillLevelArg":5},"attackType":0,"damagePower":-90,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-90,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":8,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":490019,"name":"Smash","description":"Direct attack on your enemy causing (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-504896) [SC_SKILLTIPS_DMG|Physical Light Damage]. (Can only be used after you inflict a critical hit.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":7,"percentage":true}],"passive":false,"effect":{"kind":"dot","coefficient":0.9,"ticks":5,"intervalMs":2000},"source":{"imageId":575702,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504896]}}],"icon":"/assets/ui/rom-spells/575702.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-25","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":541972,"sourceSkillId":491618,"name":"Blind Stab Mastery","description":"Extends the Blind effect of your Blind Stab to (Buff-Time-501990) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575721,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501990],"components":[{"id":501990,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"effectFlagWords":[32,0],"abilityModifiers":[{"type":197,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":491618,"name":"Blind Stab Mastery","description":"Extends the Blind effect of your Blind Stab to (Buff-Time-501990) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575721,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501990]}}],"icon":"/assets/ui/rom-spells/575721.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-30","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":542003,"sourceSkillId":491355,"name":"Crazy Blades","description":"For (Buff0-Time) seconds your [SC_SKILLTIPS_CRI] is increased by (Buff0-0).","target":"self","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575208,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501796],"components":[{"id":501796,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":491355,"name":"Crazy Blades","description":"For (Buff0-Time) seconds your [SC_SKILLTIPS_CRI] is increased by (Buff0-0).","target":"self","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575208,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501796]}}],"icon":"/assets/ui/rom-spells/575208.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-35","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542033,"sourceSkillId":490020,"name":"Dance of Two Blades","description":"The whirling weapons inflict two times (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second to multiple targets inside a range of 50.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577019,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502048],"components":[{"id":502048,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"damagePower":-0.4,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":3,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":490020,"name":"Dance of Two Blades","description":"The whirling weapons inflict two times (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second to multiple targets inside a range of 50.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577019,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502048]}}],"icon":"/assets/ui/rom-spells/577019.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-40","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":542063,"sourceSkillId":495402,"name":"Leopard Instinct","description":"Your reaction time will become like that of a leopard for (Buff0-Time) seconds, increasing your dodge rate by (Buff0-0)%. There is also a chance of absorbing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG]. \n(This effect will cease after absorbing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] 3 times.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":577608,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620144,620141],"components":[{"id":620144,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":524481,"specialActionFlags":0,"assistType":31,"abilityModifiers":[{"type":198,"value":50}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497926,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620141,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":483,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497924,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":1,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":495402,"name":"Leopard Instinct","description":"Your reaction time will become like that of a leopard for (Buff0-Time) seconds, increasing your dodge rate by (Buff0-0)%. There is also a chance of absorbing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG]. \n(This effect will cease after absorbing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] 3 times.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":577608,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620144,620141]}}],"icon":"/assets/ui/rom-spells/577608.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-45","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":542093,"sourceSkillId":493047,"name":"Panther's Blessing","description":"When attacked while under the protection of Shield of Valor or Shield of Discipline, there is a chance that your dodge rate increases temporarily. Lasts (Buff-Time-503282) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577668,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503282],"components":[{"id":503282,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":2}],"abilitySkillLevelArg":8,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":493183,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":493047,"name":"Panther's Blessing","description":"When attacked while under the protection of Shield of Valor or Shield of Discipline, there is a chance that your dodge rate increases temporarily. Lasts (Buff-Time-503282) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577668,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503282]}}],"icon":"/assets/ui/rom-spells/577668.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-50","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":50,"keyItemId":542123,"sourceSkillId":499934,"name":"God's Vengeance","description":"When your [499909] hits the target, there is a 50% chance that the Holy Seal won't be consumed, but it will still cause the damage that the Holy Seal deals.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577798,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":499934,"name":"God's Vengeance","description":"When your [499909] hits the target, there is a 50% chance that the Holy Seal won't be consumed, but it will still cause the damage that the Holy Seal deals.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577798,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577798.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-60","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546817,"sourceSkillId":490028,"name":"Approach","description":"Makes [490029] increase the Light damage on the target by (Buff0-501941)% and reduce the damage received by (Buff0-501942)% for (Buff-Time-501941) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801294,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501941,501942],"components":[{"id":501941,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":225,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":501942,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":-20},{"type":207,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":490028,"name":"Approach","description":"Makes [490029] increase the Light damage on the target by (Buff0-501941)% and reduce the damage received by (Buff0-501942)% for (Buff-Time-501941) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801294,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501941,501942]}}],"icon":"/assets/ui/rom-spells/801294.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-70","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546818,"sourceSkillId":490021,"name":"Revenge Instinct","description":"[490022] doesn't require consumption anymore. Increases the damage dealt by [490022] and gives the target 1 Holy Seal. There is a 50% chance of giving the target another layer of Holy Seal.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801342,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":490021,"name":"Revenge Instinct","description":"[490022] doesn't require consumption anymore. Increases the damage dealt by [490022] and gives the target 1 Holy Seal. There is a 50% chance of giving the target another layer of Holy Seal.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801342,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801342.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-15","classId":"rom-knight","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541913,"sourceSkillId":491606,"name":"Holy Light Domain","description":"The power of the holy light in you inflicts (DMG-502050) + [SC_SKILLTIPS_STA] x (FixDMG-502050) [SC_SKILLTIPS_LIGHT] every 2 seconds to surrounding targets within range. Also adds a [502051] and lasts for (Buff-Time-502049) seconds.\n[502051]: Reduces damage by (Buff0-502051)%. The effect lasts (Buff-Time-502051) seconds.\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":575553,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502049,502050,502051],"components":[{"id":502049,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":5,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":497471,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502050,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":10,"hateCost":20,"settingFlags":0,"specialActionFlags":0,"assistType":38,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-20,"damagePowerSkillLevelArg":25,"fixedValue":-0.2,"fixedType":8,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502051,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":1,"abilityModifiers":[{"type":173,"value":-1},{"type":44,"value":-1}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491606,"name":"Holy Light Domain","description":"The power of the holy light in you inflicts (DMG-502050) + [SC_SKILLTIPS_STA] x (FixDMG-502050) [SC_SKILLTIPS_LIGHT] every 2 seconds to surrounding targets within range. Also adds a [502051] and lasts for (Buff-Time-502049) seconds.\n[502051]: Reduces damage by (Buff0-502051)%. The effect lasts (Buff-Time-502051) seconds.\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":575553,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502049,502050,502051]}}],"icon":"/assets/ui/rom-spells/575553.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-20","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":20,"keyItemId":541943,"sourceSkillId":491630,"name":"Lightning Shield","description":"Your Whirlwind Shield now deals extra wind damage and slows the target for 5 seconds.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575723,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":491630,"name":"Lightning Shield","description":"Your Whirlwind Shield now deals extra wind damage and slows the target for 5 seconds.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575723,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575723.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-25","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":25,"keyItemId":541973,"sourceSkillId":491625,"name":"Divine Intensification","description":"Doubles the effect time of Intensification and increases the Light damage dealt by you.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577020,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491625,"name":"Divine Intensification","description":"Doubles the effect time of Intensification and increases the Light damage dealt by you.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577020,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577020.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-30","classId":"rom-knight","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":542004,"sourceSkillId":491350,"name":"Mana Shield","description":"Instantly restores (DMG4) MP and increases maximum MP by (Buff0-0)%. Each point of damage absorbed by the Mana Shield costs 1 MP. This shield lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":30000},"source":{"imageId":575746,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501797,506311],"components":[{"id":501797,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilityModifiers":[{"type":168,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":0,"effect":0,"point":0,"skillLevelArg":0}},{"id":506311,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":100,"fixedValue":0,"attack":{"type":1,"damagePower":100,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491350,"name":"Mana Shield","description":"Instantly restores (DMG4) MP and increases maximum MP by (Buff0-0)%. Each point of damage absorbed by the Mana Shield costs 1 MP. This shield lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":30000},"source":{"imageId":575746,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501797,506311]}}],"icon":"/assets/ui/rom-spells/575746.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-35","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":542034,"sourceSkillId":490076,"name":"Confession Judgment","description":"Makes [490077] deal extra [SC_SKILLTIPS_LIGHT] and adds 4 stacks of Holy Seal effect. The cooldown time of [490151] will also be immediately reset.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":803164,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":490076,"name":"Confession Judgment","description":"Makes [490077] deal extra [SC_SKILLTIPS_LIGHT] and adds 4 stacks of Holy Seal effect. The cooldown time of [490151] will also be immediately reset.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":803164,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/803164.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-40","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":542064,"sourceSkillId":490035,"name":"Hall of Order","description":"Increases damage dealt by [491628] and the effect time of [500292] by 6 seconds. The caster's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] will be increased as well.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577609,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500292],"components":[{"id":500292,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":1,"abilityModifiers":[{"type":173,"value":-1},{"type":44,"value":-1}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":490035,"name":"Hall of Order","description":"Increases damage dealt by [491628] and the effect time of [500292] by 6 seconds. The caster's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] will be increased as well.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577609,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500292]}}],"icon":"/assets/ui/rom-spells/577609.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-45","classId":"rom-knight","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":542094,"sourceSkillId":490034,"name":"Light Energy Weapon","description":"The weapon obtains the power of light, giving your normal attack additional (Buff0-0) Light damage.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570957,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502105],"components":[{"id":502105,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":188,"value":100}],"abilitySkillLevelArg":15,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":490034,"name":"Light Energy Weapon","description":"The weapon obtains the power of light, giving your normal attack additional (Buff0-0) Light damage.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570957,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502105]}}],"icon":"/assets/ui/rom-spells/570957.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-50","classId":"rom-knight","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":542124,"sourceSkillId":490078,"name":"War Prayer","description":"Deals (DMG0) + [SC_SKILLTIPS_STA] x (FixDMG-502102) Light damage on the target and adds one layer of Holy Seal every 3 seconds for (Buff4-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":577799,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502102,502103],"components":[{"id":502102,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":30,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-65,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-65,"damagePowerSkillLevelArg":25,"fixedValue":-0.2,"fixedType":8,"fixedDamageSkillLevelArg":20,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502103,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":70,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":490079,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":490078,"name":"War Prayer","description":"Deals (DMG0) + [SC_SKILLTIPS_STA] x (FixDMG-502102) Light damage on the target and adds one layer of Holy Seal every 3 seconds for (Buff4-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":577799,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502102,502103]}}],"icon":"/assets/ui/rom-spells/577799.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-60","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546819,"sourceSkillId":499917,"name":"Magic Healing","description":"While your [499626] is in effect, an extra 1% of HP is recovered every second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801295,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499917,"name":"Magic Healing","description":"While your [499626] is in effect, an extra 1% of HP is recovered every second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801295,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801295.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-70","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546820,"sourceSkillId":490031,"name":"Confessor","description":"Reduces the cooldown time of [490032] by 4 seconds, and the cooldown time of [490033] by 10 seconds. When both skills hit the target, the caster's [SC_SKILLTIPS_MOVE] will be increased by (Buff0-502101)% for (Buff-Time-502101) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801343,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502101],"components":[{"id":502101,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":33}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-2.7,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":490031,"name":"Confessor","description":"Reduces the cooldown time of [490032] by 4 seconds, and the cooldown time of [490033] by 10 seconds. When both skills hit the target, the caster's [SC_SKILLTIPS_MOVE] will be increased by (Buff0-502101)% for (Buff-Time-502101) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801343,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502101]}}],"icon":"/assets/ui/rom-spells/801343.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-15","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":15,"keyItemId":541914,"sourceSkillId":491635,"name":"Holy Light's Fury","description":"Reduces the cooldown time of [490149] by 3 seconds, also increases the damage dealt.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575554,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491635,"name":"Holy Light's Fury","description":"Reduces the cooldown time of [490149] by 3 seconds, also increases the damage dealt.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575554,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575554.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-20","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":541944,"sourceSkillId":490194,"name":"Holy Smite","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] each second. If the target has the Holy Seal effect, it will all be consumed to heal the caster and a nearby party member, restoring an amount of HP between (DMG-500206) and (DMG-500209) maximum HP, according to the amount of the Holy Seal.\n|cff99FF37 Each Holy Seal restores (DMG-500206) maximum HP.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575547,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500108,500206,500209],"components":[{"id":500108,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"damagePower":-0.5,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500206,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":2,"fixedValue":0,"attack":{"type":0,"damagePower":2,"damagePowerSkillLevelArg":3,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500209,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":8,"fixedValue":0,"attack":{"type":0,"damagePower":8,"damagePowerSkillLevelArg":3,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":490194,"name":"Holy Smite","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] each second. If the target has the Holy Seal effect, it will all be consumed to heal the caster and a nearby party member, restoring an amount of HP between (DMG-500206) and (DMG-500209) maximum HP, according to the amount of the Holy Seal.\n|cff99FF37 Each Holy Seal restores (DMG-500206) maximum HP.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575547,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500108,500206,500209]}}],"icon":"/assets/ui/rom-spells/575547.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-25","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":25,"keyItemId":541974,"sourceSkillId":491640,"name":"Holy Protection","description":"Reduces inflicted aggro by (Buff0-0)% and increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-1)% for (Buff0-Time) seconds. If you cast it on yourself, it will increase the inflicted aggro by (Buff1-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575251,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500673,500674],"components":[{"id":500673,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":98,"abilityModifiers":[{"type":138,"value":-2},{"type":135,"value":2},{"type":170,"value":2}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":50,"summonCreatureId":0},{"id":500674,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":98,"abilityModifiers":[{"type":138,"value":2},{"type":170,"value":2},{"type":135,"value":2}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":491640,"name":"Holy Protection","description":"Reduces inflicted aggro by (Buff0-0)% and increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-1)% for (Buff0-Time) seconds. If you cast it on yourself, it will increase the inflicted aggro by (Buff1-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575251,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500673,500674]}}],"icon":"/assets/ui/rom-spells/575251.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-30","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":542005,"sourceSkillId":491351,"name":"Free Will","description":"Target is immune against Root and Slow effects for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575210,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501798],"components":[{"id":501798,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":491351,"name":"Free Will","description":"Target is immune against Root and Slow effects for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575210,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501798]}}],"icon":"/assets/ui/rom-spells/575210.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-35","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":542035,"sourceSkillId":490080,"name":"Truth Oracle","description":"Reduces the cooldown time of [490081] by 30 seconds. When you use [490081], there is a chance of not consuming Holy Seal, but it will still cause the damage that the Holy Seal deals.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577021,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":490080,"name":"Truth Oracle","description":"Reduces the cooldown time of [490081] by 30 seconds. When you use [490081], there is a chance of not consuming Holy Seal, but it will still cause the damage that the Holy Seal deals.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577021,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577021.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-40","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":40,"keyItemId":542065,"sourceSkillId":490030,"name":"Concentration Practice","description":"Increases [SC_SKILLTIPS_HITP] and [SC_SKILLTIPS_MAG_HITP] by (Buff0-0)%, as well as [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] by (Buff4-0).\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577607,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503201,501944],"components":[{"id":503201,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":2},{"type":199,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501944,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":30,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":30},{"type":18,"value":30}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":490030,"name":"Concentration Practice","description":"Increases [SC_SKILLTIPS_HITP] and [SC_SKILLTIPS_MAG_HITP] by (Buff0-0)%, as well as [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] by (Buff4-0).\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577607,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503201,501944]}}],"icon":"/assets/ui/rom-spells/577607.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-45","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542095,"sourceSkillId":490036,"name":"Great Inspiration","description":"Let your [490037] increase your maximum HP and enable the party members in a range of 60 to block one attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577670,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":490036,"name":"Great Inspiration","description":"Let your [490037] increase your maximum HP and enable the party members in a range of 60 to block one attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577670,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577670.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-50","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":542125,"sourceSkillId":491632,"name":"Holy Illumination","description":"Boosts the healing capacity of party members within a radius of 60 by (Buff0-0)%, [SC_SKILLTIPS_DMG] by (Buff0-1)% and [SC_SKILLTIPS_MDMG] by (Buff0-2)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":50,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577800,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502106],"components":[{"id":502106,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":174,"abilityModifiers":[{"type":144,"value":4},{"type":173,"value":2},{"type":192,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":491632,"name":"Holy Illumination","description":"Boosts the healing capacity of party members within a radius of 60 by (Buff0-0)%, [SC_SKILLTIPS_DMG] by (Buff0-1)% and [SC_SKILLTIPS_MDMG] by (Buff0-2)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":50,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577800,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502106]}}],"icon":"/assets/ui/rom-spells/577800.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-60","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":60,"keyItemId":546821,"sourceSkillId":499913,"name":"Angel Salvation","description":"Uses the holy light to resurrect a player. \n(Can be used in battle.)","target":"friendly","range":15,"castTimeMs":4000,"cooldownMs":180000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":801296,"sourceEffectType":0,"sourceTarget":15,"componentIds":[623182],"components":[{"id":623182,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499913,"name":"Angel Salvation","description":"Uses the holy light to resurrect a player. \n(Can be used in battle.)","target":"friendly","range":15,"castTimeMs":4000,"cooldownMs":180000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":801296,"sourceEffectType":0,"sourceTarget":15,"componentIds":[623182]}}],"icon":"/assets/ui/rom-spells/801296.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-70","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546822,"sourceSkillId":499914,"name":"Divine Protection","description":"When [499912] is cast, the party members can receive an extra (Buff0-623183)% damage reduction and a (Buff-Dot-623361) HP recovery every second.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801344,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623183,623361],"components":[{"id":623183,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":2},{"type":143,"value":2}],"abilitySkillLevelArg":24,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-152.95,"fixedValue":0,"summonCreatureId":0},{"id":623361,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":1,"dotType":0,"dotBase":20,"dot":{"timeSeconds":1,"type":0,"base":20,"skillLevelArg":14},"attackType":0,"damagePower":-152.95,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499914,"name":"Divine Protection","description":"When [499912] is cast, the party members can receive an extra (Buff0-623183)% damage reduction and a (Buff-Dot-623361) HP recovery every second.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801344,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623183,623361]}}],"icon":"/assets/ui/rom-spells/801344.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-15","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":543080,"sourceSkillId":494001,"name":"Double Chop","description":"Inflicts (DMG0) main hand weapon DPS twice.\n(Each skill level adds to aggro)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579061,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504510],"components":[{"id":504510,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.6,"damagePowerSkillLevelArg":5.5,"fixedValue":-0.1,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":494001,"name":"Double Chop","description":"Inflicts (DMG0) main hand weapon DPS twice.\n(Each skill level adds to aggro)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579061,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504510]}}],"icon":"/assets/ui/rom-spells/579061.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-20","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":20,"keyItemId":543090,"sourceSkillId":494002,"name":"Beast Chop","description":"Inflicts (DMG0) main hand weapon DPS and a [620690] for (Buff4-Time) seconds.\n(Each skill level adds to aggro)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579062,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504511,620690],"components":[{"id":504511,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":-0.1,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0},{"id":620690,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":181,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":494002,"name":"Beast Chop","description":"Inflicts (DMG0) main hand weapon DPS and a [620690] for (Buff4-Time) seconds.\n(Each skill level adds to aggro)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579062,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504511,620690]}}],"icon":"/assets/ui/rom-spells/579062.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-25","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":25,"keyItemId":543100,"sourceSkillId":494003,"name":"Ire","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622321)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579063,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504512,622321],"components":[{"id":504512,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622321,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":494003,"name":"Ire","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622321)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579063,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504512,622321]}}],"icon":"/assets/ui/rom-spells/579063.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-30","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":543110,"sourceSkillId":498220,"name":"Immortal Power","description":"Immortal power flows from the deepest recesses of your being. You can withstand [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] three times over the course of (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":35,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":579847,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620707,620751],"components":[{"id":620707,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":483,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498231,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":1,"skillLevelArg":0}},{"id":620751,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498230,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":498220,"name":"Immortal Power","description":"Immortal power flows from the deepest recesses of your being. You can withstand [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] three times over the course of (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":35,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":579847,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620707,620751]}}],"icon":"/assets/ui/rom-spells/579847.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-35","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":543120,"sourceSkillId":493607,"name":"Pulse Mastery","description":"You can only cast it on targets with a [620690]. Causes (DMG0) main weapon DPS to the target and for (Buff8-Time) seconds aggro created by attacks in increased by (Buff8-0)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578291,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620691,620690,620727,620692],"components":[{"id":620691,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-1.1,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0},{"id":620690,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":181,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620727,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":181,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620692,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":493607,"name":"Pulse Mastery","description":"You can only cast it on targets with a [620690]. Causes (DMG0) main weapon DPS to the target and for (Buff8-Time) seconds aggro created by attacks in increased by (Buff8-0)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578291,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620691,620690,620727,620692]}}],"icon":"/assets/ui/rom-spells/578291.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-40","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":40,"keyItemId":543130,"sourceSkillId":494354,"name":"Resilience of Life","description":"Allows you to equip plate armor, and also reduces the damage received from monsters by 5%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579849,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620693],"components":[{"id":620693,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":207,"value":-5},{"type":99,"value":1}],"abilitySkillLevelArg":10.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":494354,"name":"Resilience of Life","description":"Allows you to equip plate armor, and also reduces the damage received from monsters by 5%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579849,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620693]}}],"icon":"/assets/ui/rom-spells/579849.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-45","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":543140,"sourceSkillId":494610,"name":"Will Attack","description":"When your [493391] hits the target, it will reduce the damage dealt by target by (Buff0-620694)% for (Buff-Time-620694) seconds.","target":"self","range":7.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581114,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620694],"components":[{"id":620694,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":494610,"name":"Will Attack","description":"When your [493391] hits the target, it will reduce the damage dealt by target by (Buff0-620694)% for (Buff-Time-620694) seconds.","target":"self","range":7.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581114,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620694]}}],"icon":"/assets/ui/rom-spells/581114.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-50","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":50,"keyItemId":543150,"sourceSkillId":494611,"name":"Coat of Arms","description":"When you cast [494611] on a friendly party member, it increases your and the friendly member's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":35,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581115,"sourceEffectType":0,"sourceTarget":4,"componentIds":[620695,621116],"components":[{"id":620695,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":192,"abilityModifiers":[{"type":170,"value":30},{"type":135,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621116,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":192,"abilityModifiers":[{"type":170,"value":30},{"type":135,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":494611,"name":"Coat of Arms","description":"When you cast [494611] on a friendly party member, it increases your and the friendly member's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":35,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581115,"sourceEffectType":0,"sourceTarget":4,"componentIds":[620695,621116]}}],"icon":"/assets/ui/rom-spells/581115.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-60","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546823,"sourceSkillId":499902,"name":"Elf Blessing","description":"When [499903] is used, it causes an increase of the caster's [SC_SKILLTIPS_DEF] and recovers HP every second.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801297,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499902,"name":"Elf Blessing","description":"When [499903] is used, it causes an increase of the caster's [SC_SKILLTIPS_DEF] and recovers HP every second.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801297,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801297.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-70","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":70,"keyItemId":546824,"sourceSkillId":499900,"name":"Feral Leader","description":"Increases your inflicted damage by (Buff0-623248)% for (Buff-Time-623248) seconds and reduces your damage received by (Buff3-623248)%. Also reduces aggro for your party members.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801345,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623248,623250],"components":[{"id":623248,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":50},{"type":192,"value":50},{"type":207,"value":-30},{"type":206,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623250,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499900,"name":"Feral Leader","description":"Increases your inflicted damage by (Buff0-623248)% for (Buff-Time-623248) seconds and reduces your damage received by (Buff3-623248)%. Also reduces aggro for your party members.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801345,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623248,623250]}}],"icon":"/assets/ui/rom-spells/801345.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-15","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":543081,"sourceSkillId":494004,"name":"Anti-Magic Arrow","description":"Inflicts (DMG0) ranged weapon DPS and has a chance of restoring (DMG4) of your mana. (Requires ranged weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579064,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504513,504565],"components":[{"id":504513,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504565,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":25,"fixedValue":0,"attack":{"type":1,"damagePower":25,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":494004,"name":"Anti-Magic Arrow","description":"Inflicts (DMG0) ranged weapon DPS and has a chance of restoring (DMG4) of your mana. (Requires ranged weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579064,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504513,504565]}}],"icon":"/assets/ui/rom-spells/579064.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-20","classId":"rom-warden","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":543091,"sourceSkillId":494005,"name":"Beast Tamer","description":"Increase your pet's [SC_SKILLTIPS_CRI] by (Buff0-504514) points and [SC_SKILLTIPS_DOGE] by (Buff0-506421) points.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579068,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504514,506421],"components":[{"id":504514,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506421,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":17,"value":35}],"abilitySkillLevelArg":12.5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":494005,"name":"Beast Tamer","description":"Increase your pet's [SC_SKILLTIPS_CRI] by (Buff0-504514) points and [SC_SKILLTIPS_DOGE] by (Buff0-506421) points.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579068,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504514,506421]}}],"icon":"/assets/ui/rom-spells/579068.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-25","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":543101,"sourceSkillId":494006,"name":"Untamable","description":"Inflicts (DMG0) main hand weapon DPS on the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"focus","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579066,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620697],"components":[{"id":620697,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"attack":{"type":0,"damagePower":-1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":494006,"name":"Untamable","description":"Inflicts (DMG0) main hand weapon DPS on the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"focus","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579066,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620697]}}],"icon":"/assets/ui/rom-spells/579066.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-30","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":543111,"sourceSkillId":494212,"name":"Summon Chiron the Centaur","description":"Summons the centaur Chiron to help you in battle.","target":"self","range":5,"castTimeMs":8000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102803},"source":{"imageId":579850,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504605,500499],"components":[{"id":504605,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102803,"summon":{"creatureId":102803,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}},{"id":500499,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":494212,"name":"Summon Chiron the Centaur","description":"Summons the centaur Chiron to help you in battle.","target":"self","range":5,"castTimeMs":8000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102803},"source":{"imageId":579850,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504605,500499]}}],"icon":"/assets/ui/rom-spells/579850.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-35","classId":"rom-warden","secondaryClassId":"rom-scout","group":"passive","unlockLevel":35,"keyItemId":543121,"sourceSkillId":494356,"name":"Secret Agreement","description":"Permanently increases your melee weapon damage by (Buff0-0)% and all damage caused by Chiron the Centaur by (Buff0-505184)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579852,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504919,505184],"components":[{"id":504919,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":56,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505184,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":494356,"name":"Secret Agreement","description":"Permanently increases your melee weapon damage by (Buff0-0)% and all damage caused by Chiron the Centaur by (Buff0-505184)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579852,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504919,505184]}}],"icon":"/assets/ui/rom-spells/579852.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-40","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":543131,"sourceSkillId":494357,"name":"Morale Boost","description":"Temporarily increases your and your party members' [SC_SKILLTIPS_DMG] by (Buff0-1) + (Buff4-1)% and [SC_SKILLTIPS_MDMG] by (Buff0-0) + (Buff4-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579853,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505150,620696],"components":[{"id":505150,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":203,"abilityModifiers":[{"type":191,"value":20},{"type":25,"value":30}],"abilitySkillLevelArg":7,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493562,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620696,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435521,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":2},{"type":173,"value":2}],"abilitySkillLevelArg":7,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":494357,"name":"Morale Boost","description":"Temporarily increases your and your party members' [SC_SKILLTIPS_DMG] by (Buff0-1) + (Buff4-1)% and [SC_SKILLTIPS_MDMG] by (Buff0-0) + (Buff4-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579853,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505150,620696]}}],"icon":"/assets/ui/rom-spells/579853.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-45","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":45,"keyItemId":543141,"sourceSkillId":494612,"name":"Valiant Shot","description":"Inflicts (DMG0) physical damage and increases the [SC_SKILLTIPS_01] of pet and master by (Buff0-505745)% for (Buff-Time-505745) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-505746)[SC_SKILLTIPS_CD_2])\n[SC_SKILL_COLLECT_01]","target":"hostile","range":25,"castTimeMs":2000,"cooldownMs":6000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":581116,"sourceEffectType":0,"sourceTarget":6,"componentIds":[505695,505760,505745,505746],"components":[{"id":505695,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-45,"fixedValue":0,"attack":{"type":0,"damagePower":-45,"damagePowerSkillLevelArg":22,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505760,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505745,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":8}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494959,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505746,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":25,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":494612,"name":"Valiant Shot","description":"Inflicts (DMG0) physical damage and increases the [SC_SKILLTIPS_01] of pet and master by (Buff0-505745)% for (Buff-Time-505745) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-505746)[SC_SKILLTIPS_CD_2])\n[SC_SKILL_COLLECT_01]","target":"hostile","range":25,"castTimeMs":2000,"cooldownMs":6000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":581116,"sourceEffectType":0,"sourceTarget":6,"componentIds":[505695,505760,505745,505746]}}],"icon":"/assets/ui/rom-spells/581116.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-50","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":543151,"sourceSkillId":494613,"name":"Sacrifice","description":"Sacrifices your pet to restore you (DMG0) HP and (DMG4) MP. However, your pet will be exhausted and unable to move for (Buff-Time-503639) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.5},"source":{"imageId":581117,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505696,505747,505748,503639],"components":[{"id":505696,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"attack":{"type":0,"damagePower":50,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505747,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":50,"fixedValue":0,"attack":{"type":1,"damagePower":50,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505748,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503639,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4195,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":494613,"name":"Sacrifice","description":"Sacrifices your pet to restore you (DMG0) HP and (DMG4) MP. However, your pet will be exhausted and unable to move for (Buff-Time-503639) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.5},"source":{"imageId":581117,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505696,505747,505748,503639]}}],"icon":"/assets/ui/rom-spells/581117.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-60","classId":"rom-warden","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546825,"sourceSkillId":499898,"name":"Forest Surround","description":"Increases [102803|Chiron the Centaur's] [SC_SKILLTIPS_CAST] by (Buff0-623251)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801298,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623251],"components":[{"id":623251,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499898,"name":"Forest Surround","description":"Increases [102803|Chiron the Centaur's] [SC_SKILLTIPS_CAST] by (Buff0-623251)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801298,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623251]}}],"icon":"/assets/ui/rom-spells/801298.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-70","classId":"rom-warden","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546826,"sourceSkillId":499899,"name":"Wind-piercing Arrow","description":"When the [498206] of [102803] hits, it will increase the caster's [SC_SKILLTIPS_DPS] by (Buff0-623252)%. Can be stacked a maximum of 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801346,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623252],"components":[{"id":623252,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-5}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499899,"name":"Wind-piercing Arrow","description":"When the [498206] of [102803] hits, it will increase the caster's [SC_SKILLTIPS_DPS] by (Buff0-623252)%. Can be stacked a maximum of 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801346,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623252]}}],"icon":"/assets/ui/rom-spells/801346.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-15","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":543082,"sourceSkillId":494007,"name":"Achilles' Heel Strike","description":"Attacks the target's Achilles' heel. Inflicts (DMG0) main hand weapon DPS, and it has a chance of increasing both your pet's and your [SC_SKILLTIPS_CRI] by (Buff0-504569) points for (Buff-Time-504569) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504715)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":2000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578396,"sourceEffectType":1,"sourceTarget":6,"componentIds":[623259,623254,504516,504570,504569,504715],"components":[{"id":623259,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":-0.1,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623254,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504516,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504570,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504569,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494334,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504715,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":25,"hateCost":0,"settingFlags":268443649,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":494007,"name":"Achilles' Heel Strike","description":"Attacks the target's Achilles' heel. Inflicts (DMG0) main hand weapon DPS, and it has a chance of increasing both your pet's and your [SC_SKILLTIPS_CRI] by (Buff0-504569) points for (Buff-Time-504569) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504715)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":2000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578396,"sourceEffectType":1,"sourceTarget":6,"componentIds":[623259,623254,504516,504570,504569,504715]}}],"icon":"/assets/ui/rom-spells/578396.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-20","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":20,"keyItemId":543092,"sourceSkillId":494202,"name":"Thorn Upgrade","description":"Increases damage done by thorny vines and has a chance of restoring your mana when the effect ends.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578413,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":494202,"name":"Thorn Upgrade","description":"Increases damage done by thorny vines and has a chance of restoring your mana when the effect ends.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578413,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/578413.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-25","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":25,"keyItemId":543102,"sourceSkillId":494009,"name":"Gravel Attack","description":"Inflicts (DMG0) main hand weapon DPS on target. It also additionally deals (Buff4-Dot) earth damage every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579074,"sourceEffectType":1,"sourceTarget":6,"componentIds":[623256,623254,504518,504571],"components":[{"id":623256,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5.5,"fixedValue":-0.1,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623254,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504518,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504571,"magicFunc":1,"magicType":0,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":494009,"name":"Gravel Attack","description":"Inflicts (DMG0) main hand weapon DPS on target. It also additionally deals (Buff4-Dot) earth damage every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579074,"sourceEffectType":1,"sourceTarget":6,"componentIds":[623256,623254,504518,504571]}}],"icon":"/assets/ui/rom-spells/579074.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-30","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":30,"keyItemId":543112,"sourceSkillId":494213,"name":"Soul of the Spirit Tree","description":"Increases the damage inflicted by Power of the Wood Spirit. When the target's HP reaches 30%, the critical hit chance of the Wood Spirit increases by 15%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579854,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":494213,"name":"Soul of the Spirit Tree","description":"Increases the damage inflicted by Power of the Wood Spirit. When the target's HP reaches 30%, the critical hit chance of the Wood Spirit increases by 15%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579854,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579854.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-35","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":35,"keyItemId":543122,"sourceSkillId":494358,"name":"Store Power","description":"Slightly increases the damage of your Charged Chop, and also increases its critical hit rate by 10%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579855,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":494358,"name":"Store Power","description":"Slightly increases the damage of your Charged Chop, and also increases its critical hit rate by 10%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579855,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579855.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-40","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":40,"keyItemId":543132,"sourceSkillId":494359,"name":"Critical Feeling","description":"If your Oak Walkers' skill successfully hits its target, there is a chance of your next 2 attacks within (Buff-Time-505185) seconds being critical hits.\n([SC_SKILLTIPS_CD_1]30[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579856,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505185],"components":[{"id":505185,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":494359,"name":"Critical Feeling","description":"If your Oak Walkers' skill successfully hits its target, there is a chance of your next 2 attacks within (Buff-Time-505185) seconds being critical hits.\n([SC_SKILLTIPS_CD_1]30[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579856,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505185]}}],"icon":"/assets/ui/rom-spells/579856.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-45","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":45,"keyItemId":543142,"sourceSkillId":494614,"name":"Walker Spirit","description":"Awakens the spirit of the Oak Walker within you, temporarily increasing your movement speed by (Buff0-0)% and dodge rate by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581118,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505697],"components":[{"id":505697,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":50},{"type":198,"value":50}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":494614,"name":"Walker Spirit","description":"Awakens the spirit of the Oak Walker within you, temporarily increasing your movement speed by (Buff0-0)% and dodge rate by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581118,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505697]}}],"icon":"/assets/ui/rom-spells/581118.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-50","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":543152,"sourceSkillId":494615,"name":"Together","description":"Immediately inflicts (DMG0) main hand weapon DPS to your target and simultaneously increases the damage dealt by you and your pet by (Buff0-505939)% for (Buff-Time-505939) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581119,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505698,505940,505939],"components":[{"id":505698,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-3,"fixedValue":0,"attack":{"type":0,"damagePower":-3,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505940,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505939,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":205,"value":10},{"type":204,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1000,"fixedValue":3,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":494615,"name":"Together","description":"Immediately inflicts (DMG0) main hand weapon DPS to your target and simultaneously increases the damage dealt by you and your pet by (Buff0-505939)% for (Buff-Time-505939) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581119,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505698,505940,505939]}}],"icon":"/assets/ui/rom-spells/581119.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-60","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546827,"sourceSkillId":499896,"name":"Force Fountain","description":"While your [499897] is in effect, it causes an additional increase in [SC_SKILLTIPS_STR].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801299,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499896,"name":"Force Fountain","description":"While your [499897] is in effect, it causes an additional increase in [SC_SKILLTIPS_STR].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801299,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801299.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-70","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":70,"keyItemId":546828,"sourceSkillId":499894,"name":"Enemy Sigil","description":"Inflicts [499894] on target and makes your [494581], [494342], [494007] and [494009] cause additional [SC_SKILLTIPS_STR] damage.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801347,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623254],"components":[{"id":623254,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499894,"name":"Enemy Sigil","description":"Inflicts [499894] on target and makes your [494581], [494342], [494007] and [494009] cause additional [SC_SKILLTIPS_STR] damage.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801347,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623254]}}],"icon":"/assets/ui/rom-spells/801347.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-15","classId":"rom-warden","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":543083,"sourceSkillId":494010,"name":"Wind Chop","description":"Inflicts (DMG0) main hand weapon DPS. Each successful hit has an additional chance of inflicting (DMG4) wind damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579070,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504519,504601],"components":[{"id":504519,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504601,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":0,"attack":{"type":0,"damagePower":-20,"damagePowerSkillLevelArg":50,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":494010,"name":"Wind Chop","description":"Inflicts (DMG0) main hand weapon DPS. Each successful hit has an additional chance of inflicting (DMG4) wind damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579070,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504519,504601]}}],"icon":"/assets/ui/rom-spells/579070.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-20","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":20,"keyItemId":543093,"sourceSkillId":494207,"name":"Tough Oak","description":"Increases your pet's [SC_SKILLTIPS_DEF] by (Buff0-504600)% and reduces [SC_SKILLTIPS_CDTIME] from [493382] and [493385] by 1 second.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578412,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504600],"components":[{"id":504600,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":494207,"name":"Tough Oak","description":"Increases your pet's [SC_SKILLTIPS_DEF] by (Buff0-504600)% and reduces [SC_SKILLTIPS_CDTIME] from [493382] and [493385] by 1 second.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578412,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504600]}}],"icon":"/assets/ui/rom-spells/578412.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-25","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":25,"keyItemId":543103,"sourceSkillId":494011,"name":"Oak Blessing","description":"During the effect time of [491668], increases your [SC_SKILLTIPS_01] by (Buff0-620679)% and restores your HP by (Buff-Dot-620679)% every 3 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579065,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620679],"components":[{"id":620679,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":363,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5}],"abilitySkillLevelArg":0,"dotTime":3,"dotType":5,"dotBase":1,"dot":{"timeSeconds":3,"type":5,"base":1,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":2,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":494011,"name":"Oak Blessing","description":"During the effect time of [491668], increases your [SC_SKILLTIPS_01] by (Buff0-620679)% and restores your HP by (Buff-Dot-620679)% every 3 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579065,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620679]}}],"icon":"/assets/ui/rom-spells/579065.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-30","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":30,"keyItemId":543113,"sourceSkillId":498205,"name":"Nature's Revenge","description":"Enhances the skills of your pet [102325]. Increases the resisted damage of [498201] by (Buff-Shield-620702)% and the effect of [498202] by (Buff0-620703)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579857,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620702,620703],"components":[{"id":620702,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435811,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":15,"skillLevelArg":0}},{"id":620703,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-8},{"type":51,"value":-8}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":498205,"name":"Nature's Revenge","description":"Enhances the skills of your pet [102325]. Increases the resisted damage of [498201] by (Buff-Shield-620702)% and the effect of [498202] by (Buff0-620703)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579857,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620702,620703]}}],"icon":"/assets/ui/rom-spells/579857.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-35","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":543123,"sourceSkillId":498227,"name":"Spiritual Feedback","description":"Enhances the power of your pet \"Oak Walker\". When your skill delivers a critical hit, the attack power of the Oak Walker's Sepal Stab will be greatly enhanced.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579858,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":498227,"name":"Spiritual Feedback","description":"Enhances the power of your pet \"Oak Walker\". When your skill delivers a critical hit, the attack power of the Oak Walker's Sepal Stab will be greatly enhanced.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579858,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579858.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-40","classId":"rom-warden","secondaryClassId":"rom-mage","group":"elite","unlockLevel":40,"keyItemId":543133,"sourceSkillId":498219,"name":"Crystal Protection","description":"Orders your Nature Crystal to protect team members by wrapping them in its shards. Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of multiple friendly targets by (Buff0-505154)% within a radius of 100. The effect lasts for (Buff-Time-505154) seconds.","target":"self","range":40,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":588116,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505154],"components":[{"id":505154,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":143,"value":20},{"type":142,"value":20}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":498219,"name":"Crystal Protection","description":"Orders your Nature Crystal to protect team members by wrapping them in its shards. Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of multiple friendly targets by (Buff0-505154)% within a radius of 100. The effect lasts for (Buff-Time-505154) seconds.","target":"self","range":40,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":588116,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505154]}}],"icon":"/assets/ui/rom-spells/588116.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-45","classId":"rom-warden","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":543143,"sourceSkillId":494616,"name":"Narrow Escape","description":"Your pet is under the effect of [505705] and will be reborn immediately after death.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581120,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505897,505705],"components":[{"id":505897,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505705,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":494616,"name":"Narrow Escape","description":"Your pet is under the effect of [505705] and will be reborn immediately after death.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581120,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505897,505705]}}],"icon":"/assets/ui/rom-spells/581120.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-50","classId":"rom-warden","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":543153,"sourceSkillId":498214,"name":"Pet Enhance","description":"Temporarily enhances your pet, increasing its [SC_SKILLTIPS_01] and [SC_SKILLTIPS_DMG] by (Buff0-620713)% for (Buff-Time-620713) seconds.","target":"self","range":25,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581121,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620714,620713],"components":[{"id":620714,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620713,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":30},{"type":173,"value":30}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":498214,"name":"Pet Enhance","description":"Temporarily enhances your pet, increasing its [SC_SKILLTIPS_01] and [SC_SKILLTIPS_DMG] by (Buff0-620713)% for (Buff-Time-620713) seconds.","target":"self","range":25,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581121,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620714,620713]}}],"icon":"/assets/ui/rom-spells/581121.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-60","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546829,"sourceSkillId":499893,"name":"Resonation of Wind","description":"When your [494010] hits a target and triggers [SC_SKILLTIPS_WIND], this will reduce your [493347] cooldown time by 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801300,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499893,"name":"Resonation of Wind","description":"When your [494010] hits a target and triggers [SC_SKILLTIPS_WIND], this will reduce your [493347] cooldown time by 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801300,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801300.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-70","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546830,"sourceSkillId":499891,"name":"Wild Offensive","description":"Makes your [499892] increase the pet's [SC_SKILLTIPS_DPS] and reduces the cooldown time of [499892].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801348,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499891,"name":"Wild Offensive","description":"Makes your [499892] increase the pet's [SC_SKILLTIPS_DPS] and reduces the cooldown time of [499892].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801348,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801348.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-15","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543084,"sourceSkillId":494013,"name":"Dispel Curse","description":"Cleanses a Curse from one friendly target.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579073,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504522],"components":[{"id":504522,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494013,"name":"Dispel Curse","description":"Cleanses a Curse from one friendly target.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579073,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504522]}}],"icon":"/assets/ui/rom-spells/579073.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-20","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":20,"keyItemId":543094,"sourceSkillId":493389,"name":"Magic Control","description":"Restricts target's magic energy. Decreases target's [SC_SKILLTIPS_02] and [SC_SKILLTIPS_01] by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578271,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503624],"components":[{"id":503624,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":172,"abilityModifiers":[{"type":171,"value":-2},{"type":173,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":493389,"name":"Magic Control","description":"Restricts target's magic energy. Decreases target's [SC_SKILLTIPS_02] and [SC_SKILLTIPS_01] by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578271,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503624]}}],"icon":"/assets/ui/rom-spells/578271.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-25","classId":"rom-warden","secondaryClassId":"rom-druid","group":"passive","unlockLevel":25,"keyItemId":543104,"sourceSkillId":494208,"name":"Quick Reflexes","description":"Increases [SC_SKILLTIPS_CRI_PASSIVE] of yours and your pet's by (Buff0-0) and [SC_SKILLTIPS_DOGEP] by (Buff4-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578411,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504711,506422],"components":[{"id":504711,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":182,"value":200}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506422,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":2}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494208,"name":"Quick Reflexes","description":"Increases [SC_SKILLTIPS_CRI_PASSIVE] of yours and your pet's by (Buff0-0) and [SC_SKILLTIPS_DOGEP] by (Buff4-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578411,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504711,506422]}}],"icon":"/assets/ui/rom-spells/578411.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-30","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":30,"keyItemId":543114,"sourceSkillId":494215,"name":"Earth Spirit Essence","description":"Cloaks your weapon in the power of earth. Normal attacks inflict (Buff0-0) earth damage, and (Buff0-1)% [SC_SKILLTIPS_DMG] is resisted for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579860,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504847],"components":[{"id":504847,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":184,"value":100},{"type":143,"value":2}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494215,"name":"Earth Spirit Essence","description":"Cloaks your weapon in the power of earth. Normal attacks inflict (Buff0-0) earth damage, and (Buff0-1)% [SC_SKILLTIPS_DMG] is resisted for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579860,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504847]}}],"icon":"/assets/ui/rom-spells/579860.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-35","classId":"rom-warden","secondaryClassId":"rom-druid","group":"passive","unlockLevel":35,"keyItemId":543124,"sourceSkillId":494362,"name":"Natural Spring","description":"When your [493395] hits the target, you can heal party members within a range of 75. The skill can't be triggered again within (Buff-Time-505205) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579861,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505205],"components":[{"id":505205,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":494362,"name":"Natural Spring","description":"When your [493395] hits the target, you can heal party members within a range of 75. The skill can't be triggered again within (Buff-Time-505205) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579861,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505205]}}],"icon":"/assets/ui/rom-spells/579861.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-40","classId":"rom-warden","secondaryClassId":"rom-druid","group":"passive","unlockLevel":40,"keyItemId":543134,"sourceSkillId":494363,"name":"Connection","description":"Your Elven Prayer can bestow an additional spell onto you and your pet, increasing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] for (Buff-Time-505155) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579878,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505155],"components":[{"id":505155,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":10},{"type":173,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494363,"name":"Connection","description":"Your Elven Prayer can bestow an additional spell onto you and your pet, increasing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] for (Buff-Time-505155) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579878,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505155]}}],"icon":"/assets/ui/rom-spells/579878.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-45","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":45,"keyItemId":543144,"sourceSkillId":494618,"name":"Blade of Protection","description":"An attack with the Power to Protect. Inflicts (DMG0) main hand weapon DPS. Upon hitting a target it may increase the [SC_SKILLTIPS_DEF] of party members within a radius of 70 by (Buff0-505752)% for (Buff-Time-505752) seconds.\n(Increases the [SC_SKILLTIPS_DEF] by a maximum of (Max-Buff0-505752)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581122,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505701,505751,623270,505752],"components":[{"id":505701,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0},{"id":505751,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":524293,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":494960,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623270,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":524288,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505752,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494618,"name":"Blade of Protection","description":"An attack with the Power to Protect. Inflicts (DMG0) main hand weapon DPS. Upon hitting a target it may increase the [SC_SKILLTIPS_DEF] of party members within a radius of 70 by (Buff0-505752)% for (Buff-Time-505752) seconds.\n(Increases the [SC_SKILLTIPS_DEF] by a maximum of (Max-Buff0-505752)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581122,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505701,505751,623270,505752]}}],"icon":"/assets/ui/rom-spells/581122.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-50","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":50,"keyItemId":543154,"sourceSkillId":491669,"name":"Thorn Sigil","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff4-0)% for 15 seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801358,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504512,503949],"components":[{"id":504512,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503949,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":491669,"name":"Thorn Sigil","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff4-0)% for 15 seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801358,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504512,503949]}}],"icon":"/assets/ui/rom-spells/801358.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-60","classId":"rom-warden","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546831,"sourceSkillId":499888,"name":"Briar Control","description":"Your [499889] increases your [SC_SKILLTIPS_HEAL] and [SC_SKILLTIPS_HEAL_PASSIVE]. Every time you use [499886], you earn a shield that is 5% of Maximum HP.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801301,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499888,"name":"Briar Control","description":"Your [499889] increases your [SC_SKILLTIPS_HEAL] and [SC_SKILLTIPS_HEAL_PASSIVE]. Every time you use [499886], you earn a shield that is 5% of Maximum HP.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801301,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801301.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-70","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":70,"keyItemId":546832,"sourceSkillId":499885,"name":"Beast Awakening","description":"Increases Maximum HP (Buff0-0)% and lasts for (Buff0-Time) seconds. When [494618] hits, reduces [499885] cooldown time for the target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801349,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623269],"components":[{"id":623269,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499885,"name":"Beast Awakening","description":"Increases Maximum HP (Buff0-0)% and lasts for (Buff0-Time) seconds. When [494618] hits, reduces [499885] cooldown time for the target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801349,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623269]}}],"icon":"/assets/ui/rom-spells/801349.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-15","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":543085,"sourceSkillId":494016,"name":"Natural Attack","description":"Gathers the power of nature to launch an attack. Inflicts ((DMG0) main hand weapon DPS + (FixDMG-504525) x Wisdom) damage. When you are hit, you receive 1 point of Nature's Power.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579076,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504525,504575,623080],"components":[{"id":504525,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":-0.1,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504575,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623080,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":3},{"type":164,"value":3}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":494016,"name":"Natural Attack","description":"Gathers the power of nature to launch an attack. Inflicts ((DMG0) main hand weapon DPS + (FixDMG-504525) x Wisdom) damage. When you are hit, you receive 1 point of Nature's Power.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579076,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504525,504575,623080]}}],"icon":"/assets/ui/rom-spells/579076.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-20","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":20,"keyItemId":543095,"sourceSkillId":494017,"name":"Glory Wand","description":"Increases your attack speed by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds. Also, during physical attacks, a protective shield will appear that absorbs (Buff-Shield-504725) damage for (Buff-Time-504725) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504727)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":8000},"source":{"imageId":579077,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504526,504725,504727],"components":[{"id":504526,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-1},{"type":144,"value":1}],"abilitySkillLevelArg":19,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":493605,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504725,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1342177763,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494015,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":2,"effect":0,"point":200,"skillLevelArg":19}},{"id":504727,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":494017,"name":"Glory Wand","description":"Increases your attack speed by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds. Also, during physical attacks, a protective shield will appear that absorbs (Buff-Shield-504725) damage for (Buff-Time-504725) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504727)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":8000},"source":{"imageId":579077,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504526,504725,504727]}}],"icon":"/assets/ui/rom-spells/579077.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-25","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":25,"keyItemId":543105,"sourceSkillId":494018,"name":"Cross of Thorns Attack","description":"Launches a rapid Double Attack on the target. Inflicts twice (DMG1) main hand weapon DPS plus (FixDMG1) times wisdom damage on the target, and restores 1 point of Nature's Power to you when you hit the target.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance the power and Inflicts (2 x (DMG0) main hand weapon DPS + (FixDMG0) x Wisdom) damage on the target. There is also a chance of restoring 1 point of Nature's Power if you hit the target.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579078,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620461,503827,620460,504527,504576],"components":[{"id":620461,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5,"fixedValue":-0.1,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620460,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":-0.1,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504527,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":-0.1,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5,"fixedValue":-0.1,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504576,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":494018,"name":"Cross of Thorns Attack","description":"Launches a rapid Double Attack on the target. Inflicts twice (DMG1) main hand weapon DPS plus (FixDMG1) times wisdom damage on the target, and restores 1 point of Nature's Power to you when you hit the target.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance the power and Inflicts (2 x (DMG0) main hand weapon DPS + (FixDMG0) x Wisdom) damage on the target. There is also a chance of restoring 1 point of Nature's Power if you hit the target.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579078,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620461,503827,620460,504527,504576]}}],"icon":"/assets/ui/rom-spells/579078.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-30","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":543115,"sourceSkillId":494216,"name":"Heart Piercing","description":"Concentrates the power of nature in your body to launch a severe attack on your target. Inflicts (DMG1) main hand weapon DPS on target. Each successful hit will produce (DMG4) points of rage.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) main hand weapon DPS on target. Each successful hit will produce (DMG4) points of rage.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579862,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504860,503827,620462,504882,623080],"components":[{"id":504860,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"attack":{"type":0,"damagePower":-1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620462,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504882,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":15,"fixedValue":0,"attack":{"type":2,"damagePower":15,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623080,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":3},{"type":164,"value":3}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":494216,"name":"Heart Piercing","description":"Concentrates the power of nature in your body to launch a severe attack on your target. Inflicts (DMG1) main hand weapon DPS on target. Each successful hit will produce (DMG4) points of rage.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) main hand weapon DPS on target. Each successful hit will produce (DMG4) points of rage.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579862,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504860,503827,620462,504882,623080]}}],"icon":"/assets/ui/rom-spells/579862.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-35","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":543125,"sourceSkillId":494364,"name":"Awakening of the Wild","description":"Increases your and your party members' [SC_SKILLTIPS_01] by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) as well as [SC_SKILLTIPS_DMG] by (Buff0-1), both for (Buff0-Time) seconds.\n(This effect cannot co-exist with similar effects.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579863,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505157,506538],"components":[{"id":505157,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":42,"abilityModifiers":[{"type":12,"value":40},{"type":25,"value":25}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":5,"onBuffTimeoutMagicId":495576,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506538,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":524321,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":9,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":5,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":494364,"name":"Awakening of the Wild","description":"Increases your and your party members' [SC_SKILLTIPS_01] by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) as well as [SC_SKILLTIPS_DMG] by (Buff0-1), both for (Buff0-Time) seconds.\n(This effect cannot co-exist with similar effects.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579863,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505157,506538]}}],"icon":"/assets/ui/rom-spells/579863.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-40","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":543135,"sourceSkillId":494365,"name":"Healing Wind","description":"Restores (DMG1) HP to you and your party members in a range of 100.\nWhen you have Nature's Power, 1 point of it will automatically be consumed to increase abilities as well as heal (DMG0) of your HP as well as the HP of party members within a range of 100.","target":"self","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.65},"source":{"imageId":579864,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505158,503827,620463,620441],"components":[{"id":505158,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":65,"fixedValue":0,"attack":{"type":0,"damagePower":65,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620463,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"attack":{"type":0,"damagePower":50,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":494365,"name":"Healing Wind","description":"Restores (DMG1) HP to you and your party members in a range of 100.\nWhen you have Nature's Power, 1 point of it will automatically be consumed to increase abilities as well as heal (DMG0) of your HP as well as the HP of party members within a range of 100.","target":"self","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.65},"source":{"imageId":579864,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505158,503827,620463,620441]}}],"icon":"/assets/ui/rom-spells/579864.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-45","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":543145,"sourceSkillId":494929,"name":"Slash Fury","description":"Increases the attack range of your Slash, and upon hitting a target with Slash, it has a chance of increasing your healing and rage generation.\n([SC_SKILLTIPS_CD_1](Buff-Time-505733)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581124,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505733],"components":[{"id":505733,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268959809,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":494929,"name":"Slash Fury","description":"Increases the attack range of your Slash, and upon hitting a target with Slash, it has a chance of increasing your healing and rage generation.\n([SC_SKILLTIPS_CD_1](Buff-Time-505733)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581124,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505733]}}],"icon":"/assets/ui/rom-spells/581124.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-50","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":50,"keyItemId":543155,"sourceSkillId":494930,"name":"Nourish","description":"It causes Nature's Power to be stored in a friendly target for (Buff0-Time) seconds. When the target's HP drops below 40%, it will immediately restore (DMG-505736) HP and restore 2 points of Nature's Power to you. (Healing effect requires a (Buff-Time-505899) seconds cooldown.)","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":581125,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505704,505898,505736,505899],"components":[{"id":505704,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":120,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505898,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":130,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"clearFlags":2,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495062,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505736,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":15,"fixedValue":0,"attack":{"type":0,"damagePower":15,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505899,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":494930,"name":"Nourish","description":"It causes Nature's Power to be stored in a friendly target for (Buff0-Time) seconds. When the target's HP drops below 40%, it will immediately restore (DMG-505736) HP and restore 2 points of Nature's Power to you. (Healing effect requires a (Buff-Time-505899) seconds cooldown.)","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":581125,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505704,505898,505736,505899]}}],"icon":"/assets/ui/rom-spells/581125.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-60","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546833,"sourceSkillId":499955,"name":"Briar Technique","description":"When your [494016], [499956] or [494216] hits a target, you can earn the Briar Technique effect. This provides an extra increase of [SC_SKILLTIPS_01] by (Buff0-623080)% and of [SC_SKILLTIPS_MND] by (Buff1-623080)%. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801302,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623080],"components":[{"id":623080,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":3},{"type":164,"value":3}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499955,"name":"Briar Technique","description":"When your [494016], [499956] or [494216] hits a target, you can earn the Briar Technique effect. This provides an extra increase of [SC_SKILLTIPS_01] by (Buff0-623080)% and of [SC_SKILLTIPS_MND] by (Buff1-623080)%. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801302,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623080]}}],"icon":"/assets/ui/rom-spells/801302.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-70","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546834,"sourceSkillId":499953,"name":"Heart of the Wild","description":"Allows you to equip Leather Armor and Chainmail and increases [SC_SKILLTIPS_POWER] by (Buff0-2)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801350,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623081],"components":[{"id":623081,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":100,"value":1},{"type":101,"value":1},{"type":56,"value":5}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499953,"name":"Heart of the Wild","description":"Allows you to equip Leather Armor and Chainmail and increases [SC_SKILLTIPS_POWER] by (Buff0-2)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801350,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623081]}}],"icon":"/assets/ui/rom-spells/801350.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-15","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":543086,"sourceSkillId":494019,"name":"Camellia Flower","description":"Causes target to recover (Buff3-Dot) HP per second for (Buff0-Time) seconds. Can be stacked up to 3 times.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579079,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504578,504577,504528],"components":[{"id":504578,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":268443755,"specialActionFlags":0,"assistType":136,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":35,"dot":{"timeSeconds":1,"type":0,"base":35,"skillLevelArg":16},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504577,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":268443755,"specialActionFlags":0,"assistType":136,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":25,"dot":{"timeSeconds":1,"type":0,"base":25,"skillLevelArg":16},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504528,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":268443755,"specialActionFlags":0,"assistType":136,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":15,"dot":{"timeSeconds":1,"type":0,"base":15,"skillLevelArg":16},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":494019,"name":"Camellia Flower","description":"Causes target to recover (Buff3-Dot) HP per second for (Buff0-Time) seconds. Can be stacked up to 3 times.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579079,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504578,504577,504528]}}],"icon":"/assets/ui/rom-spells/579079.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-20","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":543096,"sourceSkillId":494020,"name":"Life Guide","description":"Causes you to recover HP every 2 seconds when you use Recover.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579080,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":494020,"name":"Life Guide","description":"Causes you to recover HP every 2 seconds when you use Recover.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579080,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579080.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-25","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":543106,"sourceSkillId":494021,"name":"Healing Arrows","description":"Restores (Buff1-Dot) HP every 2 seconds to 5 friendly targets in range. Lasts for (Buff0-Time) seconds. \nIf you possess Nature's Power, it automatically will consume 1 point of Nature's Power to enhance abilities and restore (Buff0-Dot) HP. \n(Requires ranged weapon.)","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":5000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579081,"sourceEffectType":0,"sourceTarget":16,"componentIds":[504529,503827,620446,620441],"components":[{"id":504529,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620446,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":16,"dot":{"timeSeconds":2,"type":0,"base":16,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":494021,"name":"Healing Arrows","description":"Restores (Buff1-Dot) HP every 2 seconds to 5 friendly targets in range. Lasts for (Buff0-Time) seconds. \nIf you possess Nature's Power, it automatically will consume 1 point of Nature's Power to enhance abilities and restore (Buff0-Dot) HP. \n(Requires ranged weapon.)","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":5000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579081,"sourceEffectType":0,"sourceTarget":16,"componentIds":[504529,503827,620446,620441]}}],"icon":"/assets/ui/rom-spells/579081.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-30","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":543116,"sourceSkillId":494217,"name":"Group Exorcism","description":"Requires 1 point of Nature's Power. Removes harmful effects from multiple friendly targets within a range of 50.","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579865,"sourceEffectType":0,"sourceTarget":16,"componentIds":[504861,504109],"components":[{"id":504861,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504109,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":494217,"name":"Group Exorcism","description":"Requires 1 point of Nature's Power. Removes harmful effects from multiple friendly targets within a range of 50.","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579865,"sourceEffectType":0,"sourceTarget":16,"componentIds":[504861,504109]}}],"icon":"/assets/ui/rom-spells/579865.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-35","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":543126,"sourceSkillId":494366,"name":"Warm Spring","description":"Party members within a range of 100 recover (DMG-505201) MP every 2 seconds for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579866,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505159,505201],"components":[{"id":505159,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435527,"specialActionFlags":0,"assistType":24,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":494621,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505201,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":67108865,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":30,"fixedValue":0,"attack":{"type":1,"damagePower":30,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":494366,"name":"Warm Spring","description":"Party members within a range of 100 recover (DMG-505201) MP every 2 seconds for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579866,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505159,505201]}}],"icon":"/assets/ui/rom-spells/579866.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-40","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":543136,"sourceSkillId":494367,"name":"Mother Earth's Blessing","description":"Increases your healing power by (Buff0-505160) for (Buff-Time-505160) seconds. This effect ends after you have used healings spells for 3 times. (This spell will reward you 2 points of Nature's Power.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579867,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505160,505181,505199],"components":[{"id":505160,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"clearFlags":16384,"abilityModifiers":[{"type":150,"value":25}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494351,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505181,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505199,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":494367,"name":"Mother Earth's Blessing","description":"Increases your healing power by (Buff0-505160) for (Buff-Time-505160) seconds. This effect ends after you have used healings spells for 3 times. (This spell will reward you 2 points of Nature's Power.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579867,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505160,505181,505199]}}],"icon":"/assets/ui/rom-spells/579867.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-45","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":543146,"sourceSkillId":494931,"name":"Brilliance of Nature","description":"Increases your maximum amount of Nature's Power up to 15.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581126,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":494931,"name":"Brilliance of Nature","description":"Increases your maximum amount of Nature's Power up to 15.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581126,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581126.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-50","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":50,"keyItemId":543156,"sourceSkillId":494932,"name":"Spring Flower Eulogy","description":"When casting [499935], if the target's HP is lower than 50%, the effect will automatically be stacked 3 times. There is also a chance of restoring 1 Nature's Power to you. When [499935] ends, it will restore additional HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581127,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":494932,"name":"Spring Flower Eulogy","description":"When casting [499935], if the target's HP is lower than 50%, the effect will automatically be stacked 3 times. There is also a chance of restoring 1 Nature's Power to you. When [499935] ends, it will restore additional HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581127,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581127.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-60","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546835,"sourceSkillId":499952,"name":"Spring Carol","description":"Reduces your [499951] cooldown time to 30 seconds and gives your [499954] an area effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801303,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499952,"name":"Spring Carol","description":"Reduces your [499951] cooldown time to 30 seconds and gives your [499954] an area effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801303,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801303.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-70","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546836,"sourceSkillId":499949,"name":"Spirit Shackles","description":"Allows your [499950] to be used on players, but it won't make them become friendly. In fact it makes the target player unable to move, attack or cast spells. [SC_SKILLTIPS_HEAL_PASSIVE] is also reduced by (Buff0-623093)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801351,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623093],"components":[{"id":623093,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[65619,0],"abilityModifiers":[{"type":144,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499949,"name":"Spirit Shackles","description":"Allows your [499950] to be used on players, but it won't make them become friendly. In fact it makes the target player unable to move, attack or cast spells. [SC_SKILLTIPS_HEAL_PASSIVE] is also reduced by (Buff0-623093)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801351,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623093]}}],"icon":"/assets/ui/rom-spells/801351.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-15","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":543087,"sourceSkillId":494022,"name":"Poisonous Widow Embrace","description":"Summons the sinister plant, Poisonous Widow, to seize and attack your target. Inflicts (DMG1) [SC_SKILLTIPS_DARK] and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_DARK] on your targets. Also, 1 point of Nature's Power will be restored.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":579082,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620438,503827,620215,504717],"components":[{"id":620438,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-65,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-65,"damagePowerSkillLevelArg":32,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620215,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-50,"damagePowerSkillLevelArg":32,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504717,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":494022,"name":"Poisonous Widow Embrace","description":"Summons the sinister plant, Poisonous Widow, to seize and attack your target. Inflicts (DMG1) [SC_SKILLTIPS_DARK] and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_DARK] on your targets. Also, 1 point of Nature's Power will be restored.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":579082,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620438,503827,620215,504717]}}],"icon":"/assets/ui/rom-spells/579082.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-20","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":543097,"sourceSkillId":494023,"name":"Speed Catalysis","description":"Temporarily raises the physical attack and casting speed of party members within a range of 150 by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579083,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504532],"components":[{"id":504532,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":9,"abilityModifiers":[{"type":23,"value":-20},{"type":51,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":494023,"name":"Speed Catalysis","description":"Temporarily raises the physical attack and casting speed of party members within a range of 150 by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579083,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504532]}}],"icon":"/assets/ui/rom-spells/579083.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-25","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":25,"keyItemId":543107,"sourceSkillId":494024,"name":"Corrosive Poison","description":"Corrodes your target, inflicting (Buff0-Dot) points of dark damage every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579084,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504533],"components":[{"id":504533,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":26},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":494024,"name":"Corrosive Poison","description":"Corrodes your target, inflicting (Buff0-Dot) points of dark damage every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579084,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504533]}}],"icon":"/assets/ui/rom-spells/579084.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-30","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":543117,"sourceSkillId":494321,"name":"Necrotic Wound","description":"Reduces healing received by target by (Buff2-0)% for (Buff0-Time) seconds.\n(If the target is a player, the amount he is healed is decreased by (Buff3-0)% for (Buff1-Time) seconds.)\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and reduce healing received by target by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579868,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504862,503827,504252,620448,620447,623094],"components":[{"id":504862,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":48,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504252,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":48,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620448,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620447,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623094,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":494321,"name":"Necrotic Wound","description":"Reduces healing received by target by (Buff2-0)% for (Buff0-Time) seconds.\n(If the target is a player, the amount he is healed is decreased by (Buff3-0)% for (Buff1-Time) seconds.)\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and reduce healing received by target by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579868,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504862,503827,504252,620448,620447,623094]}}],"icon":"/assets/ui/rom-spells/579868.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-35","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":543127,"sourceSkillId":494368,"name":"Shadow Contract","description":"Increases your maximum MP by (Buff0-0) and your [SC_SKILLTIPS_DARK] by (Buff4-1)%, but reduces healing power by (Buff4-0)% for (Buff0-Time) seconds.\n(Your [SC_SKILLTIPS_DARK] can be increased up to a maximum of (Max-Buff1-506309)% and healing power can be decreased up to (Max-Buff0-506309)%.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579869,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505161,506309],"components":[{"id":505161,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":70}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495286,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506309,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":-5},{"type":50,"value":5}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":494368,"name":"Shadow Contract","description":"Increases your maximum MP by (Buff0-0) and your [SC_SKILLTIPS_DARK] by (Buff4-1)%, but reduces healing power by (Buff4-0)% for (Buff0-Time) seconds.\n(Your [SC_SKILLTIPS_DARK] can be increased up to a maximum of (Max-Buff1-506309)% and healing power can be decreased up to (Max-Buff0-506309)%.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579869,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505161,506309]}}],"icon":"/assets/ui/rom-spells/579869.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-40","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":543137,"sourceSkillId":494369,"name":"Magic Turmoil","description":"Increases your magical critical hit rate by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579870,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505162],"components":[{"id":505162,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":177,"abilityModifiers":[{"type":20,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":494369,"name":"Magic Turmoil","description":"Increases your magical critical hit rate by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579870,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505162]}}],"icon":"/assets/ui/rom-spells/579870.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-45","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":543147,"sourceSkillId":494933,"name":"Curtain of Darkness","description":"Covers you in the power of darkness, permanently reducing magical damage received by (Buff0-0)% and making it so your [494969] and [494941] no longer require Nature's Power to recover their original abilities.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581128,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505707],"components":[{"id":505707,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":494933,"name":"Curtain of Darkness","description":"Covers you in the power of darkness, permanently reducing magical damage received by (Buff0-0)% and making it so your [494969] and [494941] no longer require Nature's Power to recover their original abilities.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581128,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505707]}}],"icon":"/assets/ui/rom-spells/581128.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-50","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":543157,"sourceSkillId":494934,"name":"Dark Moon","description":"Increases the [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] of a friendly target by (Buff0-0) for (Buff0-Time) seconds. Also, when their attacks go critical, you may gain the Power of the Dark Moon status which increases your magic power by (Buff0-505912)% and healing power by (Buff1-505912)% for (Buff-Time-505912) seconds.\n(This skill cannot be used on yourself.)","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581129,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505911,504871,505912],"components":[{"id":505911,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":145},{"type":20,"value":145}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":490068,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504871,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505912,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":140,"abilityModifiers":[{"type":171,"value":5},{"type":149,"value":5}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495103,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":494934,"name":"Dark Moon","description":"Increases the [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] of a friendly target by (Buff0-0) for (Buff0-Time) seconds. Also, when their attacks go critical, you may gain the Power of the Dark Moon status which increases your magic power by (Buff0-505912)% and healing power by (Buff1-505912)% for (Buff-Time-505912) seconds.\n(This skill cannot be used on yourself.)","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581129,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505911,504871,505912]}}],"icon":"/assets/ui/rom-spells/581129.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-60","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546837,"sourceSkillId":499946,"name":"Wasteland","description":"Enables [499948] to inflict extra [SC_SKILLTIPS_DARK]. While the falling rocks are in effect, the target's critical hit rate resistance is reduced.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801304,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499946,"name":"Wasteland","description":"Enables [499948] to inflict extra [SC_SKILLTIPS_DARK]. While the falling rocks are in effect, the target's critical hit rate resistance is reduced.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801304,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801304.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-70","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546838,"sourceSkillId":499944,"name":"Knee Ulcer","description":"Casts a [494321] and roots the target for (Buff-Time-623094) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801352,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623094],"components":[{"id":623094,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499944,"name":"Knee Ulcer","description":"Casts a [494321] and roots the target for (Buff-Time-623094) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801352,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623094]}}],"icon":"/assets/ui/rom-spells/801352.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-15","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":543088,"sourceSkillId":494025,"name":"Earth Chain","description":"Inflicts (DMG1) [SC_SKILLTIPS_EARTH] to 3 targets within a radius of 60. Each hit does only 70% the damage of the preceding hit. \nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_EARTH] on targets. Each hit does only 70% the damage of the preceding hit.","target":"hostile","range":18,"castTimeMs":2000,"cooldownMs":4000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":579085,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620437,503827,620216,504886],"components":[{"id":620437,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-60,"damagePowerSkillLevelArg":24,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620216,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"damagePower":-40,"damagePowerSkillLevelArg":24,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504886,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":494025,"name":"Earth Chain","description":"Inflicts (DMG1) [SC_SKILLTIPS_EARTH] to 3 targets within a radius of 60. Each hit does only 70% the damage of the preceding hit. \nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_EARTH] on targets. Each hit does only 70% the damage of the preceding hit.","target":"hostile","range":18,"castTimeMs":2000,"cooldownMs":4000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":579085,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620437,503827,620216,504886]}}],"icon":"/assets/ui/rom-spells/579085.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-20","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":543098,"sourceSkillId":494026,"name":"Spring of Blessings","description":"Causes party members within a range of 120 to recover (Buff0-Dot) HP every 2 seconds, for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579086,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504535],"components":[{"id":504535,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8299,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":15,"dot":{"timeSeconds":2,"type":0,"base":15,"skillLevelArg":22},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":494026,"name":"Spring of Blessings","description":"Causes party members within a range of 120 to recover (Buff0-Dot) HP every 2 seconds, for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579086,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504535]}}],"icon":"/assets/ui/rom-spells/579086.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-25","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":543108,"sourceSkillId":494027,"name":"Shield of Light","description":"Baths 3 friendly targets within a range of 60 in a shield of light that can absorb (Buff0-Shield)% HP damage for (Buff0-Time) seconds. (Effect cannot be used in conjunction with Wave Armor)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":579087,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620449],"components":[{"id":620449,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":5,"skillLevelArg":2}}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":494027,"name":"Shield of Light","description":"Baths 3 friendly targets within a range of 60 in a shield of light that can absorb (Buff0-Shield)% HP damage for (Buff0-Time) seconds. (Effect cannot be used in conjunction with Wave Armor)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":579087,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620449]}}],"icon":"/assets/ui/rom-spells/579087.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-30","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":30,"keyItemId":543118,"sourceSkillId":494322,"name":"Inspiration","description":"When your Fireball hits there is a chance that you will be Inspired, reducing the casting time of your next spell to less than 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579871,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":494322,"name":"Inspiration","description":"When your Fireball hits there is a chance that you will be Inspired, reducing the casting time of your next spell to less than 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579871,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579871.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-35","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":35,"keyItemId":543128,"sourceSkillId":494370,"name":"Spiritual Gush","description":"Reduces the mana requirement for your spells by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579872,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505163],"components":[{"id":505163,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":33,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":494370,"name":"Spiritual Gush","description":"Reduces the mana requirement for your spells by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579872,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505163]}}],"icon":"/assets/ui/rom-spells/579872.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-40","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":543138,"sourceSkillId":494371,"name":"Quick Help","description":"When the effect of Rock Protection ends you will additionally recover MP and HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579873,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":494371,"name":"Quick Help","description":"When the effect of Rock Protection ends you will additionally recover MP and HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579873,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579873.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-45","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":45,"keyItemId":543148,"sourceSkillId":494935,"name":"Holy Fury","description":"Increases the amount of damage caused by Mother Nature's Wrath when you do not have any of Nature's Power and lengthens effect time by 6 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581130,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":494935,"name":"Holy Fury","description":"Increases the amount of damage caused by Mother Nature's Wrath when you do not have any of Nature's Power and lengthens effect time by 6 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581130,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581130.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-50","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":543158,"sourceSkillId":494936,"name":"Summer Banquet","description":"Temporarily increases the [SC_SKILLTIPS_PARRY] of a friendly target by (Buff0-0) and increases their [SC_SKILLTIPS_HP] by (Buff4-0)% for (Buff0-Time) seconds. When they parry, you may gain the Power of Summer status, which increases your [SC_SKILLTIPS_02] by (Buff0-505910)% and healing power by (Buff1-505910)% for (Buff-Time-505910) seconds.\n(You cannot use this skill on yourself.)","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581131,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505909,506402,505910],"components":[{"id":505909,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":145}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":495067,"onBuffTimeoutMagicId":495408,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506402,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505910,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":5},{"type":149,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":494936,"name":"Summer Banquet","description":"Temporarily increases the [SC_SKILLTIPS_PARRY] of a friendly target by (Buff0-0) and increases their [SC_SKILLTIPS_HP] by (Buff4-0)% for (Buff0-Time) seconds. When they parry, you may gain the Power of Summer status, which increases your [SC_SKILLTIPS_02] by (Buff0-505910)% and healing power by (Buff1-505910)% for (Buff-Time-505910) seconds.\n(You cannot use this skill on yourself.)","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581131,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505909,506402,505910]}}],"icon":"/assets/ui/rom-spells/581131.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-60","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546839,"sourceSkillId":499931,"name":"Sounds of Season","description":"Power of Summer that is triggered by [499933] is transferred from a personal effect to a party effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801305,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499931,"name":"Sounds of Season","description":"Power of Summer that is triggered by [499933] is transferred from a personal effect to a party effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801305,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801305.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-70","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546840,"sourceSkillId":499941,"name":"Inspiration Display","description":"[499942] can also trigger an Inspiration effect. In a [494370] state, the triggered Inspiration has a chance that it will be doubled.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801353,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499941,"name":"Inspiration Display","description":"[499942] can also trigger an Inspiration effect. In a [494370] state, the triggered Inspiration has a chance that it will be doubled.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801353,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801353.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-15","classId":"rom-druid","secondaryClassId":"rom-warden","group":"passive","unlockLevel":15,"keyItemId":543089,"sourceSkillId":494028,"name":"Enhanced Briar Shield","description":"Allows your Briar Shield to be used on other friendly targets to protect both you and them. However, friendly targets won't receive any increase in [SC_SKILLTIPS_DEF]. \nMana is restored when Briar Shield reflects damage.\n(Can only be placed on one player at a time. The restoration effect can only be triggered once every (Buff-Time-504870) seconds.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579088,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504870],"components":[{"id":504870,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494028,"name":"Enhanced Briar Shield","description":"Allows your Briar Shield to be used on other friendly targets to protect both you and them. However, friendly targets won't receive any increase in [SC_SKILLTIPS_DEF]. \nMana is restored when Briar Shield reflects damage.\n(Can only be placed on one player at a time. The restoration effect can only be triggered once every (Buff-Time-504870) seconds.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579088,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504870]}}],"icon":"/assets/ui/rom-spells/579088.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-20","classId":"rom-druid","secondaryClassId":"rom-warden","group":"passive","unlockLevel":20,"keyItemId":543099,"sourceSkillId":494029,"name":"Avalanche","description":"Causes your Rockslide to cause additional Earth damage. Also has a chance of restoring 1 point of Nature's power to you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579089,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494029,"name":"Avalanche","description":"Causes your Rockslide to cause additional Earth damage. Also has a chance of restoring 1 point of Nature's power to you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579089,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579089.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-25","classId":"rom-druid","secondaryClassId":"rom-warden","group":"passive","unlockLevel":25,"keyItemId":543109,"sourceSkillId":494200,"name":"Extended Recovery","description":"Prolongs the effect of your Recover spell by 6 seconds, and has a chance of restoring 1 point of Nature's Power to you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578410,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494200,"name":"Extended Recovery","description":"Prolongs the effect of your Recover spell by 6 seconds, and has a chance of restoring 1 point of Nature's Power to you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578410,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/578410.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-30","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":30,"keyItemId":543119,"sourceSkillId":494323,"name":"Healing Ripple","description":"Restores (DMG1) HP to up to 3 friendly targets in a range of 60. Each time healing power is halved.\nIf you possess Nature's Power, it will cosume 1 point of Nature's Power to enhance the power and restores (DMG0) HP to the friendly targets. Each time healing power is halved.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.6},"source":{"imageId":579874,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504864,503827,620436,620441],"components":[{"id":504864,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":60,"fixedValue":0,"attack":{"type":0,"damagePower":60,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620436,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":45,"fixedValue":0,"attack":{"type":0,"damagePower":45,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494323,"name":"Healing Ripple","description":"Restores (DMG1) HP to up to 3 friendly targets in a range of 60. Each time healing power is halved.\nIf you possess Nature's Power, it will cosume 1 point of Nature's Power to enhance the power and restores (DMG0) HP to the friendly targets. Each time healing power is halved.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.6},"source":{"imageId":579874,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504864,503827,620436,620441]}}],"icon":"/assets/ui/rom-spells/579874.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-35","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":35,"keyItemId":543129,"sourceSkillId":494372,"name":"Mysterious Grace","description":"Increases your and your party members' [SC_SKILLTIPS_MDMG] by (current [SC_SKILLTIPS_MDMG] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579875,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505165,620451],"components":[{"id":505165,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":182,"abilityModifiers":[{"type":191,"value":15}],"abilitySkillLevelArg":10,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":496897,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620451,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":268959841,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494372,"name":"Mysterious Grace","description":"Increases your and your party members' [SC_SKILLTIPS_MDMG] by (current [SC_SKILLTIPS_MDMG] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579875,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505165,620451]}}],"icon":"/assets/ui/rom-spells/579875.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-40","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":40,"keyItemId":543139,"sourceSkillId":494373,"name":"Essence Extraction","description":"Converts 10% MP into 4 points of Nature's Power.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579876,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505166],"components":[{"id":505166,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":494373,"name":"Essence Extraction","description":"Converts 10% MP into 4 points of Nature's Power.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579876,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505166]}}],"icon":"/assets/ui/rom-spells/579876.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-45","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":45,"keyItemId":543149,"sourceSkillId":494937,"name":"Grace of the Forest","description":"Increases your mana by (Buff0-0) and healing by (Buff0-1)% for (Buff0-Time) seconds. Also, when you have Nature's Power it will additionally increase your maximum mana by (Buff0-505711)% and healing by (Buff1-505711)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581132,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505901,505711],"components":[{"id":505901,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":201326695,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":500},{"type":149,"value":3}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":495063,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505711,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":168,"value":10},{"type":149,"value":3}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":494937,"name":"Grace of the Forest","description":"Increases your mana by (Buff0-0) and healing by (Buff0-1)% for (Buff0-Time) seconds. Also, when you have Nature's Power it will additionally increase your maximum mana by (Buff0-505711)% and healing by (Buff1-505711)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581132,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505901,505711]}}],"icon":"/assets/ui/rom-spells/581132.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-50","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543159,"sourceSkillId":494938,"name":"Spirit of Life","description":"Summons a [494938] brimming with the energy of the earth. It heals (DMG-505712) + (DMG-620452) HP to all friendly targets within a range of 70 every 4 seconds.\nThe [494938] lasts for (Buff-Time-505938) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":50,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":1},"source":{"imageId":581133,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505946,505712,620452,505938],"components":[{"id":505946,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505712,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":0,"attack":{"type":0,"damagePower":100,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620452,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"damagePower":1,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505938,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494938,"name":"Spirit of Life","description":"Summons a [494938] brimming with the energy of the earth. It heals (DMG-505712) + (DMG-620452) HP to all friendly targets within a range of 70 every 4 seconds.\nThe [494938] lasts for (Buff-Time-505938) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":50,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":1},"source":{"imageId":581133,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505946,505712,620452,505938]}}],"icon":"/assets/ui/rom-spells/581133.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-60","classId":"rom-druid","secondaryClassId":"rom-warden","group":"passive","unlockLevel":60,"keyItemId":546841,"sourceSkillId":499938,"name":"Briar Life","description":"Gives [494062] an additional increase in [SC_SKILLTIPS_HEAL_PASSIVE]. When [494028] is triggered and MP are recovered, it causes an extra (DMG-623125) healing effect with a range of 50.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801306,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623125],"components":[{"id":623125,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"damagePower":70,"damagePowerSkillLevelArg":32,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499938,"name":"Briar Life","description":"Gives [494062] an additional increase in [SC_SKILLTIPS_HEAL_PASSIVE]. When [494028] is triggered and MP are recovered, it causes an extra (DMG-623125) healing effect with a range of 50.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801306,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623125]}}],"icon":"/assets/ui/rom-spells/801306.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-70","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":70,"keyItemId":546842,"sourceSkillId":499936,"name":"Gift Pulse","description":"Consumes all Power of Nature and heals nearby party members. Every point of power of nature that is consumed heals (DMG-623140) HP. The maximum amount of healing is 100%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801354,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623149,623140],"components":[{"id":623149,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623140,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":10,"fixedValue":0,"attack":{"type":0,"damagePower":10,"damagePowerSkillLevelArg":100,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499936,"name":"Gift Pulse","description":"Consumes all Power of Nature and heals nearby party members. Every point of power of nature that is consumed heals (DMG-623140) HP. The maximum amount of healing is 100%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801354,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623149,623140]}}],"icon":"/assets/ui/rom-spells/801354.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-15","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":15,"keyItemId":545880,"sourceSkillId":498631,"name":"Psychic Slash","description":"Combines psychic powers with a slash move to cause greater magical damage in a farther range. Also, Bleed never requires special weapon activation.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800006,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":498631,"name":"Psychic Slash","description":"Combines psychic powers with a slash move to cause greater magical damage in a farther range. Also, Bleed never requires special weapon activation.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800006,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800006.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-20","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":545881,"sourceSkillId":498636,"name":"Mind-Body Unification","description":"Increases damage caused by Psychic Arrows and earns rage for each hit.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800007,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":498636,"name":"Mind-Body Unification","description":"Increases damage caused by Psychic Arrows and earns rage for each hit.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800007,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800007.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-25","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":545882,"sourceSkillId":498638,"name":"Vigorous Maneuver","description":"Berserk inflicts an extra increase in magical attack power and casting speed. Defensive Formation inflicts an increase in movement speed and casting speed.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800008,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":498638,"name":"Vigorous Maneuver","description":"Berserk inflicts an extra increase in magical attack power and casting speed. Defensive Formation inflicts an increase in movement speed and casting speed.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800008,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800008.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-30","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":30,"keyItemId":545883,"sourceSkillId":498634,"name":"Breathing Control","description":"Using Enraged can recover extra focus. When casting Psychic Arrow, Warp Charge or Weakening Weave Curse, there is a chance to reset the cooldown time of Enraged.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800009,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":498634,"name":"Breathing Control","description":"Using Enraged can recover extra focus. When casting Psychic Arrow, Warp Charge or Weakening Weave Curse, there is a chance to reset the cooldown time of Enraged.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800009,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800009.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-35","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":545884,"sourceSkillId":498642,"name":"Mind Transference","description":"Converts all rage to psi. Each 35 points of rage can be exchanged for 1 psi.\n[SC_SKILLTIPS_9_PLUS2]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800010,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621320],"components":[{"id":621320,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"clearFlags":9,"abilityModifiers":[{"type":134,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":20,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":498642,"name":"Mind Transference","description":"Converts all rage to psi. Each 35 points of rage can be exchanged for 1 psi.\n[SC_SKILLTIPS_9_PLUS2]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800010,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621320]}}],"icon":"/assets/ui/rom-spells/800010.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-40","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":545885,"sourceSkillId":498645,"name":"Heart Fence","description":"[SC_SKILLTIPS_P2]\nReduces friendly target's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621321)% for (Buff-Time-621321) seconds and consumes all rage. Effect can be extended by 1 second for every 20 points rage that is consumed.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800011,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621323,621321],"components":[{"id":621323,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"clearFlags":9,"abilityModifiers":[{"type":134,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":20,"fixedValue":0,"summonCreatureId":0},{"id":621321,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":2,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":206,"value":-50},{"type":207,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":498645,"name":"Heart Fence","description":"[SC_SKILLTIPS_P2]\nReduces friendly target's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621321)% for (Buff-Time-621321) seconds and consumes all rage. Effect can be extended by 1 second for every 20 points rage that is consumed.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800011,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621323,621321]}}],"icon":"/assets/ui/rom-spells/800011.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-45","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":45,"keyItemId":545886,"sourceSkillId":498646,"name":"Consistent Heart Strike","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on target. If target is in a [501577] state, then the state's effective time will be reset and full rage will be restored. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800012,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621325,501577],"components":[{"id":621325,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-120,"fixedValue":0,"attack":{"type":0,"damagePower":-120,"damagePowerSkillLevelArg":50,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":498646,"name":"Consistent Heart Strike","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on target. If target is in a [501577] state, then the state's effective time will be reset and full rage will be restored. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800012,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621325,501577]}}],"icon":"/assets/ui/rom-spells/800012.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-50","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":545887,"sourceSkillId":498647,"name":"Heart Death","description":"Extends time for Bleed effect caused by Slash. Also further reduces dark attribute resistance and increases damage inflicted by Soul Pain.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800013,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":498647,"name":"Heart Death","description":"Extends time for Bleed effect caused by Slash. Also further reduces dark attribute resistance and increases damage inflicted by Soul Pain.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800013,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800013.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-60","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546843,"sourceSkillId":499870,"name":"Deep Breathing Control","description":"Your [498634] recovers more focus and an extra 10% HP.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801630,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499870,"name":"Deep Breathing Control","description":"Your [498634] recovers more focus and an extra 10% HP.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801630,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801630.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-70","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546844,"sourceSkillId":499868,"name":"Enhanced Mind Transference","description":"The rage consumption of [499869] drops from 35 to 20 and yields 1 extra psi.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801631,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499868,"name":"Enhanced Mind Transference","description":"The rage consumption of [499869] drops from 35 to 20 and yields 1 extra psi.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801631,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801631.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-15","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":15,"keyItemId":545912,"sourceSkillId":498650,"name":"Saces' Fury","description":"When the skill lands a critical hit during your next 5 attacks, it will increase [SC_SKILLTIPS_MCRI_POWER] by (Buff0-621331)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800063,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621439,621331],"components":[{"id":621439,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621331,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32903,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":21,"value":50}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":851623,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498650,"name":"Saces' Fury","description":"When the skill lands a critical hit during your next 5 attacks, it will increase [SC_SKILLTIPS_MCRI_POWER] by (Buff0-621331)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800063,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621439,621331]}}],"icon":"/assets/ui/rom-spells/800063.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-20","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":545913,"sourceSkillId":498665,"name":"Mind Rune","description":"Increases maximum HP by (Buff0-0)% and [SC_SKILLTIPS_INT] by (Buff0-1). Increases (Buff0-Dot) rage every 2 seconds for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800064,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621395],"components":[{"id":621395,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":10},{"type":4,"value":80}],"abilitySkillLevelArg":8,"dotTime":2,"dotType":2,"dotBase":10,"dot":{"timeSeconds":2,"type":2,"base":10,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498665,"name":"Mind Rune","description":"Increases maximum HP by (Buff0-0)% and [SC_SKILLTIPS_INT] by (Buff0-1). Increases (Buff0-Dot) rage every 2 seconds for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800064,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621395]}}],"icon":"/assets/ui/rom-spells/800064.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-25","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"passive","unlockLevel":25,"keyItemId":545914,"sourceSkillId":498667,"name":"Electric Transference","description":"Extends the [498522] state by 10 seconds and also increases [SC_SKILLTIPS_DARK] on the target by (Buff0-621396)%.\n\nAnd your [498522] will also give this effect:\n[SC_SKILLTIPS_9_1S]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800065,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621396],"components":[{"id":621396,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilityModifiers":[{"type":226,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498667,"name":"Electric Transference","description":"Extends the [498522] state by 10 seconds and also increases [SC_SKILLTIPS_DARK] on the target by (Buff0-621396)%.\n\nAnd your [498522] will also give this effect:\n[SC_SKILLTIPS_9_1S]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800065,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621396]}}],"icon":"/assets/ui/rom-spells/800065.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-30","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"passive","unlockLevel":30,"keyItemId":545915,"sourceSkillId":498669,"name":"Runecraft - Ingenuity","description":"Defense Net cooldown time is reduced by 30 seconds. Caster will also earn Defense Net when skill is used on friendly targets.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800066,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498669,"name":"Runecraft - Ingenuity","description":"Defense Net cooldown time is reduced by 30 seconds. Caster will also earn Defense Net when skill is used on friendly targets.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800066,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800066.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-35","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":35,"keyItemId":545916,"sourceSkillId":498673,"name":"Rune Energy Devotion","description":"Reduces inflicted aggro by (Buff0-1)% and increases dark attribute magic power by (Buff0-0)% for (Buff0-Time) seconds. Also immediately restores (DMG4) rage. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800067,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621403,621681],"components":[{"id":621403,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":50,"value":7},{"type":138,"value":-8}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621681,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":9,"abilityModifiers":[{"type":134,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":35,"fixedValue":0,"attack":{"type":2,"damagePower":35,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498673,"name":"Rune Energy Devotion","description":"Reduces inflicted aggro by (Buff0-1)% and increases dark attribute magic power by (Buff0-0)% for (Buff0-Time) seconds. Also immediately restores (DMG4) rage. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800067,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621403,621681]}}],"icon":"/assets/ui/rom-spells/800067.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-40","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":40,"keyItemId":545917,"sourceSkillId":498676,"name":"Imagination Release","description":"[SC_SKILLTIPS_P2]\nConverts the target's [621190] effect to 35 focus.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800068,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621405,621190],"components":[{"id":621405,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":0,"summonCreatureId":0},{"id":621190,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498676,"name":"Imagination Release","description":"[SC_SKILLTIPS_P2]\nConverts the target's [621190] effect to 35 focus.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800068,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621405,621190]}}],"icon":"/assets/ui/rom-spells/800068.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-45","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":45,"keyItemId":545918,"sourceSkillId":498677,"name":"Saces' Impulse","description":"[SC_SKILLTIPS_P1]\nRecovers (Buff0-Dot)% HP every second and increases [SC_SKILLTIPS_INT] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800069,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621407],"components":[{"id":621407,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":163,"value":9}],"abilitySkillLevelArg":8,"dotTime":1,"dotType":5,"dotBase":4,"dot":{"timeSeconds":1,"type":5,"base":4,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498677,"name":"Saces' Impulse","description":"[SC_SKILLTIPS_P1]\nRecovers (Buff0-Dot)% HP every second and increases [SC_SKILLTIPS_INT] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800069,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621407]}}],"icon":"/assets/ui/rom-spells/800069.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-50","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"passive","unlockLevel":50,"keyItemId":545919,"sourceSkillId":498681,"name":"Psychic Extension","description":"Your [498522] and [498526] can be cast over long distances and cause [SC_SKILLTIPS_DARK]. Reduces [498522] cooldown time by 2 seconds, and [498526] cooldown time by 3 seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800070,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498681,"name":"Psychic Extension","description":"Your [498522] and [498526] can be cast over long distances and cause [SC_SKILLTIPS_DARK]. Reduces [498522] cooldown time by 2 seconds, and [498526] cooldown time by 3 seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800070,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800070.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-60","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":60,"keyItemId":546851,"sourceSkillId":499854,"name":"Rage Sublimation","description":"Consumes 100 rage and yields 6 psi points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"rage","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801638,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623472],"components":[{"id":623472,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":499854,"name":"Rage Sublimation","description":"Consumes 100 rage and yields 6 psi points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"rage","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801638,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623472]}}],"icon":"/assets/ui/rom-spells/801638.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-70","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"passive","unlockLevel":70,"keyItemId":546852,"sourceSkillId":499852,"name":"Psychic Tap","description":"When a target has been hit by [497957], there is a chance that your [SC_SKILLTIPS_MDMG] will be increased and a shield will be invoked that absorbs damage up to 10% of your HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801639,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":499852,"name":"Psychic Tap","description":"When a target has been hit by [497957], there is a chance that your [SC_SKILLTIPS_MDMG] will be increased and a shield will be invoked that absorbs damage up to 10% of your HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801639,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801639.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-15","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":545888,"sourceSkillId":498670,"name":"Soul Poisoned Fang","description":"Reduces all of target's resistance by (Buff0-0) points and inflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] on target every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800014,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621399],"components":[{"id":621399,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":22,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":26,"value":-16}],"abilitySkillLevelArg":100,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":498670,"name":"Soul Poisoned Fang","description":"Reduces all of target's resistance by (Buff0-0) points and inflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] on target every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800014,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621399]}}],"icon":"/assets/ui/rom-spells/800014.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-20","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":20,"keyItemId":545889,"sourceSkillId":498672,"name":"Soul Hit","description":"Shadowstab doesn't require a dagger and inflicts magical damage. \nThe effect time of [500654] will be extended by 12 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800015,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500654],"components":[{"id":500654,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":45},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":498672,"name":"Soul Hit","description":"Shadowstab doesn't require a dagger and inflicts magical damage. \nThe effect time of [500654] will be extended by 12 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800015,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500654]}}],"icon":"/assets/ui/rom-spells/800015.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-25","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":545890,"sourceSkillId":498675,"name":"Ready and Waiting","description":"Increases [SC_SKILLTIPS_INT] when you enter a Willpower Blade or Willpower Construct state for (Buff-Time-621404) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800016,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621404],"components":[{"id":621404,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524355,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":163,"value":2}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":498675,"name":"Ready and Waiting","description":"Increases [SC_SKILLTIPS_INT] when you enter a Willpower Blade or Willpower Construct state for (Buff-Time-621404) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800016,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621404]}}],"icon":"/assets/ui/rom-spells/800016.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-30","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":30,"keyItemId":545891,"sourceSkillId":498678,"name":"Soul Raid","description":"Increases [SC_SKILLTIPS_MOVE] and dark damage after Shadow Step is used. Lasts for (Buff-Time-621406) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800017,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621406],"components":[{"id":621406,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10},{"type":50,"value":10}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":498678,"name":"Soul Raid","description":"Increases [SC_SKILLTIPS_MOVE] and dark damage after Shadow Step is used. Lasts for (Buff-Time-621406) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800017,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621406]}}],"icon":"/assets/ui/rom-spells/800017.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-35","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":35,"keyItemId":545892,"sourceSkillId":498679,"name":"Spirit Revival","description":"Gives 1 psi after a Willpower Blade or Willpower Construct state ends.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800018,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":498679,"name":"Spirit Revival","description":"Gives 1 psi after a Willpower Blade or Willpower Construct state ends.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800018,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800018.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-40","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":545893,"sourceSkillId":498695,"name":"Liquidation Suffering","description":"[SC_SKILLTIPS_P2]\nTemporarily increases aggro caused by a friendly target by (Buff0-0)% and reduces the aggro caused by the caster and other party members by (Buff0-621433)%. Lasts for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800019,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621432,621654,621433],"components":[{"id":621432,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621654,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621433,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":35,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":498695,"name":"Liquidation Suffering","description":"[SC_SKILLTIPS_P2]\nTemporarily increases aggro caused by a friendly target by (Buff0-0)% and reduces the aggro caused by the caster and other party members by (Buff0-621433)%. Lasts for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800019,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621432,621654,621433]}}],"icon":"/assets/ui/rom-spells/800019.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-45","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":45,"keyItemId":545894,"sourceSkillId":498699,"name":"End of Thought","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on target. If target's HP is less than 35%, the caster will earn 1 psi for every second. This can happen 4 times. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.8},"source":{"imageId":800020,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621435],"components":[{"id":621435,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-80,"fixedValue":0,"attack":{"type":0,"damagePower":-80,"damagePowerSkillLevelArg":45,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":498699,"name":"End of Thought","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on target. If target's HP is less than 35%, the caster will earn 1 psi for every second. This can happen 4 times. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.8},"source":{"imageId":800020,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621435]}}],"icon":"/assets/ui/rom-spells/800020.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-50","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":545895,"sourceSkillId":498700,"name":"Crime and Punishment","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on the target. If the target has been affected by Perception Extraction, Soul Pain or Soul Poisoned Fang then each additional state will increase damage caused by [498700] by 25% and will reset the effect duration of these states.\n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800021,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621440],"components":[{"id":621440,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-120,"fixedValue":0,"attack":{"type":0,"damagePower":-120,"damagePowerSkillLevelArg":50,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":498700,"name":"Crime and Punishment","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on the target. If the target has been affected by Perception Extraction, Soul Pain or Soul Poisoned Fang then each additional state will increase damage caused by [498700] by 25% and will reset the effect duration of these states.\n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800021,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621440]}}],"icon":"/assets/ui/rom-spells/800021.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-60","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546845,"sourceSkillId":499866,"name":"Psychic Projectile","description":"When a target is hit by [499867], all damage caused by the target is decreased by (Buff0-623417)% for (Buff-Time-623417) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801632,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623417],"components":[{"id":623417,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":-50},{"type":205,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499866,"name":"Psychic Projectile","description":"When a target is hit by [499867], all damage caused by the target is decreased by (Buff0-623417)% for (Buff-Time-623417) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801632,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623417]}}],"icon":"/assets/ui/rom-spells/801632.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-70","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546846,"sourceSkillId":499864,"name":"Shadowstab Guile","description":"When using [499865] you will obtain 1 additional psi and 3 extra psi when using [499666].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801633,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499864,"name":"Shadowstab Guile","description":"When using [499865] you will obtain 1 additional psi and 3 extra psi when using [499666].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801633,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801633.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-15","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":15,"keyItemId":545896,"sourceSkillId":498694,"name":"Psychic Flash","description":"Psychic Arrows and Weakening Weave Curse can cause an extra (FixDMG-621434) x INT [SC_SKILLTIPS_MDMG].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800027,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621434],"components":[{"id":621434,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-0.4,"attack":{"type":0,"damagePower":0,"damagePowerSkillLevelArg":0,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":498694,"name":"Psychic Flash","description":"Psychic Arrows and Weakening Weave Curse can cause an extra (FixDMG-621434) x INT [SC_SKILLTIPS_MDMG].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800027,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621434]}}],"icon":"/assets/ui/rom-spells/800027.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-20","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":545897,"sourceSkillId":498697,"name":"Flaming Heart Strike","description":"Inflicts (DMG0) + (FixDMG-621438) x INT [SC_SKILLTIPS_FLAME] on target. \n[SC_SKILLTIPS_9_3S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":65000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800028,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621438],"components":[{"id":621438,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":-1,"attack":{"type":0,"damagePower":-100,"damagePowerSkillLevelArg":45,"fixedValue":-1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":498697,"name":"Flaming Heart Strike","description":"Inflicts (DMG0) + (FixDMG-621438) x INT [SC_SKILLTIPS_FLAME] on target. \n[SC_SKILLTIPS_9_3S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":65000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800028,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621438]}}],"icon":"/assets/ui/rom-spells/800028.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-25","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":25,"keyItemId":545898,"sourceSkillId":498698,"name":"Warp Flash","description":"Warp Charge inflicts an extra (FixDMG-621434) x INT [SC_SKILLTIPS_MDMG] and when the skill hits, it raises the [SC_SKILLTIPS_DPS] and [SC_SKILLTIPS_CAST] of nearby party members.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800029,"sourceEffectType":2,"sourceTarget":6,"componentIds":[621434],"components":[{"id":621434,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-0.4,"attack":{"type":0,"damagePower":0,"damagePowerSkillLevelArg":0,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":498698,"name":"Warp Flash","description":"Warp Charge inflicts an extra (FixDMG-621434) x INT [SC_SKILLTIPS_MDMG] and when the skill hits, it raises the [SC_SKILLTIPS_DPS] and [SC_SKILLTIPS_CAST] of nearby party members.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800029,"sourceEffectType":2,"sourceTarget":6,"componentIds":[621434]}}],"icon":"/assets/ui/rom-spells/800029.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-30","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":545899,"sourceSkillId":498703,"name":"Focus Building","description":"Increases [SC_SKILLTIPS_INT] by (Buff0-621443)% every second while in effect. Can be stacked a maximum of 10 times, but effect is re-stacked after moving. \n(This skill consumes (Buff0-Dot) focus every second. Effect stops if there is insufficient focus.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800030,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621444,621443],"components":[{"id":621444,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":47,"specialActionFlags":0,"assistType":-1,"clearFlags":256,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":498704,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":497740,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":3,"dotBase":-2,"dot":{"timeSeconds":1,"type":3,"base":-2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621443,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":-10,"settingFlags":32771,"specialActionFlags":0,"assistType":-1,"clearFlags":4,"abilityModifiers":[{"type":163,"value":3}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":498703,"name":"Focus Building","description":"Increases [SC_SKILLTIPS_INT] by (Buff0-621443)% every second while in effect. Can be stacked a maximum of 10 times, but effect is re-stacked after moving. \n(This skill consumes (Buff0-Dot) focus every second. Effect stops if there is insufficient focus.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800030,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621444,621443]}}],"icon":"/assets/ui/rom-spells/800030.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-35","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":545900,"sourceSkillId":498705,"name":"Soul Brand","description":"When [497964], [497960] or [498545] hits, it carries an extra Soul Brand effect. It increases the [SC_SKILLTIPS_DARK] and [SC_SKILLTIPS_FLAME] on target by (Buff0-621446)% for (Buff-Time-621446) seconds. This effect can be stacked 4 times.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800031,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621446],"components":[{"id":621446,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":223,"value":9},{"type":226,"value":9}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":498705,"name":"Soul Brand","description":"When [497964], [497960] or [498545] hits, it carries an extra Soul Brand effect. It increases the [SC_SKILLTIPS_DARK] and [SC_SKILLTIPS_FLAME] on target by (Buff0-621446)% for (Buff-Time-621446) seconds. This effect can be stacked 4 times.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800031,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621446]}}],"icon":"/assets/ui/rom-spells/800031.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-40","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":40,"keyItemId":545901,"sourceSkillId":498709,"name":"Saces' Cracking Spell","description":"[SC_SKILLTIPS_P2]\nReduces target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE] by (Buff0-0). Lasts for (Buff0-Time) seconds.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800032,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621450],"components":[{"id":621450,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":182,"value":-20},{"type":183,"value":-20}],"abilitySkillLevelArg":45,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":498709,"name":"Saces' Cracking Spell","description":"[SC_SKILLTIPS_P2]\nReduces target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE] by (Buff0-0). Lasts for (Buff0-Time) seconds.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800032,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621450]}}],"icon":"/assets/ui/rom-spells/800032.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-45","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":545902,"sourceSkillId":498710,"name":"Soul Brand Sting","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG4) + (FixDMG-621473) x INT [SC_SKILLTIPS_DARK] and [SC_SKILLTIPS_FLAME] on target and resets the cooldown time for Flaming Heart Strike. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800033,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621473,621474],"components":[{"id":621473,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-100,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":3,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621474,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":-0.2,"attack":{"type":0,"damagePower":-100,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":3,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":498710,"name":"Soul Brand Sting","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG4) + (FixDMG-621473) x INT [SC_SKILLTIPS_DARK] and [SC_SKILLTIPS_FLAME] on target and resets the cooldown time for Flaming Heart Strike. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800033,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621473,621474]}}],"icon":"/assets/ui/rom-spells/800033.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-50","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":545903,"sourceSkillId":498711,"name":"Thinking Overload","description":"Restores (Buff0-Dot) focus every 2 seconds and increases [SC_SKILLTIPS_CAST] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800034,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621451],"components":[{"id":621451,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":-15}],"abilitySkillLevelArg":0,"dotTime":2,"dotType":3,"dotBase":5,"dot":{"timeSeconds":2,"type":3,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":498711,"name":"Thinking Overload","description":"Restores (Buff0-Dot) focus every 2 seconds and increases [SC_SKILLTIPS_CAST] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800034,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621451]}}],"icon":"/assets/ui/rom-spells/800034.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-60","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546847,"sourceSkillId":499862,"name":"Blazing Barrier","description":"[499863] increases your [SC_SKILLTIPS_FLAME].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801634,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499862,"name":"Blazing Barrier","description":"[499863] increases your [SC_SKILLTIPS_FLAME].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801634,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801634.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-70","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546848,"sourceSkillId":499860,"name":"Silent Seal","description":"When hit by [499861], the target will be marked out. The next time it is hit, the damage received will be doubled.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801635,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499860,"name":"Silent Seal","description":"When hit by [499861], the target will be marked out. The next time it is hit, the damage received will be doubled.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801635,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801635.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-15","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":15,"keyItemId":545904,"sourceSkillId":498633,"name":"Healing Fortune","description":"When a psychic arrow hits, there is a chance that your next Urgent Heal will become an instant spell without consuming any MP. Also increases the healing amount of Urgent Heal.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800035,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":498633,"name":"Healing Fortune","description":"When a psychic arrow hits, there is a chance that your next Urgent Heal will become an instant spell without consuming any MP. Also increases the healing amount of Urgent Heal.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800035,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800035.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-20","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":20,"keyItemId":545905,"sourceSkillId":498640,"name":"Protection Weave Curse","description":"Your Regenerate will be able to increase your target's [SC_SKILLTIPS_INT] and [SC_SKILLTIPS_MND] by (Buff0-621318)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800036,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621318],"components":[{"id":621318,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":25,"abilityModifiers":[{"type":163,"value":10},{"type":164,"value":10}],"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":498640,"name":"Protection Weave Curse","description":"Your Regenerate will be able to increase your target's [SC_SKILLTIPS_INT] and [SC_SKILLTIPS_MND] by (Buff0-621318)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800036,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621318]}}],"icon":"/assets/ui/rom-spells/800036.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-25","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":25,"keyItemId":545906,"sourceSkillId":498641,"name":"Ring of Comfort","description":"Restores (DMG0) HP for 6 friendly targets in range.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":9,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800037,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621319],"components":[{"id":621319,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"damagePower":70,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":498641,"name":"Ring of Comfort","description":"Restores (DMG0) HP for 6 friendly targets in range.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":9,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800037,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621319]}}],"icon":"/assets/ui/rom-spells/800037.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-30","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":30,"keyItemId":545907,"sourceSkillId":498643,"name":"Psychic Rising Tide","description":"Rising Tide becomes an instant spell, but has a 5 second cooldown time. When Rising Tide hits, there is a chance that your next Urgent Heal will become an instant spell that doesn't require any MP. Also increases the healing amount of Urgent Heal.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800038,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":498643,"name":"Psychic Rising Tide","description":"Rising Tide becomes an instant spell, but has a 5 second cooldown time. When Rising Tide hits, there is a chance that your next Urgent Heal will become an instant spell that doesn't require any MP. Also increases the healing amount of Urgent Heal.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800038,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800038.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-35","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":545908,"sourceSkillId":498648,"name":"Mind Shield","description":"[SC_SKILLTIPS_DEF] will be enhanced by Defense Net, but the effect time is reduced by 1 second. Urgent Heal carries a chance to reset cooldown time for Ring of Comfort.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800039,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":498648,"name":"Mind Shield","description":"[SC_SKILLTIPS_DEF] will be enhanced by Defense Net, but the effect time is reduced by 1 second. Urgent Heal carries a chance to reset cooldown time for Ring of Comfort.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800039,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800039.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-40","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":40,"keyItemId":545909,"sourceSkillId":498649,"name":"Soul Enlightenment","description":"[SC_SKILLTIPS_P2]\nCaster and friendly party members earn Soul Enlightenment which raises Maximum HP by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800040,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621328],"components":[{"id":621328,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":10},{"type":144,"value":6}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":498649,"name":"Soul Enlightenment","description":"[SC_SKILLTIPS_P2]\nCaster and friendly party members earn Soul Enlightenment which raises Maximum HP by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800040,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621328]}}],"icon":"/assets/ui/rom-spells/800040.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-45","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":45,"keyItemId":545910,"sourceSkillId":498662,"name":"Touch of Faith","description":"[SC_SKILLTIPS_P1]\nInflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] on the target every 2 seconds for (Buff0-Time) seconds. Every time [498662] inflicts damage, there is a 50% chance that your next Psychic Arrows will become an instant spell that doesn't consume any focus. However, you will be unable to earn psi. Also resets cooldown time for Rising Tide.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800041,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621329,621330],"components":[{"id":621329,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":24,"hateCost":0,"settingFlags":202,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-14,"dot":{"timeSeconds":2,"type":0,"base":-14,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621330,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":24,"hateCost":0,"settingFlags":4,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498663,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":498662,"name":"Touch of Faith","description":"[SC_SKILLTIPS_P1]\nInflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] on the target every 2 seconds for (Buff0-Time) seconds. Every time [498662] inflicts damage, there is a 50% chance that your next Psychic Arrows will become an instant spell that doesn't consume any focus. However, you will be unable to earn psi. Also resets cooldown time for Rising Tide.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800041,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621329,621330]}}],"icon":"/assets/ui/rom-spells/800041.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-50","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":50,"keyItemId":545911,"sourceSkillId":498668,"name":"Divine Assistance","description":"When you use Urgent Heal because you activated Healing Fortune or Psychic Rising Tide, you can earn 1 point Inspiration. After 8 points of Inspiration are accumulated, you can reset the cooldown time for Defense Net.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800042,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":498668,"name":"Divine Assistance","description":"When you use Urgent Heal because you activated Healing Fortune or Psychic Rising Tide, you can earn 1 point Inspiration. After 8 points of Inspiration are accumulated, you can reset the cooldown time for Defense Net.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800042,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800042.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-60","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":60,"keyItemId":546849,"sourceSkillId":499858,"name":"Great Salvation","description":"Restores (DMG0) HP to the target. If the target is under any negative effects, each negative effect will increase the amount of healing by (Buff0-623450)%. It also restores HP to the caster.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.4},"source":{"imageId":801636,"sourceEffectType":0,"sourceTarget":4,"componentIds":[620577,623701,623450],"components":[{"id":620577,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":40,"fixedValue":0,"attack":{"type":0,"damagePower":40,"damagePowerSkillLevelArg":33,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":623701,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623450,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32769,"specialActionFlags":0,"assistType":-1,"clearFlags":16384,"abilityModifiers":[{"type":149,"value":10}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499858,"name":"Great Salvation","description":"Restores (DMG0) HP to the target. If the target is under any negative effects, each negative effect will increase the amount of healing by (Buff0-623450)%. It also restores HP to the caster.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.4},"source":{"imageId":801636,"sourceEffectType":0,"sourceTarget":4,"componentIds":[620577,623701,623450]}}],"icon":"/assets/ui/rom-spells/801636.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-70","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":70,"keyItemId":546850,"sourceSkillId":499856,"name":"Spreading Pain","description":"Inflicts [497959], [497960], and [497964] on an enemy target.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801637,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623469],"components":[{"id":623469,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499856,"name":"Spreading Pain","description":"Inflicts [497959], [497960], and [497964] on an enemy target.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801637,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623469]}}],"icon":"/assets/ui/rom-spells/801637.png","iconResolution":"native-interface-fdb"}]} +{"schemaVersion":1,"source":{"rootHint":"RuneWaker source snapshot","hashes":{"learnMagic":"6148199bcd1484ba1a122a6db5e2b3c2f2a161402bfe67fc67eb53f55fc6cfa3","magicCollect":"4aae19865cb07b30f99945aa7319a0096db244ff5e5b4b5d902fc6889474f501","magicObject":"52af13a2d8cfa9a66d4caa2d3c38832edc232f058995a64ef8135a6b82e43691","imageObject":"dd5ffcfd74b253dcecaa2f41a931a634dd45ef5f7c13e849d539ddc47fdee1f9","vocationTable":"f06cdaf60c54415dcbea47e9fa0e77b7527035a2aec73d3289370dc39751e76c","strings":"0c20d43660cb2ee042a78f7a8c18b4e104a263d54dd8c4bc98a54155e8adb3b0","eliteLua":"ee9e337548abd7fc555d85bf2f96813dfd77416c3e65d4cadf74a80838da1486","roleAttr":"8143a90ce826bf3152551a4508d212f186012cbc054e505e426551cb62369c1f","objectStruct":"708f2d087f2654b97d149ab7124d9cdffc915cf8bf18108feff3f1a45f124c20","interfaceFdb":"51bbb5a9d6a19a254b302000d3dd6e3a796f4f759015f3352f576a1055496e30"}},"canonicalClasses":[{"id":"rom-warrior","sourceClassId":1,"name":"Warrior","resource":"rage"},{"id":"rom-scout","sourceClassId":2,"name":"Scout","resource":"focus"},{"id":"rom-rogue","sourceClassId":3,"name":"Rogue","resource":"energy"},{"id":"rom-mage","sourceClassId":4,"name":"Mage","resource":"mana"},{"id":"rom-priest","sourceClassId":5,"name":"Priest","resource":"mana"},{"id":"rom-knight","sourceClassId":6,"name":"Knight","resource":"mana"},{"id":"rom-warden","sourceClassId":7,"name":"Warden","resource":"mana"},{"id":"rom-druid","sourceClassId":8,"name":"Druid","resource":"mana"},{"id":"rom-warlock","sourceClassId":9,"name":"Warlock","resource":"focus"},{"id":"rom-champion","sourceClassId":10,"name":"Champion","resource":"rage"}],"baseStatGrowth":{"rom-warrior":{"strength":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"stamina":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"intellect":{"levelOne":5,"flatGrowth":1.9,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":4,"percentGrowth":0.02},"agility":{"levelOne":12,"flatGrowth":4.25,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-scout":{"strength":{"levelOne":11,"flatGrowth":3.85,"percentGrowth":0.02},"stamina":{"levelOne":10,"flatGrowth":3.65,"percentGrowth":0.02},"intellect":{"levelOne":10,"flatGrowth":3.6,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":4,"percentGrowth":0.02},"agility":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-rogue":{"strength":{"levelOne":12,"flatGrowth":4.15,"percentGrowth":0.02},"stamina":{"levelOne":11,"flatGrowth":3.9,"percentGrowth":0.02},"intellect":{"levelOne":7,"flatGrowth":2.6,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":4,"percentGrowth":0.02},"agility":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-mage":{"strength":{"levelOne":5,"flatGrowth":1.9,"percentGrowth":0.02},"stamina":{"levelOne":9,"flatGrowth":3.4,"percentGrowth":0.02},"intellect":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"agility":{"levelOne":10,"flatGrowth":3.5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-priest":{"strength":{"levelOne":7,"flatGrowth":2.5,"percentGrowth":0.02},"stamina":{"levelOne":10,"flatGrowth":3.6,"percentGrowth":0.02},"intellect":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"agility":{"levelOne":10,"flatGrowth":3.5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-knight":{"strength":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"stamina":{"levelOne":14,"flatGrowth":5,"percentGrowth":0.02},"intellect":{"levelOne":11,"flatGrowth":3.75,"percentGrowth":0.02},"wisdom":{"levelOne":14,"flatGrowth":4,"percentGrowth":0.02},"agility":{"levelOne":11,"flatGrowth":3.9,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-warden":{"strength":{"levelOne":9,"flatGrowth":3.25,"percentGrowth":0.02},"stamina":{"levelOne":9,"flatGrowth":3.4,"percentGrowth":0.02},"intellect":{"levelOne":12,"flatGrowth":4.25,"percentGrowth":0.02},"wisdom":{"levelOne":13,"flatGrowth":4.5,"percentGrowth":0.02},"agility":{"levelOne":10,"flatGrowth":3.5,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-druid":{"strength":{"levelOne":12,"flatGrowth":4.35,"percentGrowth":0.02},"stamina":{"levelOne":12,"flatGrowth":4.15,"percentGrowth":0.02},"intellect":{"levelOne":11,"flatGrowth":4,"percentGrowth":0.02},"wisdom":{"levelOne":11,"flatGrowth":3.85,"percentGrowth":0.02},"agility":{"levelOne":10,"flatGrowth":3.65,"percentGrowth":0.02},"health":{"levelOne":60,"flatGrowth":2,"percentGrowth":0.02},"mana":{"levelOne":20,"flatGrowth":2,"percentGrowth":0.02}},"rom-warlock":{"strength":{"levelOne":26,"flatGrowth":0,"percentGrowth":3.12},"stamina":{"levelOne":19,"flatGrowth":0,"percentGrowth":3.07},"intellect":{"levelOne":17,"flatGrowth":0,"percentGrowth":3.01},"wisdom":{"levelOne":19,"flatGrowth":0,"percentGrowth":3.09},"agility":{"levelOne":19,"flatGrowth":0,"percentGrowth":3.1},"health":{"levelOne":61,"flatGrowth":0,"percentGrowth":3.93},"mana":{"levelOne":41,"flatGrowth":0,"percentGrowth":3.85}},"rom-champion":{"strength":{"levelOne":18,"flatGrowth":0,"percentGrowth":2.8},"stamina":{"levelOne":18,"flatGrowth":0,"percentGrowth":3.035},"intellect":{"levelOne":21,"flatGrowth":0,"percentGrowth":3.015},"wisdom":{"levelOne":26,"flatGrowth":0,"percentGrowth":3.25},"agility":{"levelOne":26,"flatGrowth":0,"percentGrowth":3.03},"health":{"levelOne":54,"flatGrowth":0,"percentGrowth":3.93},"mana":{"levelOne":82,"flatGrowth":0,"percentGrowth":4.12}}},"raceMatrix":{"rom-human":["rom-warrior","rom-scout","rom-rogue","rom-mage","rom-priest","rom-knight"],"rom-elf":["rom-warrior","rom-scout","rom-rogue","rom-mage","rom-warden","rom-druid"],"rom-dwarf":["rom-warrior","rom-rogue","rom-mage","rom-priest","rom-warlock","rom-champion"]},"eliteLevels":[15,20,25,30,35,40,45,50,60,70],"skills":[{"id":"rom-warrior-primary-0","classId":"rom-warrior","group":"primary","unlockLevel":1,"sourceSkillId":490493,"name":"Frenzy","description":"Greatly increases attack speed, accuracy, and damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573727,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500942],"components":[{"id":500942,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-20},{"type":197,"value":50},{"type":56,"value":15}],"abilitySkillLevelArg":1,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490493,"name":"Frenzy","description":"Greatly increases attack speed, accuracy, and damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573727,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500942]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/573727.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-1","classId":"rom-warrior","group":"primary","unlockLevel":2,"sourceSkillId":491133,"name":"Probing Attack","description":"Causes (DMG0) main hand weapon DPS and makes the target Vulnerable.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":574096,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500994,501502],"components":[{"id":500994,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501502,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":8258,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491133,"name":"Probing Attack","description":"Causes (DMG0) main hand weapon DPS and makes the target Vulnerable.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":574096,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500994,501502]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/574096.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-2","classId":"rom-warrior","group":"primary","unlockLevel":2,"sourceSkillId":491136,"name":"Open Flank","description":"When the target is Vulnerable this brute force attack causes (DMG0) main hand weapon DPS to the target and Weakens it.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570821,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501505,501520,501503],"components":[{"id":501505,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501520,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0},{"id":501503,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":8258,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491136,"name":"Open Flank","description":"When the target is Vulnerable this brute force attack causes (DMG0) main hand weapon DPS to the target and Weakens it.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570821,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501505,501520,501503]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/570821.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-3","classId":"rom-warrior","group":"primary","unlockLevel":4,"sourceSkillId":491142,"name":"Tactical Attack","description":"Inflicts (DMG0) main hand weapon DPS and additional damage if target is affected by a Bleed effect caused by Slash. (Requires a two-handed weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577432,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501514,500081],"components":[{"id":501514,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.45,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.45,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":2,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500081,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":491142,"name":"Tactical Attack","description":"Inflicts (DMG0) main hand weapon DPS and additional damage if target is affected by a Bleed effect caused by Slash. (Requires a two-handed weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577432,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501514,500081]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/577432.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-4","classId":"rom-warrior","group":"primary","unlockLevel":6,"sourceSkillId":491139,"name":"Thunder","description":"To be used when the target is in Weakened state. Causes (DMG0) main hand weapon DPS with an additional (Buff4-Time) second Stun.\n(For players this effect lasts for (Buff5-Time) seconds.)\n(Requires a one-hand weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570901,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501508,501511,503836,502923],"components":[{"id":501508,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501511,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[150999123,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503836,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[150999123,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502923,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":491139,"name":"Thunder","description":"To be used when the target is in Weakened state. Causes (DMG0) main hand weapon DPS with an additional (Buff4-Time) second Stun.\n(For players this effect lasts for (Buff5-Time) seconds.)\n(Requires a one-hand weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570901,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501508,501511,503836,502923]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/570901.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-5","classId":"rom-warrior","group":"primary","unlockLevel":10,"sourceSkillId":490089,"name":"Feint","description":"After the enemy dodges, (DMG0) main hand weapon DPS are once inflicted on the target. Additionally accuracy increases by 20%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":2000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570899,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500090],"components":[{"id":500090,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490089,"name":"Feint","description":"After the enemy dodges, (DMG0) main hand weapon DPS are once inflicted on the target. Additionally accuracy increases by 20%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":2000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570899,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500090]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/570899.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-6","classId":"rom-warrior","group":"primary","unlockLevel":14,"sourceSkillId":490129,"name":"Surprise Attack","description":"The Surprise Attack causes (DMG0) main hand weapon physical DPS, additionally Knocking down the target. (Must have a distance of at least 60 from the target.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":12000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570895,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620361,500235],"components":[{"id":620361,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":5,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500235,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4179,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490129,"name":"Surprise Attack","description":"The Surprise Attack causes (DMG0) main hand weapon physical DPS, additionally Knocking down the target. (Must have a distance of at least 60 from the target.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":12000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570895,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620361,500235]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/570895.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-7","classId":"rom-warrior","group":"primary","unlockLevel":18,"sourceSkillId":490130,"name":"Taunt","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-621219)%.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570890,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500118,621219],"components":[{"id":500118,"magicFunc":7,"magicType":5,"effectType":0,"effectTime":5,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621219,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":1}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490130,"name":"Taunt","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-621219)%.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570890,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500118,621219]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/570890.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-8","classId":"rom-warrior","group":"primary","unlockLevel":22,"sourceSkillId":490121,"name":"Moon Cleave","description":"Attack multiple targets within range three times. Each attack inflicts (DMG0) main hand weapon DPS. (Requires a two-handed weapon)","target":"self","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570905,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500105],"components":[{"id":500105,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":2,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490121,"name":"Moon Cleave","description":"Attack multiple targets within range three times. Each attack inflicts (DMG0) main hand weapon DPS. (Requires a two-handed weapon)","target":"self","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570905,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500105]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/570905.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-9","classId":"rom-warrior","group":"primary","unlockLevel":26,"sourceSkillId":490136,"name":"Shout","description":"Stuns up to 5 targets in a range of 90 for (Buff0-Time) seconds.","target":"self","range":9,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":570907,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500125,502719],"components":[{"id":500125,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":59,"effectFlagWords":[151060563,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490136,"name":"Shout","description":"Stuns up to 5 targets in a range of 90 for (Buff0-Time) seconds.","target":"self","range":9,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":570907,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500125,502719]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/570907.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-10","classId":"rom-warrior","group":"passive","unlockLevel":28,"sourceSkillId":490131,"name":"1-H Weapon Mastery","description":"Increases damage with one-handed swords, axes, or hammers by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570894,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620347],"components":[{"id":620347,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":58,"value":5},{"type":61,"value":5},{"type":62,"value":5}],"abilitySkillLevelArg":28,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490131,"name":"1-H Weapon Mastery","description":"Increases damage with one-handed swords, axes, or hammers by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570894,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620347]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/570894.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-11","classId":"rom-warrior","group":"passive","unlockLevel":30,"sourceSkillId":490137,"name":"2-H Weapon Mastery","description":"Increases damage with two-handed swords, axes, or hammers by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570909,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620348],"components":[{"id":620348,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":0,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":63,"value":5},{"type":65,"value":5},{"type":66,"value":5}],"abilitySkillLevelArg":26,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490137,"name":"2-H Weapon Mastery","description":"Increases damage with two-handed swords, axes, or hammers by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570909,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620348]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/570909.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-12","classId":"rom-warrior","group":"primary","unlockLevel":32,"sourceSkillId":490054,"name":"Terror","description":"Force an enemy to flee for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570912,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502011,507288],"components":[{"id":502011,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":4,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":17,"effectFlagWords":[131075,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507288,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":17,"effectFlagWords":[131075,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":490054,"name":"Terror","description":"Force an enemy to flee for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570912,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502011,507288]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/570912.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-13","classId":"rom-warrior","group":"primary","unlockLevel":34,"sourceSkillId":490123,"name":"Aggressiveness","description":"Enhances rage generation by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570918,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500107],"components":[{"id":500107,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":139,"value":20}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490123,"name":"Aggressiveness","description":"Enhances rage generation by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570918,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500107]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/570918.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-14","classId":"rom-warrior","group":"primary","unlockLevel":36,"sourceSkillId":490122,"name":"Survival Instinct","description":"Can only be used when HP is below 50%. Increases [SC_SKILLTIPS_DEF] by (Buff0-0)%, raises the chance of dodging by (Buff4-0)% and increases [SC_SKILLTIPS_PARRY] by (Buff8-0) points for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570916,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500106,506881,506882],"components":[{"id":500106,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":20}],"abilitySkillLevelArg":3.5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495582,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506881,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506882,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":150}],"abilitySkillLevelArg":12.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":490122,"name":"Survival Instinct","description":"Can only be used when HP is below 50%. Increases [SC_SKILLTIPS_DEF] by (Buff0-0)%, raises the chance of dodging by (Buff4-0)% and increases [SC_SKILLTIPS_PARRY] by (Buff8-0) points for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570916,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500106,506881,506882]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/570916.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-15","classId":"rom-warrior","group":"primary","unlockLevel":38,"sourceSkillId":490145,"name":"Group Taunt","description":"Forces multiple targets within a range of 50 to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-621221)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570920,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500134,621221],"components":[{"id":500134,"magicFunc":7,"magicType":5,"effectType":0,"effectTime":4,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621221,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":1}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":490145,"name":"Group Taunt","description":"Forces multiple targets within a range of 50 to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-621221)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570920,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500134,621221]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/570920.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-primary-16","classId":"rom-warrior","group":"primary","unlockLevel":40,"sourceSkillId":490147,"name":"Blasting Cyclone","description":"Causes (DMG0) main hand weapon DPS to multiple targets within range and causes Knockdown.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570924,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500136,500236],"components":[{"id":500136,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500236,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4179,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":490147,"name":"Blasting Cyclone","description":"Causes (DMG0) main hand weapon DPS to multiple targets within range and causes Knockdown.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570924,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500136,500236]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/570924.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-0","classId":"rom-warrior","group":"general","unlockLevel":1,"sourceSkillId":490053,"name":"Slash","description":"Inflicts (DMG0) main hand weapon DPS to the target with an additional chance to add Bleed effect. (Bleed effect only with equipped axe or sword.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570816,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500058,500081],"components":[{"id":500058,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500081,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490053,"name":"Slash","description":"Inflicts (DMG0) main hand weapon DPS to the target with an additional chance to add Bleed effect. (Bleed effect only with equipped axe or sword.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570816,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500058,500081]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/570816.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-1","classId":"rom-warrior","group":"general","unlockLevel":4,"sourceSkillId":490492,"name":"Enraged","description":"Immediately increase rage by (DMG0) points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":40000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573710,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500941],"components":[{"id":500941,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"clearFlags":9,"abilityModifiers":[{"type":134,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":20,"fixedValue":0,"attack":{"type":2,"calculationType":4,"damagePower":20,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490492,"name":"Enraged","description":"Immediately increase rage by (DMG0) points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":40000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573710,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500941]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/573710.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-2","classId":"rom-warrior","group":"general","unlockLevel":8,"sourceSkillId":490133,"name":"Whirlwind","description":"Whirling in place you cause (DMG0) main hand weapon DPS to the targets within range.","target":"self","range":30,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570903,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500122],"components":[{"id":500122,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490133,"name":"Whirlwind","description":"Whirling in place you cause (DMG0) main hand weapon DPS to the targets within range.","target":"self","range":30,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570903,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500122]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/570903.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-3","classId":"rom-warrior","group":"general","unlockLevel":12,"sourceSkillId":490095,"name":"Berserk","description":"Increases [SC_SKILLTIPS_01] by (Buff0-1)% and decreases [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570892,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500096],"components":[{"id":500096,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":64,"abilityModifiers":[{"type":135,"value":-3},{"type":134,"value":3}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490095,"name":"Berserk","description":"Increases [SC_SKILLTIPS_01] by (Buff0-1)% and decreases [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570892,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500096]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/570892.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-4","classId":"rom-warrior","group":"passive","unlockLevel":1,"sourceSkillId":491132,"name":"Equip Axe","description":"Can equip 1-H axes.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":573102,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500993],"components":[{"id":500993,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":88,"value":1},{"type":0,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":491132,"name":"Equip Axe","description":"Can equip 1-H axes.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":573102,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500993]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/573102.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-5","classId":"rom-warrior","group":"general","unlockLevel":16,"sourceSkillId":498031,"name":"Defensive Formation","description":"For (Buff0-Time) seconds, increases [SC_SKILLTIPS_DEF] by (Buff0-0)%, and reduces [SC_SKILLTIPS_01] by (Buff0-1)% and [SC_SKILLTIPS_02] by (Buff0-2)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570910,"sourceEffectType":1,"sourceTarget":0,"componentIds":[620336],"components":[{"id":620336,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":64,"abilityModifiers":[{"type":135,"value":5},{"type":134,"value":-5},{"type":171,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":498031,"name":"Defensive Formation","description":"For (Buff0-Time) seconds, increases [SC_SKILLTIPS_DEF] by (Buff0-0)%, and reduces [SC_SKILLTIPS_01] by (Buff0-1)% and [SC_SKILLTIPS_02] by (Buff0-2)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570910,"sourceEffectType":1,"sourceTarget":0,"componentIds":[620336]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/570910.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-general-6","classId":"rom-warrior","group":"passive","unlockLevel":20,"sourceSkillId":490125,"name":"Brute Strength","description":"Permanently increases [SC_SKILLTIPS_STR] by (current [SC_SKILLTIPS_STR] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":3000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570818,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500109],"components":[{"id":500109,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":26,"abilityModifiers":[{"type":2,"value":11},{"type":161,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490125,"name":"Brute Strength","description":"Permanently increases [SC_SKILLTIPS_STR] by (current [SC_SKILLTIPS_STR] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":3000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570818,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500109]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/570818.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-0","classId":"rom-scout","group":"primary","unlockLevel":1,"sourceSkillId":490494,"name":"Arrow of Essence","description":"Enhances ranged weapon damage by (Buff0-0)% and raises attack speed by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572332,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500939],"components":[{"id":500939,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":52,"value":40},{"type":23,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-4,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490494,"name":"Arrow of Essence","description":"Enhances ranged weapon damage by (Buff0-0)% and raises attack speed by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572332,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500939]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/572332.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-1","classId":"rom-scout","group":"primary","unlockLevel":2,"sourceSkillId":491128,"name":"Wind Arrows","description":"Quick shot at the target, causing (DMG0) ranged weapon DPS.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575129,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501677,501529,501530,501565],"components":[{"id":501677,"magicFunc":0,"magicType":3,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[8192,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.35,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.35,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501529,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501530,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501565,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491128,"name":"Wind Arrows","description":"Quick shot at the target, causing (DMG0) ranged weapon DPS.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575129,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501677,501529,501530,501565]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/575129.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-2","classId":"rom-scout","group":"passive","unlockLevel":6,"sourceSkillId":490445,"name":"Ranged Weapon Mastery","description":"Bow and crossbow accuracy is increased by (Buff0-0)%, and damage is increased by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":3,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572307,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500904],"components":[{"id":500904,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":63,"abilityModifiers":[{"type":197,"value":8},{"type":53,"value":8},{"type":54,"value":8}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":490445,"name":"Ranged Weapon Mastery","description":"Bow and crossbow accuracy is increased by (Buff0-0)%, and damage is increased by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":3,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572307,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500904]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/572307.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-3","classId":"rom-scout","group":"primary","unlockLevel":12,"sourceSkillId":490441,"name":"Mana Drain Shot","description":"Inflicts (DMG0) ranged weapon DPS to the target and reduces its [SC_SKILLTIPS_MDMG] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572301,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500222,507226],"components":[{"id":500222,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":507226,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":164,"abilityModifiers":[{"type":192,"value":-1}],"abilitySkillLevelArg":19,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490441,"name":"Mana Drain Shot","description":"Inflicts (DMG0) ranged weapon DPS to the target and reduces its [SC_SKILLTIPS_MDMG] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572301,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500222,507226]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/572301.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-4","classId":"rom-scout","group":"primary","unlockLevel":14,"sourceSkillId":490454,"name":"Lasso","description":"Throw a lasso, rooting the enemy for (Buff0-Time) seconds. This effect will disappear if the target is further attacked. \n(For players this effect lasts for (Buff1-Time) seconds if not further attacked.)\n(Only one target at a time can be kept under control.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572314,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500924,502955],"components":[{"id":500924,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502955,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490454,"name":"Lasso","description":"Throw a lasso, rooting the enemy for (Buff0-Time) seconds. This effect will disappear if the target is further attacked. \n(For players this effect lasts for (Buff1-Time) seconds if not further attacked.)\n(Only one target at a time can be kept under control.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572314,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500924,502955]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/572314.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-5","classId":"rom-scout","group":"primary","unlockLevel":18,"sourceSkillId":490400,"name":"Piercing Arrow","description":"Fires a piercing arrow at the target and all enemies in a straight line behind the target for (DMG0) ranged weapon DPS + (FixDMG-500935) damage .","target":"hostile","range":4,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"dot","coefficient":0.2,"ticks":2,"intervalMs":2000},"source":{"imageId":572330,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500935],"components":[{"id":500935,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":8,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":3,"dotBase":-3,"dot":{"timeSeconds":1,"type":3,"base":-3,"skillLevelArg":5},"attackType":0,"damagePower":-0.7,"fixedValue":-20,"attack":{"type":0,"calculationType":3,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-20,"fixedType":0,"fixedDamageSkillLevelArg":15,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490400,"name":"Piercing Arrow","description":"Fires a piercing arrow at the target and all enemies in a straight line behind the target for (DMG0) ranged weapon DPS + (FixDMG-500935) damage .","target":"hostile","range":4,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"dot","coefficient":0.2,"ticks":2,"intervalMs":2000},"source":{"imageId":572330,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500935]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/572330.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-6","classId":"rom-scout","group":"passive","unlockLevel":20,"sourceSkillId":490425,"name":"Eagle Eyes","description":"Your chance to deal critical damage is permanently increased by (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572289,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500858],"components":[{"id":500858,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490425,"name":"Eagle Eyes","description":"Your chance to deal critical damage is permanently increased by (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572289,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500858]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/572289.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-7","classId":"rom-scout","group":"primary","unlockLevel":22,"sourceSkillId":490450,"name":"Snipe","description":"For Snipe, your range is increased by 60 and deals (DMG0) ranged weapon DPS plus (FixDMG-500909) damage. (Will be interrupted as soon as damage is taken.)","target":"hostile","range":6,"castTimeMs":3000,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":572310,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500909],"components":[{"id":500909,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-2.5,"fixedValue":-100,"attack":{"type":0,"calculationType":3,"damagePower":-2.5,"damagePowerSkillLevelArg":6,"fixedValue":-100,"fixedType":0,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490450,"name":"Snipe","description":"For Snipe, your range is increased by 60 and deals (DMG0) ranged weapon DPS plus (FixDMG-500909) damage. (Will be interrupted as soon as damage is taken.)","target":"hostile","range":6,"castTimeMs":3000,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":572310,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500909]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/572310.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-8","classId":"rom-scout","group":"primary","unlockLevel":26,"sourceSkillId":490463,"name":"Detection","description":"While the skill lasts the caster can detect nearby hidden enemies. (This skill costs 5 focus points every three seconds. Status disappears once focus reaches 0.)","target":"self","range":3,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":9,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572324,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500933],"components":[{"id":500933,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":62,"effectFlagWords":[1024,0],"clearFlags":256,"abilitySkillLevelArg":0,"dotTime":3,"dotType":3,"dotBase":-5,"dot":{"timeSeconds":3,"type":3,"base":-5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490463,"name":"Detection","description":"While the skill lasts the caster can detect nearby hidden enemies. (This skill costs 5 focus points every three seconds. Status disappears once focus reaches 0.)","target":"self","range":3,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":9,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572324,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500933]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/572324.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-9","classId":"rom-scout","group":"primary","unlockLevel":30,"sourceSkillId":490424,"name":"Combo Shot","description":"Fires triple shots at the target causing (DMG0) ranged weapon DPS. (Will be interrupted as soon as damage is taken.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":8000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572287,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500857],"components":[{"id":500857,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.45,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.45,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490424,"name":"Combo Shot","description":"Fires triple shots at the target causing (DMG0) ranged weapon DPS. (Will be interrupted as soon as damage is taken.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":8000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572287,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500857]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/572287.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-10","classId":"rom-scout","group":"primary","unlockLevel":34,"sourceSkillId":490438,"name":"Neck Strike","description":"Target is Stunned for (Buff0-Time) seconds. (Effect removed when attacked.)\n(For players this effect lasts for (Buff1-Time) seconds.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572298,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500877,503863,502719],"components":[{"id":500877,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":59,"effectFlagWords":[67,0],"clearFlags":2,"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503863,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":59,"effectFlagWords":[67,0],"clearFlags":2,"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490438,"name":"Neck Strike","description":"Target is Stunned for (Buff0-Time) seconds. (Effect removed when attacked.)\n(For players this effect lasts for (Buff1-Time) seconds.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572298,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500877,503863,502719]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/572298.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-11","classId":"rom-scout","group":"primary","unlockLevel":36,"sourceSkillId":490457,"name":"Reflected Shot","description":"Causes (DMG0) ranged weapon DPS. Shot will deflect 2 times to other targets within range. Damage decreases by half each time.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572316,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500927],"components":[{"id":500927,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":490457,"name":"Reflected Shot","description":"Causes (DMG0) ranged weapon DPS. Shot will deflect 2 times to other targets within range. Damage decreases by half each time.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572316,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500927]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/572316.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-12","classId":"rom-scout","group":"primary","unlockLevel":38,"sourceSkillId":490460,"name":"Concentration","description":"For (Buff0-Time) seconds, focus regeneration speed is increased by (Buff0-0)%.","target":"self","range":3,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572323,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500930],"components":[{"id":500930,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":24,"abilityModifiers":[{"type":140,"value":50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":490460,"name":"Concentration","description":"For (Buff0-Time) seconds, focus regeneration speed is increased by (Buff0-0)%.","target":"self","range":3,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572323,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500930]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/572323.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-13","classId":"rom-scout","group":"primary","unlockLevel":40,"sourceSkillId":490464,"name":"Target Area","description":"While the effect lasts, your accuracy is increased by (Buff4-0)% and the critical hit rate is increased by (Buff0-0). (This skill costs (Buff0-Dot) focus per second. Effect disappears once focus reaches 0.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572326,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500934,507339],"components":[{"id":500934,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":180,"hateCost":-10,"settingFlags":235,"specialActionFlags":0,"assistType":32,"clearFlags":256,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":39,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497740,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":3,"dotBase":-3,"dot":{"timeSeconds":1,"type":3,"base":-3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507339,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":180,"hateCost":-10,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"clearFlags":256,"abilityModifiers":[{"type":197,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":490464,"name":"Target Area","description":"While the effect lasts, your accuracy is increased by (Buff4-0)% and the critical hit rate is increased by (Buff0-0). (This skill costs (Buff0-Dot) focus per second. Effect disappears once focus reaches 0.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572326,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500934,507339]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/572326.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-55","classId":"rom-scout","group":"primary","unlockLevel":10,"sourceSkillId":491163,"name":"Frost Arrow","description":"For (Buff0-Time) seconds, all Wind Arrow shots will have a chance of adding Frost, slowing down target for 6 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572304,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501530],"components":[{"id":501530,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":491163,"name":"Frost Arrow","description":"For (Buff0-Time) seconds, all Wind Arrow shots will have a chance of adding Frost, slowing down target for 6 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572304,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501530]}}],"sourceFamily":"primary:55","icon":"/assets/ui/rom-spells/572304.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-56","classId":"rom-scout","group":"passive","unlockLevel":20,"sourceSkillId":491173,"name":"Cripple Joint","description":"Adds a 55% chance to your Joint Blow to Root the target for 5 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":491173,"name":"Cripple Joint","description":"Adds a 55% chance to your Joint Blow to Root the target for 5 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"sourceFamily":"primary:56","icon":"/assets/ui/rom-spells/572282.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-primary-57","classId":"rom-scout","group":"primary","unlockLevel":1,"sourceSkillId":492589,"name":"Autoshot","description":"Fires a shot at the target inflicting ranged weapon Damage. (Afterwards Autoshot modus will be active.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":573064,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501579],"components":[{"id":501579,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.8,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":492589,"name":"Autoshot","description":"Fires a shot at the target inflicting ranged weapon Damage. (Afterwards Autoshot modus will be active.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":573064,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501579]}}],"sourceFamily":"primary:57","icon":"/assets/ui/rom-spells/573064.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-0","classId":"rom-scout","group":"general","unlockLevel":1,"sourceSkillId":490423,"name":"Shot","description":"Fires one shot at the target causing (DMG0) ranged weapon DPS.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572285,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500856,501959,501955,503188,503187,620221,620178,620222,620179],"components":[{"id":500856,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501959,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":26,"abilityModifiers":[{"type":2,"value":10}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-10,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501955,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":20,"value":150}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0},{"id":503188,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-10,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503187,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":195,"value":50}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620221,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":26,"abilityModifiers":[{"type":2,"value":10}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-10,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620178,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":20,"value":20}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0},{"id":620222,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-10,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620179,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":195,"value":10}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490423,"name":"Shot","description":"Fires one shot at the target causing (DMG0) ranged weapon DPS.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572285,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500856,501959,501955,503188,503187,620221,620178,620222,620179]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/572285.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-1","classId":"rom-scout","group":"passive","unlockLevel":1,"sourceSkillId":490448,"name":"Bow Training","description":"Can equip bows and crossbows","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572308,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500907],"components":[{"id":500907,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":95,"value":1},{"type":96,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490448,"name":"Bow Training","description":"Can equip bows and crossbows","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572308,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500907]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/572308.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-2","classId":"rom-scout","group":"general","unlockLevel":4,"sourceSkillId":491292,"name":"Vampire Arrows","description":"Inflicts (DMG0) ranged weapon DPS and additionally consumes the target's (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575130,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501693,501690],"components":[{"id":501693,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.55,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.55,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501690,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":491292,"name":"Vampire Arrows","description":"Inflicts (DMG0) ranged weapon DPS and additionally consumes the target's (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575130,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501693,501690]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/575130.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-3","classId":"rom-scout","group":"general","unlockLevel":8,"sourceSkillId":490420,"name":"Joint Blow","description":"Causes (DMG0) points of physical damage and Slows the target by 40% for (Buff4-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":572282,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500845,500848,503862,501559,504258],"components":[{"id":500845,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-16.4,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-16.4,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":7,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500848,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503862,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501559,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504258,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490420,"name":"Joint Blow","description":"Causes (DMG0) points of physical damage and Slows the target by 40% for (Buff4-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":572282,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500845,500848,503862,501559,504258]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/572282.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-4","classId":"rom-scout","group":"general","unlockLevel":12,"sourceSkillId":490434,"name":"Blood Arrow","description":"For (Buff0-Time) seconds, your HP is reduced by (Buff0-Dot)% every second and the physical attack of your ranged weapons is increased by (Buff0-0)%. (Right-click the buff icon to stop the effect.)","target":"self","range":3,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572294,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500871],"components":[{"id":500871,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":65643,"specialActionFlags":0,"assistType":8,"clearFlags":1056,"abilityModifiers":[{"type":52,"value":10}],"abilitySkillLevelArg":9,"dotTime":1,"dotType":5,"dotBase":-3,"dot":{"timeSeconds":1,"type":5,"base":-3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":-5,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490434,"name":"Blood Arrow","description":"For (Buff0-Time) seconds, your HP is reduced by (Buff0-Dot)% every second and the physical attack of your ranged weapons is increased by (Buff0-0)%. (Right-click the buff icon to stop the effect.)","target":"self","range":3,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572294,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500871]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/572294.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-5","classId":"rom-scout","group":"general","unlockLevel":16,"sourceSkillId":490428,"name":"Throat Attack","description":"Causes (DMG0) physical damage and interrupts the target's spell casting. (The interrupted spell will enter a cooldown phase. If the interrupted spell has no cooldown, all spells will enter a cooldown time of 3 seconds.)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":572290,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500864,502703],"components":[{"id":500864,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-16.4,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-16.4,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502703,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490428,"name":"Throat Attack","description":"Causes (DMG0) physical damage and interrupts the target's spell casting. (The interrupted spell will enter a cooldown phase. If the interrupted spell has no cooldown, all spells will enter a cooldown time of 3 seconds.)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":572290,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500864,502703]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/572290.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-6","classId":"rom-scout","group":"general","unlockLevel":20,"sourceSkillId":490451,"name":"Wrist Attack","description":"Damage dealt by the target is decreased by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572312,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500921],"components":[{"id":500921,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":60,"effectFlagWords":[524288,0],"abilityModifiers":[{"type":173,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490451,"name":"Wrist Attack","description":"Damage dealt by the target is decreased by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572312,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500921]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/572312.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-7","classId":"rom-scout","group":"passive","unlockLevel":24,"sourceSkillId":491159,"name":"Swiftness","description":"Permanently increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570818,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501521],"components":[{"id":501521,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":30,"abilityModifiers":[{"type":6,"value":11},{"type":165,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":491159,"name":"Swiftness","description":"Permanently increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570818,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501521]}}],"sourceFamily":"general:7","icon":"/assets/ui/rom-spells/570818.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-general-8","classId":"rom-scout","group":"passive","unlockLevel":28,"sourceSkillId":490505,"name":"Speed Shooting Mastery","description":"The speed of bows and crossbows is increased by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572286,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500959],"components":[{"id":500959,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":69,"value":-11},{"type":70,"value":-11}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490505,"name":"Speed Shooting Mastery","description":"The speed of bows and crossbows is increased by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572286,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500959]}}],"sourceFamily":"general:8","icon":"/assets/ui/rom-spells/572286.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-0","classId":"rom-rogue","group":"primary","unlockLevel":1,"sourceSkillId":490506,"name":"Assassins Rage","description":"For (Buff0-Time) seconds, the chance to deal critical hits is raised by (Buff0-0), and during that time critical damage is enhanced as well.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573049,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500960],"components":[{"id":500960,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":1500},{"type":19,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490506,"name":"Assassins Rage","description":"For (Buff0-Time) seconds, the chance to deal critical hits is raised by (Buff0-0), and during that time critical damage is enhanced as well.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573049,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500960]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/573049.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-1","classId":"rom-rogue","group":"primary","unlockLevel":2,"sourceSkillId":490323,"name":"Low Blow","description":"Inflicts (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage, and if the target already suffers a Bleed effect, it can cause an additional Grievous Wound for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571981,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620312,620314],"components":[{"id":620312,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-1,"damagePowerSkillLevelArg":7,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620314,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":53,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":490323,"name":"Low Blow","description":"Inflicts (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage, and if the target already suffers a Bleed effect, it can cause an additional Grievous Wound for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571981,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620312,620314]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/571981.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-2","classId":"rom-rogue","group":"primary","unlockLevel":6,"sourceSkillId":490313,"name":"Wound Attack","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. For each Bleeding or Grievous Wound caused by the Rogue skills (cast by you), Wound Attack can cause additional damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570831,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620278,620279,620280],"components":[{"id":620278,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.05,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-1.05,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620279,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.85,"damagePowerSkillLevelArg":7,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620280,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.85,"damagePowerSkillLevelArg":7,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":490313,"name":"Wound Attack","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. For each Bleeding or Grievous Wound caused by the Rogue skills (cast by you), Wound Attack can cause additional damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570831,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620278,620279,620280]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/570831.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-3","classId":"rom-rogue","group":"passive","unlockLevel":10,"sourceSkillId":490504,"name":"Dagger Mastery","description":"Increases dagger damage by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570915,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620334],"components":[{"id":620334,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":59,"value":10}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490504,"name":"Dagger Mastery","description":"Increases dagger damage by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570915,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620334]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/570915.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-4","classId":"rom-rogue","group":"primary","unlockLevel":14,"sourceSkillId":490311,"name":"Blind Spot","description":"Attacks target from behind, causing (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage and adds a bleeding that deals (Buff4-Dot) damage every 2 seconds for (Buff4-Time) seconds. (Must hold a dagger and be behind the target.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570827,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620282,620297],"components":[{"id":620282,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.5,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-1.5,"damagePowerSkillLevelArg":5,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620297,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490311,"name":"Blind Spot","description":"Attacks target from behind, causing (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage and adds a bleeding that deals (Buff4-Dot) damage every 2 seconds for (Buff4-Time) seconds. (Must hold a dagger and be behind the target.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570827,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620282,620297]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/570827.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-5","classId":"rom-rogue","group":"primary","unlockLevel":16,"sourceSkillId":490347,"name":"Numbing Dagger","description":"Throws a poisoned dagger that can numb the target for (Buff0-Time) seconds. Can only be used on Humanoids and living creatures. (Requires you to be Poisonous; consumes 1 projectile, the numbed target awakens when attacked; only one target at a time can be kept under control.)\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572005,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500737,503046],"components":[{"id":500737,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":50,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[33554515,0],"clearFlags":1026,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503046,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":50,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[33554515,0],"clearFlags":1026,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490347,"name":"Numbing Dagger","description":"Throws a poisoned dagger that can numb the target for (Buff0-Time) seconds. Can only be used on Humanoids and living creatures. (Requires you to be Poisonous; consumes 1 projectile, the numbed target awakens when attacked; only one target at a time can be kept under control.)\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572005,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500737,503046]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/572005.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-6","classId":"rom-rogue","group":"primary","unlockLevel":16,"sourceSkillId":490329,"name":"Poison","description":"For (Buff0-Time) seconds normal attacks have a 50% chance to add Poisoned effects and the target's damage is lowered by 2%. (Can be stacked four times, consumes 1 poison bottle.)","target":"self","range":0.1,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571984,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500715],"components":[{"id":500715,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":106,"onAttackTrigger":{"rate":50,"rank":0,"id":490357},"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490329,"name":"Poison","description":"For (Buff0-Time) seconds normal attacks have a 50% chance to add Poisoned effects and the target's damage is lowered by 2%. (Can be stacked four times, consumes 1 poison bottle.)","target":"self","range":0.1,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571984,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500715]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/571984.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-7","classId":"rom-rogue","group":"primary","unlockLevel":18,"sourceSkillId":490312,"name":"Hide","description":"You go into hiding to avoid discovery by the enemy. Your movement speed is reduced by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570829,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500675],"components":[{"id":500675,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":163,"specialActionFlags":0,"assistType":52,"effectFlagWords":[512,0],"clearFlags":11,"abilityModifiers":[{"type":24,"value":-50}],"abilitySkillLevelArg":-1.2,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":850537,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490312,"name":"Hide","description":"You go into hiding to avoid discovery by the enemy. Your movement speed is reduced by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570829,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500675]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/570829.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-8","classId":"rom-rogue","group":"primary","unlockLevel":18,"sourceSkillId":490507,"name":"Premeditation","description":"Makes your next attack a critical attack, and the power of the critical attack is increased by (Buff0-0)%. (Cannot be used in combat.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571991,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500961],"components":[{"id":500961,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,64],"clearFlags":28673,"abilityModifiers":[{"type":19,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490507,"name":"Premeditation","description":"Makes your next attack a critical attack, and the power of the critical attack is increased by (Buff0-0)%. (Cannot be used in combat.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571991,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500961]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/571991.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-9","classId":"rom-rogue","group":"primary","unlockLevel":22,"sourceSkillId":490337,"name":"Sneak Attack","description":"By attacking the target from behind, Sneak Attack causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage with an additional (Buff4-Time)-second Stun and (Buff8-Time)-second Bleed effect. (Cannot be used when already in combat. Can only be used when behind the target. Requires dagger to cause Bleed effect.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571989,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620284,500725,500726],"components":[{"id":620284,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500725,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777283,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"summonCreatureId":0},{"id":500726,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":35,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":5},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490337,"name":"Sneak Attack","description":"By attacking the target from behind, Sneak Attack causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage with an additional (Buff4-Time)-second Stun and (Buff8-Time)-second Bleed effect. (Cannot be used when already in combat. Can only be used when behind the target. Requires dagger to cause Bleed effect.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571989,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620284,500725,500726]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/571989.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-10","classId":"rom-rogue","group":"passive","unlockLevel":26,"sourceSkillId":490316,"name":"Treasure Hunter","description":"Increases your and your party's chances of finding items by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570833,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500679],"components":[{"id":500679,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":35,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490316,"name":"Treasure Hunter","description":"Increases your and your party's chances of finding items by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570833,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500679]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/570833.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-11","classId":"rom-rogue","group":"primary","unlockLevel":30,"sourceSkillId":490354,"name":"Vanish","description":"Vanish from sight for (Buff0-Time) seconds, removing all aggro and leaving combat.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":572014,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500745,501567],"components":[{"id":500745,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501567,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":16,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490354,"name":"Vanish","description":"Vanish from sight for (Buff0-Time) seconds, removing all aggro and leaving combat.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":572014,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500745,501567]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/572014.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-12","classId":"rom-rogue","group":"passive","unlockLevel":32,"sourceSkillId":490143,"name":"Off Hand Mastery","description":"Increase off hand damage by (Buff0-0)% and accuracy by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570915,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620335],"components":[{"id":620335,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":0,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":36,"value":4},{"type":37,"value":4}],"abilitySkillLevelArg":7,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":490143,"name":"Off Hand Mastery","description":"Increase off hand damage by (Buff0-0)% and accuracy by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570915,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620335]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/570915.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-13","classId":"rom-rogue","group":"primary","unlockLevel":34,"sourceSkillId":490341,"name":"Sprint","description":"Increases movement speed by (Buff0-0)% for 30 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":10,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571995,"sourceEffectType":1,"sourceTarget":4,"componentIds":[500729],"components":[{"id":500729,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":137,"clearFlags":512,"abilityModifiers":[{"type":24,"value":10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490341,"name":"Sprint","description":"Increases movement speed by (Buff0-0)% for 30 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":10,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571995,"sourceEffectType":1,"sourceTarget":4,"componentIds":[500729]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/571995.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-14","classId":"rom-rogue","group":"primary","unlockLevel":36,"sourceSkillId":490355,"name":"Evasion","description":"Increases dodge rate by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572016,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500744],"components":[{"id":500744,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":31,"abilityModifiers":[{"type":198,"value":10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":490355,"name":"Evasion","description":"Increases dodge rate by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572016,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500744]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/572016.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-15","classId":"rom-rogue","group":"primary","unlockLevel":38,"sourceSkillId":490338,"name":"Combo Throw","description":"Throws 2 hidden weapons in series, each of which causes (DMG0) damage, based on the DPS of the main hand weapon + (FixDMG0) x [SC_SKILLTIPS_THROWDMG] [SC_SKILLTIPS_DMG|physical damage].\n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571993,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502578,620283],"components":[{"id":502578,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-3,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":5.5,"fixedValue":-3,"fixedType":4,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620283,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-3,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":5.5,"fixedValue":-3,"fixedType":4,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":490338,"name":"Combo Throw","description":"Throws 2 hidden weapons in series, each of which causes (DMG0) damage, based on the DPS of the main hand weapon + (FixDMG0) x [SC_SKILLTIPS_THROWDMG] [SC_SKILLTIPS_DMG|physical damage].\n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571993,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502578,620283]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/571993.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-16","classId":"rom-rogue","group":"primary","unlockLevel":40,"sourceSkillId":490346,"name":"Shadow Prison","description":"Binds the enemy's shadow. The target cannot move or use skills for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572003,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500735,503861,502719],"components":[{"id":500735,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503861,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":490346,"name":"Shadow Prison","description":"Binds the enemy's shadow. The target cannot move or use skills for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572003,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500735,503861,502719]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/572003.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-17","classId":"rom-rogue","group":"primary","unlockLevel":42,"sourceSkillId":490350,"name":"Informer","description":"Increases party members' chance to deal critical hits by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572009,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620298],"components":[{"id":620298,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":42,"prerequisites":[],"sourceSkillId":490350,"name":"Informer","description":"Increases party members' chance to deal critical hits by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572009,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620298]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/572009.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-primary-18","classId":"rom-rogue","group":"primary","unlockLevel":44,"sourceSkillId":490333,"name":"Fervent Attack","description":"For (Buff0-Time) seconds, [SC_SKILLTIPS_DPS] is increased by (Buff0-0)% and [SC_SKILLTIPS_DEF] is decreased by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571987,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500719],"components":[{"id":500719,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":9,"abilityModifiers":[{"type":23,"value":-5},{"type":135,"value":-5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":44,"prerequisites":[],"sourceSkillId":490333,"name":"Fervent Attack","description":"For (Buff0-Time) seconds, [SC_SKILLTIPS_DPS] is increased by (Buff0-0)% and [SC_SKILLTIPS_DEF] is decreased by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571987,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500719]}}],"sourceFamily":"primary:18","icon":"/assets/ui/rom-spells/571987.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-0","classId":"rom-rogue","group":"general","unlockLevel":1,"sourceSkillId":490306,"name":"Shadowstab","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage with an additional Bleed effect. For (Buff4-Time) seconds Bleed causes (Buff4-Dot) damage every 2 seconds. (Extra effect is produced only if the main hand is wielding a dagger.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570822,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620277,620313],"components":[{"id":620277,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620313,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":45},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490306,"name":"Shadowstab","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage with an additional Bleed effect. For (Buff4-Time) seconds Bleed causes (Buff4-Dot) damage every 2 seconds. (Extra effect is produced only if the main hand is wielding a dagger.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570822,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620277,620313]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/570822.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-1","classId":"rom-rogue","group":"general","unlockLevel":4,"sourceSkillId":490309,"name":"Throw","description":"Throws a hidden weapon at the target, causing (DMG0) main hand weapon DPS plus (FixDMG0) x [SC_SKILLTIPS_THROWDMG] [SC_SKILLTIPS_DMG|physical damage].\n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570824,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502578,620283],"components":[{"id":502578,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-3,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":5.5,"fixedValue":-3,"fixedType":4,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620283,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-3,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":5.5,"fixedValue":-3,"fixedType":4,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490309,"name":"Throw","description":"Throws a hidden weapon at the target, causing (DMG0) main hand weapon DPS plus (FixDMG0) x [SC_SKILLTIPS_THROWDMG] [SC_SKILLTIPS_DMG|physical damage].\n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570824,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502578,620283]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/570824.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-2","classId":"rom-rogue","group":"general","unlockLevel":8,"sourceSkillId":490317,"name":"Blind Stab","description":"Inflicts (DMG0) damage, based on the DPS of the main hand weapon, + (FixDMG0) x Dexterity [SC_SKILLTIPS_DMG|physical damage] with an additional Blind effect for (Buff4-Time) seconds. (Must be in front of the target to use skill.) \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571977,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620281,500691,503835],"components":[{"id":620281,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500691,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"effectFlagWords":[32,0],"abilityModifiers":[{"type":197,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503835,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"effectFlagWords":[32,0],"abilityModifiers":[{"type":197,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490317,"name":"Blind Stab","description":"Inflicts (DMG0) damage, based on the DPS of the main hand weapon, + (FixDMG0) x Dexterity [SC_SKILLTIPS_DMG|physical damage] with an additional Blind effect for (Buff4-Time) seconds. (Must be in front of the target to use skill.) \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":571977,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620281,500691,503835]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/571977.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-3","classId":"rom-rogue","group":"passive","unlockLevel":12,"sourceSkillId":490310,"name":"Projectile Training","description":"Can equip projectiles.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570826,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500658],"components":[{"id":500658,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":98,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490310,"name":"Projectile Training","description":"Can equip projectiles.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570826,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500658]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/570826.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-4","classId":"rom-rogue","group":"passive","unlockLevel":16,"sourceSkillId":490146,"name":"Off Hand Training","description":"1-H weapons can be held in off hand.\n(Class-related limitations still apply.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570914,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500135],"components":[{"id":500135,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":106,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490146,"name":"Off Hand Training","description":"1-H weapons can be held in off hand.\n(Class-related limitations still apply.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570914,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500135]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/570914.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-5","classId":"rom-rogue","group":"passive","unlockLevel":20,"sourceSkillId":490326,"name":"Agility","description":"Permanently increases dodge rate by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":571983,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500707],"components":[{"id":500707,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":2}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490326,"name":"Agility","description":"Permanently increases dodge rate by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":571983,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500707]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/571983.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-6","classId":"rom-rogue","group":"passive","unlockLevel":24,"sourceSkillId":490332,"name":"Nimble Hands","description":"Increases attack speed by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":571986,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500718],"components":[{"id":500718,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-2}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":490332,"name":"Nimble Hands","description":"Increases attack speed by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":571986,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500718]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/571986.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-general-7","classId":"rom-rogue","group":"general","unlockLevel":28,"sourceSkillId":490344,"name":"Shadow Step","description":"Instantly move behind the target.","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571999,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500733,621406,621482],"components":[{"id":500733,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621406,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10},{"type":50,"value":10}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621482,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":19,"value":1},{"type":23,"value":-10}],"abilitySkillLevelArg":45,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490344,"name":"Shadow Step","description":"Instantly move behind the target.","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":571999,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500733,621406,621482]}}],"sourceFamily":"general:7","icon":"/assets/ui/rom-spells/571999.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-0","classId":"rom-mage","group":"primary","unlockLevel":1,"sourceSkillId":490238,"name":"Elemental Catalysis","description":"For (Buff0-Time) seconds magical damage is enhanced by (Buff0-0)% and every 2 seconds (Buff0-Dot)% Mana is regained.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572036,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500339],"components":[{"id":500339,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":20}],"abilitySkillLevelArg":0,"dotTime":2,"dotType":6,"dotBase":2,"dot":{"timeSeconds":2,"type":6,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490238,"name":"Elemental Catalysis","description":"For (Buff0-Time) seconds magical damage is enhanced by (Buff0-0)% and every 2 seconds (Buff0-Dot)% Mana is regained.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572036,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500339]}},{"rank":2,"level":65,"prerequisites":[490238],"sourceSkillId":497971,"name":"Elemental Catalysis","description":"Increases magical damage by (Buff0-0)% and spellcasting speed by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572036,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620176],"components":[{"id":620176,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":20},{"type":51,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":6,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/572036.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-1","classId":"rom-mage","group":"primary","unlockLevel":1,"sourceSkillId":491150,"name":"Flame","description":"Launches a searing fireball, which deals (DMG0) points of Fire damage.","target":"hostile","range":22.5,"castTimeMs":3000,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":574090,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501531,500379],"components":[{"id":501531,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500379,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-27.1,"fixedValue":-0.01,"attack":{"type":0,"calculationType":1,"damagePower":-27.1,"damagePowerSkillLevelArg":18.3,"fixedValue":-0.01,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":491150,"name":"Flame","description":"Launches a searing fireball, which deals (DMG0) points of Fire damage.","target":"hostile","range":22.5,"castTimeMs":3000,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":574090,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501531,500379]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/574090.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-2","classId":"rom-mage","group":"primary","unlockLevel":2,"sourceSkillId":491156,"name":"Electrostatic Charge","description":"Absorbs as much damage as (Buff0-Shield)% of your maximum HP for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":75,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":572033,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620209],"components":[{"id":620209,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":490363,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":2,"skillLevelArg":28}}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491156,"name":"Electrostatic Charge","description":"Absorbs as much damage as (Buff0-Shield)% of your maximum HP for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":75,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":572033,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620209]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/572033.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-3","classId":"rom-mage","group":"passive","unlockLevel":8,"sourceSkillId":490221,"name":"Eruption","description":"Fireball and Flame have a chance of exploding and causing Fire damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572027,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490221,"name":"Eruption","description":"Fireball and Flame have a chance of exploding and causing Fire damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572027,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/572027.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-4","classId":"rom-mage","group":"primary","unlockLevel":10,"sourceSkillId":490242,"name":"Discharge","description":"Inflicts (DMG0) + (FixDMG-620208) x INT [SC_SKILLTIPS_WIND] to targets within range and a Stun for (Buff-Time-502717) seconds.\n(For players this effect lasts for (Buff-Time-503850) seconds.)\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.55},"source":{"imageId":572040,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620208,502717,503850,623146],"components":[{"id":620208,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-55,"damagePowerSkillLevelArg":25,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502717,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[150995027,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503850,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[150995027,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623146,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490242,"name":"Discharge","description":"Inflicts (DMG0) + (FixDMG-620208) x INT [SC_SKILLTIPS_WIND] to targets within range and a Stun for (Buff-Time-502717) seconds.\n(For players this effect lasts for (Buff-Time-503850) seconds.)\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.55},"source":{"imageId":572040,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620208,502717,503850,623146]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/572040.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-5","classId":"rom-mage","group":"primary","unlockLevel":14,"sourceSkillId":490252,"name":"Meteor Shower","description":"Conjures a meteor shower which causes 5 hits with (DMG0) + (FixDMG-620204) x INT [SC_SKILLTIPS_NONE].","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572054,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620204,501549],"components":[{"id":620204,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":17,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":3,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501549,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":51,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490252,"name":"Meteor Shower","description":"Conjures a meteor shower which causes 5 hits with (DMG0) + (FixDMG-620204) x INT [SC_SKILLTIPS_NONE].","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572054,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620204,501549]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/572054.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-6","classId":"rom-mage","group":"primary","unlockLevel":18,"sourceSkillId":490239,"name":"Phoenix","description":"Summon a phoenix that causes (DMG0) + (FixDMG-620201) x INT [SC_SKILLTIPS_FLAME] to targets in its path. Effective up to a range of 120.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.55},"source":{"imageId":572038,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620201,623146],"components":[{"id":620201,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-55,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623146,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490239,"name":"Phoenix","description":"Summon a phoenix that causes (DMG0) + (FixDMG-620201) x INT [SC_SKILLTIPS_FLAME] to targets in its path. Effective up to a range of 120.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.55},"source":{"imageId":572038,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620201,623146]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/572038.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-7","classId":"rom-mage","group":"passive","unlockLevel":22,"sourceSkillId":490216,"name":"Fire Knowledge","description":"Increases resistance to Fire by (Buff0-0) points and increases magical Fire damage by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572021,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500289],"components":[{"id":500289,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":29,"value":2},{"type":47,"value":5}],"abilitySkillLevelArg":23.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490216,"name":"Fire Knowledge","description":"Increases resistance to Fire by (Buff0-0) points and increases magical Fire damage by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572021,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500289]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/572021.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-8","classId":"rom-mage","group":"primary","unlockLevel":26,"sourceSkillId":491153,"name":"Purgatory Fire","description":"Summons purgatory fire, causing (DMG0) + (FixDMG-620203) x INT [SC_SKILLTIPS_FLAME] to targets within a range of 50.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":574094,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620203],"components":[{"id":620203,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-45,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-45,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":491153,"name":"Purgatory Fire","description":"Summons purgatory fire, causing (DMG0) + (FixDMG-620203) x INT [SC_SKILLTIPS_FLAME] to targets within a range of 50.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":574094,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620203]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/574094.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-9","classId":"rom-mage","group":"primary","unlockLevel":28,"sourceSkillId":490218,"name":"Energy Influx","description":"The chance to inflict critical damage with magic attacks is increased by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572025,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500296],"components":[{"id":500296,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":177,"abilityModifiers":[{"type":20,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490218,"name":"Energy Influx","description":"The chance to inflict critical damage with magic attacks is increased by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572025,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500296]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/572025.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-10","classId":"rom-mage","group":"primary","unlockLevel":30,"sourceSkillId":490251,"name":"Energy Well","description":"Mana costs for all skills are reduced by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572052,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500369],"components":[{"id":500369,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":50,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":49,"abilityModifiers":[{"type":33,"value":10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490251,"name":"Energy Well","description":"Mana costs for all skills are reduced by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572052,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500369]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/572052.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-11","classId":"rom-mage","group":"primary","unlockLevel":32,"sourceSkillId":490247,"name":"Elemental Weakness","description":"Decrease all the target's resistances by (Buff0-0) points for (Buff0-Time) seconds.","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572044,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500365],"components":[{"id":500365,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":8,"abilityModifiers":[{"type":26,"value":-30}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":490247,"name":"Elemental Weakness","description":"Decrease all the target's resistances by (Buff0-0) points for (Buff0-Time) seconds.","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572044,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500365]}},{"rank":2,"level":65,"prerequisites":[490247],"sourceSkillId":497977,"name":"Elemental Weakness","description":"Reduces the target's [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572044,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620189],"components":[{"id":620189,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":8,"abilityModifiers":[{"type":170,"value":-1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/572044.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-12","classId":"rom-mage","group":"primary","unlockLevel":34,"sourceSkillId":490244,"name":"Thunderstorm","description":"Summon a thunderstorm that inflicts (DMG0) + (FixDMG-620202) x INT [SC_SKILLTIPS_WIND] to targets 3 times within range with a chance of causing an additional Slowdown in movement and attacks for (Buff4-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572042,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620202,500557],"components":[{"id":620202,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500557,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":23,"value":20},{"type":24,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490244,"name":"Thunderstorm","description":"Summon a thunderstorm that inflicts (DMG0) + (FixDMG-620202) x INT [SC_SKILLTIPS_WIND] to targets 3 times within range with a chance of causing an additional Slowdown in movement and attacks for (Buff4-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572042,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620202,500557]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/572042.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-52","classId":"rom-mage","group":"primary","unlockLevel":2,"sourceSkillId":491169,"name":"Plasma Arrow","description":"Causes (DMG0) + (FixDMG-620206) x INT [SC_SKILLTIPS_WIND] and puts you in Charged state which in turn temporarily increases your critical magical hit rate by (Buff4-0).","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":576088,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620206,502270],"components":[{"id":620206,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-45,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-45,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502270,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":96,"abilityModifiers":[{"type":20,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":491169,"name":"Plasma Arrow","description":"Causes (DMG0) + (FixDMG-620206) x INT [SC_SKILLTIPS_WIND] and puts you in Charged state which in turn temporarily increases your critical magical hit rate by (Buff4-0).","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":576088,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620206,502270]}}],"sourceFamily":"primary:52","icon":"/assets/ui/rom-spells/576088.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-53","classId":"rom-mage","group":"primary","unlockLevel":10,"sourceSkillId":491168,"name":"Electric Bolt","description":"Inflicts (DMG0) + (FixDMG-620205) x INT [SC_SKILLTIPS_WIND], and afterwards (Buff4-Dot) every 2 seconds for a total of (Buff4-Time) seconds.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":576087,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620205,501550],"components":[{"id":620205,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":25,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501550,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":491168,"name":"Electric Bolt","description":"Inflicts (DMG0) + (FixDMG-620205) x INT [SC_SKILLTIPS_WIND], and afterwards (Buff4-Dot) every 2 seconds for a total of (Buff4-Time) seconds.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":576087,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620205,501550]}}],"sourceFamily":"primary:53","icon":"/assets/ui/rom-spells/576087.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-54","classId":"rom-mage","group":"primary","unlockLevel":16,"sourceSkillId":491170,"name":"Electric Explosion","description":"Causes (DMG1) + (FixDMG-620232) x INT [SC_SKILLTIPS_WIND] to the target.\n\nWhen used in Charged state, it will deal (DMG0) + (FixDMG-620207) x INT [SC_SKILLTIPS_WIND] to the target.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":576089,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620207,502270,621505,620232],"components":[{"id":620207,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-60,"damagePowerSkillLevelArg":30,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502270,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":96,"abilityModifiers":[{"type":20,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"summonCreatureId":0},{"id":621505,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":18,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":96,"abilityModifiers":[{"type":20,"value":20},{"type":48,"value":1}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"summonCreatureId":0},{"id":620232,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-35,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-35,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":491170,"name":"Electric Explosion","description":"Causes (DMG1) + (FixDMG-620232) x INT [SC_SKILLTIPS_WIND] to the target.\n\nWhen used in Charged state, it will deal (DMG0) + (FixDMG-620207) x INT [SC_SKILLTIPS_WIND] to the target.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":576089,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620207,502270,621505,620232]}}],"sourceFamily":"primary:54","icon":"/assets/ui/rom-spells/576089.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-55","classId":"rom-mage","group":"primary","unlockLevel":20,"sourceSkillId":491171,"name":"Electric Compression","description":"When used in Charged state, the power of thunder and lightning is stored deep within you and allows for the use of Static Field.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576203,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501554,502243],"components":[{"id":501554,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":35,"specialActionFlags":0,"assistType":13,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502243,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":96,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":491171,"name":"Electric Compression","description":"When used in Charged state, the power of thunder and lightning is stored deep within you and allows for the use of Static Field.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576203,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501554,502243]}}],"sourceFamily":"primary:55","icon":"/assets/ui/rom-spells/576203.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-56","classId":"rom-mage","group":"primary","unlockLevel":20,"sourceSkillId":491172,"name":"Static Field","description":"Static Field Charge is needed. You use the power of thunder and lightning of your Electric Compression to attack your target, making it unable to move or attack for (Buff0-Time) seconds. (Effect will be removed if attacked; only one target at a time can be kept under control.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576090,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501555,503838],"components":[{"id":501555,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[134217811,0],"clearFlags":2,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503838,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[134217811,0],"clearFlags":2,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":491172,"name":"Static Field","description":"Static Field Charge is needed. You use the power of thunder and lightning of your Electric Compression to attack your target, making it unable to move or attack for (Buff0-Time) seconds. (Effect will be removed if attacked; only one target at a time can be kept under control.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576090,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501555,503838]}}],"sourceFamily":"primary:56","icon":"/assets/ui/rom-spells/576090.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-primary-57","classId":"rom-mage","group":"passive","unlockLevel":22,"sourceSkillId":490217,"name":"Wind Knowledge","description":"Increases resistance to Wind by (Buff0-0) and increases [SC_SKILLTIPS_WIND] by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572024,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500295],"components":[{"id":500295,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":30,"value":2},{"type":48,"value":5}],"abilitySkillLevelArg":23.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490217,"name":"Wind Knowledge","description":"Increases resistance to Wind by (Buff0-0) and increases [SC_SKILLTIPS_WIND] by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572024,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500295]}}],"sourceFamily":"primary:57","icon":"/assets/ui/rom-spells/572024.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-0","classId":"rom-mage","group":"general","unlockLevel":4,"sourceSkillId":490204,"name":"Fireball","description":"Casts a fireball, causing (DMG0) + (FixDMG-620199) x INT [SC_SKILLTIPS_FLAME].","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":572019,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620199,500379,623146],"components":[{"id":620199,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":40,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500379,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-27.1,"fixedValue":-0.01,"attack":{"type":0,"calculationType":1,"damagePower":-27.1,"damagePowerSkillLevelArg":18.3,"fixedValue":-0.01,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623146,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490204,"name":"Fireball","description":"Casts a fireball, causing (DMG0) + (FixDMG-620199) x INT [SC_SKILLTIPS_FLAME].","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":572019,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620199,500379,623146]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/572019.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-1","classId":"rom-mage","group":"general","unlockLevel":8,"sourceSkillId":490212,"name":"Lightning","description":"A lightning strike inflicts (DMG0) + (FixDMG-620200) x INT [SC_SKILLTIPS_WIND], rooting the target for (Buff4-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.358},"source":{"imageId":572022,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620200,501535,503837,623146],"components":[{"id":620200,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-35.82,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-35.82,"damagePowerSkillLevelArg":19.4,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501535,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-59.7,"fixedValue":0,"summonCreatureId":0},{"id":503837,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-59.7,"fixedValue":0,"summonCreatureId":0},{"id":623146,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490212,"name":"Lightning","description":"A lightning strike inflicts (DMG0) + (FixDMG-620200) x INT [SC_SKILLTIPS_WIND], rooting the target for (Buff4-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.358},"source":{"imageId":572022,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620200,501535,503837,623146]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/572022.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-2","classId":"rom-mage","group":"passive","unlockLevel":12,"sourceSkillId":490222,"name":"Wisdom","description":"Increases [SC_SKILLTIPS_INT] by (current [SC_SKILLTIPS_INT] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572028,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500305],"components":[{"id":500305,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":4,"value":11},{"type":163,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490222,"name":"Wisdom","description":"Increases [SC_SKILLTIPS_INT] by (current [SC_SKILLTIPS_INT] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572028,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500305]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/572028.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-3","classId":"rom-mage","group":"general","unlockLevel":16,"sourceSkillId":490225,"name":"Intensification","description":"[SC_SKILLTIPS_MDMG] increases by (Buff0-0) points. Effect lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572031,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500308],"components":[{"id":500308,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":148,"value":50}],"abilitySkillLevelArg":19,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490225,"name":"Intensification","description":"[SC_SKILLTIPS_MDMG] increases by (Buff0-0) points. Effect lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572031,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500308]}},{"rank":2,"level":45,"prerequisites":[490225],"sourceSkillId":497976,"name":"Intensification","description":"For (Buff0-Time) seconds, [SC_SKILLTIPS_MDMG] is increased by (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572031,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620177],"components":[{"id":620177,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":148,"value":100}],"abilitySkillLevelArg":45,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/572031.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-4","classId":"rom-mage","group":"general","unlockLevel":20,"sourceSkillId":490296,"name":"Silence","description":"Silences the target for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":24000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572213,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500529,504256,502719],"components":[{"id":500529,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":22,"effectFlagWords":[1,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504256,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":22,"effectFlagWords":[1,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490296,"name":"Silence","description":"Silences the target for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":24000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":572213,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500529,504256,502719]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/572213.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-general-5","classId":"rom-mage","group":"general","unlockLevel":24,"sourceSkillId":490248,"name":"Fire Ward","description":"Increase the party's Fire resistance by (Buff0-0) points for 10 minutes.","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572048,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500366],"components":[{"id":500366,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":29,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":490248,"name":"Fire Ward","description":"Increase the party's Fire resistance by (Buff0-0) points for 10 minutes.","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572048,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500366]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/572048.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-0","classId":"rom-priest","group":"primary","unlockLevel":1,"sourceSkillId":490288,"name":"Soul Source","description":"The HP of all teammates within a range of 90 is fully restored. Does not consume any MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":1.33},"source":{"imageId":572204,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500516],"components":[{"id":500516,"magicFunc":0,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":8,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":133,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":133,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":10,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490288,"name":"Soul Source","description":"The HP of all teammates within a range of 90 is fully restored. Does not consume any MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":1.33},"source":{"imageId":572204,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500516]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/572204.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-1","classId":"rom-priest","group":"primary","unlockLevel":2,"sourceSkillId":490273,"name":"Wave Armor","description":"Casts a shield of holy spring water that absorbs up to (Buff0-Shield) points of damage. Also reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%. Effect lasts for (Buff0-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":572194,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500478],"components":[{"id":500478,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":143,"value":1},{"type":142,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":2,"effect":0,"point":50,"skillLevelArg":45}}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":490273,"name":"Wave Armor","description":"Casts a shield of holy spring water that absorbs up to (Buff0-Shield) points of damage. Also reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%. Effect lasts for (Buff0-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":572194,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500478]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/572194.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-2","classId":"rom-priest","group":"primary","unlockLevel":6,"sourceSkillId":490261,"name":"Heal","description":"Restores (DMG0) points of target's HP.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.9},"source":{"imageId":572063,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500395],"components":[{"id":500395,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":90,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":90,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":490261,"name":"Heal","description":"Restores (DMG0) points of target's HP.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.9},"source":{"imageId":572063,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500395]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/572063.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-3","classId":"rom-priest","group":"primary","unlockLevel":8,"sourceSkillId":490274,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500485,503858],"components":[{"id":500485,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503858,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490274,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500485,503858]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/572196.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-4","classId":"rom-priest","group":"primary","unlockLevel":8,"sourceSkillId":491165,"name":"Bone Chill","description":"For (Buff0-Time) seconds, Bone Chill will cause (Buff0-Dot) points of damage every 2 seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575160,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501548],"components":[{"id":501548,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":491165,"name":"Bone Chill","description":"For (Buff0-Time) seconds, Bone Chill will cause (Buff0-Dot) points of damage every 2 seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575160,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501548]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/575160.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-5","classId":"rom-priest","group":"primary","unlockLevel":10,"sourceSkillId":490280,"name":"Resurrection","description":"Revives a dead target which accumulates 30% less death debt.\n(Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[500497],"components":[{"id":500497,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":30},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490280,"name":"Resurrection","description":"Revives a dead target which accumulates 30% less death debt.\n(Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[500497]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/572199.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-6","classId":"rom-priest","group":"primary","unlockLevel":10,"sourceSkillId":490297,"name":"Soul Bond","description":"For (Buff0-Time) seconds, the target can revive once in the same place.","target":"friendly","range":22.5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":400,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572211,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500535],"components":[{"id":500535,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":16,"effectFlagWords":[4194304,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490297,"name":"Soul Bond","description":"For (Buff0-Time) seconds, the target can revive once in the same place.","target":"friendly","range":22.5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":400,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572211,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500535]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/572211.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-7","classId":"rom-priest","group":"primary","unlockLevel":14,"sourceSkillId":490290,"name":"Grace of Life","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572226,"sourceEffectType":0,"sourceTarget":7,"componentIds":[500517,507217],"components":[{"id":500517,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":18,"abilityModifiers":[{"type":8,"value":50}],"abilitySkillLevelArg":26,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495931,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507217,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490290,"name":"Grace of Life","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572226,"sourceEffectType":0,"sourceTarget":7,"componentIds":[500517,507217]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/572226.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-8","classId":"rom-priest","group":"primary","unlockLevel":14,"sourceSkillId":490281,"name":"Group Heal","description":"Restores (DMG0) HP to all party members within range of 120. You will enter a state of Exhaustion, increasing the mana requirement for group healing skills.","target":"self","range":0.1,"castTimeMs":3000,"cooldownMs":0,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.65},"source":{"imageId":572200,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500498,620407],"components":[{"id":500498,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":65,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":65,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":3},"summonCreatureId":0},{"id":620407,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":50364418,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490281,"name":"Group Heal","description":"Restores (DMG0) HP to all party members within range of 120. You will enter a state of Exhaustion, increasing the mana requirement for group healing skills.","target":"self","range":0.1,"castTimeMs":3000,"cooldownMs":0,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.65},"source":{"imageId":572200,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500498,620407]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/572200.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-9","classId":"rom-priest","group":"primary","unlockLevel":18,"sourceSkillId":491164,"name":"Chain of Light","description":"Continuously deals (DMG0) Light damage to the target.","target":"hostile","range":21.700000000000003,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575128,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620409],"components":[{"id":620409,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":9,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":491164,"name":"Chain of Light","description":"Continuously deals (DMG0) Light damage to the target.","target":"hostile","range":21.700000000000003,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575128,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620409]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/575128.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-10","classId":"rom-priest","group":"primary","unlockLevel":20,"sourceSkillId":490491,"name":"Amplified Attack","description":"Increases [SC_SKILLTIPS_01] by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.\n(This effect does not stack with similar effects.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":36,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573733,"sourceEffectType":0,"sourceTarget":7,"componentIds":[500940,507218],"components":[{"id":500940,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":42,"abilityModifiers":[{"type":12,"value":50}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495930,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":-10,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490491,"name":"Amplified Attack","description":"Increases [SC_SKILLTIPS_01] by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.\n(This effect does not stack with similar effects.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":36,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573733,"sourceEffectType":0,"sourceTarget":7,"componentIds":[500940,507218]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/573733.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-11","classId":"rom-priest","group":"passive","unlockLevel":22,"sourceSkillId":490305,"name":"Prayer","description":"Increases Water Resistance by (Buff0-0) points and magical Water Damage by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572066,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500559],"components":[{"id":500559,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":28,"value":2},{"type":46,"value":5}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490305,"name":"Prayer","description":"Increases Water Resistance by (Buff0-0) points and magical Water Damage by (Buff0-1)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572066,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500559]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/572066.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-12","classId":"rom-priest","group":"passive","unlockLevel":24,"sourceSkillId":490295,"name":"Faith","description":"Effectiveness of Heal effects increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572211,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500528],"components":[{"id":500528,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":5}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":490295,"name":"Faith","description":"Effectiveness of Heal effects increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":572211,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500528]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/572211.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-13","classId":"rom-priest","group":"primary","unlockLevel":26,"sourceSkillId":490275,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500486,503859],"components":[{"id":500486,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503859,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490275,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500486,503859]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/572196.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-14","classId":"rom-priest","group":"primary","unlockLevel":28,"sourceSkillId":490294,"name":"Healing Salve","description":"The effectiveness of heals received by the target increases by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572208,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500527],"components":[{"id":500527,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":174,"abilityModifiers":[{"type":144,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490294,"name":"Healing Salve","description":"The effectiveness of heals received by the target increases by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572208,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500527]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/572208.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-15","classId":"rom-priest","group":"primary","unlockLevel":30,"sourceSkillId":490301,"name":"Blessing of Humility","description":"For (Buff0-Time) seconds, you temporarily become the one with the least aggro.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":99,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572219,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500546],"components":[{"id":500546,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1073741824,0],"abilityModifiers":[{"type":138,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490301,"name":"Blessing of Humility","description":"For (Buff0-Time) seconds, you temporarily become the one with the least aggro.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":99,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572219,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500546]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/572219.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-16","classId":"rom-priest","group":"primary","unlockLevel":32,"sourceSkillId":490276,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":200,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500487,503860],"components":[{"id":500487,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503860,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":490276,"name":"Ice Fog","description":"Casts a cloud of icy fog around the target, causing (Buff0-Time) seconds of Slow effect.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":200,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572196,"sourceEffectType":0,"sourceTarget":6,"componentIds":[500487,503860]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/572196.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-17","classId":"rom-priest","group":"primary","unlockLevel":34,"sourceSkillId":490304,"name":"Holy Candle","description":"Consumes (Buff0-Dot)% HP per second and increases effectiveness of heals by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572224,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500549],"components":[{"id":500549,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":65643,"specialActionFlags":0,"assistType":174,"clearFlags":1024,"abilityModifiers":[{"type":149,"value":5}],"abilitySkillLevelArg":10,"dotTime":1,"dotType":5,"dotBase":-6,"dot":{"timeSeconds":1,"type":5,"base":-6,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":490304,"name":"Holy Candle","description":"Consumes (Buff0-Dot)% HP per second and increases effectiveness of heals by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572224,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500549]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/572224.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-58","classId":"rom-priest","group":"primary","unlockLevel":18,"sourceSkillId":491175,"name":"Cleanse","description":"Removes harmful effects from target.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573063,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501566],"components":[{"id":501566,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":491175,"name":"Cleanse","description":"Removes harmful effects from target.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573063,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501566]}}],"sourceFamily":"primary:58","icon":"/assets/ui/rom-spells/573063.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-65","classId":"rom-priest","group":"primary","unlockLevel":20,"sourceSkillId":491176,"name":"Advanced Resurrection","description":"Revives a dead target which accumulates 45% less death debt. An [203606] is needed. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[501561],"components":[{"id":501561,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":45},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":491176,"name":"Advanced Resurrection","description":"Revives a dead target which accumulates 45% less death debt. An [203606] is needed. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[501561]}}],"sourceFamily":"primary:65","icon":"/assets/ui/rom-spells/572199.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-primary-66","classId":"rom-priest","group":"primary","unlockLevel":30,"sourceSkillId":491177,"name":"Supreme Resurrection","description":"Revives a dead target which accumulates 75% less death debt. A [203605] is needed. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[501562],"components":[{"id":501562,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":75},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":491177,"name":"Supreme Resurrection","description":"Revives a dead target which accumulates 75% less death debt. A [203605] is needed. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":572199,"sourceEffectType":0,"sourceTarget":15,"componentIds":[501562]}}],"sourceFamily":"primary:66","icon":"/assets/ui/rom-spells/572199.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-0","classId":"rom-priest","group":"general","unlockLevel":1,"sourceSkillId":491147,"name":"Urgent Heal","description":"Quickcast that restores (DMG0) points of target's HP.","target":"friendly","range":25,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.35},"source":{"imageId":573047,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501543,621391],"components":[{"id":501543,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":35,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":35,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":621391,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":491147,"name":"Urgent Heal","description":"Quickcast that restores (DMG0) points of target's HP.","target":"friendly","range":25,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.35},"source":{"imageId":573047,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501543,621391]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/573047.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-1","classId":"rom-priest","group":"general","unlockLevel":1,"sourceSkillId":490256,"name":"Rising Tide","description":"Summons a torrent that deals (DMG0) Water damage to a target.","target":"hostile","range":21.700000000000003,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":12,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572061,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620408],"components":[{"id":620408,"magicFunc":0,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":28,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490256,"name":"Rising Tide","description":"Summons a torrent that deals (DMG0) Water damage to a target.","target":"hostile","range":21.700000000000003,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":12,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":572061,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620408]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/572061.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-2","classId":"rom-priest","group":"general","unlockLevel":4,"sourceSkillId":490269,"name":"Regenerate","description":"Recover (Buff2-Dot) of target's HP every 2 seconds for (Buff2-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572067,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621318,621548,500469,621549],"components":[{"id":621318,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":25,"abilityModifiers":[{"type":163,"value":10},{"type":164,"value":10}],"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621548,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":25,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":25},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500469,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":25,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621549,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":524357,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":0,"value":8}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":498614,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490269,"name":"Regenerate","description":"Recover (Buff2-Dot) of target's HP every 2 seconds for (Buff2-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572067,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621318,621548,500469,621549]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/572067.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-3","classId":"rom-priest","group":"general","unlockLevel":8,"sourceSkillId":490300,"name":"Holy Aura","description":"Immune to all damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572221,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501546],"components":[{"id":501546,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":20,"effectFlagWords":[12,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-152.95,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490300,"name":"Holy Aura","description":"Immune to all damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572221,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501546]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/572221.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-4","classId":"rom-priest","group":"general","unlockLevel":12,"sourceSkillId":491166,"name":"Magic Barrier","description":"For (Buff0-Time) seconds, all party member's [SC_SKILLTIPS_MDEF] increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572223,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500548],"components":[{"id":500548,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":97,"abilityModifiers":[{"type":170,"value":6}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":491166,"name":"Magic Barrier","description":"For (Buff0-Time) seconds, all party member's [SC_SKILLTIPS_MDEF] increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572223,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500548]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/572223.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-general-5","classId":"rom-priest","group":"general","unlockLevel":16,"sourceSkillId":490298,"name":"Blessed Spring Water","description":"Increases party's Water resistance by (Buff0-0) points for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572215,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500536],"components":[{"id":500536,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":11,"abilityModifiers":[{"type":28,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490298,"name":"Blessed Spring Water","description":"Increases party's Water resistance by (Buff0-0) points for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":572215,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500536]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/572215.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-0","classId":"rom-knight","group":"primary","unlockLevel":1,"sourceSkillId":490495,"name":"Holy Shield","description":"For (Buff0-Time) seconds, every party member within range receives a shield which can block all physical damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573731,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500943],"components":[{"id":500943,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[8,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490495,"name":"Holy Shield","description":"For (Buff0-Time) seconds, every party member within range receives a shield which can block all physical damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573731,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500943]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/573731.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-1","classId":"rom-knight","group":"primary","unlockLevel":2,"sourceSkillId":490149,"name":"Holy Seal","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second, and immediately adds 4 layers of Holy Seal effect. \nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff-Time-500140) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575282,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500142,500169,500140],"components":[{"id":500142,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.65,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":40,"hateRate":2.5},"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":490149,"name":"Holy Seal","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second, and immediately adds 4 layers of Holy Seal effect. \nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff-Time-500140) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575282,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500142,500169,500140]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/575282.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-2","classId":"rom-knight","group":"primary","unlockLevel":2,"sourceSkillId":490172,"name":"Holy Power Explosion","description":"Gives a buff restoring MP by (Buff0-Dot)% every 2 seconds, and increases the aggro of all attacks by (Buff0-0)%. It also restores (DMG-500314) MP for (Buff0-Time) seconds while receiving healing.","target":"self","range":5,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570944,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501827,500314],"components":[{"id":501827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":235,"specialActionFlags":0,"assistType":24,"abilityModifiers":[{"type":138,"value":10}],"abilitySkillLevelArg":5,"dotTime":2,"dotType":6,"dotBase":3,"dot":{"timeSeconds":2,"type":6,"base":3,"skillLevelArg":0},"attackType":1,"damagePower":60,"fixedValue":0,"summonCreatureId":0},{"id":500314,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":50,"fixedValue":0,"attack":{"type":1,"calculationType":4,"damagePower":50,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":490172,"name":"Holy Power Explosion","description":"Gives a buff restoring MP by (Buff0-Dot)% every 2 seconds, and increases the aggro of all attacks by (Buff0-0)%. It also restores (DMG-500314) MP for (Buff0-Time) seconds while receiving healing.","target":"self","range":5,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570944,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501827,500314]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/570944.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-3","classId":"rom-knight","group":"primary","unlockLevel":6,"sourceSkillId":490175,"name":"Whirlwind Shield","description":"Deals (DMG0) + (FixDMG-500175) x the shield's defense value main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second on multiple targets. Each skill level adds to aggro.\n(Must have a shield equipped)\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575127,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500175],"components":[{"id":500175,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.4,"damagePowerSkillLevelArg":7,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":10},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":490175,"name":"Whirlwind Shield","description":"Deals (DMG0) + (FixDMG-500175) x the shield's defense value main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second on multiple targets. Each skill level adds to aggro.\n(Must have a shield equipped)\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575127,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500175]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/575127.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-4","classId":"rom-knight","group":"primary","unlockLevel":10,"sourceSkillId":490189,"name":"Shackles of Light","description":"Emanate shackles of light, Rooting all enemies for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":73,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570948,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500195],"components":[{"id":500195,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":490189,"name":"Shackles of Light","description":"Emanate shackles of light, Rooting all enemies for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":73,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570948,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500195]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/570948.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-5","classId":"rom-knight","group":"primary","unlockLevel":14,"sourceSkillId":490168,"name":"Resolution","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff0-1)% + (Buff0-0) for (Buff0-Time) seconds, \nand restores (DMG-500950) + (current [SC_SKILLTIPS_HP]) x ((DMG-507222)).","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":3.5},"source":{"imageId":570960,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500211,500950,507222],"components":[{"id":500211,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":8,"value":350},{"type":167,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500950,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":68157440,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":350,"fixedValue":0,"attack":{"type":0,"calculationType":4,"damagePower":350,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":507222,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":68157440,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":1,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":490168,"name":"Resolution","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff0-1)% + (Buff0-0) for (Buff0-Time) seconds, \nand restores (DMG-500950) + (current [SC_SKILLTIPS_HP]) x ((DMG-507222)).","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":3.5},"source":{"imageId":570960,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500211,500950,507222]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/570960.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-6","classId":"rom-knight","group":"primary","unlockLevel":18,"sourceSkillId":490150,"name":"Charge","description":"Charging towards the target causes (DMG0) [SC_SKILLTIPS_DMG], stuns the target for (Buff4-Time) seconds and adds 2 layers Holy Seal effects.\n(For players the stun effect time lasts (Buff5-Time) seconds.)\nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff-Time-500140) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":570954,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500240,500243,504257,500169,500168,500146,500140],"components":[{"id":500240,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":5,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-25,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-25,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500243,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504257,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":490150,"name":"Charge","description":"Charging towards the target causes (DMG0) [SC_SKILLTIPS_DMG], stuns the target for (Buff4-Time) seconds and adds 2 layers Holy Seal effects.\n(For players the stun effect time lasts (Buff5-Time) seconds.)\nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff-Time-500140) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":570954,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500240,500243,504257,500169,500168,500146,500140]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/570954.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-7","classId":"rom-knight","group":"primary","unlockLevel":20,"sourceSkillId":490153,"name":"Threaten","description":"Deals (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-505950) [SC_SKILLTIPS_DMG|Physical Light Damage] and increases your own aggro by (Buff8-0)% for (Buff8-Time) seconds.\nIf the target has the Holy Seal effect, it will deal (DMG-500242) to (DMG-500257) [SC_SKILLTIPS_DMG|Physical Light Damage] according to the number the effect stacks and reduce the target's [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff4-0)% to (Buff7-0)% for (Buff4-Time) seconds. The effect is enhanced according to the amount of the effect stacks.\n|cff99FF37 Each Holy Seal adds (DMG-500242) Light damage and reduces the target's [SC_SKILLTIPS_01|physical] and [SC_SKILLTIPS_02|magic attack power] by (Buff4-0)%.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575285,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505950,500225,500140,500227,500146,500228,500168,500241,500169,500246,500242,500257],"components":[{"id":505950,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.1,"attack":{"type":0,"calculationType":9,"damagePower":-30,"damagePowerSkillLevelArg":20,"fixedValue":-0.1,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500225,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":196,"abilityModifiers":[{"type":134,"value":-1},{"type":171,"value":-1}],"abilitySkillLevelArg":25,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500227,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":196,"abilityModifiers":[{"type":134,"value":-2},{"type":171,"value":-2}],"abilitySkillLevelArg":25,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500228,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":196,"abilityModifiers":[{"type":134,"value":-3},{"type":171,"value":-3}],"abilitySkillLevelArg":25,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500241,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":196,"abilityModifiers":[{"type":134,"value":-4},{"type":171,"value":-4}],"abilitySkillLevelArg":25,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500246,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":39,"abilityModifiers":[{"type":138,"value":21}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500242,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-5,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-5,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500257,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-20,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490153,"name":"Threaten","description":"Deals (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-505950) [SC_SKILLTIPS_DMG|Physical Light Damage] and increases your own aggro by (Buff8-0)% for (Buff8-Time) seconds.\nIf the target has the Holy Seal effect, it will deal (DMG-500242) to (DMG-500257) [SC_SKILLTIPS_DMG|Physical Light Damage] according to the number the effect stacks and reduce the target's [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff4-0)% to (Buff7-0)% for (Buff4-Time) seconds. The effect is enhanced according to the amount of the effect stacks.\n|cff99FF37 Each Holy Seal adds (DMG-500242) Light damage and reduces the target's [SC_SKILLTIPS_01|physical] and [SC_SKILLTIPS_02|magic attack power] by (Buff4-0)%.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575285,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505950,500225,500140,500227,500146,500228,500168,500241,500169,500246,500242,500257]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/575285.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-8","classId":"rom-knight","group":"passive","unlockLevel":22,"sourceSkillId":490171,"name":"Shield Mastery","description":"Increases shield's [SC_SKILLTIPS_DEF] by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570937,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500215],"components":[{"id":500215,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":43,"value":5}],"abilitySkillLevelArg":23.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":490171,"name":"Shield Mastery","description":"Increases shield's [SC_SKILLTIPS_DEF] by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570937,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500215]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/570937.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-10","classId":"rom-knight","group":"primary","unlockLevel":26,"sourceSkillId":490468,"name":"Shield of Valor","description":"Enhances shield with the power of Light, increasing [SC_SKILLTIPS_PARRY_RATE] by (Buff0-0)%. Each successful parry will reduce the cooldown time of the Holy Seal skill by 1 seconds for (Buff0-Time) seconds.\n(Must have a shield equipped)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570946,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500178],"components":[{"id":500178,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":227,"value":5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":490468,"name":"Shield of Valor","description":"Enhances shield with the power of Light, increasing [SC_SKILLTIPS_PARRY_RATE] by (Buff0-0)%. Each successful parry will reduce the cooldown time of the Holy Seal skill by 1 seconds for (Buff0-Time) seconds.\n(Must have a shield equipped)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570946,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500178]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/570946.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-11","classId":"rom-knight","group":"primary","unlockLevel":28,"sourceSkillId":490186,"name":"Truth Shield Bash","description":"Deals (DMG0) + (FixDMG-500177) x the shield's defense value [SC_SKILLTIPS_DMG|Physical Light Damage] per second, based on the main hand weapon's damage per second. If the caster is under the \"[501827]\" effect, the inflicted aggro will also be increased.\nIf the target has the \"Holy Seal\" effect, all the Holy Seal effects will be consumed to generate a shield, absorbing an amount of damage equal to (Buff-Shield-500196)% to (Buff-Shield-500199)% [SC_SKILLTIPS_HP].\n|cff99FF37 Each shield generated by the Holy Seal can absorb an amount of damage equal to (Buff-Shield-500196)% maximal HP. The shield can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":570958,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500185,501827,500177,500186,500140,500187,500146,500188,500168,500189,500169,500196,500199],"components":[{"id":500185,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":10,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.4,"damagePowerSkillLevelArg":20,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":10},"summonCreatureId":0},{"id":501827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":235,"specialActionFlags":0,"assistType":24,"abilityModifiers":[{"type":138,"value":10}],"abilitySkillLevelArg":5,"dotTime":2,"dotType":6,"dotBase":3,"dot":{"timeSeconds":2,"type":6,"base":3,"skillLevelArg":0},"attackType":1,"damagePower":60,"fixedValue":0,"summonCreatureId":0},{"id":500177,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":10,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.4,"damagePowerSkillLevelArg":20,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500186,"magicFunc":7,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500187,"magicFunc":7,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500188,"magicFunc":7,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500189,"magicFunc":7,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500196,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":2,"skillLevelArg":3}},{"id":500199,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":8,"skillLevelArg":3}}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":490186,"name":"Truth Shield Bash","description":"Deals (DMG0) + (FixDMG-500177) x the shield's defense value [SC_SKILLTIPS_DMG|Physical Light Damage] per second, based on the main hand weapon's damage per second. If the caster is under the \"[501827]\" effect, the inflicted aggro will also be increased.\nIf the target has the \"Holy Seal\" effect, all the Holy Seal effects will be consumed to generate a shield, absorbing an amount of damage equal to (Buff-Shield-500196)% to (Buff-Shield-500199)% [SC_SKILLTIPS_HP].\n|cff99FF37 Each shield generated by the Holy Seal can absorb an amount of damage equal to (Buff-Shield-500196)% maximal HP. The shield can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":570958,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500185,501827,500177,500186,500140,500187,500146,500188,500168,500189,500169,500196,500199]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/570958.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-12","classId":"rom-knight","group":"primary","unlockLevel":30,"sourceSkillId":490154,"name":"Shock","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second and stuns the target for (Buff4-Time) seconds.\nIf the target has the Holy Seal effect, it will deal additional (DMG-500946) to (DMG-500949) [SC_SKILLTIPS_DMG|Physical Light Damage] and increase the stun effect time by (Buff-Time-500248) to (Buff8-Time) seconds.\n|cff99FF37 Each Holy Seal increases Light damage by (DMG-500946) and the stun effect time by (Buff4-Time) seconds.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570938,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500263,500247,500259,500169,500253,500168,500249,500146,500248,500140,500946,500949],"components":[{"id":500263,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":12,"hateCost":30,"settingFlags":0,"specialActionFlags":4,"assistType":2,"abilityModifiers":[{"type":135,"value":-3}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":10,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500247,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500259,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500253,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":4,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500249,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":3,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500248,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":2,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500946,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":12,"hateCost":30,"settingFlags":66,"specialActionFlags":4,"assistType":2,"abilityModifiers":[{"type":135,"value":-3}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-10,"damagePowerSkillLevelArg":10,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500949,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":12,"hateCost":30,"settingFlags":66,"specialActionFlags":4,"assistType":2,"abilityModifiers":[{"type":135,"value":-3}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-40,"damagePowerSkillLevelArg":10,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":490154,"name":"Shock","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second and stuns the target for (Buff4-Time) seconds.\nIf the target has the Holy Seal effect, it will deal additional (DMG-500946) to (DMG-500949) [SC_SKILLTIPS_DMG|Physical Light Damage] and increase the stun effect time by (Buff-Time-500248) to (Buff8-Time) seconds.\n|cff99FF37 Each Holy Seal increases Light damage by (DMG-500946) and the stun effect time by (Buff4-Time) seconds.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570938,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500263,500247,500259,500169,500253,500168,500249,500146,500248,500140,500946,500949]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/570938.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-14","classId":"rom-knight","group":"primary","unlockLevel":34,"sourceSkillId":491321,"name":"Holy Strength","description":"Increases [SC_SKILLTIPS_STR] by (Buff0-0)% and Light damage dealt by you, by (Buff0-1)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575284,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500768],"components":[{"id":500768,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":161,"value":1},{"type":49,"value":1}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":491321,"name":"Holy Strength","description":"Increases [SC_SKILLTIPS_STR] by (Buff0-0)% and Light damage dealt by you, by (Buff0-1)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575284,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500768]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/575284.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-9","classId":"rom-knight","group":"passive","unlockLevel":24,"sourceSkillId":490191,"name":"Devotion","description":"Increases [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0), the healing you receive by (Buff8-0)% and Light damage dealt by you, by (Buff8-1)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570952,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500239,507204,500148],"components":[{"id":500239,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":30}],"abilitySkillLevelArg":50,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507204,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":168,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500148,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":144,"value":1},{"type":49,"value":1}],"abilitySkillLevelArg":24,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":490191,"name":"Devotion","description":"Increases [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0), the healing you receive by (Buff8-0)% and Light damage dealt by you, by (Buff8-1)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570952,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500239,507204,500148]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/570952.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-primary-17","classId":"rom-knight","group":"primary","unlockLevel":42,"sourceSkillId":495724,"name":"Hall of Dead Heroes","description":"After use, all party members within range will receive the Hall of Dead Heroes effect. [SC_SKILLTIPS_HURT_PASSIVE] decreases by (Buff0-2)%, [SC_SKILLTIPS_MHURT_PASSIVE] decreases by (Buff0-1)%, and [SC_SKILLTIPS_MOVE] increases by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570972,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500266],"components":[{"id":500266,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":30},{"type":142,"value":10},{"type":143,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":42,"prerequisites":[],"sourceSkillId":495724,"name":"Hall of Dead Heroes","description":"After use, all party members within range will receive the Hall of Dead Heroes effect. [SC_SKILLTIPS_HURT_PASSIVE] decreases by (Buff0-2)%, [SC_SKILLTIPS_MHURT_PASSIVE] decreases by (Buff0-1)%, and [SC_SKILLTIPS_MOVE] increases by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570972,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500266]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/570972.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-0","classId":"rom-knight","group":"general","unlockLevel":1,"sourceSkillId":490151,"name":"Punishment","description":"If the target has the Holy Seal effect, According to the amount of the effect stacks, the Holy Seal will deal extra (DMG0) to (DMG3) + current [SC_SKILLTIPS_STA] x (FixDMG-500145) to (FixDMG-500219) [SC_SKILLTIPS_DMG|Physical Light Damage].\n|cff99FF37 Every Holy Seal stack adds (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-500145) Light damage.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":570928,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500145,500140,500216,500146,500217,500168,500219,500169,500143],"components":[{"id":500145,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.1,"attack":{"type":0,"calculationType":9,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500216,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.2,"attack":{"type":0,"calculationType":9,"damagePower":-60,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500217,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-90,"fixedValue":-0.3,"attack":{"type":0,"calculationType":9,"damagePower":-90,"damagePowerSkillLevelArg":30,"fixedValue":-0.3,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500219,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-120,"fixedValue":-0.4,"attack":{"type":0,"calculationType":9,"damagePower":-120,"damagePowerSkillLevelArg":30,"fixedValue":-0.4,"fixedType":8,"fixedDamageSkillLevelArg":1,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500143,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":-10,"settingFlags":524288,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490151,"name":"Punishment","description":"If the target has the Holy Seal effect, According to the amount of the effect stacks, the Holy Seal will deal extra (DMG0) to (DMG3) + current [SC_SKILLTIPS_STA] x (FixDMG-500145) to (FixDMG-500219) [SC_SKILLTIPS_DMG|Physical Light Damage].\n|cff99FF37 Every Holy Seal stack adds (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-500145) Light damage.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":570928,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500145,500140,500216,500146,500217,500168,500219,500169,500143]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/570928.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-1","classId":"rom-knight","group":"general","unlockLevel":1,"sourceSkillId":490148,"name":"Holy Strike","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second, and adds one layer of Holy Seal effect. Each skill level adds to aggro.\nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff4-Time) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575126,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500155,500169,500168,500146,500140],"components":[{"id":500155,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.65,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2.5},"summonCreatureId":0},{"id":500169,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500168,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500146,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0},{"id":500140,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":80,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-2,"dot":{"timeSeconds":2,"type":0,"base":-2,"skillLevelArg":50},"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":490148,"name":"Holy Strike","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second, and adds one layer of Holy Seal effect. Each skill level adds to aggro.\nHoly Seal: Causes (Buff-Dot-500140) [SC_SKILLTIPS_DMG] every 2 seconds for (Buff4-Time) seconds. It can be stacked up to 4 times.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575126,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500155,500169,500168,500146,500140]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/575126.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-2","classId":"rom-knight","group":"general","unlockLevel":4,"sourceSkillId":490159,"name":"Disarmament","description":"Inflicts (DMG0) main hand weapon DPS to the target and reduces its armor value by (Buff7-0)% for (Buff7-Time) seconds. Can be stacked 4 times.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570942,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620959,500165,500159,500158,500157],"components":[{"id":620959,"magicFunc":0,"magicType":4,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.65,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":2,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500165,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-12}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500159,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-9}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500158,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-6}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500157,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-3}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":490159,"name":"Disarmament","description":"Inflicts (DMG0) main hand weapon DPS to the target and reduces its armor value by (Buff7-0)% for (Buff7-Time) seconds. Can be stacked 4 times.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":570942,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620959,500165,500159,500158,500157]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/570942.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-3","classId":"rom-knight","group":"general","unlockLevel":8,"sourceSkillId":490179,"name":"Strike of Punishment","description":"Deals (DMG0) [SC_SKILLTIPS_DMG|Physical Light Damage] to the target and makes it unable to carry out physical and normal attacks for (Buff4-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":6,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":803035,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500767,500147],"components":[{"id":500767,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":10,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-20,"damagePowerSkillLevelArg":25,"fixedValue":0,"fixedType":2,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500147,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":126,"effectFlagWords":[2,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":490179,"name":"Strike of Punishment","description":"Deals (DMG0) [SC_SKILLTIPS_DMG|Physical Light Damage] to the target and makes it unable to carry out physical and normal attacks for (Buff4-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":6,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":803035,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500767,500147]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/803035.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-4","classId":"rom-knight","group":"general","unlockLevel":12,"sourceSkillId":490152,"name":"Enhanced Armor","description":"Increases [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570930,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500141],"components":[{"id":500141,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":300,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":2,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":490152,"name":"Enhanced Armor","description":"Increases [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570930,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500141]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/570930.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-5","classId":"rom-knight","group":"passive","unlockLevel":16,"sourceSkillId":490174,"name":"Defense Technique","description":"Increases parry rate by (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570940,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500218],"components":[{"id":500218,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":490174,"name":"Defense Technique","description":"Increases parry rate by (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570940,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500218]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/570940.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-6","classId":"rom-knight","group":"passive","unlockLevel":20,"sourceSkillId":490170,"name":"Resilience","description":"Increases [SC_SKILLTIPS_STA] by (current [SC_SKILLTIPS_STA] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570932,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500214],"components":[{"id":500214,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":3,"value":11},{"type":162,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":490170,"name":"Resilience","description":"Increases [SC_SKILLTIPS_STA] by (current [SC_SKILLTIPS_STA] + (Buff0-0)) x (Buff0-1)% + (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":570932,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500214]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/570932.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-general-7","classId":"rom-knight","group":"general","unlockLevel":36,"sourceSkillId":490192,"name":"Shield of Discipline","description":"Enhances shield with the power of Light, absorbing (Buff0-0)% [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] for 30 seconds. Also deals (DMG-500213) Light damage to the attacking spell caster. (Shield must be equipped.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":99,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":570965,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500149,500213],"components":[{"id":500149,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":268435683,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":143,"value":5},{"type":142,"value":5}],"abilitySkillLevelArg":23.2,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":490469,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500213,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"attack":{"type":0,"calculationType":4,"damagePower":-100,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":490192,"name":"Shield of Discipline","description":"Enhances shield with the power of Light, absorbing (Buff0-0)% [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] for 30 seconds. Also deals (DMG-500213) Light damage to the attacking spell caster. (Shield must be equipped.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":99,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":570965,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500149,500213]}}],"sourceFamily":"general:7","icon":"/assets/ui/rom-spells/570965.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-0","classId":"rom-warden","group":"primary","unlockLevel":1,"sourceSkillId":493644,"name":"Energy Absorb","description":"Absorbs target's natural energy to reduce his physical damage by (Buff0-0)% and increase your own physical damage by (Buff4-0)% for (Buff0-Time) seconds.","target":"hostile","range":8,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578296,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504136,504137],"components":[{"id":504136,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":-10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504137,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493644,"name":"Energy Absorb","description":"Absorbs target's natural energy to reduce his physical damage by (Buff0-0)% and increase your own physical damage by (Buff4-0)% for (Buff0-Time) seconds.","target":"hostile","range":8,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578296,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504136,504137]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/578296.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-1","classId":"rom-warden","group":"primary","unlockLevel":1,"sourceSkillId":493333,"name":"Summon Spirit of the Oak","description":"Summons a [102297] to assist you. While in effect, it will increase your [SC_SKILLTIPS_DEF] by (Buff4-0)% and [SC_SKILLTIPS_PARRY_RATE] by (Buff4-1)%.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102297},"source":{"imageId":578258,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503576,620682],"components":[{"id":503576,"magicFunc":3,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102297,"summon":{"creatureId":102297,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}},{"id":620682,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":135,"value":65},{"type":227,"value":20}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493333,"name":"Summon Spirit of the Oak","description":"Summons a [102297] to assist you. While in effect, it will increase your [SC_SKILLTIPS_DEF] by (Buff4-0)% and [SC_SKILLTIPS_PARRY_RATE] by (Buff4-1)%.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102297},"source":{"imageId":578258,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503576,620682]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/578258.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-2","classId":"rom-warden","group":"primary","unlockLevel":1,"sourceSkillId":493382,"name":"Punch","description":"Causes (DMG0) damage to your target and decreases the target's [SC_SKILLTIPS_01] by (Buff4-0)% for (Buff4-Time) seconds.\n[SC_SKILL_COLLECT_01]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":578264,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503575,503582,503650],"components":[{"id":503575,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-20,"damagePowerSkillLevelArg":33,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503582,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503650,"magicFunc":7,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493382,"name":"Punch","description":"Causes (DMG0) damage to your target and decreases the target's [SC_SKILLTIPS_01] by (Buff4-0)% for (Buff4-Time) seconds.\n[SC_SKILL_COLLECT_01]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":578264,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503575,503582,503650]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/578264.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-3","classId":"rom-warden","group":"primary","unlockLevel":2,"sourceSkillId":493393,"name":"Thorny Vines","description":"Thorny vines pierce your target, causing (Buff0-Dot) physical damage every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578275,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503628],"components":[{"id":503628,"magicFunc":1,"magicType":0,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":493393,"name":"Thorny Vines","description":"Thorny vines pierce your target, causing (Buff0-Dot) physical damage every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578275,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503628]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/578275.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-4","classId":"rom-warden","group":"primary","unlockLevel":6,"sourceSkillId":493398,"name":"Elven Prayer","description":"Heals your pet restoring (current max HP x (DMG-507338)) + (DMG-503636) HP.","target":"self","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":578279,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620138,505155,507338,503636],"components":[{"id":620138,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505155,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":10},{"type":173,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507338,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":2,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":2,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503636,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":20,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":20,"damagePowerSkillLevelArg":24,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":493398,"name":"Elven Prayer","description":"Heals your pet restoring (current max HP x (DMG-507338)) + (DMG-503636) HP.","target":"self","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":578279,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620138,505155,507338,503636]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/578279.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-5","classId":"rom-warden","group":"primary","unlockLevel":10,"sourceSkillId":493400,"name":"Movement Restriction","description":"Your target is unable to move for (Buff0-Time) seconds. Afterwards it suffers (DMG-503945) damage.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":578281,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503638,504241,503943,503945],"components":[{"id":503638,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":194,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493419,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504241,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":194,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493419,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503943,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":524288,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503945,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-16.4,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-16.4,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":493400,"name":"Movement Restriction","description":"Your target is unable to move for (Buff0-Time) seconds. Afterwards it suffers (DMG-503945) damage.\n(For players this effect lasts for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":578281,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503638,504241,503943,503945]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/578281.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-6","classId":"rom-warden","group":"primary","unlockLevel":14,"sourceSkillId":493344,"name":"Summon Nature Crystal","description":"Summons a [102325] to assist you. While active, you will be immune to all attacks but will not be able to use any attack skills. When the [102325] is present, your [SC_SKILLTIPS_MOVE] will be increased by (Buff4-0)% and you can order the [102325] to cast [498201] and [498202] to assist your party members.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102325},"source":{"imageId":578260,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503578,503948],"components":[{"id":503578,"magicFunc":3,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102325,"summon":{"creatureId":102325,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}},{"id":503948,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":24,"value":7}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":493344,"name":"Summon Nature Crystal","description":"Summons a [102325] to assist you. While active, you will be immune to all attacks but will not be able to use any attack skills. When the [102325] is present, your [SC_SKILLTIPS_MOVE] will be increased by (Buff4-0)% and you can order the [102325] to cast [498201] and [498202] to assist your party members.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102325},"source":{"imageId":578260,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503578,503948]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/578260.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-7","classId":"rom-warden","group":"primary","unlockLevel":14,"sourceSkillId":498202,"name":"Crystalline Acceleration","description":"Increases the [SC_SKILLTIPS_DPS] and [SC_SKILLTIPS_CAST] of team members by (Buff0-620687)% for (Buff-Time-620687) seconds within a radius of 75 from the pet's master.\n[SC_SKILL_COLLECT_01]","target":"self","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578270,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620716,620687],"components":[{"id":620716,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620687,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-5},{"type":51,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":498202,"name":"Crystalline Acceleration","description":"Increases the [SC_SKILLTIPS_DPS] and [SC_SKILLTIPS_CAST] of team members by (Buff0-620687)% for (Buff-Time-620687) seconds within a radius of 75 from the pet's master.\n[SC_SKILL_COLLECT_01]","target":"self","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578270,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620716,620687]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/578270.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-8","classId":"rom-warden","group":"primary","unlockLevel":18,"sourceSkillId":493384,"name":"Entangle","description":"Binds the target tightly to your pet, making it unable to move, attack or cast spells for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578266,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503583,504243,503584],"components":[{"id":503583,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504243,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503584,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":493384,"name":"Entangle","description":"Binds the target tightly to your pet, making it unable to move, attack or cast spells for (Buff0-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578266,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503583,504243,503584]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/578266.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-9","classId":"rom-warden","group":"primary","unlockLevel":22,"sourceSkillId":493399,"name":"Damage Transfer","description":"For (Buff-Time-503643) seconds, (Buff4-0)% of the damage you receive is transferred to your pet. (Pet must be inside a radius of 300.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578280,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504305,503942,503643],"components":[{"id":504305,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503942,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":128,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":30},{"type":142,"value":30}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":493416,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503643,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":493399,"name":"Damage Transfer","description":"For (Buff-Time-503643) seconds, (Buff4-0)% of the damage you receive is transferred to your pet. (Pet must be inside a radius of 300.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578280,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504305,503942,503643]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/578280.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-10","classId":"rom-warden","group":"primary","unlockLevel":24,"sourceSkillId":491668,"name":"Heart of the Oak","description":"You are protected by the power of the Oak and will be able to resist the next 2 attacks. It lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":578261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620679,503946],"components":[{"id":620679,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":363,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5}],"abilitySkillLevelArg":0,"dotTime":3,"dotType":5,"dotBase":1,"dot":{"timeSeconds":3,"type":5,"base":1,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":2,"skillLevelArg":0}},{"id":503946,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":355,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":2,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":491668,"name":"Heart of the Oak","description":"You are protected by the power of the Oak and will be able to resist the next 2 attacks. It lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":578261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620679,503946]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/578261.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-11","classId":"rom-warden","group":"primary","unlockLevel":26,"sourceSkillId":493391,"name":"Frantic Briar","description":"Uses the power of Mother Earth to create a briar, causing (DMG0) main hand weapon DPS to all targets in a range of 80, and decreasing their [SC_SKILLTIPS_MOVE] by (Buff4-0)% for (Buff4-Time) seconds.","target":"self","range":8,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578273,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503481,620682,503626,503947,620694],"components":[{"id":503481,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0},{"id":620682,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":135,"value":65},{"type":227,"value":20}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503626,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503947,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-35}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620694,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":493391,"name":"Frantic Briar","description":"Uses the power of Mother Earth to create a briar, causing (DMG0) main hand weapon DPS to all targets in a range of 80, and decreasing their [SC_SKILLTIPS_MOVE] by (Buff4-0)% for (Buff4-Time) seconds.","target":"self","range":8,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578273,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503481,620682,503626,503947,620694]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/578273.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-13","classId":"rom-warden","group":"primary","unlockLevel":30,"sourceSkillId":493343,"name":"Summon Oak Walker","description":"Summons an [102324] to assist you. While in effect, it increases your [SC_SKILLTIPS_CRI] by (Buff4-0), [SC_SKILLTIPS_CRI_POWER] by (Buff4-1)%, [SC_SKILLTIPS_MCRI] by (Buff4-2), and [SC_SKILLTIPS_MCRI_POWER] by (Buff4-3)%. If your skill attacks land a critical hit during the effect time, the Oak Walker will additionally cast [493385] on your target.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102324},"source":{"imageId":578259,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503577,620678],"components":[{"id":503577,"magicFunc":3,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102324,"summon":{"creatureId":102324,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}},{"id":620678,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":18,"value":200},{"type":19,"value":10},{"type":20,"value":200},{"type":21,"value":10}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":493343,"name":"Summon Oak Walker","description":"Summons an [102324] to assist you. While in effect, it increases your [SC_SKILLTIPS_CRI] by (Buff4-0), [SC_SKILLTIPS_CRI_POWER] by (Buff4-1)%, [SC_SKILLTIPS_MCRI] by (Buff4-2), and [SC_SKILLTIPS_MCRI_POWER] by (Buff4-3)%. If your skill attacks land a critical hit during the effect time, the Oak Walker will additionally cast [493385] on your target.","target":"self","range":5,"castTimeMs":4000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102324},"source":{"imageId":578259,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503577,620678]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/578259.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-14","classId":"rom-warden","group":"primary","unlockLevel":30,"sourceSkillId":493385,"name":"Sepal Stab","description":"Precisely stab your target causing (DMG0) damage. \n[SC_SKILL_COLLECT_01]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":578267,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503619,503650],"components":[{"id":503619,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-30,"damagePowerSkillLevelArg":26,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503650,"magicFunc":7,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":493385,"name":"Sepal Stab","description":"Precisely stab your target causing (DMG0) damage. \n[SC_SKILL_COLLECT_01]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":578267,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503619,503650]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/578267.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-15","classId":"rom-warden","group":"passive","unlockLevel":32,"sourceSkillId":493409,"name":"Two-Hand Weapon Mastery","description":"You can wield two-hand axes and swords, and your two-handed weapon damage is increased by (Buff0-3)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578290,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503647],"components":[{"id":503647,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":90,"value":1},{"type":92,"value":1},{"type":63,"value":5},{"type":65,"value":5},{"type":66,"value":5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":493409,"name":"Two-Hand Weapon Mastery","description":"You can wield two-hand axes and swords, and your two-handed weapon damage is increased by (Buff0-3)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578290,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503647]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/578290.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-16","classId":"rom-warden","group":"primary","unlockLevel":32,"sourceSkillId":493348,"name":"Protection of Nature","description":"Increases your [SC_SKILLTIPS_HP] by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578263,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503581],"components":[{"id":503581,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1},{"type":144,"value":3}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":493348,"name":"Protection of Nature","description":"Increases your [SC_SKILLTIPS_HP] by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578263,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503581]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/578263.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-17","classId":"rom-warden","group":"passive","unlockLevel":34,"sourceSkillId":493407,"name":"Natural Lifeline","description":"Permanently increases your pet's maximum HP by (Buff0-503645)%. Permanently increases your [SC_SKILLTIPS_STA] and [SC_SKILLTIPS_STR] by (current STA or STR + (Buff0-0)) x ((Buff0-1)%) + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578288,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620681,503645],"components":[{"id":620681,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":3,"value":10},{"type":162,"value":1},{"type":2,"value":10},{"type":161,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503645,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":50331747,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":3}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":493407,"name":"Natural Lifeline","description":"Permanently increases your pet's maximum HP by (Buff0-503645)%. Permanently increases your [SC_SKILLTIPS_STA] and [SC_SKILLTIPS_STR] by (current STA or STR + (Buff0-0)) x ((Buff0-1)%) + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578288,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620681,503645]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/578288.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-18","classId":"rom-warden","group":"primary","unlockLevel":36,"sourceSkillId":493397,"name":"Banish","description":"Banishes your target for (Buff0-Time) seconds making it unable to act but also unable to receive damage.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":60000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578278,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503635,504240],"components":[{"id":503635,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[95,24],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504240,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[95,24],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":493397,"name":"Banish","description":"Banishes your target for (Buff0-Time) seconds making it unable to act but also unable to receive damage.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":60000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578278,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503635,504240]}}],"sourceFamily":"primary:18","icon":"/assets/ui/rom-spells/578278.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-19","classId":"rom-warden","group":"primary","unlockLevel":38,"sourceSkillId":493386,"name":"Magic Interference","description":"Reduces your target's [SC_SKILLTIPS_MAG_HITP] and [SC_SKILLTIPS_HITP] by (Buff0-0)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578268,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620711,620712],"components":[{"id":620711,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":199,"value":-2},{"type":197,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620712,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":199,"value":-2},{"type":197,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":493386,"name":"Magic Interference","description":"Reduces your target's [SC_SKILLTIPS_MAG_HITP] and [SC_SKILLTIPS_HITP] by (Buff0-0)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578268,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620711,620712]}}],"sourceFamily":"primary:19","icon":"/assets/ui/rom-spells/578268.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-20","classId":"rom-warden","group":"passive","unlockLevel":40,"sourceSkillId":493401,"name":"Vitality Explosion","description":"The power of Mother Earth flows through you. When you hit your target with [493395] or [493392], you will have a chance of restoring your HP by (DMG-503648). This skill can't be triggered again within (Buff-Time-620677) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503648,620677],"components":[{"id":503648,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":10,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":10,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620677,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":493401,"name":"Vitality Explosion","description":"The power of Mother Earth flows through you. When you hit your target with [493395] or [493392], you will have a chance of restoring your HP by (DMG-503648). This skill can't be triggered again within (Buff-Time-620677) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503648,620677]}}],"sourceFamily":"primary:20","icon":"/assets/ui/rom-spells/578282.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-21","classId":"rom-warden","group":"primary","unlockLevel":42,"sourceSkillId":493347,"name":"Power of the Oak","description":"You obtained the power of the Oak, temporary increasing two-hand weapon attack damage by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578262,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503580],"components":[{"id":503580,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":63,"value":3},{"type":65,"value":3},{"type":64,"value":3}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":42,"prerequisites":[],"sourceSkillId":493347,"name":"Power of the Oak","description":"You obtained the power of the Oak, temporary increasing two-hand weapon attack damage by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578262,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503580]}}],"sourceFamily":"primary:21","icon":"/assets/ui/rom-spells/578262.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-22","classId":"rom-warden","group":"primary","unlockLevel":44,"sourceSkillId":493403,"name":"Explosion of Power","description":"Vitalizes your pet's body, increasing your pet's physical and magical attack power by (Buff0-503641)% for (Buff-Time-503641) seconds. (Pet must be inside a radius of 300.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578284,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504198,503641],"components":[{"id":504198,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503641,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5},{"type":171,"value":5}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":44,"prerequisites":[],"sourceSkillId":493403,"name":"Explosion of Power","description":"Vitalizes your pet's body, increasing your pet's physical and magical attack power by (Buff0-503641)% for (Buff-Time-503641) seconds. (Pet must be inside a radius of 300.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578284,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504198,503641]}}],"sourceFamily":"primary:22","icon":"/assets/ui/rom-spells/578284.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-23","classId":"rom-warden","group":"primary","unlockLevel":46,"sourceSkillId":498201,"name":"Crystalline Protection","description":"Casts Crystalline Protection on all team members within a radius of 75 from the pet's master. Negates damage equal to (Buff-Shield-620686)% of maximum HP for (Buff-Time-620686) seconds. \n[SC_SKILL_COLLECT_01]","target":"self","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":578272,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620715,620686],"components":[{"id":620715,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620686,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435811,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":10,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":46,"prerequisites":[],"sourceSkillId":498201,"name":"Crystalline Protection","description":"Casts Crystalline Protection on all team members within a radius of 75 from the pet's master. Negates damage equal to (Buff-Shield-620686)% of maximum HP for (Buff-Time-620686) seconds. \n[SC_SKILL_COLLECT_01]","target":"self","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":578272,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620715,620686]}}],"sourceFamily":"primary:23","icon":"/assets/ui/rom-spells/578272.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-24","classId":"rom-warden","group":"primary","unlockLevel":48,"sourceSkillId":493405,"name":"Elven Guidance","description":"Cast this on your pet. If your pet lands a hit with Punch or Sepal Stab within the next (Buff-Time-503643) seconds you can recover (DMG-503652) MP. (Pet must be within a radius 300.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578286,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503960,503643,503652],"components":[{"id":503960,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503643,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503652,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":30,"fixedValue":0,"attack":{"type":1,"calculationType":4,"damagePower":30,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":48,"prerequisites":[],"sourceSkillId":493405,"name":"Elven Guidance","description":"Cast this on your pet. If your pet lands a hit with Punch or Sepal Stab within the next (Buff-Time-503643) seconds you can recover (DMG-503652) MP. (Pet must be within a radius 300.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578286,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503960,503643,503652]}}],"sourceFamily":"primary:24","icon":"/assets/ui/rom-spells/578286.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-25","classId":"rom-warden","group":"primary","unlockLevel":50,"sourceSkillId":493394,"name":"Cross Chop","description":"Chop crosswise against your target, dealing (DMG0) main hand weapon DPS plus (FixDMG-503629) times STR damage to the enemies in a straight line in front of your target. If the [102297] is summoned, the skill will grant extra aggro.","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578276,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503629,620682,503950],"components":[{"id":503629,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":8},"summonCreatureId":0},{"id":620682,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":135,"value":65},{"type":227,"value":20}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503950,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[],"sourceSkillId":493394,"name":"Cross Chop","description":"Chop crosswise against your target, dealing (DMG0) main hand weapon DPS plus (FixDMG-503629) times STR damage to the enemies in a straight line in front of your target. If the [102297] is summoned, the skill will grant extra aggro.","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578276,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503629,620682,503950]}}],"sourceFamily":"primary:25","icon":"/assets/ui/rom-spells/578276.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-primary-26","classId":"rom-warden","group":"primary","unlockLevel":1,"sourceSkillId":493645,"name":"Recall Pet","description":"Recall your pet.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578384,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504199],"components":[{"id":504199,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493645,"name":"Recall Pet","description":"Recall your pet.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578384,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504199]}}],"sourceFamily":"primary:26","icon":"/assets/ui/rom-spells/578384.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-0","classId":"rom-warden","group":"general","unlockLevel":1,"sourceSkillId":493395,"name":"Charged Chop","description":"Concentrates power in your weapon, then releases it to strike a mighty blow! Causes (DMG0) main hand weapon DPS plus (FixDMG-503630) times STR to your target. \nIt shares [SC_SKILLTIPS_CDTIME] with [493392].","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":1000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578277,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503630],"components":[{"id":503630,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.2,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-1.2,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493395,"name":"Charged Chop","description":"Concentrates power in your weapon, then releases it to strike a mighty blow! Causes (DMG0) main hand weapon DPS plus (FixDMG-503630) times STR to your target. \nIt shares [SC_SKILLTIPS_CDTIME] with [493392].","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":1000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578277,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503630]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/578277.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-1","classId":"rom-warden","group":"general","unlockLevel":4,"sourceSkillId":493642,"name":"Briar Shield","description":"Thorns surround you for (Buff0-Time) seconds, increasing your [SC_SKILLTIPS_DEF] by (Buff0-0)%. When you are physically attacked, it reflects (DMG-503959) main hand weapon DPS.\n(Only effective on targets within a range of 50)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578293,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503958,503959],"components":[{"id":503958,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":183,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":11,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":493643,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503959,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.01,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.01,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":493642,"name":"Briar Shield","description":"Thorns surround you for (Buff0-Time) seconds, increasing your [SC_SKILLTIPS_DEF] by (Buff0-0)%. When you are physically attacked, it reflects (DMG-503959) main hand weapon DPS.\n(Only effective on targets within a range of 50)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578293,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503958,503959]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/578293.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-2","classId":"rom-warden","group":"general","unlockLevel":8,"sourceSkillId":493392,"name":"Power of the Wood Spirit","description":"Uses the Power of the Wood Spirit to attack up to 3 targets, causing (DMG0) main hand weapon DPS. It shares [SC_SKILLTIPS_CDTIME] with [493395].","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":1000,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578274,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503627],"components":[{"id":503627,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":493392,"name":"Power of the Wood Spirit","description":"Uses the Power of the Wood Spirit to attack up to 3 targets, causing (DMG0) main hand weapon DPS. It shares [SC_SKILLTIPS_CDTIME] with [493395].","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":1000,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578274,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503627]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/578274.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-3","classId":"rom-warden","group":"passive","unlockLevel":12,"sourceSkillId":493608,"name":"Enhanced Accuracy","description":"Increases your physical attack accuracy by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578292,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503956],"components":[{"id":503956,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":1}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":493608,"name":"Enhanced Accuracy","description":"Increases your physical attack accuracy by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578292,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503956]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/578292.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-4","classId":"rom-warden","group":"general","unlockLevel":16,"sourceSkillId":493402,"name":"Elven Amulet","description":"You obtain the protection of the Elves. Received physical damage is reduced by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":70000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578283,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503957],"components":[{"id":503957,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":493402,"name":"Elven Amulet","description":"You obtain the protection of the Elves. Received physical damage is reduced by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":70000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578283,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503957]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/578283.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-general-5","classId":"rom-warden","group":"general","unlockLevel":20,"sourceSkillId":493406,"name":"Savage Power","description":"Draws out the savage power inside of you, temporarily increasing your physical attack power by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578287,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503644],"components":[{"id":503644,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":3}],"abilitySkillLevelArg":9.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":493406,"name":"Savage Power","description":"Draws out the savage power inside of you, temporarily increasing your physical attack power by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578287,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503644]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/578287.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-0","classId":"rom-druid","group":"primary","unlockLevel":1,"sourceSkillId":493538,"name":"Earth Arrow","description":"The power of Mother Earth manifests in your hand causing (DMG0) Earth damage to your target, and also gaining 1 point of Nature's Power.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":12,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578366,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620211,504126],"components":[{"id":620211,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":28,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504126,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493538,"name":"Earth Arrow","description":"The power of Mother Earth manifests in your hand causing (DMG0) Earth damage to your target, and also gaining 1 point of Nature's Power.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":12,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578366,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620211,504126]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/578366.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-1","classId":"rom-druid","group":"primary","unlockLevel":2,"sourceSkillId":493539,"name":"Briar Entwinement","description":"Pours the power of Mother Earth into your target causing every 2 seconds (Buff0-Dot) Earth damage for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578367,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503808],"components":[{"id":503808,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":493539,"name":"Briar Entwinement","description":"Pours the power of Mother Earth into your target causing every 2 seconds (Buff0-Dot) Earth damage for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578367,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503808]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/578367.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-2","classId":"rom-druid","group":"primary","unlockLevel":2,"sourceSkillId":493534,"name":"Purify","description":"Cleanses your target from curses.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578362,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503803],"components":[{"id":503803,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":493534,"name":"Purify","description":"Cleanses your target from curses.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578362,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503803]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/578362.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-3","classId":"rom-druid","group":"primary","unlockLevel":6,"sourceSkillId":493526,"name":"Restore Life","description":"Condenses the power of Mother Earth to restore (DMG0) HP to your target. Also regain 1 point of Nature's Power.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":578354,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503794,503999],"components":[{"id":503794,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":70,"damagePowerSkillLevelArg":28,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503999,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":493526,"name":"Restore Life","description":"Condenses the power of Mother Earth to restore (DMG0) HP to your target. Also regain 1 point of Nature's Power.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":578354,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503794,503999]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/578354.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-4","classId":"rom-druid","group":"primary","unlockLevel":10,"sourceSkillId":493527,"name":"Blossoming Life","description":"Lets your target regenerate (Buff0-Dot) HP every 2 seconds for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578355,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503795],"components":[{"id":503795,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":8299,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":25,"dot":{"timeSeconds":2,"type":0,"base":25,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":493527,"name":"Blossoming Life","description":"Lets your target regenerate (Buff0-Dot) HP every 2 seconds for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578355,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503795]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/578355.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-5","classId":"rom-druid","group":"primary","unlockLevel":10,"sourceSkillId":493548,"name":"Unity with Mother Earth","description":"Enables every spell you cast to land a critical attack, and increases [SC_SKILLTIPS_HEAL] by (Buff0-0)% for (Buff0-Time) seconds, but you will be unable to move during this time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578375,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503817],"components":[{"id":503817,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,64],"abilityModifiers":[{"type":149,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":493548,"name":"Unity with Mother Earth","description":"Enables every spell you cast to land a critical attack, and increases [SC_SKILLTIPS_HEAL] by (Buff0-0)% for (Buff0-Time) seconds, but you will be unable to move during this time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578375,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503817]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/578375.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-6","classId":"rom-druid","group":"primary","unlockLevel":12,"sourceSkillId":493537,"name":"Rebirth","description":"Uses the power of nature to revive your target. Reduces death debt by 30%. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[503806],"components":[{"id":503806,"magicFunc":8,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":30},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":493537,"name":"Rebirth","description":"Uses the power of nature to revive your target. Reduces death debt by 30%. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[503806]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/578365.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-7","classId":"rom-druid","group":"primary","unlockLevel":14,"sourceSkillId":493546,"name":"Weakening Seed","description":"Plants a seed into your target's body reducing its [SC_SKILLTIPS_MDEF] by (Buff1-0)% for (Buff1-Time) seconds, and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and reduce target's [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds. Also 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578374,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503815,503827,620458,504131],"components":[{"id":503815,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":170,"abilityModifiers":[{"type":170,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620458,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":170,"abilityModifiers":[{"type":170,"value":-2}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504131,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":493546,"name":"Weakening Seed","description":"Plants a seed into your target's body reducing its [SC_SKILLTIPS_MDEF] by (Buff1-0)% for (Buff1-Time) seconds, and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and reduce target's [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds. Also 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578374,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503815,503827,620458,504131]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/578374.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-8","classId":"rom-druid","group":"primary","unlockLevel":18,"sourceSkillId":493543,"name":"Rockslide","description":"Hits your target with falling stones after (Buff0-Time) seconds causing (DMG-503824) Earth damage.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578382,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503812,503823,503824],"components":[{"id":503812,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":8386,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493553,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503823,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503824,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":493543,"name":"Rockslide","description":"Hits your target with falling stones after (Buff0-Time) seconds causing (DMG-503824) Earth damage.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578382,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503812,503823,503824]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/578382.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-9","classId":"rom-druid","group":"passive","unlockLevel":22,"sourceSkillId":493550,"name":"Knowledge of the Earth","description":"Makes you understand the flow of Mother Earth's energy, permanently increasing your magical Earth damage by (Buff0-0)% and your Earth resistance by (Buff0-1).\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578378,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503820],"components":[{"id":503820,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":10,"abilityModifiers":[{"type":45,"value":5},{"type":27,"value":2}],"abilitySkillLevelArg":23.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":493550,"name":"Knowledge of the Earth","description":"Makes you understand the flow of Mother Earth's energy, permanently increasing your magical Earth damage by (Buff0-0)% and your Earth resistance by (Buff0-1).\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578378,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503820]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/578378.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-10","classId":"rom-druid","group":"primary","unlockLevel":24,"sourceSkillId":493541,"name":"Binding Silence","description":"Causes (DMG0) [SC_SKILLTIPS_EARTH] and interrupts target's spell casting, rewarding you with 1 point of Nature's Power. (The interrupted spell will enter a cooldown. If the interrupted spell has no cooldown time, all spells will receive a cooldown of 3 seconds.)","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":578369,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503810,502703,504127],"components":[{"id":503810,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-100,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502703,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504127,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":493541,"name":"Binding Silence","description":"Causes (DMG0) [SC_SKILLTIPS_EARTH] and interrupts target's spell casting, rewarding you with 1 point of Nature's Power. (The interrupted spell will enter a cooldown. If the interrupted spell has no cooldown time, all spells will receive a cooldown of 3 seconds.)","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":578369,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503810,502703,504127]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/578369.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-11","classId":"rom-druid","group":"primary","unlockLevel":26,"sourceSkillId":493547,"name":"Curing Seed","description":"Plants a healing seed into your target's body increasing the efficiency of heals received by (Buff0-0)% for (Buff0-Time) seconds. This restores 1 point of Nature's Power.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578381,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503816,504132],"components":[{"id":503816,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":174,"abilityModifiers":[{"type":144,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504132,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":493547,"name":"Curing Seed","description":"Plants a healing seed into your target's body increasing the efficiency of heals received by (Buff0-0)% for (Buff0-Time) seconds. This restores 1 point of Nature's Power.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578381,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503816,504132]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/578381.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-12","classId":"rom-druid","group":"primary","unlockLevel":28,"sourceSkillId":493530,"name":"Concentration Prayer","description":"Sends a prayer to Mother Nature, beseeching her to increase all of your party members' [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578358,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503799,507209],"components":[{"id":503799,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":600,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":5,"value":10}],"abilitySkillLevelArg":10,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495932,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507209,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":600,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":164,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":493530,"name":"Concentration Prayer","description":"Sends a prayer to Mother Nature, beseeching her to increase all of your party members' [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578358,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503799,507209]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/578358.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-13","classId":"rom-druid","group":"passive","unlockLevel":30,"sourceSkillId":493552,"name":"Pure Healing","description":"Permanently increases your heals by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578380,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503822],"components":[{"id":503822,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":5}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":493552,"name":"Pure Healing","description":"Permanently increases your heals by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578380,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503822]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/578380.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-14","classId":"rom-druid","group":"primary","unlockLevel":32,"sourceSkillId":493544,"name":"Rock Protection","description":"Makes your body as hard as rock reducing damage taken by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578372,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503813,509797],"components":[{"id":503813,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":178,"abilityModifiers":[{"type":143,"value":45}],"abilitySkillLevelArg":2.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509797,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268959969,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":45}],"abilitySkillLevelArg":2.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":493544,"name":"Rock Protection","description":"Makes your body as hard as rock reducing damage taken by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578372,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503813,509797]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/578372.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-15","classId":"rom-druid","group":"primary","unlockLevel":34,"sourceSkillId":493536,"name":"Spirit Guidance","description":"Consumes 1 point of Nature's Power, channeling it into your target, making it friendly for (Buff0-Time) seconds. (Cannot be used on players. If your reputation has a negative value, the target will still regard you as an enemy.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"mana","amount":200,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578364,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503805,503833,504109],"components":[{"id":503805,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":16777410,"specialActionFlags":0,"assistType":101,"effectFlagWords":[0,1024],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493557,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503833,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504109,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":493536,"name":"Spirit Guidance","description":"Consumes 1 point of Nature's Power, channeling it into your target, making it friendly for (Buff0-Time) seconds. (Cannot be used on players. If your reputation has a negative value, the target will still regard you as an enemy.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"mana","amount":200,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578364,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503805,503833,504109]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/578364.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-16","classId":"rom-druid","group":"primary","unlockLevel":36,"sourceSkillId":493532,"name":"Body Vitalization","description":"Increase target's [SC_SKILLTIPS_DPS] by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578360,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503801],"components":[{"id":503801,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":9,"abilityModifiers":[{"type":23,"value":-2}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":493532,"name":"Body Vitalization","description":"Increase target's [SC_SKILLTIPS_DPS] by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578360,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503801]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/578360.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-17","classId":"rom-druid","group":"primary","unlockLevel":38,"sourceSkillId":493529,"name":"Mother Earth's Fountain","description":"Restores (DMG1) HP to your friendly targets within a range of 100 around the target of your spell.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance the power and restore (DMG0) HP.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":578357,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503798,503827,503828,620441],"components":[{"id":503798,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":70,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503828,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":56,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":56,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":493529,"name":"Mother Earth's Fountain","description":"Restores (DMG1) HP to your friendly targets within a range of 100 around the target of your spell.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance the power and restore (DMG0) HP.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":578357,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503798,503827,503828,620441]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/578357.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-18","classId":"rom-druid","group":"passive","unlockLevel":40,"sourceSkillId":493555,"name":"Power of Protection","description":"Additionally increases the damage reduction of Mother Earth's Protection.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578383,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":493555,"name":"Power of Protection","description":"Additionally increases the damage reduction of Mother Earth's Protection.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578383,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"sourceFamily":"primary:18","icon":"/assets/ui/rom-spells/578383.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-19","classId":"rom-druid","group":"primary","unlockLevel":42,"sourceSkillId":493545,"name":"Withering Seed","description":"Plants a seed into your target's body reducing its [SC_SKILLTIPS_DEF] by (Buff1-0)% for (Buff1-Time) seconds, and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and reduce target's [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds. Also, 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578373,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503814,503827,620457,504130],"components":[{"id":503814,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620457,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-2}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504130,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":42,"prerequisites":[],"sourceSkillId":493545,"name":"Withering Seed","description":"Plants a seed into your target's body reducing its [SC_SKILLTIPS_DEF] by (Buff1-0)% for (Buff1-Time) seconds, and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and reduce target's [SC_SKILLTIPS_DEF] by (Buff0-0)% for (Buff0-Time) seconds. Also, 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578373,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503814,503827,620457,504130]}}],"sourceFamily":"primary:19","icon":"/assets/ui/rom-spells/578373.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-20","classId":"rom-druid","group":"primary","unlockLevel":44,"sourceSkillId":493549,"name":"Mother Nature's Wrath","description":"Inflicts (DMG1) [SC_SKILLTIPS_EARTH] on your target, and (Buff4-Dot) [SC_SKILLTIPS_EARTH] every 2 seconds for (Buff4-Time) seconds. Also restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_EARTH] and (Buff4-Dot) [SC_SKILLTIPS_EARTH] every 2 seconds for (Buff4-Time) seconds. Also 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":65,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":578376,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620214,503827,620450,503819,503999],"components":[{"id":620214,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-60,"damagePowerSkillLevelArg":22,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620450,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-48,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-48,"damagePowerSkillLevelArg":22,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503819,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":23},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503999,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":44,"prerequisites":[],"sourceSkillId":493549,"name":"Mother Nature's Wrath","description":"Inflicts (DMG1) [SC_SKILLTIPS_EARTH] on your target, and (Buff4-Dot) [SC_SKILLTIPS_EARTH] every 2 seconds for (Buff4-Time) seconds. Also restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_EARTH] and (Buff4-Dot) [SC_SKILLTIPS_EARTH] every 2 seconds for (Buff4-Time) seconds. Also 1 point of Nature's Power will be restored.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":65,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":578376,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620214,503827,620450,503819,503999]}}],"sourceFamily":"primary:20","icon":"/assets/ui/rom-spells/578376.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-21","classId":"rom-druid","group":"primary","unlockLevel":46,"sourceSkillId":493542,"name":"Summon Sandstorm","description":"Summons a large amount of sand and stones causing (DMG1) [SC_SKILLTIPS_EARTH] to multiple targets in range. \nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and cause (DMG0) [SC_SKILLTIPS_EARTH] to all targets in range twice.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578370,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620439,503827,620459,620441],"components":[{"id":620439,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":28,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620459,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":28,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":46,"prerequisites":[],"sourceSkillId":493542,"name":"Summon Sandstorm","description":"Summons a large amount of sand and stones causing (DMG1) [SC_SKILLTIPS_EARTH] to multiple targets in range. \nIf you possess Nature's Power, it will consume 1 point of Nature's Power to enhance abilities and cause (DMG0) [SC_SKILLTIPS_EARTH] to all targets in range twice.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":578370,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620439,503827,620459,620441]}}],"sourceFamily":"primary:21","icon":"/assets/ui/rom-spells/578370.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-22","classId":"rom-druid","group":"primary","unlockLevel":22,"sourceSkillId":493559,"name":"Advanced Rebirth","description":"Through Nature's power and the consumption of an [203606] you can revive your target with 45% less death debt. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[504134],"components":[{"id":504134,"magicFunc":8,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":45},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":493559,"name":"Advanced Rebirth","description":"Through Nature's power and the consumption of an [203606] you can revive your target with 45% less death debt. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[504134]}}],"sourceFamily":"primary:22","icon":"/assets/ui/rom-spells/578365.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-primary-23","classId":"rom-druid","group":"primary","unlockLevel":32,"sourceSkillId":493560,"name":"Supreme Rebirth","description":"Through Nature's power and the consumption of a [203605] you can revive your target with 75% less death debt. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[504135],"components":[{"id":504135,"magicFunc":8,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":75},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":493560,"name":"Supreme Rebirth","description":"Through Nature's power and the consumption of a [203605] you can revive your target with 75% less death debt. (Cannot be used in combat.)","target":"friendly","range":15,"castTimeMs":5000,"cooldownMs":0,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":578365,"sourceEffectType":0,"sourceTarget":15,"componentIds":[504135]}}],"sourceFamily":"primary:23","icon":"/assets/ui/rom-spells/578365.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-0","classId":"rom-druid","group":"general","unlockLevel":1,"sourceSkillId":493528,"name":"Recover","description":"Restores (DMG0) HP to your target and (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.4},"source":{"imageId":578356,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503796,503797],"components":[{"id":503796,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":40,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":40,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503797,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":14,"hateCost":0,"settingFlags":8299,"specialActionFlags":0,"assistType":131,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":493528,"name":"Recover","description":"Restores (DMG0) HP to your target and (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.4},"source":{"imageId":578356,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503796,503797]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/578356.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-1","classId":"rom-druid","group":"general","unlockLevel":4,"sourceSkillId":493535,"name":"Antidote","description":"Cleanses your target from poison.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578363,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503804],"components":[{"id":503804,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":493535,"name":"Antidote","description":"Cleanses your target from poison.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578363,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503804]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/578363.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-2","classId":"rom-druid","group":"general","unlockLevel":8,"sourceSkillId":493531,"name":"Savage Blessing","description":"Increases target's [SC_SKILLTIPS_HIT] and [SC_SKILLTIPS_MAG_HIT] by (Buff0-0)% + (Buff4-0) for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578359,"sourceEffectType":0,"sourceTarget":7,"componentIds":[620454,620455],"components":[{"id":620454,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":1},{"type":199,"value":1}],"abilitySkillLevelArg":9,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493561,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620455,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":16,"value":20},{"type":195,"value":20}],"abilitySkillLevelArg":70,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":493531,"name":"Savage Blessing","description":"Increases target's [SC_SKILLTIPS_HIT] and [SC_SKILLTIPS_MAG_HIT] by (Buff0-0)% + (Buff4-0) for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578359,"sourceEffectType":0,"sourceTarget":7,"componentIds":[620454,620455]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/578359.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-3","classId":"rom-druid","group":"general","unlockLevel":12,"sourceSkillId":493540,"name":"Earth Pulse","description":"The power of Mother Earth strikes the targets in a straight line before you causing (DMG0) Earth damage.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":578368,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620212],"components":[{"id":620212,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":25,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":493540,"name":"Earth Pulse","description":"The power of Mother Earth strikes the targets in a straight line before you causing (DMG0) Earth damage.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":578368,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620212]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/578368.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-4","classId":"rom-druid","group":"passive","unlockLevel":16,"sourceSkillId":493551,"name":"Knowledge of Nature","description":"Increases [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff4-0)% + (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578379,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503821,507208],"components":[{"id":503821,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":5,"value":10}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507208,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":164,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":493551,"name":"Knowledge of Nature","description":"Increases [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff4-0)% + (Buff0-0).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578379,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503821,507208]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/578379.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-general-5","classId":"rom-druid","group":"general","unlockLevel":20,"sourceSkillId":493533,"name":"Mother Earth's Protection","description":"Uses the power of Mother Earth to build a protective shield around your target reducing its suffered magical and physical damage by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578361,"sourceEffectType":0,"sourceTarget":1,"componentIds":[503802,509795],"components":[{"id":503802,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":178,"abilityModifiers":[{"type":143,"value":20}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509795,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268959969,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":20},{"type":143,"value":0}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":493533,"name":"Mother Earth's Protection","description":"Uses the power of Mother Earth to build a protective shield around your target reducing its suffered magical and physical damage by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578361,"sourceEffectType":0,"sourceTarget":1,"componentIds":[503802,509795]}},{"rank":2,"level":40,"prerequisites":[493555],"sourceSkillId":493558,"name":"Mother Earth's Protection","description":"Uses the power of Mother Earth to build a protective shield around your target reducing its suffered magical and physical damage by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578361,"sourceEffectType":0,"sourceTarget":4,"componentIds":[503826,509796],"components":[{"id":503826,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":178,"abilityModifiers":[{"type":143,"value":40}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509796,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268959969,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":40}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/578361.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-0","classId":"rom-warlock","group":"primary","unlockLevel":6,"sourceSkillId":497960,"name":"Perception Extraction","description":"Steals the target's senses and inflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] every second. It also restores (Buff8-Dot) focus every 2 seconds. The effect lasts for (Buff0-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800083,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621701,621446,621655],"components":[{"id":621701,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":26,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":1,"type":0,"base":-6,"skillLevelArg":80},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621446,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":223,"value":9},{"type":226,"value":9}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621655,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":26,"hateCost":0,"settingFlags":75,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":3,"dotBase":2,"dot":{"timeSeconds":2,"type":3,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":497960,"name":"Perception Extraction","description":"Steals the target's senses and inflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] every second. It also restores (Buff8-Dot) focus every 2 seconds. The effect lasts for (Buff0-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800083,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621701,621446,621655]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/800083.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-1","classId":"rom-warlock","group":"primary","unlockLevel":6,"sourceSkillId":497955,"name":"Willpower Blade","description":"|cff9D53E3 Willpower becomes a keen blade, allowing powerful psychic attack skills to be used. |r\nWhen a Warlock has an energy influx of 6 psi, they can choose to release the power of [497955]. Specific skills can only be used in this state, which lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":18000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800374,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501571,621404],"components":[{"id":501571,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498680,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621404,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524355,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":163,"value":2}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":497955,"name":"Willpower Blade","description":"|cff9D53E3 Willpower becomes a keen blade, allowing powerful psychic attack skills to be used. |r\nWhen a Warlock has an energy influx of 6 psi, they can choose to release the power of [497955]. Specific skills can only be used in this state, which lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":18000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800374,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501571,621404]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/800374.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-2","classId":"rom-warlock","group":"primary","unlockLevel":6,"sourceSkillId":497956,"name":"Willpower Construct","description":"|cff6E6DE7 Thoughts are constructed to form solid willpower, allowing powerful psychic support skills to be used. |r\nWhen a Warlock has an energy influx of 6 psi, they can choose to release the power of [497956]. Specific skills can only be used in this state. Lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":18000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800375,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501572,621404],"components":[{"id":501572,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498680,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621404,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524355,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":163,"value":2}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":497956,"name":"Willpower Construct","description":"|cff6E6DE7 Thoughts are constructed to form solid willpower, allowing powerful psychic support skills to be used. |r\nWhen a Warlock has an energy influx of 6 psi, they can choose to release the power of [497956]. Specific skills can only be used in this state. Lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":18000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800375,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501572,621404]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/800375.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-3","classId":"rom-warlock","group":"primary","unlockLevel":10,"sourceSkillId":497962,"name":"Severed Consciousness","description":"[SC_SKILLTIPS_P1]\nSolid willpower is transformed into a keen weapon to continuously attack the target 4 times. Inflicts (DMG0) + (FixDMG-621186) x INT [SC_SKILLTIPS_DARK].\n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":800085,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621186],"components":[{"id":621186,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-50,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":497962,"name":"Severed Consciousness","description":"[SC_SKILLTIPS_P1]\nSolid willpower is transformed into a keen weapon to continuously attack the target 4 times. Inflicts (DMG0) + (FixDMG-621186) x INT [SC_SKILLTIPS_DARK].\n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":800085,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621186]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/800085.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-4","classId":"rom-warlock","group":"primary","unlockLevel":10,"sourceSkillId":497963,"name":"Locked Heart","description":"[SC_SKILLTIPS_P2]\nReduces the caster's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% for (Buff0-Time) seconds. Also increases [SC_SKILLTIPS_MOVE] by (Buff0-2)%, but no other skills can be used while in effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800086,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621187],"components":[{"id":621187,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[3,0],"abilityModifiers":[{"type":206,"value":-80},{"type":207,"value":-80},{"type":24,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":497963,"name":"Locked Heart","description":"[SC_SKILLTIPS_P2]\nReduces the caster's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% for (Buff0-Time) seconds. Also increases [SC_SKILLTIPS_MOVE] by (Buff0-2)%, but no other skills can be used while in effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800086,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621187]}}],"sourceFamily":"primary:4","icon":"/assets/ui/rom-spells/800086.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-5","classId":"rom-warlock","group":"primary","unlockLevel":14,"sourceSkillId":497965,"name":"Shield of Solid Mind","description":"Brainpower turns into a protective shield. Repels an amount of damage equal to (Buff0-Shield)% of the caster's healing bonus + 80 points for (Buff0-Time) seconds. The caster will receive the effect of [621190] and [497965] can't be cast on the caster while in effect.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":800088,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621189,621190],"components":[{"id":621189,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":179,"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":4,"effect":0,"point":8,"skillLevelArg":100}},{"id":621190,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":497965,"name":"Shield of Solid Mind","description":"Brainpower turns into a protective shield. Repels an amount of damage equal to (Buff0-Shield)% of the caster's healing bonus + 80 points for (Buff0-Time) seconds. The caster will receive the effect of [621190] and [497965] can't be cast on the caster while in effect.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":800088,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621189,621190]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/800088.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-6","classId":"rom-warlock","group":"primary","unlockLevel":20,"sourceSkillId":498542,"name":"Mind Barrier","description":"[SC_SKILLTIPS_P2]\nTransforms brainpower into a protective shield around a specified area. Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of multiple friendly targets in the area by (Buff0-621196)%. Also increases [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff2-621196)%. The effect lasts (Buff-Time-621682) seconds.","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573079,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621195,621196,621682],"components":[{"id":621195,"magicFunc":6,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621196,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":5},{"type":143,"value":5},{"type":144,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621682,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":9,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":498542,"name":"Mind Barrier","description":"[SC_SKILLTIPS_P2]\nTransforms brainpower into a protective shield around a specified area. Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of multiple friendly targets in the area by (Buff0-621196)%. Also increases [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff2-621196)%. The effect lasts (Buff-Time-621682) seconds.","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":573079,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621195,621196,621682]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/573079.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-7","classId":"rom-warlock","group":"primary","unlockLevel":20,"sourceSkillId":498544,"name":"Ruthless Judgment","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] to the enemy. \nIf the target's HP falls below 20%, you will receive the [621199] state, increasing [SC_SKILLTIPS_MDMG] by (Buff0-621199)% for (Buff-Time-621199) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800093,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621197,621198,621199],"components":[{"id":621197,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-120,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-120,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621198,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621199,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":498544,"name":"Ruthless Judgment","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] to the enemy. \nIf the target's HP falls below 20%, you will receive the [621199] state, increasing [SC_SKILLTIPS_MDMG] by (Buff0-621199)% for (Buff-Time-621199) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800093,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621197,621198,621199]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/800093.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-8","classId":"rom-warlock","group":"primary","unlockLevel":22,"sourceSkillId":498545,"name":"Heart Collection Strike","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] to the target and restores (DMG8) focus. If target's HP is greater than 70%, this skill's critical hit rate will be raised by 50%. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":8000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.81},"source":{"imageId":800094,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621200,621201,621446,621193],"components":[{"id":621200,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-81,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-81,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":50,"hateRate":1},"summonCreatureId":0},{"id":621201,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-81,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-81,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621446,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":223,"value":9},{"type":226,"value":9}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621193,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":50,"fixedValue":0,"attack":{"type":3,"calculationType":4,"damagePower":50,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":498545,"name":"Heart Collection Strike","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] to the target and restores (DMG8) focus. If target's HP is greater than 70%, this skill's critical hit rate will be raised by 50%. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":8000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.81},"source":{"imageId":800094,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621200,621201,621446,621193]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/800094.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-9","classId":"rom-warlock","group":"passive","unlockLevel":24,"sourceSkillId":498546,"name":"Ill Will","description":"Permanently increases dark attribute magic power by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800095,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621267],"components":[{"id":621267,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":50,"value":6}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":498546,"name":"Ill Will","description":"Permanently increases dark attribute magic power by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800095,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621267]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/800095.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-10","classId":"rom-warlock","group":"primary","unlockLevel":26,"sourceSkillId":498547,"name":"Beast's Roar","description":"Summons beasts of evil to surround the caster. Constantly Inflicts (DMG-621271) [SC_SKILLTIPS_DARK] to multiple nearby targets for (Buff0-Time) seconds. Also reduces target's [SC_SKILLTIPS_MOVE] by (Buff0-621269)%. Lasts (Buff-Time-621269) seconds. \n(If the target is a player, effect lasts for (Buff-Time-621543) seconds.) \n[SC_SKILLTIPS_03]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800096,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621268,621271,621269,621543],"components":[{"id":621268,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":-1879048121,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498548,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621271,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-10,"damagePowerSkillLevelArg":35,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621269,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-20}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621543,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-20}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":498547,"name":"Beast's Roar","description":"Summons beasts of evil to surround the caster. Constantly Inflicts (DMG-621271) [SC_SKILLTIPS_DARK] to multiple nearby targets for (Buff0-Time) seconds. Also reduces target's [SC_SKILLTIPS_MOVE] by (Buff0-621269)%. Lasts (Buff-Time-621269) seconds. \n(If the target is a player, effect lasts for (Buff-Time-621543) seconds.) \n[SC_SKILLTIPS_03]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800096,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621268,621271,621269,621543]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/800096.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-11","classId":"rom-warlock","group":"primary","unlockLevel":28,"sourceSkillId":498549,"name":"Defense Net","description":"Reduces target's [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% for (Buff0-Time) seconds. Also provides immunity to the effects of Helpless, Stun, Root and Slow. \n(Target must be affected by Movement Impairing Effect or Stun for removal to work.) \n[SC_SKILLTIPS_FEAR]\n[SC_SKILLTIPS_LEVEL20]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800097,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621270],"components":[{"id":621270,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":50}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":498549,"name":"Defense Net","description":"Reduces target's [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% for (Buff0-Time) seconds. Also provides immunity to the effects of Helpless, Stun, Root and Slow. \n(Target must be affected by Movement Impairing Effect or Stun for removal to work.) \n[SC_SKILLTIPS_FEAR]\n[SC_SKILLTIPS_LEVEL20]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800097,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621270]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/800097.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-12","classId":"rom-warlock","group":"primary","unlockLevel":30,"sourceSkillId":498550,"name":"Soul Trauma","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] on the enemy. If target is in a [501577] state, the target will be stunned for (Buff8-Time) seconds. \n(If the target is a player, effect lasts for (Buff4-Time) seconds.) \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":800098,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621272,621274,501577,621273],"components":[{"id":621272,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-50,"damagePowerSkillLevelArg":25,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621274,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621273,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":1,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":498550,"name":"Soul Trauma","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] on the enemy. If target is in a [501577] state, the target will be stunned for (Buff8-Time) seconds. \n(If the target is a player, effect lasts for (Buff4-Time) seconds.) \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":800098,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621272,621274,501577,621273]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/800098.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-13","classId":"rom-warlock","group":"primary","unlockLevel":30,"sourceSkillId":498551,"name":"Otherworldly Whisper","description":"[SC_SKILLTIPS_P2]\nWhispers a chant 5 times to give all nearby party members an [498551] increasing [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by 2% for (Buff0-Time) seconds. \nAlso reduces the caster's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff4-0)%.\n[SC_SKILLTIPS_LEVEL20]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800099,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621275,621276],"components":[{"id":621275,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":2},{"type":171,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621276,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":50},{"type":143,"value":50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":498551,"name":"Otherworldly Whisper","description":"[SC_SKILLTIPS_P2]\nWhispers a chant 5 times to give all nearby party members an [498551] increasing [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by 2% for (Buff0-Time) seconds. \nAlso reduces the caster's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff4-0)%.\n[SC_SKILLTIPS_LEVEL20]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800099,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621275,621276]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/800099.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-14","classId":"rom-warlock","group":"primary","unlockLevel":30,"sourceSkillId":498552,"name":"Knowledge Acquisition","description":"[SC_SKILLTIPS_P1]\nRecovers (Buff0-Dot) Focus every second for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800100,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621277],"components":[{"id":621277,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":75,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":1,"dotType":3,"dotBase":2,"dot":{"timeSeconds":1,"type":3,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":498552,"name":"Knowledge Acquisition","description":"[SC_SKILLTIPS_P1]\nRecovers (Buff0-Dot) Focus every second for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800100,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621277]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/800100.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-15","classId":"rom-warlock","group":"primary","unlockLevel":32,"sourceSkillId":498553,"name":"Puzzlement","description":"Confuses the target's awareness to deal heavy damage. Inflicts (DMG0) [SC_SKILLTIPS_DARK] on target. \n[SC_SKILLTIPS_9_2S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":25000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800101,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621278],"components":[{"id":621278,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-100,"damagePowerSkillLevelArg":45,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":498553,"name":"Puzzlement","description":"Confuses the target's awareness to deal heavy damage. Inflicts (DMG0) [SC_SKILLTIPS_DARK] on target. \n[SC_SKILLTIPS_9_2S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":25000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800101,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621278]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/800101.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-16","classId":"rom-warlock","group":"primary","unlockLevel":34,"sourceSkillId":498554,"name":"Calm Paradox","description":"Activates party members' latent potential for defense that is buried deep within. Increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-2)%. Also reduces [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. Lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800102,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621279],"components":[{"id":621279,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-5},{"type":171,"value":-5},{"type":135,"value":5},{"type":170,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":498554,"name":"Calm Paradox","description":"Activates party members' latent potential for defense that is buried deep within. Increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-2)%. Also reduces [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. Lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800102,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621279]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/800102.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-17","classId":"rom-warlock","group":"primary","unlockLevel":36,"sourceSkillId":498555,"name":"Surge of Awareness","description":"Activates the latent attack potential of nearby party members. Increases [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. Also reduces [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-2)%. Lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800108,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621280],"components":[{"id":621280,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5},{"type":171,"value":5},{"type":135,"value":-5},{"type":170,"value":-5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":498555,"name":"Surge of Awareness","description":"Activates the latent attack potential of nearby party members. Increases [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. Also reduces [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-2)%. Lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":30000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800108,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621280]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/800108.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-18","classId":"rom-warlock","group":"passive","unlockLevel":36,"sourceSkillId":498556,"name":"Opportune Strike","description":"If target is in a [501577] state, damage inflicted by [498545] or [498553] will be increased by (Buff0-621281)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800109,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501577,621281],"components":[{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621281,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32769,"specialActionFlags":0,"assistType":-1,"clearFlags":12288,"abilityModifiers":[{"type":44,"value":1}],"abilitySkillLevelArg":85,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":498556,"name":"Opportune Strike","description":"If target is in a [501577] state, damage inflicted by [498545] or [498553] will be increased by (Buff0-621281)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800109,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501577,621281]}}],"sourceFamily":"primary:18","icon":"/assets/ui/rom-spells/800109.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-19","classId":"rom-warlock","group":"primary","unlockLevel":38,"sourceSkillId":498558,"name":"Saces' Embrace","description":"Summons the psychic powers of Saces in a designated area. Inflicts (DMG0) [SC_SKILLTIPS_DARK] on multiple targets within range. Also allows friendly targets in range to resist an amount of damage equal to (Buff4-Shield)% of the caster's healing bonus + 80 points for (Buff4-Time) seconds.","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"focus","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":800110,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621284,621285],"components":[{"id":621284,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-50,"damagePowerSkillLevelArg":25,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621285,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":179,"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":4,"effect":0,"point":4,"skillLevelArg":100}}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":498558,"name":"Saces' Embrace","description":"Summons the psychic powers of Saces in a designated area. Inflicts (DMG0) [SC_SKILLTIPS_DARK] on multiple targets within range. Also allows friendly targets in range to resist an amount of damage equal to (Buff4-Shield)% of the caster's healing bonus + 80 points for (Buff4-Time) seconds.","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"focus","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":800110,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621284,621285]}}],"sourceFamily":"primary:19","icon":"/assets/ui/rom-spells/800110.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-20","classId":"rom-warlock","group":"primary","unlockLevel":40,"sourceSkillId":498560,"name":"Life Weave","description":"[SC_SKILLTIPS_P2]\nResurrects a friendly target. Can be used during battle.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":800111,"sourceEffectType":0,"sourceTarget":15,"componentIds":[621282],"components":[{"id":621282,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":498560,"name":"Life Weave","description":"[SC_SKILLTIPS_P2]\nResurrects a friendly target. Can be used during battle.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":800111,"sourceEffectType":0,"sourceTarget":15,"componentIds":[621282]}}],"sourceFamily":"primary:20","icon":"/assets/ui/rom-spells/800111.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-61","classId":"rom-warlock","group":"primary","unlockLevel":18,"sourceSkillId":498914,"name":"Sublimation Weave Curse","description":"Weaves psychic energy around all party members and raises all attributes by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800090,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621736],"components":[{"id":621736,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":166,"value":2}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":498914,"name":"Sublimation Weave Curse","description":"Weaves psychic energy around all party members and raises all attributes by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800090,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621736]}}],"sourceFamily":"primary:61","icon":"/assets/ui/rom-spells/800090.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-primary-62","classId":"rom-warlock","group":"primary","unlockLevel":2,"sourceSkillId":498935,"name":"Perplexed","description":"Target stands at original location at wit's end for (Buff0-Time) seconds. \n(For players this effect lasts for (Buff1-Time) seconds.)\n(This effect is broken when damage is received.) \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":2000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800081,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621184,622192],"components":[{"id":621184,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"clearFlags":2,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622192,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":101,"effectFlagWords":[67,0],"clearFlags":2,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":498935,"name":"Perplexed","description":"Target stands at original location at wit's end for (Buff0-Time) seconds. \n(For players this effect lasts for (Buff1-Time) seconds.)\n(This effect is broken when damage is received.) \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":2000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800081,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621184,622192]}}],"sourceFamily":"primary:62","icon":"/assets/ui/rom-spells/800081.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-0","classId":"rom-warlock","group":"general","unlockLevel":1,"sourceSkillId":497957,"name":"Psychic Arrows","description":"Inflicts (DMG0) points of [SC_SKILLTIPS_DARK] on the enemy. \n[SC_SKILLTIPS_9_1S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":800079,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501573,621434],"components":[{"id":501573,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":25,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621434,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-0.4,"attack":{"type":0,"calculationType":4,"damagePower":0,"damagePowerSkillLevelArg":0,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":497957,"name":"Psychic Arrows","description":"Inflicts (DMG0) points of [SC_SKILLTIPS_DARK] on the enemy. \n[SC_SKILLTIPS_9_1S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":800079,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501573,621434]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/800079.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-1","classId":"rom-warlock","group":"general","unlockLevel":1,"sourceSkillId":497959,"name":"Weakening Weave Curse","description":"Inflicts (DMG0) dark damage to up to 3 targets and causes them to be [501577] for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":4000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.85},"source":{"imageId":800082,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501576,501577,621434],"components":[{"id":501576,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-85,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-85,"damagePowerSkillLevelArg":35,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621434,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-0.4,"attack":{"type":0,"calculationType":4,"damagePower":0,"damagePowerSkillLevelArg":0,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":497959,"name":"Weakening Weave Curse","description":"Inflicts (DMG0) dark damage to up to 3 targets and causes them to be [501577] for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":4000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.85},"source":{"imageId":800082,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501576,501577,621434]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/800082.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-2","classId":"rom-warlock","group":"general","unlockLevel":4,"sourceSkillId":497958,"name":"Warp Charge","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] on the enemy. Also increases [SC_SKILLTIPS_DPS] by (Buff4-0)% and [SC_SKILLTIPS_CAST] by (Buff4-1)%. Lasts for (Buff4-Time) seconds. \nIf target is in a [501577] state, damage inflicted is increased by (Buff0-501588)%. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800080,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501574,501575,501577,501588],"components":[{"id":501574,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":35,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501575,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-4},{"type":51,"value":-2}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501588,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":12288,"abilityModifiers":[{"type":192,"value":25}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":497958,"name":"Warp Charge","description":"Inflicts (DMG0) [SC_SKILLTIPS_DARK] on the enemy. Also increases [SC_SKILLTIPS_DPS] by (Buff4-0)% and [SC_SKILLTIPS_CAST] by (Buff4-1)%. Lasts for (Buff4-Time) seconds. \nIf target is in a [501577] state, damage inflicted is increased by (Buff0-501588)%. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800080,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501574,501575,501577,501588]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/800080.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-3","classId":"rom-warlock","group":"passive","unlockLevel":8,"sourceSkillId":497961,"name":"Pure Soul","description":"Increases [SC_SKILLTIPS_INT] by (Current [SC_SKILLTIPS_INT] + (Buff0-0)) x ((Buff0-1)%) + (Buff0-0) points.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800084,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621185],"components":[{"id":621185,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":4,"value":11},{"type":163,"value":1}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":497961,"name":"Pure Soul","description":"Increases [SC_SKILLTIPS_INT] by (Current [SC_SKILLTIPS_INT] + (Buff0-0)) x ((Buff0-1)%) + (Buff0-0) points.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800084,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621185]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/800084.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-4","classId":"rom-warlock","group":"general","unlockLevel":12,"sourceSkillId":497964,"name":"Soul Pain","description":"Inflicts torture upon the target's soul, dealing (Buff0-Dot) of [SC_SKILLTIPS_DARK] every second for (Buff0-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800087,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621188,621446],"components":[{"id":621188,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":24,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":-7,"dot":{"timeSeconds":1,"type":0,"base":-7,"skillLevelArg":80},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621446,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":223,"value":9},{"type":226,"value":9}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":497964,"name":"Soul Pain","description":"Inflicts torture upon the target's soul, dealing (Buff0-Dot) of [SC_SKILLTIPS_DARK] every second for (Buff0-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800087,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621188,621446]}}],"sourceFamily":"general:4","icon":"/assets/ui/rom-spells/800087.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-5","classId":"rom-warlock","group":"general","unlockLevel":16,"sourceSkillId":497966,"name":"Surge of Malice","description":"Unleashes malice on the target. Inflicts (DMG0) of [SC_SKILLTIPS_DARK] on a maximum of 3 targets. \nIf target is in a [501577] state, it also reduces [SC_SKILLTIPS_MOVE] by (Buff4-0)%. Lasts for (Buff4-Time) seconds. \n(If the target is a player, this effect lasts for (Buff5-Time) seconds.) \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800089,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621191,621192,501577,621291],"components":[{"id":621191,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":45,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621192,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621291,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":497966,"name":"Surge of Malice","description":"Unleashes malice on the target. Inflicts (DMG0) of [SC_SKILLTIPS_DARK] on a maximum of 3 targets. \nIf target is in a [501577] state, it also reduces [SC_SKILLTIPS_MOVE] by (Buff4-0)%. Lasts for (Buff4-Time) seconds. \n(If the target is a player, this effect lasts for (Buff5-Time) seconds.) \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800089,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621191,621192,501577,621291]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/800089.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-general-6","classId":"rom-warlock","group":"general","unlockLevel":20,"sourceSkillId":498541,"name":"Saces' Scorn","description":"Saces' thin smile strikes fear into the target's heart. Lasts for (Buff0-Time) seconds. \n(If the target is a player, effect lasts for (Buff1-Time) seconds.) \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800091,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621194,621292],"components":[{"id":621194,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":17,"effectFlagWords":[131091,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621292,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":17,"effectFlagWords":[131091,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":498541,"name":"Saces' Scorn","description":"Saces' thin smile strikes fear into the target's heart. Lasts for (Buff0-Time) seconds. \n(If the target is a player, effect lasts for (Buff1-Time) seconds.) \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800091,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621194,621292]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/800091.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-0","classId":"rom-champion","group":"primary","unlockLevel":2,"sourceSkillId":498523,"name":"Forge","description":"Increases caster's [SC_SKILLTIPS_01] by (Buff0-621168)% when normal attacks hit for a (Buff0-Time) second period. Can be stacked a maximum of 5 times and increases Rage by (Buff-Dot-621169).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589473,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621167,621168,621169],"components":[{"id":621167,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"onAttackTrigger":{"rate":100,"rank":0,"id":498524},"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":850077,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621168,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":134,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621169,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":73,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":10,"dot":{"timeSeconds":1,"type":2,"base":10,"skillLevelArg":5},"attackType":2,"damagePower":3,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":2,"prerequisites":[],"sourceSkillId":498523,"name":"Forge","description":"Increases caster's [SC_SKILLTIPS_01] by (Buff0-621168)% when normal attacks hit for a (Buff0-Time) second period. Can be stacked a maximum of 5 times and increases Rage by (Buff-Dot-621169).","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589473,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621167,621168,621169]}},{"rank":2,"level":22,"prerequisites":[498535],"sourceSkillId":498604,"name":"Forge","description":"Normal attack hits increase caster's [SC_SKILLTIPS_01] by (Buff0-621168)% for (Buff0-Time) seconds. Can be stacked 5 times. Also increases rage by (Buff-Dot-621169) points and has a chance of triggering the effect [621252]. The effect lasts for (Buff-Time-621252) seconds.\n[621252]: Increases the damage inflicted by [498529] by (Buff0-621253)%. In addition the next Curse will be transformed into an instant spell.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589473,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621251,621168,621169,621252,621253],"components":[{"id":621251,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"onAttackTrigger":{"rate":100,"rank":0,"id":498590},"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":850077,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621168,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":134,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621169,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":73,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":10,"dot":{"timeSeconds":1,"type":2,"base":10,"skillLevelArg":5},"attackType":2,"damagePower":3,"fixedValue":0,"summonCreatureId":0},{"id":621252,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,524288],"clearFlags":1056,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621253,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":20},{"type":205,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]}}],"sourceFamily":"primary:0","icon":"/assets/ui/rom-spells/589473.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-1","classId":"rom-champion","group":"primary","unlockLevel":4,"sourceSkillId":498564,"name":"Rune Draw","description":"Uses rune power to drag the target to the front and interrupts its spell casting. Also forces it to concentrate on you and you become the one with the most aggro. It also increases your aggro by (Buff0-622322)%.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":40000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589474,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621215,621223,621224,622322],"components":[{"id":621215,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621223,"magicFunc":7,"magicType":5,"effectType":0,"effectTime":5,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621224,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622322,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":498564,"name":"Rune Draw","description":"Uses rune power to drag the target to the front and interrupts its spell casting. Also forces it to concentrate on you and you become the one with the most aggro. It also increases your aggro by (Buff0-622322)%.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":40000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589474,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621215,621223,621224,622322]}}],"sourceFamily":"primary:1","icon":"/assets/ui/rom-spells/589474.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-2","classId":"rom-champion","group":"primary","unlockLevel":10,"sourceSkillId":498529,"name":"Rune Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on target. When it hits, it will restore (Buff4-Dot) rage. \nIf used while in the [621218] state, the amount of aggro caused by this skill will be increased. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":6000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589478,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621176,621218,621175,622327],"components":[{"id":621176,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":10},"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621175,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":622327,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":0},"attackType":2,"damagePower":5,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":10,"prerequisites":[],"sourceSkillId":498529,"name":"Rune Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on target. When it hits, it will restore (Buff4-Dot) rage. \nIf used while in the [621218] state, the amount of aggro caused by this skill will be increased. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":6000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589478,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621176,621218,621175,622327]}}],"sourceFamily":"primary:2","icon":"/assets/ui/rom-spells/589478.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-3","classId":"rom-champion","group":"primary","unlockLevel":14,"sourceSkillId":498531,"name":"Fearless Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target and adds (Buff4-Dot) rage. When target's HP is less than 30%, this skill's damage is increased by (Buff0-621179)%. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589480,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621178,621183,621179],"components":[{"id":621178,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.85,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621183,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":3,"dot":{"timeSeconds":1,"type":2,"base":3,"skillLevelArg":5},"attackType":2,"damagePower":3,"fixedValue":0,"summonCreatureId":0},{"id":621179,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":1,"abilityModifiers":[{"type":173,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":14,"prerequisites":[],"sourceSkillId":498531,"name":"Fearless Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target and adds (Buff4-Dot) rage. When target's HP is less than 30%, this skill's damage is increased by (Buff0-621179)%. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589480,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621178,621183,621179]}}],"sourceFamily":"primary:3","icon":"/assets/ui/rom-spells/589480.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-5","classId":"rom-champion","group":"passive","unlockLevel":18,"sourceSkillId":498563,"name":"Runecraft - Fortify","description":"While in a [621218] state, increases [SC_SKILLTIPS_DEF] by (Buff0-621222)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589483,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621218,621222],"components":[{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621222,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":50331649,"specialActionFlags":0,"assistType":-1,"clearFlags":32,"abilityModifiers":[{"type":135,"value":9}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":498563,"name":"Runecraft - Fortify","description":"While in a [621218] state, increases [SC_SKILLTIPS_DEF] by (Buff0-621222)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589483,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621218,621222]}}],"sourceFamily":"primary:5","icon":"/assets/ui/rom-spells/589483.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-6","classId":"rom-champion","group":"primary","unlockLevel":18,"sourceSkillId":498533,"name":"Rune Energy Influx","description":"Converts rage to life. Restores (DMG0) HP. \nIf used while in [621218], then the amount of aggro caused by attacks is increased by (Buff4-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589484,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621181,621182,621218],"components":[{"id":621181,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":1,"damagePowerSkillLevelArg":2,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621182,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":15}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":5,"fixedValue":0,"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":18,"prerequisites":[],"sourceSkillId":498533,"name":"Rune Energy Influx","description":"Converts rage to life. Restores (DMG0) HP. \nIf used while in [621218], then the amount of aggro caused by attacks is increased by (Buff4-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589484,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621181,621182,621218]}}],"sourceFamily":"primary:6","icon":"/assets/ui/rom-spells/589484.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-7","classId":"rom-champion","group":"passive","unlockLevel":22,"sourceSkillId":498535,"name":"Chain Drive","description":"While Forge Effect is active, all hits landed by normal attacks have a chance to reset the cooldown time of [498529] and increase damage dealt. In addition the next Curse will be transformed into an instant spell.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589486,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":22,"prerequisites":[],"sourceSkillId":498535,"name":"Chain Drive","description":"While Forge Effect is active, all hits landed by normal attacks have a chance to reset the cooldown time of [498529] and increase damage dealt. In addition the next Curse will be transformed into an instant spell.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589486,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"sourceFamily":"primary:7","icon":"/assets/ui/rom-spells/589486.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-8","classId":"rom-champion","group":"primary","unlockLevel":24,"sourceSkillId":498536,"name":"Rune Growth","description":"When used without the [621218] state, [SC_SKILLTIPS_01] is increased by (Buff1-0)% for (Buff0-Time) seconds.\nWhen used while in a Shield Form state, causes a reduction of [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589487,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621208,621218,621209],"components":[{"id":621208,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":206,"value":-5},{"type":207,"value":-5}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621209,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":24,"prerequisites":[],"sourceSkillId":498536,"name":"Rune Growth","description":"When used without the [621218] state, [SC_SKILLTIPS_01] is increased by (Buff1-0)% for (Buff0-Time) seconds.\nWhen used while in a Shield Form state, causes a reduction of [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589487,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621208,621218,621209]}}],"sourceFamily":"primary:8","icon":"/assets/ui/rom-spells/589487.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-9","classId":"rom-champion","group":"primary","unlockLevel":26,"sourceSkillId":498538,"name":"Agitated Whirlpool","description":"[SC_SKILLTIPS_621218]\nForces multiple targets within a radius of 75 to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622323)%.\nWhen it hits, it will reduce [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff8-0)% for (Buff8-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589488,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621213,621212,621214,622323],"components":[{"id":621213,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621212,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621214,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":5,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":5},{"type":142,"value":5}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622323,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":1}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":26,"prerequisites":[],"sourceSkillId":498538,"name":"Agitated Whirlpool","description":"[SC_SKILLTIPS_621218]\nForces multiple targets within a radius of 75 to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622323)%.\nWhen it hits, it will reduce [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff8-0)% for (Buff8-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589488,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621213,621212,621214,622323]}}],"sourceFamily":"primary:9","icon":"/assets/ui/rom-spells/589488.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-10","classId":"rom-champion","group":"primary","unlockLevel":28,"sourceSkillId":498537,"name":"Vacuum Wave","description":"Silences multiple enemies within a radius of 75 for (Buff4-Time) seconds. \n(If the target is a player, state lasts (Buff5-Time) seconds.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589489,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621210,621211,621287],"components":[{"id":621210,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621211,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621287,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":28,"prerequisites":[],"sourceSkillId":498537,"name":"Vacuum Wave","description":"Silences multiple enemies within a radius of 75 for (Buff4-Time) seconds. \n(If the target is a player, state lasts (Buff5-Time) seconds.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589489,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621210,621211,621287]}}],"sourceFamily":"primary:10","icon":"/assets/ui/rom-spells/589489.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-11","classId":"rom-champion","group":"passive","unlockLevel":30,"sourceSkillId":498539,"name":"Last Line of Defense","description":"When used while in a [621218] state and current HP is less than 30%, it reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621230)% \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589490,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621218,621230],"components":[{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621230,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435523,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":2},{"type":143,"value":2}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[],"sourceSkillId":498539,"name":"Last Line of Defense","description":"When used while in a [621218] state and current HP is less than 30%, it reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621230)% \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589490,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621218,621230]}}],"sourceFamily":"primary:11","icon":"/assets/ui/rom-spells/589490.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-12","classId":"rom-champion","group":"primary","unlockLevel":32,"sourceSkillId":498566,"name":"Imprisonment Pulse","description":"Sets up an imprisonment field in a designated area, inflicting (DMG-621231) main hand weapon physical DPS on targets. Also reduces [SC_SKILLTIPS_MOVE] by (Buff0-621232)% for (Buff-Time-621232) seconds. \nReduces target's [SC_SKILLTIPS_MOVE] by a maximum of (Max-Buff0-621232)%. If the target is a player, this state lasts for (Buff-Time-621290) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589491,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621233,621231,621232,621290],"components":[{"id":621233,"magicFunc":6,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621231,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621232,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0},{"id":621290,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":32,"prerequisites":[],"sourceSkillId":498566,"name":"Imprisonment Pulse","description":"Sets up an imprisonment field in a designated area, inflicting (DMG-621231) main hand weapon physical DPS on targets. Also reduces [SC_SKILLTIPS_MOVE] by (Buff0-621232)% for (Buff-Time-621232) seconds. \nReduces target's [SC_SKILLTIPS_MOVE] by a maximum of (Max-Buff0-621232)%. If the target is a player, this state lasts for (Buff-Time-621290) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589491,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621233,621231,621232,621290]}}],"sourceFamily":"primary:12","icon":"/assets/ui/rom-spells/589491.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-13","classId":"rom-champion","group":"primary","unlockLevel":34,"sourceSkillId":498481,"name":"Kinetic Burn","description":"Heat is dispelled 30 times in an instant. Inflicts (DMG0) main hand weapon physical DPS to targets in range. Also inflicts (Buff4-Dot) [SC_SKILLTIPS_FLAME] damage every 2 seconds. Lasts for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589460,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621085,621254],"components":[{"id":621085,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.2,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.2,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621254,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-3,"dot":{"timeSeconds":2,"type":0,"base":-3,"skillLevelArg":45},"attackType":0,"damagePower":-1,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":34,"prerequisites":[],"sourceSkillId":498481,"name":"Kinetic Burn","description":"Heat is dispelled 30 times in an instant. Inflicts (DMG0) main hand weapon physical DPS to targets in range. Also inflicts (Buff4-Dot) [SC_SKILLTIPS_FLAME] damage every 2 seconds. Lasts for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589460,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621085,621254]}}],"sourceFamily":"primary:13","icon":"/assets/ui/rom-spells/589460.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-14","classId":"rom-champion","group":"primary","unlockLevel":36,"sourceSkillId":498568,"name":"Feedback Defense","description":"[SC_SKILLTIPS_621218]\nActivates a protective shield that lasts for (Buff0-Time) seconds. Raises [SC_SKILLTIPS_DEF] by (Buff0-0)% while in effect. Attacks received are reflected and cause (DMG-621235) main hand weapon physical DPS. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589492,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621234,621235],"components":[{"id":621234,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":498569,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0},{"id":621235,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":0}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.02,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.02,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":498568,"name":"Feedback Defense","description":"[SC_SKILLTIPS_621218]\nActivates a protective shield that lasts for (Buff0-Time) seconds. Raises [SC_SKILLTIPS_DEF] by (Buff0-0)% while in effect. Attacks received are reflected and cause (DMG-621235) main hand weapon physical DPS. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589492,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621234,621235]}}],"sourceFamily":"primary:14","icon":"/assets/ui/rom-spells/589492.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-15","classId":"rom-champion","group":"primary","unlockLevel":36,"sourceSkillId":498570,"name":"Overrule","description":"Provides immunity to the effects of Helpless, Stun, Root and Slow. Lasts (Buff0-Time) seconds. \n(Target must be affected by Movement Impairing Effect or Stun for removal to work.) \n[SC_SKILLTIPS_FEAR]\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589510,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621236],"components":[{"id":621236,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":36,"prerequisites":[],"sourceSkillId":498570,"name":"Overrule","description":"Provides immunity to the effects of Helpless, Stun, Root and Slow. Lasts (Buff0-Time) seconds. \n(Target must be affected by Movement Impairing Effect or Stun for removal to work.) \n[SC_SKILLTIPS_FEAR]\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589510,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621236]}}],"sourceFamily":"primary:15","icon":"/assets/ui/rom-spells/589510.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-16","classId":"rom-champion","group":"primary","unlockLevel":38,"sourceSkillId":498571,"name":"Remodeled Body","description":"[SC_SKILLTIPS_621218]\nCounteracts one fatal blow and restores all HP while in effect. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589493,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621237],"components":[{"id":621237,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[32768,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":38,"prerequisites":[],"sourceSkillId":498571,"name":"Remodeled Body","description":"[SC_SKILLTIPS_621218]\nCounteracts one fatal blow and restores all HP while in effect. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589493,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621237]}}],"sourceFamily":"primary:16","icon":"/assets/ui/rom-spells/589493.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-17","classId":"rom-champion","group":"primary","unlockLevel":40,"sourceSkillId":498572,"name":"Rune Overload","description":"Consumes (Buff0-Dot) points rage every second while in effect. Continuously inflicts (DMG-621243) main hand weapon physical DPS to multiple targets in the immediate vicinity. \n(This effect ceases when rage reaches 0.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589494,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621241,621243],"components":[{"id":621241,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":47,"specialActionFlags":0,"assistType":-1,"clearFlags":1152,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":498574,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":2,"dotBase":-15,"dot":{"timeSeconds":1,"type":2,"base":-15,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621243,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[],"sourceSkillId":498572,"name":"Rune Overload","description":"Consumes (Buff0-Dot) points rage every second while in effect. Continuously inflicts (DMG-621243) main hand weapon physical DPS to multiple targets in the immediate vicinity. \n(This effect ceases when rage reaches 0.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589494,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621241,621243]}}],"sourceFamily":"primary:17","icon":"/assets/ui/rom-spells/589494.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-primary-58","classId":"rom-champion","group":"passive","unlockLevel":8,"sourceSkillId":498525,"name":"Finishing Hammer","description":"Increases damage of one-handed and two-handed hammers by (Buff0-0)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589477,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621161],"components":[{"id":621161,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":62,"value":5},{"type":66,"value":5},{"type":66,"value":0}],"abilitySkillLevelArg":28,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":8,"prerequisites":[],"sourceSkillId":498525,"name":"Finishing Hammer","description":"Increases damage of one-handed and two-handed hammers by (Buff0-0)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589477,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621161]}}],"sourceFamily":"primary:58","icon":"/assets/ui/rom-spells/589477.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-0","classId":"rom-champion","group":"general","unlockLevel":1,"sourceSkillId":498521,"name":"Heavy Bash","description":"Inflicts (DMG0) main hand weapon physical DPS on target. There is also a chance it will cause [621164] when it lands a hit. This reduces [SC_SKILLTIPS_01] and [SC_SKILLTIPS_DEF] by 2%. Lasts (Buff4-Time) seconds. Can be stacked max. 3 times. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589471,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621160,621164],"components":[{"id":621160,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.65,"damagePowerSkillLevelArg":5.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621164,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilityModifiers":[{"type":134,"value":-2},{"type":135,"value":-2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":498521,"name":"Heavy Bash","description":"Inflicts (DMG0) main hand weapon physical DPS on target. There is also a chance it will cause [621164] when it lands a hit. This reduces [SC_SKILLTIPS_01] and [SC_SKILLTIPS_DEF] by 2%. Lasts (Buff4-Time) seconds. Can be stacked max. 3 times. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589471,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621160,621164]}}],"sourceFamily":"general:0","icon":"/assets/ui/rom-spells/589471.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-1","classId":"rom-champion","group":"general","unlockLevel":1,"sourceSkillId":498522,"name":"Electrocution","description":"Inflicts (DMG0) main hand weapon physical DPS on target. Also invokes a state of [621166] and interrupts target's spell casting. Lasts (Buff5-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589472,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621165,621396,621166],"components":[{"id":621165,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621396,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilityModifiers":[{"type":226,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621166,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":1,"prerequisites":[],"sourceSkillId":498522,"name":"Electrocution","description":"Inflicts (DMG0) main hand weapon physical DPS on target. Also invokes a state of [621166] and interrupts target's spell casting. Lasts (Buff5-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589472,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621165,621396,621166]}}],"sourceFamily":"general:1","icon":"/assets/ui/rom-spells/589472.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-2","classId":"rom-champion","group":"passive","unlockLevel":4,"sourceSkillId":498527,"name":"Hammer Weapon Proficiency","description":"Hammer weapons can be equipped.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589475,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621173],"components":[{"id":621173,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":89,"value":1},{"type":93,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":4,"prerequisites":[],"sourceSkillId":498527,"name":"Hammer Weapon Proficiency","description":"Hammer weapons can be equipped.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589475,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621173]}}],"sourceFamily":"general:2","icon":"/assets/ui/rom-spells/589475.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-3","classId":"rom-champion","group":"general","unlockLevel":6,"sourceSkillId":498526,"name":"Energy Influx Strike","description":"Adds a Charge Rune to your attacks. Inflicts (DMG0) main hand weapon DPS physical damage on targets. \nIf target is in an [621166] state, this attack lands a critical hit. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589476,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621163,621166,621396,621162],"components":[{"id":621163,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":7,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-12},{"type":135,"value":-12}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":100,"hateRate":1},"summonCreatureId":0},{"id":621166,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621396,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilityModifiers":[{"type":226,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621162,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":7,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-8},{"type":135,"value":-8}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":6,"prerequisites":[],"sourceSkillId":498526,"name":"Energy Influx Strike","description":"Adds a Charge Rune to your attacks. Inflicts (DMG0) main hand weapon DPS physical damage on targets. \nIf target is in an [621166] state, this attack lands a critical hit. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589476,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621163,621166,621396,621162]}}],"sourceFamily":"general:3","icon":"/assets/ui/rom-spells/589476.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-5","classId":"rom-champion","group":"passive","unlockLevel":12,"sourceSkillId":498530,"name":"Runecraft - Diversion","description":"Increases [SC_SKILLTIPS_PARRY] by (Buff0-0) points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589479,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621177],"components":[{"id":621177,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":75}],"abilitySkillLevelArg":15,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":12,"prerequisites":[],"sourceSkillId":498530,"name":"Runecraft - Diversion","description":"Increases [SC_SKILLTIPS_PARRY] by (Buff0-0) points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589479,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621177]}}],"sourceFamily":"general:5","icon":"/assets/ui/rom-spells/589479.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-6","classId":"rom-champion","group":"passive","unlockLevel":16,"sourceSkillId":498532,"name":"Runecraft - Solidify","description":"Increases your stamina. (Current stamina + (Buff0-0) x (Buff0-1)% + (Buff0-0)) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589481,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621180],"components":[{"id":621180,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":3,"value":11},{"type":162,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":16,"prerequisites":[],"sourceSkillId":498532,"name":"Runecraft - Solidify","description":"Increases your stamina. (Current stamina + (Buff0-0) x (Buff0-1)% + (Buff0-0)) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589481,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621180]}}],"sourceFamily":"general:6","icon":"/assets/ui/rom-spells/589481.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-general-7","classId":"rom-champion","group":"general","unlockLevel":20,"sourceSkillId":498534,"name":"Shock Strike","description":"Inflicts (DMG0) main hand weapon physical DPS on multiple targets within a range of 100 in a fan-shaped area in front of you. Also Stuns targets for (Buff4-Time) seconds. \nIf used while in a [621218], then there is an extra increase of aggro caused by this skill.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589485,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621206,621218,621205,621207],"components":[{"id":621206,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.75,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":10},"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621205,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.75,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621207,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777299,0],"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[],"sourceSkillId":498534,"name":"Shock Strike","description":"Inflicts (DMG0) main hand weapon physical DPS on multiple targets within a range of 100 in a fan-shaped area in front of you. Also Stuns targets for (Buff4-Time) seconds. \nIf used while in a [621218], then there is an extra increase of aggro caused by this skill.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589485,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621206,621218,621205,621207]}}],"sourceFamily":"general:7","icon":"/assets/ui/rom-spells/589485.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-15","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":545920,"sourceSkillId":498528,"name":"Arc Strike","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If target is in the [621166] state, then caster will earn an extra (Buff-Dot-621250) rage. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":5,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589495,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621225,621166,621250],"components":[{"id":621225,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621166,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621250,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":25,"dot":{"timeSeconds":1,"type":2,"base":25,"skillLevelArg":0},"attackType":2,"damagePower":25,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":498528,"name":"Arc Strike","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If target is in the [621166] state, then caster will earn an extra (Buff-Dot-621250) rage. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":5,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589495,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621225,621166,621250]}}],"icon":"/assets/ui/rom-spells/589495.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-20","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":545921,"sourceSkillId":498580,"name":"Rune Aggregation","description":"Using Enrage allows you to increase rage accumulation speed.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589496,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":498580,"name":"Rune Aggregation","description":"Using Enrage allows you to increase rage accumulation speed.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589496,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/589496.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-25","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":545922,"sourceSkillId":498582,"name":"Power Slash","description":"Your slash causes the target to suffer the effects of [621166].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589497,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621166],"components":[{"id":621166,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":498582,"name":"Power Slash","description":"Your slash causes the target to suffer the effects of [621166].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589497,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621166]}}],"icon":"/assets/ui/rom-spells/589497.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-30","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":545923,"sourceSkillId":498584,"name":"Determination Rune","description":"Use the power of this rune to protect yourself. It counteracts an amount of damage equal to (Buff0-Shield)% of Maximum HP for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":589498,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621246],"components":[{"id":621246,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":490363,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":2,"skillLevelArg":28}}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":498584,"name":"Determination Rune","description":"Use the power of this rune to protect yourself. It counteracts an amount of damage equal to (Buff0-Shield)% of Maximum HP for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":589498,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621246]}}],"icon":"/assets/ui/rom-spells/589498.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-35","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":545924,"sourceSkillId":498585,"name":"Eye for an Eye","description":"Temporarily increases parry rate by (Buff0-0)%. Lasts for (Buff0-Time) seconds. \nWhile in effect, successful parries have a chance of resetting [498522] and [498526]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589499,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621247],"components":[{"id":621247,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":227,"value":5}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":498585,"name":"Eye for an Eye","description":"Temporarily increases parry rate by (Buff0-0)%. Lasts for (Buff0-Time) seconds. \nWhile in effect, successful parries have a chance of resetting [498522] and [498526]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589499,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621247]}}],"icon":"/assets/ui/rom-spells/589499.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-40","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":545925,"sourceSkillId":498586,"name":"Superior Suppression","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If your HP ratio is higher than the targets when you land a hit, this skill will also raise [SC_SKILLTIPS_CRI] by (Buff0-621255) points. Lasts for (Buff-Time-621255) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589500,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621248,621249,621255],"components":[{"id":621248,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.6,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621249,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621255,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493092,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":498586,"name":"Superior Suppression","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If your HP ratio is higher than the targets when you land a hit, this skill will also raise [SC_SKILLTIPS_CRI] by (Buff0-621255) points. Lasts for (Buff-Time-621255) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589500,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621248,621249,621255]}}],"icon":"/assets/ui/rom-spells/589500.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-45","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":545926,"sourceSkillId":498588,"name":"Runecraft - Charge","description":"There is a chance that [498572] will stun the enemy when it hits.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589508,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621256],"components":[{"id":621256,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":498588,"name":"Runecraft - Charge","description":"There is a chance that [498572] will stun the enemy when it hits.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589508,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621256]}}],"icon":"/assets/ui/rom-spells/589508.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-50","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":545927,"sourceSkillId":498589,"name":"Enhancement Shield","description":"Using the Determination Rune while in a [621218] state increases damage resistance and reduces received damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589509,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621258,621218],"components":[{"id":621258,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621218,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268435607,"specialActionFlags":0,"assistType":187,"clearFlags":48,"abilityModifiers":[{"type":0,"value":10}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":498517,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":498753,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":498589,"name":"Enhancement Shield","description":"Using the Determination Rune while in a [621218] state increases damage resistance and reduces received damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589509,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621258,621218]}}],"icon":"/assets/ui/rom-spells/589509.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-60","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":60,"keyItemId":546853,"sourceSkillId":499850,"name":"Blast of Vengeance","description":"Consumes half of caster's HP and attempts to Taunt all enemies in a range of 200. If the Taunt is successful, the caster will be unable to move for (Buff4-Time) seconds.\n[SC_SKILLTIPS_621218]","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801640,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623390,621685],"components":[{"id":623390,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498583],"sourceSkillId":499850,"name":"Blast of Vengeance","description":"Consumes half of caster's HP and attempts to Taunt all enemies in a range of 200. If the Taunt is successful, the caster will be unable to move for (Buff4-Time) seconds.\n[SC_SKILLTIPS_621218]","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801640,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623390,621685]}}],"icon":"/assets/ui/rom-spells/801640.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warrior-elite-70","classId":"rom-champion","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":70,"keyItemId":546854,"sourceSkillId":499848,"name":"Deadland Protection","description":"Increases caster's [SC_SKILLTIPS_DEF] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [623400] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801641,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623400],"components":[{"id":623400,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":2,"abilityModifiers":[{"type":135,"value":100},{"type":144,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498583],"sourceSkillId":499848,"name":"Deadland Protection","description":"Increases caster's [SC_SKILLTIPS_DEF] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [623400] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801641,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623400]}}],"icon":"/assets/ui/rom-spells/801641.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-15","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":15,"keyItemId":545928,"sourceSkillId":498725,"name":"Vicious Attack","description":"Makes your Shadowstab cause additional damage, but cancels Bleed effects.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581940,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":498725,"name":"Vicious Attack","description":"Makes your Shadowstab cause additional damage, but cancels Bleed effects.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581940,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581940.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-20","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":545929,"sourceSkillId":498726,"name":"Shadow Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on target. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581941,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621470,622365,622364],"components":[{"id":621470,"magicFunc":0,"magicType":5,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.85,"damagePowerSkillLevelArg":6.2,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":622365,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":53,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622364,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":45},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":498726,"name":"Shadow Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on target. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581941,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621470,622365,622364]}}],"icon":"/assets/ui/rom-spells/581941.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-25","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":545930,"sourceSkillId":498727,"name":"Shadow Drive","description":"When Chain Drive effect is activated, the cooldown time for Shadow Pulse will be reset.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581942,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":498727,"name":"Shadow Drive","description":"When Chain Drive effect is activated, the cooldown time for Shadow Pulse will be reset.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581942,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581942.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-30","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":545931,"sourceSkillId":498728,"name":"Waiting Game","description":"Reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% and reduces received area damage by (Buff0-2)% for (Buff0-Time) seconds. While skill is in effect, attacks won't have Waiting Game effect and Attack Launch effect will be earned. This increases the damage caused by your next attack by (Buff0-621472)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581943,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621471,621472],"components":[{"id":621471,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":12289,"abilityModifiers":[{"type":206,"value":-5},{"type":207,"value":-5},{"type":209,"value":-8}],"abilitySkillLevelArg":6,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498729,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621472,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435523,"specialActionFlags":0,"assistType":-1,"clearFlags":12289,"abilityModifiers":[{"type":173,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":498728,"name":"Waiting Game","description":"Reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)% and reduces received area damage by (Buff0-2)% for (Buff0-Time) seconds. While skill is in effect, attacks won't have Waiting Game effect and Attack Launch effect will be earned. This increases the damage caused by your next attack by (Buff0-621472)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581943,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621471,621472]}}],"icon":"/assets/ui/rom-spells/581943.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-35","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":35,"keyItemId":545932,"sourceSkillId":498731,"name":"Sentence Execution","description":"Enhances Fearless Blow and reduces its cooldown time by 10 seconds. When the target's HP falls below 45%, damage caused by Fearless Blow will be increased.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581944,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":498731,"name":"Sentence Execution","description":"Enhances Fearless Blow and reduces its cooldown time by 10 seconds. When the target's HP falls below 45%, damage caused by Fearless Blow will be increased.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581944,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581944.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-40","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":40,"keyItemId":545933,"sourceSkillId":498737,"name":"Runecraft - Haste","description":"Increases off hand weapon accuracy level by (Buff0-0)% and off hand weapon damage by (Buff0-1)%. \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581945,"sourceEffectType":2,"sourceTarget":6,"componentIds":[621481],"components":[{"id":621481,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":12289,"abilityModifiers":[{"type":36,"value":3},{"type":37,"value":3}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":498737,"name":"Runecraft - Haste","description":"Increases off hand weapon accuracy level by (Buff0-0)% and off hand weapon damage by (Buff0-1)%. \n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581945,"sourceEffectType":2,"sourceTarget":6,"componentIds":[621481]}}],"icon":"/assets/ui/rom-spells/581945.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-45","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":545934,"sourceSkillId":498738,"name":"Disaster Appears","description":"Increases [SC_SKILLTIPS_CRI_POWER] and [SC_SKILLTIPS_DPS] after Shadow Step is used.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581946,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":498738,"name":"Disaster Appears","description":"Increases [SC_SKILLTIPS_CRI_POWER] and [SC_SKILLTIPS_DPS] after Shadow Step is used.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581946,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581946.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-50","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":545935,"sourceSkillId":498730,"name":"Death Arrives","description":"Instantly recovers rage and energy by (Buff4-Dot). Also restores (Buff4-Dot) rage and energy every 5 seconds for (Buff4-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581947,"sourceEffectType":1,"sourceTarget":0,"componentIds":[622191,621485,621486],"components":[{"id":622191,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621485,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":5,"dotType":2,"dotBase":100,"dot":{"timeSeconds":5,"type":2,"base":100,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621486,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":41,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":5,"dotType":4,"dotBase":100,"dot":{"timeSeconds":5,"type":4,"base":100,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":498730,"name":"Death Arrives","description":"Instantly recovers rage and energy by (Buff4-Dot). Also restores (Buff4-Dot) rage and energy every 5 seconds for (Buff4-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581947,"sourceEffectType":1,"sourceTarget":0,"componentIds":[622191,621485,621486]}}],"icon":"/assets/ui/rom-spells/581947.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-60","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":60,"keyItemId":546855,"sourceSkillId":499846,"name":"Smoke Diffusion","description":"Consumes half of caster's HP and lets all party members in range disappear for (Buff-Time-623401) seconds. The caster is unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801642,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623401,623693,621685,623389],"components":[{"id":623401,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623693,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":524288,"specialActionFlags":16,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623389,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498733],"sourceSkillId":499846,"name":"Smoke Diffusion","description":"Consumes half of caster's HP and lets all party members in range disappear for (Buff-Time-623401) seconds. The caster is unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801642,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623401,623693,621685,623389]}}],"icon":"/assets/ui/rom-spells/801642.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-rogue-elite-70","classId":"rom-champion","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":70,"keyItemId":546856,"sourceSkillId":499844,"name":"Shadow Explosion","description":"Increases caster's [SC_SKILLTIPS_01] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [499844] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801643,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623402],"components":[{"id":623402,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":35,"specialActionFlags":0,"assistType":42,"abilityModifiers":[{"type":134,"value":50},{"type":144,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498733],"sourceSkillId":499844,"name":"Shadow Explosion","description":"Increases caster's [SC_SKILLTIPS_01] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [499844] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801643,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623402]}}],"icon":"/assets/ui/rom-spells/801643.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-15","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":545936,"sourceSkillId":498656,"name":"Backlash Armor","description":"For (Buff0-Time) seconds, inflicts (DMG-621344) main hand weapon DPS on targets within range with each successful block and reduces their [SC_SKILLTIPS_DPS] by (Buff0-621346)% for (Buff-Time-621346) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589519,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621345,621344,621346],"components":[{"id":621345,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621344,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621346,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":45}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":498656,"name":"Backlash Armor","description":"For (Buff0-Time) seconds, inflicts (DMG-621344) main hand weapon DPS on targets within range with each successful block and reduces their [SC_SKILLTIPS_DPS] by (Buff0-621346)% for (Buff-Time-621346) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589519,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621345,621344,621346]}}],"icon":"/assets/ui/rom-spells/589519.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-20","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":545937,"sourceSkillId":498658,"name":"Suppression Offensive","description":"Overwhelming attack that inflicts (DMG0) main hand weapon DPS on all enemies near a straight line between the caster and the target. Also reduces current target's weapon damage by (Buff4-0)% for (Buff4-Time). \n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589520,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621347,621348,621411,621355],"components":[{"id":621347,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621348,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":-100},{"type":37,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621411,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":50,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621355,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":2}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":498658,"name":"Suppression Offensive","description":"Overwhelming attack that inflicts (DMG0) main hand weapon DPS on all enemies near a straight line between the caster and the target. Also reduces current target's weapon damage by (Buff4-0)% for (Buff4-Time). \n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589520,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621347,621348,621411,621355]}}],"icon":"/assets/ui/rom-spells/589520.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-25","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":545938,"sourceSkillId":498659,"name":"Endless Rage","description":"Can be used during a successful dodge. Increases rage by (Buff4-Dot) and makes the next attack a critical attack.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589521,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621351,621350],"components":[{"id":621351,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,64],"clearFlags":13313,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621350,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":73,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":10,"dot":{"timeSeconds":1,"type":2,"base":10,"skillLevelArg":0},"attackType":2,"damagePower":20,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":498659,"name":"Endless Rage","description":"Can be used during a successful dodge. Increases rage by (Buff4-Dot) and makes the next attack a critical attack.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589521,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621351,621350]}}],"icon":"/assets/ui/rom-spells/589521.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-30","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":545939,"sourceSkillId":498682,"name":"Key Rescue","description":"Reduces a party member's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%. Lasts for (Buff0-Time) seconds. When this party member is hit during the time of the effect, your current [498564] cooldown time will be reduced by 12 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":17,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589522,"sourceEffectType":0,"sourceTarget":1,"componentIds":[621353],"components":[{"id":621353,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":142,"value":10},{"type":143,"value":10}],"abilitySkillLevelArg":6,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":498913,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":498682,"name":"Key Rescue","description":"Reduces a party member's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-0)%. Lasts for (Buff0-Time) seconds. When this party member is hit during the time of the effect, your current [498564] cooldown time will be reduced by 12 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":17,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589522,"sourceEffectType":0,"sourceTarget":1,"componentIds":[621353]}}],"icon":"/assets/ui/rom-spells/589522.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-35","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":35,"keyItemId":545940,"sourceSkillId":498683,"name":"Bloody Experience","description":"For (Buff0-Time) seconds, the damage that is caused by your next use of [498658] will be converted to your HP and increase your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)%. When the skill hits, it will stun the target for (Buff-Time-621412) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589523,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621355,621412],"components":[{"id":621355,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":2}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621412,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777299,0],"clearFlags":1024,"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":498683,"name":"Bloody Experience","description":"For (Buff0-Time) seconds, the damage that is caused by your next use of [498658] will be converted to your HP and increase your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)%. When the skill hits, it will stun the target for (Buff-Time-621412) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589523,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621355,621412]}}],"icon":"/assets/ui/rom-spells/589523.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-40","classId":"rom-champion","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":545941,"sourceSkillId":498684,"name":"Obstacle Force Field","description":"Each time [498685] hits the target, the target's casting time is extended and skill cost is increased.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589524,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":498684,"name":"Obstacle Force Field","description":"Each time [498685] hits the target, the target's casting time is extended and skill cost is increased.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589524,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/589524.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-45","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":545942,"sourceSkillId":498687,"name":"High-Energy Barrier","description":"Uses energy to protect the target. Resists an amount of damage equal to (Buff0-Shield)% of Maximum HP for (Buff0-Time) seconds. Also increases [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% and [SC_SKILLTIPS_DMG] by (Buff0-0)%. When the effect ends, it deals (DMG-621419) main hand weapon physical DPS on targets in range and roots them for (Buff-Time-621420) seconds.\n[SC_SKILLTIPS_LEVEL50]\n[SC_SKILLTIPS_03]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":589525,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621416,621418,621419,621420],"components":[{"id":621416,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":483,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":173,"value":3},{"type":144,"value":5}],"abilitySkillLevelArg":6,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498688,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":2,"skillLevelArg":28}},{"id":621418,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"clearFlags":1072,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621419,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621420,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":498687,"name":"High-Energy Barrier","description":"Uses energy to protect the target. Resists an amount of damage equal to (Buff0-Shield)% of Maximum HP for (Buff0-Time) seconds. Also increases [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% and [SC_SKILLTIPS_DMG] by (Buff0-0)%. When the effect ends, it deals (DMG-621419) main hand weapon physical DPS on targets in range and roots them for (Buff-Time-621420) seconds.\n[SC_SKILLTIPS_LEVEL50]\n[SC_SKILLTIPS_03]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":589525,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621416,621418,621419,621420]}}],"icon":"/assets/ui/rom-spells/589525.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-50","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":545943,"sourceSkillId":498690,"name":"Rapid Spread","description":"Inflicts (DMG0) main hand weapon physical DPS on target. Also increases [SC_SKILLTIPS_PARRY] by (Buff4-1) and [SC_SKILLTIPS_DOGE] by (Buff4-0) for (Buff4-Time) seconds. \nIf the target is being affected by Suppression Offensive, then this skill will also cause (DMG0) main hand weapon physical DPS on nearby targets. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":36,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589526,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621422,621423],"components":[{"id":621422,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621423,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":17,"value":16},{"type":22,"value":16}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":498690,"name":"Rapid Spread","description":"Inflicts (DMG0) main hand weapon physical DPS on target. Also increases [SC_SKILLTIPS_PARRY] by (Buff4-1) and [SC_SKILLTIPS_DOGE] by (Buff4-0) for (Buff4-Time) seconds. \nIf the target is being affected by Suppression Offensive, then this skill will also cause (DMG0) main hand weapon physical DPS on nearby targets. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":36,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589526,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621422,621423]}}],"icon":"/assets/ui/rom-spells/589526.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-60","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":60,"keyItemId":546857,"sourceSkillId":499842,"name":"Elemental Rampage","description":"Consumes half of caster's HP, attempts to deal a high amount of damage to all enemies in a range of 200 and reduce their resistance by (Buff0-623404) and defense by (Buff1-623404)%. If the damage has been dealt successfully, the caster will not be able to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":801644,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623403,623404,621685,623389],"components":[{"id":623403,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-100,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623404,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":220,"value":-10},{"type":135,"value":-10},{"type":170,"value":-10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623389,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499842,"name":"Elemental Rampage","description":"Consumes half of caster's HP, attempts to deal a high amount of damage to all enemies in a range of 200 and reduce their resistance by (Buff0-623404) and defense by (Buff1-623404)%. If the damage has been dealt successfully, the caster will not be able to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":801644,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623403,623404,621685,623389]}}],"icon":"/assets/ui/rom-spells/801644.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-mage-elite-70","classId":"rom-champion","secondaryClassId":"rom-mage","group":"elite","unlockLevel":70,"keyItemId":546858,"sourceSkillId":499840,"name":"Elemental Defense","description":"Increases caster's [SC_SKILLTIPS_MDEF] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [499840] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801645,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623407],"components":[{"id":623407,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":97,"abilityModifiers":[{"type":170,"value":100},{"type":144,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499840,"name":"Elemental Defense","description":"Increases caster's [SC_SKILLTIPS_MDEF] by (Buff0-0)%. While in effect, any healing received is reduced by (Buff0-1)%.\n(Right click the [499840] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801645,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623407]}}],"icon":"/assets/ui/rom-spells/801645.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-15","classId":"rom-champion","secondaryClassId":"rom-priest","group":"passive","unlockLevel":15,"keyItemId":545944,"sourceSkillId":498712,"name":"Runecraft - Devotion","description":"Extends the effect time of Holy Aura by 1 second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575748,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":498712,"name":"Runecraft - Devotion","description":"Extends the effect time of Holy Aura by 1 second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575748,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575748.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-20","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":545945,"sourceSkillId":498715,"name":"Divine Vengeance","description":"[SC_SKILLTIPS_621218]\nThere is a chance to use this when attacked while in a Shield Form state. Inflicts (DMG0) main hand weapon physical DPS on target and reduces the cooldown time for Holy Aura by (Buff-Time-621676) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575711,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621427,621428,621458,621676],"components":[{"id":621427,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":4},"summonCreatureId":0},{"id":621428,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621458,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":162,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621676,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":498715,"name":"Divine Vengeance","description":"[SC_SKILLTIPS_621218]\nThere is a chance to use this when attacked while in a Shield Form state. Inflicts (DMG0) main hand weapon physical DPS on target and reduces the cooldown time for Holy Aura by (Buff-Time-621676) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575711,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621427,621428,621458,621676]}}],"icon":"/assets/ui/rom-spells/575711.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-25","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":25,"keyItemId":545946,"sourceSkillId":498716,"name":"Rune Energy Consecration","description":"Restores (Buff-Dot-621429)% MP every 2 seconds and restores (Buff-Dot-621453) rage, (Buff-Dot-621455) energy, (Buff-Dot-621456) focus and (Buff-Dot-621430)% MP for all party members within a range of 200. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575712,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621429,621454,621453,621455,621456,621430],"components":[{"id":621429,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":239,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498717,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":850053,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":2,"dotType":6,"dotBase":3,"dot":{"timeSeconds":2,"type":6,"base":3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621454,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":524389,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498718,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621453,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":2,"dotBase":5,"dot":{"timeSeconds":2,"type":2,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621455,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":4,"dotBase":5,"dot":{"timeSeconds":2,"type":4,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621456,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":3,"dotBase":5,"dot":{"timeSeconds":2,"type":3,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621430,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":6,"dotBase":3,"dot":{"timeSeconds":2,"type":6,"base":3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":498716,"name":"Rune Energy Consecration","description":"Restores (Buff-Dot-621429)% MP every 2 seconds and restores (Buff-Dot-621453) rage, (Buff-Dot-621455) energy, (Buff-Dot-621456) focus and (Buff-Dot-621430)% MP for all party members within a range of 200. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575712,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621429,621454,621453,621455,621456,621430]}}],"icon":"/assets/ui/rom-spells/575712.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-30","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":545947,"sourceSkillId":498719,"name":"Salvation Engraving","description":"Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of nearby party members by (Buff0-0)%. Also reduces any aggro, inflicted while in effect, by (Buff0-2)%. Lasts for (Buff0-Time) seconds. \n(This skill has no effect on the caster.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575713,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621457],"components":[{"id":621457,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":5},{"type":143,"value":5},{"type":138,"value":-5}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":498719,"name":"Salvation Engraving","description":"Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of nearby party members by (Buff0-0)%. Also reduces any aggro, inflicted while in effect, by (Buff0-2)%. Lasts for (Buff0-Time) seconds. \n(This skill has no effect on the caster.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575713,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621457]}}],"icon":"/assets/ui/rom-spells/575713.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-35","classId":"rom-champion","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":545948,"sourceSkillId":498720,"name":"Way of Frenzy","description":"When Divine Vengeance hits, this skill increases stamina by an extra (Buff0-621458)%. This skill can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575716,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621458],"components":[{"id":621458,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":162,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":498720,"name":"Way of Frenzy","description":"When Divine Vengeance hits, this skill increases stamina by an extra (Buff0-621458)%. This skill can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575716,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621458]}}],"icon":"/assets/ui/rom-spells/575716.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-40","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":40,"keyItemId":545949,"sourceSkillId":498721,"name":"Light Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on nearby targets and restores (DMG-621459) HP for nearby party members. The higher your stamina, the more HP is restored. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575719,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621460,621461,621459],"components":[{"id":621460,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621461,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621459,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":6,"fixedValue":0.2,"attack":{"type":0,"calculationType":5,"damagePower":6,"damagePowerSkillLevelArg":5,"fixedValue":0.2,"fixedType":8,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":498721,"name":"Light Pulse","description":"Inflicts (DMG0) main hand weapon physical DPS on nearby targets and restores (DMG-621459) HP for nearby party members. The higher your stamina, the more HP is restored. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575719,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621460,621461,621459]}}],"icon":"/assets/ui/rom-spells/575719.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-45","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":45,"keyItemId":545950,"sourceSkillId":498722,"name":"Suicide Advance","description":"Sacrifices the caster's defense to increase the attack of him and his party members. Reduces the caster's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)%. Also increases the [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] of the caster and nearby party members by (Buff4-0)%. Lasts for (Buff0-Time). \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575737,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621462,621463],"components":[{"id":621462,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"clearFlags":1024,"abilityModifiers":[{"type":135,"value":-5},{"type":170,"value":-5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621463,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"clearFlags":1024,"abilityModifiers":[{"type":173,"value":5},{"type":192,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":498722,"name":"Suicide Advance","description":"Sacrifices the caster's defense to increase the attack of him and his party members. Reduces the caster's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)%. Also increases the [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] of the caster and nearby party members by (Buff4-0)%. Lasts for (Buff0-Time). \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575737,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621462,621463]}}],"icon":"/assets/ui/rom-spells/575737.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-50","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":545951,"sourceSkillId":498723,"name":"Holy Attack","description":"Inflicts (DMG0) main hand weapon physical DPS on target and randomly removes a negative magic, curse or poison effect from a party member. \n(Only one of these effects will appear at a time.) \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575747,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621464,621465],"components":[{"id":621464,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621465,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":498723,"name":"Holy Attack","description":"Inflicts (DMG0) main hand weapon physical DPS on target and randomly removes a negative magic, curse or poison effect from a party member. \n(Only one of these effects will appear at a time.) \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":27,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575747,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621464,621465]}}],"icon":"/assets/ui/rom-spells/575747.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-60","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":60,"keyItemId":546859,"sourceSkillId":499838,"name":"Reviving Blast","description":"Consumes half of caster's HP and recovers (DMG-623408) HP of all party members in range. The caster will be unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.6},"source":{"imageId":801646,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623408,621685,623389],"components":[{"id":623408,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":60,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":60,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623389,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499838,"name":"Reviving Blast","description":"Consumes half of caster's HP and recovers (DMG-623408) HP of all party members in range. The caster will be unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.6},"source":{"imageId":801646,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623408,621685,623389]}}],"icon":"/assets/ui/rom-spells/801646.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-priest-elite-70","classId":"rom-champion","secondaryClassId":"rom-priest","group":"elite","unlockLevel":70,"keyItemId":546860,"sourceSkillId":499836,"name":"Righteous Explosion","description":"Casting takes 3 seconds and removes all harmful effects from all party members in range.","target":"self","range":15,"castTimeMs":3000,"cooldownMs":30000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801647,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623412],"components":[{"id":623412,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499836,"name":"Righteous Explosion","description":"Casting takes 3 seconds and removes all harmful effects from all party members in range.","target":"self","range":15,"castTimeMs":3000,"cooldownMs":30000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801647,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623412]}}],"icon":"/assets/ui/rom-spells/801647.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-15","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":15,"keyItemId":545952,"sourceSkillId":498593,"name":"Endless Pulse","description":"Consumes an extra 40% of current HP and increases [SC_SKILLTIPS_DPS] by (Buff0-0)%. Also recovers (Buff0-Dot)% HP every 2 seconds for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589511,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621260],"components":[{"id":621260,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-2}],"abilitySkillLevelArg":5,"dotTime":2,"dotType":5,"dotBase":5,"dot":{"timeSeconds":2,"type":5,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498593,"name":"Endless Pulse","description":"Consumes an extra 40% of current HP and increases [SC_SKILLTIPS_DPS] by (Buff0-0)%. Also recovers (Buff0-Dot)% HP every 2 seconds for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589511,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621260]}}],"icon":"/assets/ui/rom-spells/589511.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-20","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":20,"keyItemId":545953,"sourceSkillId":498595,"name":"Rune Siphon","description":"Inflicts (DMG0) main hand weapon physical DPS and (DMG4) [SC_SKILLTIPS_DARK] to a target. Also restores (DMG8) HP to the caster. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589512,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621262,621263,621264],"components":[{"id":621262,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.6,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621263,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":1,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621264,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":20,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":20,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498595,"name":"Rune Siphon","description":"Inflicts (DMG0) main hand weapon physical DPS and (DMG4) [SC_SKILLTIPS_DARK] to a target. Also restores (DMG8) HP to the caster. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":10,"percentage":false},{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589512,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621262,621263,621264]}}],"icon":"/assets/ui/rom-spells/589512.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-25","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":25,"keyItemId":545954,"sourceSkillId":498596,"name":"Psychic Forge","description":"Restores focus while increasing rage. Can be stacked a maximum of 7 times.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589513,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498596,"name":"Psychic Forge","description":"Restores focus while increasing rage. Can be stacked a maximum of 7 times.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":589513,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/589513.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-30","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":30,"keyItemId":545955,"sourceSkillId":498599,"name":"Dark Energy Strike","description":"Inflicts (DMG0) main hand weapon physical DPS and (DMG4) [SC_SKILLTIPS_DARK] on target. Also carries a chance to reset your Rune Siphon's cooldown time. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589514,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621305,621306,621307],"components":[{"id":621305,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621306,"magicFunc":0,"magicType":5,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":1,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621307,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498599,"name":"Dark Energy Strike","description":"Inflicts (DMG0) main hand weapon physical DPS and (DMG4) [SC_SKILLTIPS_DARK] on target. Also carries a chance to reset your Rune Siphon's cooldown time. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":589514,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621305,621306,621307]}}],"icon":"/assets/ui/rom-spells/589514.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-35","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":35,"keyItemId":545956,"sourceSkillId":498600,"name":"Indomitable Spirit","description":"Can only be used when HP is less than 65%. The following 3 Dark Energy Strikes cause double the damage. Also restores (DMG-621310) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589515,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621309,621310],"components":[{"id":621309,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621310,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":2,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":2,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498600,"name":"Indomitable Spirit","description":"Can only be used when HP is less than 65%. The following 3 Dark Energy Strikes cause double the damage. Also restores (DMG-621310) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":589515,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621309,621310]}}],"icon":"/assets/ui/rom-spells/589515.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-40","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":40,"keyItemId":545957,"sourceSkillId":498651,"name":"Heart Collection Rune","description":"Immediately resets the cooldown time for Rune Siphon and increases the damage by (Buff0-621338)% the next time it's used. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589516,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621336,621337,621338],"components":[{"id":621336,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":35,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621337,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621338,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":65,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":2}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498651,"name":"Heart Collection Rune","description":"Immediately resets the cooldown time for Rune Siphon and increases the damage by (Buff0-621338)% the next time it's used. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589516,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621336,621337,621338]}}],"icon":"/assets/ui/rom-spells/589516.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-45","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":45,"keyItemId":545958,"sourceSkillId":498652,"name":"Soul Forge Mystery","description":"Increases [SC_SKILLTIPS_CRI] by (Buff0-0) for (Buff0-Time) seconds. If critical attack occurs while in effect, it increases dark attribute magic power by (Buff0-621341)% for (Buff-Time-621341) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-621342)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589517,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621339,621341,621342],"components":[{"id":621339,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621341,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":50,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621342,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":498652,"name":"Soul Forge Mystery","description":"Increases [SC_SKILLTIPS_CRI] by (Buff0-0) for (Buff0-Time) seconds. If critical attack occurs while in effect, it increases dark attribute magic power by (Buff0-621341)% for (Buff-Time-621341) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-621342)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589517,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621339,621341,621342]}}],"icon":"/assets/ui/rom-spells/589517.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-50","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":545959,"sourceSkillId":498655,"name":"Dark Energy Punishment","description":"Consumes (Buff0-Dot)% HP every second and increases [SC_SKILLTIPS_01] by (Buff0-0)% and [SC_SKILLTIPS_02] by (Buff0-1)%. \n(This state ends when HP has been exhausted.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"health","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589518,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621343],"components":[{"id":621343,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":65643,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":134,"value":5},{"type":171,"value":5}],"abilitySkillLevelArg":10,"dotTime":1,"dotType":5,"dotBase":-3,"dot":{"timeSeconds":1,"type":5,"base":-3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498655,"name":"Dark Energy Punishment","description":"Consumes (Buff0-Dot)% HP every second and increases [SC_SKILLTIPS_01] by (Buff0-0)% and [SC_SKILLTIPS_02] by (Buff0-1)%. \n(This state ends when HP has been exhausted.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"health","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":589518,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621343]}}],"icon":"/assets/ui/rom-spells/589518.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-60","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":60,"keyItemId":546861,"sourceSkillId":499833,"name":"Blast of Remorse","description":"Consumes half of caster's HP and knocks down all enemies in range for (Buff-Time-623413) seconds. If any enemy has been Knocked down successfully, the caster will be unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801648,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623413,621685,623389],"components":[{"id":623413,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4179,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623389,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":499833,"name":"Blast of Remorse","description":"Consumes half of caster's HP and knocks down all enemies in range for (Buff-Time-623413) seconds. If any enemy has been Knocked down successfully, the caster will be unable to move for (Buff-Time-623389) seconds.\n(Can only be used in a Shield Form state.)","target":"self","range":15,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":50,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801648,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623413,621685,623389]}}],"icon":"/assets/ui/rom-spells/801648.png","iconResolution":"native-interface-fdb"},{"id":"rom-champion-rom-warlock-elite-70","classId":"rom-champion","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":70,"keyItemId":546862,"sourceSkillId":499831,"name":"Psychic Rampage","description":"Increases caster's critical hit rate by (Buff0-0). While in effect, any healing received is reduced by (Buff0-2)%.\n(Right click the [499831] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801649,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623414],"components":[{"id":623414,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":2500},{"type":20,"value":2500},{"type":144,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499831,"name":"Psychic Rampage","description":"Increases caster's critical hit rate by (Buff0-0). While in effect, any healing received is reduced by (Buff0-2)%.\n(Right click the [499831] icon to stop effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801649,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623414]}}],"icon":"/assets/ui/rom-spells/801649.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-15","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"passive","unlockLevel":15,"keyItemId":545968,"sourceSkillId":498760,"name":"Wild Slash","description":"Increases damage caused by Slash and changes to consume HP. After it hits, Bleed effect can also increase [SC_SKILLTIPS_DPS] by (Buff0-621575)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800160,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621575],"components":[{"id":621575,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":23,"value":-1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498760,"name":"Wild Slash","description":"Increases damage caused by Slash and changes to consume HP. After it hits, Bleed effect can also increase [SC_SKILLTIPS_DPS] by (Buff0-621575)%. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800160,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621575]}}],"icon":"/assets/ui/rom-spells/800160.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-20","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":545969,"sourceSkillId":498762,"name":"Blood Rune Weapon","description":"[SC_SKILLTIPS_HP5]\nIncreases [SC_SKILLTIPS_01] by (Buff0-0)% and [SC_SKILLTIPS_CRI] by (Buff4-0) for (Buff0-Time) times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800161,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621590,621591,621594],"components":[{"id":621590,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":6,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498781,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621591,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":18,"value":25}],"abilitySkillLevelArg":7,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621594,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498762,"name":"Blood Rune Weapon","description":"[SC_SKILLTIPS_HP5]\nIncreases [SC_SKILLTIPS_01] by (Buff0-0)% and [SC_SKILLTIPS_CRI] by (Buff4-0) for (Buff0-Time) times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800161,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621590,621591,621594]}}],"icon":"/assets/ui/rom-spells/800161.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-25","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":25,"keyItemId":545970,"sourceSkillId":498763,"name":"Bloody Slash","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) + (FixDMG0) x STR main hand weapon physical DPS on target. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800162,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621592],"components":[{"id":621592,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498763,"name":"Bloody Slash","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) + (FixDMG0) x STR main hand weapon physical DPS on target. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800162,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621592]}}],"icon":"/assets/ui/rom-spells/800162.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-30","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":30,"keyItemId":545971,"sourceSkillId":498764,"name":"Unbridled Rage","description":"[SC_SKILLTIPS_HP5]\nIncreases [SC_SKILLTIPS_STR] by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800163,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621593],"components":[{"id":621593,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":161,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498764,"name":"Unbridled Rage","description":"[SC_SKILLTIPS_HP5]\nIncreases [SC_SKILLTIPS_STR] by (Buff0-0)% for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800163,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621593]}}],"icon":"/assets/ui/rom-spells/800163.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-35","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":35,"keyItemId":545972,"sourceSkillId":498817,"name":"Bloody Battle","description":"|cffFF5755Can be used while in a Blood Rune Weapon state.|r\nThis skill can be used 6 seconds after a critical attack. Recovers 25% of caster's lost HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800164,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621598],"components":[{"id":621598,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498817,"name":"Bloody Battle","description":"|cffFF5755Can be used while in a Blood Rune Weapon state.|r\nThis skill can be used 6 seconds after a critical attack. Recovers 25% of caster's lost HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800164,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621598]}}],"icon":"/assets/ui/rom-spells/800164.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-40","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":40,"keyItemId":545973,"sourceSkillId":498820,"name":"Fearless Rune","description":"Provides immunity to all magical damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800165,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621599],"components":[{"id":621599,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498820,"name":"Fearless Rune","description":"Provides immunity to all magical damage for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800165,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621599]}}],"icon":"/assets/ui/rom-spells/800165.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-45","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":45,"keyItemId":545974,"sourceSkillId":498821,"name":"Stifling Attack","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) main hand weapon physical DPS + (FixDMG0) x STR damage on the target and reduces the target's [SC_SKILLTIPS_DEF] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"health","amount":31,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800166,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621615,621616],"components":[{"id":621615,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621616,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":-8}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0.2,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498821,"name":"Stifling Attack","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) main hand weapon physical DPS + (FixDMG0) x STR damage on the target and reduces the target's [SC_SKILLTIPS_DEF] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"health","amount":31,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800166,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621615,621616]}}],"icon":"/assets/ui/rom-spells/800166.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-50","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"elite","unlockLevel":50,"keyItemId":545975,"sourceSkillId":498822,"name":"Vendetta Blow","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) main hand weapon physical DPS + (FixDMG0) x STR damage on a target. The more HP you lose, the more damage this skill inflicts. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800167,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621618],"components":[{"id":621618,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498822,"name":"Vendetta Blow","description":"[SC_SKILLTIPS_HP5]\nInflicts (DMG0) main hand weapon physical DPS + (FixDMG0) x STR damage on a target. The more HP you lose, the more damage this skill inflicts. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":27,"percentage":false},{"resource":"health","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800167,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621618]}}],"icon":"/assets/ui/rom-spells/800167.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-60","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"passive","unlockLevel":60,"keyItemId":546746,"sourceSkillId":499823,"name":"Enhanced Shock","description":"Causes [499824] to Slow down target for (Buff-Time-623420) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801616,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623420],"components":[{"id":623420,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":499823,"name":"Enhanced Shock","description":"Causes [499824] to Slow down target for (Buff-Time-623420) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801616,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623420]}}],"icon":"/assets/ui/rom-spells/801616.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-champion-elite-70","classId":"rom-warrior","secondaryClassId":"rom-champion","group":"passive","unlockLevel":70,"keyItemId":546747,"sourceSkillId":499804,"name":"Blood Whirlwind","description":"A [623422] effect will be added to [499822]. Each time an enemy is hit, the caster recovers (DMG-623423) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801617,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623422,623423],"components":[{"id":623422,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623423,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":3,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":3,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":499804,"name":"Blood Whirlwind","description":"A [623422] effect will be added to [499822]. Each time an enemy is hit, the caster recovers (DMG-623423) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801617,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623422,623423]}}],"icon":"/assets/ui/rom-spells/801617.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-15","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":541885,"sourceSkillId":491328,"name":"Skull Breaker","description":"Precise strike at the enemy's head that causes (DMG0) main hand weapon DPS and has a 50% chance of lowering the target's accuracy by (Buff4-0)%.\n(Accuracy for players is decreased by (Buff5-0)%.)\n(This skill decreases the target's accuracy by a maximum of (Max-Buff0-501864)%).","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575211,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620362,501864,503843],"components":[{"id":620362,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501864,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":197,"value":-10}],"abilitySkillLevelArg":6.6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":503843,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":197,"value":-10}],"abilitySkillLevelArg":6.6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491328,"name":"Skull Breaker","description":"Precise strike at the enemy's head that causes (DMG0) main hand weapon DPS and has a 50% chance of lowering the target's accuracy by (Buff4-0)%.\n(Accuracy for players is decreased by (Buff5-0)%.)\n(This skill decreases the target's accuracy by a maximum of (Max-Buff0-501864)%).","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575211,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620362,501864,503843]}}],"icon":"/assets/ui/rom-spells/575211.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-20","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":20,"keyItemId":541915,"sourceSkillId":491452,"name":"Stun Shot","description":"Causes your target to be Stunned for (Buff0-Time) seconds. (Requires ranged weapon.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575240,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501858,503842,502719],"components":[{"id":501858,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":4,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":503842,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":4,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":491452,"name":"Stun Shot","description":"Causes your target to be Stunned for (Buff0-Time) seconds. (Requires ranged weapon.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575240,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501858,503842,502719]}}],"icon":"/assets/ui/rom-spells/575240.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-25","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":25,"keyItemId":541945,"sourceSkillId":491458,"name":"Moon Cleave Perfection","description":"Reduces your Moon Cleave rage cost by 10 points and cool down by 20 seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575732,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":491458,"name":"Moon Cleave Perfection","description":"Reduces your Moon Cleave rage cost by 10 points and cool down by 20 seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575732,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575732.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-30","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":541975,"sourceSkillId":491451,"name":"Aim for the Wound","description":"Inflict (DMG0) ranged weapon DPS. You have a chance of gaining an additional (Buff4-Dot) points of rage. (Requires ranged weapon.)\n(This skill generates a maximum of an additional (Max-Buff-Dot-501859) points of rage.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575239,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501857,501859],"components":[{"id":501857,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501859,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":1048585,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":12},"attackType":2,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":491451,"name":"Aim for the Wound","description":"Inflict (DMG0) ranged weapon DPS. You have a chance of gaining an additional (Buff4-Dot) points of rage. (Requires ranged weapon.)\n(This skill generates a maximum of an additional (Max-Buff-Dot-501859) points of rage.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575239,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501857,501859]}}],"icon":"/assets/ui/rom-spells/575239.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-35","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":542006,"sourceSkillId":492615,"name":"Sword Breath","description":"Sword breath pierces the target, inflicting (DMG0) main hand weapon DPS and with each hit also has a chance of increasing rage by (Buff4-Dot) points.\n(This skill generates a maximum of an additional (Max-Buff-Dot-502888) points of rage.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576990,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502887,502888],"components":[{"id":502887,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502888,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":1048585,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":8},"attackType":2,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":492615,"name":"Sword Breath","description":"Sword breath pierces the target, inflicting (DMG0) main hand weapon DPS and with each hit also has a chance of increasing rage by (Buff4-Dot) points.\n(This skill generates a maximum of an additional (Max-Buff-Dot-502888) points of rage.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576990,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502887,502888]}}],"icon":"/assets/ui/rom-spells/576990.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-40","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":40,"keyItemId":542036,"sourceSkillId":498032,"name":"Calm","description":"When Skull Breaker fails you have the opportunity to enter a state of calm in order to increase accuracy by (Buff0-620337)%. Effective for (Buff-Time-620337) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577572,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620337],"components":[{"id":620337,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":498032,"name":"Calm","description":"When Skull Breaker fails you have the opportunity to enter a state of calm in order to increase accuracy by (Buff0-620337)%. Effective for (Buff-Time-620337) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577572,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620337]}}],"icon":"/assets/ui/rom-spells/577572.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-45","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":542066,"sourceSkillId":492959,"name":"Waiting Game","description":"When you successfully use Aim for the Wound or hit the target with a Moon Cleave your physical attack power instantly increases.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577641,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":492959,"name":"Waiting Game","description":"When you successfully use Aim for the Wound or hit the target with a Moon Cleave your physical attack power instantly increases.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577641,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577641.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-50","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":542096,"sourceSkillId":493247,"name":"The Final Battle","description":"Inflicts (DMG0) main hand weapon DPS. If target's HP is lower than 30%, it will inflict (DMG1) main hand weapon DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577771,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503508,620363],"components":[{"id":503508,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620363,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.4,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493247,"name":"The Final Battle","description":"Inflicts (DMG0) main hand weapon DPS. If target's HP is lower than 30%, it will inflict (DMG1) main hand weapon DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577771,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503508,620363]}}],"icon":"/assets/ui/rom-spells/577771.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-60","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546730,"sourceSkillId":499473,"name":"Battle Focus","description":"Increases [SC_SKILLTIPS_HITP] when your [499625] hits, and recovers (Buff-Dot-622988) Focus. Lasts for (Buff-Time-620365). \n([SC_SKILLTIPS_CD_1] (Buff-Time-622989) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801259,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622988,620365,622989],"components":[{"id":622988,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":73,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":1,"dotType":3,"dotBase":20,"dot":{"timeSeconds":1,"type":3,"base":20,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620365,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"summonCreatureId":0},{"id":622989,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499473,"name":"Battle Focus","description":"Increases [SC_SKILLTIPS_HITP] when your [499625] hits, and recovers (Buff-Dot-622988) Focus. Lasts for (Buff-Time-620365). \n([SC_SKILLTIPS_CD_1] (Buff-Time-622989) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801259,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622988,620365,622989]}}],"icon":"/assets/ui/rom-spells/801259.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-scout-elite-70","classId":"rom-warrior","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546731,"sourceSkillId":499475,"name":"Blood Battle","description":"Increases your [499998|Blood Arrow's] [SC_SKILLTIPS_POWER] at the same time.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801307,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499475,"name":"Blood Battle","description":"Increases your [499998|Blood Arrow's] [SC_SKILLTIPS_POWER] at the same time.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801307,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801307.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-15","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":15,"keyItemId":541886,"sourceSkillId":491460,"name":"Shadowstab Perfection","description":"You no longer need to have a dagger equipped to gain the Bleed bonus of the Shadowstab skill. Bleed duration is increased by 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575733,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":491460,"name":"Shadowstab Perfection","description":"You no longer need to have a dagger equipped to gain the Bleed bonus of the Shadowstab skill. Bleed duration is increased by 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575733,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575733.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-20","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":20,"keyItemId":541916,"sourceSkillId":491463,"name":"Speed Up","description":"Increases your movement speed by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576384,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501869],"components":[{"id":501869,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":3}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":491463,"name":"Speed Up","description":"Increases your movement speed by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576384,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501869]}}],"icon":"/assets/ui/rom-spells/576384.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-25","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":25,"keyItemId":541946,"sourceSkillId":491329,"name":"Blood Dance","description":"Attack the enemy with full strength and spill his blood! Causes (DMG0) main hand weapon DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"health","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575212,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501800],"components":[{"id":501800,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.1,"damagePowerSkillLevelArg":4.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":491329,"name":"Blood Dance","description":"Attack the enemy with full strength and spill his blood! Causes (DMG0) main hand weapon DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"health","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575212,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501800]}}],"icon":"/assets/ui/rom-spells/575212.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-30","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":541976,"sourceSkillId":491330,"name":"Frenzied Attack","description":"For (Buff0-Time) seconds you go into a Frenzy. During this time, your [SC_SKILLTIPS_CRI] for all kinds of attacks is increased by (Buff0-1). All Slow and Root effects are removed, but [SC_SKILLTIPS_DEF] is reduced by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575213,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501801],"components":[{"id":501801,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":-50},{"type":18,"value":700}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":491330,"name":"Frenzied Attack","description":"For (Buff0-Time) seconds you go into a Frenzy. During this time, your [SC_SKILLTIPS_CRI] for all kinds of attacks is increased by (Buff0-1). All Slow and Root effects are removed, but [SC_SKILLTIPS_DEF] is reduced by (Buff0-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575213,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501801]}}],"icon":"/assets/ui/rom-spells/575213.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-35","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542007,"sourceSkillId":492619,"name":"Keen Attack","description":"If the target is Vulnerable, two quick attacks cause (DMG0) main hand weapon DPS. Your critical damage will be increased by (Buff8-0)% for (Buff8-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576991,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502883,501520,623524],"components":[{"id":502883,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":128,"abilityModifiers":[{"type":135,"value":25},{"type":22,"value":5},{"type":17,"value":5},{"type":144,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501520,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0},{"id":623524,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":492619,"name":"Keen Attack","description":"If the target is Vulnerable, two quick attacks cause (DMG0) main hand weapon DPS. Your critical damage will be increased by (Buff8-0)% for (Buff8-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576991,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502883,501520,623524]}}],"icon":"/assets/ui/rom-spells/576991.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-40","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":542037,"sourceSkillId":492911,"name":"Splitting Chop","description":"When the target is Weakened, inflicts (DMG0) main hand weapon DPS to the target and decreases the target's [SC_SKILLTIPS_DEF] by (Buff4-0)% for (Buff4-Time) seconds.\n(This skill decreases the target's [SC_SKILLTIPS_DEF] by a maximum of (Max-Buff0-503161)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577574,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503160,503161,502923],"components":[{"id":503160,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503161,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":135,"value":-2}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502923,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":492911,"name":"Splitting Chop","description":"When the target is Weakened, inflicts (DMG0) main hand weapon DPS to the target and decreases the target's [SC_SKILLTIPS_DEF] by (Buff4-0)% for (Buff4-Time) seconds.\n(This skill decreases the target's [SC_SKILLTIPS_DEF] by a maximum of (Max-Buff0-503161)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577574,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503160,503161,502923]}}],"icon":"/assets/ui/rom-spells/577574.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-45","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":542067,"sourceSkillId":492997,"name":"Frenzied Heart","description":"When you enter Frenzied Attack state, your physical critical damage is increased.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577642,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":492997,"name":"Frenzied Heart","description":"When you enter Frenzied Attack state, your physical critical damage is increased.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577642,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577642.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-50","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":50,"keyItemId":542097,"sourceSkillId":493248,"name":"Exhaustion","description":"Lowers the rage required by your Whirlwind by 20 points, and shortens cooldown by 10 seconds. Also when you use a Probing Attack, there is an additional chance that it will lower the target's energy, focus, rage, and mana. (This effect can only be used on players.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577772,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":493248,"name":"Exhaustion","description":"Lowers the rage required by your Whirlwind by 20 points, and shortens cooldown by 10 seconds. Also when you use a Probing Attack, there is an additional chance that it will lower the target's energy, focus, rage, and mana. (This effect can only be used on players.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577772,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577772.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-60","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546732,"sourceSkillId":499483,"name":"Attack Launch","description":"Stops your [499484] from reducing [SC_SKILLTIPS_DEF].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801260,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499483,"name":"Attack Launch","description":"Stops your [499484] from reducing [SC_SKILLTIPS_DEF].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801260,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801260.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-rogue-elite-70","classId":"rom-warrior","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":70,"keyItemId":546733,"sourceSkillId":499997,"name":"Desperate Measures","description":"When activated, it will prevent death once and restore full HP within (Buff0-Time) seconds. After death is averted, the caster will experience a Weakened state for (Buff-Time-622951) seconds. This will cause (Buff-Dot-622951)% HP damage for every second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801308,"sourceEffectType":0,"sourceTarget":0,"componentIds":[622949,622950,622951],"components":[{"id":622949,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[32768,0],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":499995,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622950,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":0,"summonCreatureId":0},{"id":622951,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":65610,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":1,"dotType":5,"dotBase":-15,"dot":{"timeSeconds":1,"type":5,"base":-15,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499997,"name":"Desperate Measures","description":"When activated, it will prevent death once and restore full HP within (Buff0-Time) seconds. After death is averted, the caster will experience a Weakened state for (Buff-Time-622951) seconds. This will cause (Buff-Dot-622951)% HP damage for every second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801308,"sourceEffectType":0,"sourceTarget":0,"componentIds":[622949,622950,622951]}}],"icon":"/assets/ui/rom-spells/801308.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-15","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541887,"sourceSkillId":491474,"name":"Electrical Rage","description":"Causes (DMG0) main hand weapon DPS and puts High Voltage on the caster. [SC_SKILLTIPS_02] is increased by (Buff7-0)% for (Buff7-Time) seconds. High Voltage stacks up to 3 times.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":15,"percentage":false},{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575246,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501880,501884,501882,501881],"components":[{"id":501880,"magicFunc":0,"magicType":3,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501884,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435523,"specialActionFlags":0,"assistType":13,"abilityModifiers":[{"type":171,"value":15}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":501882,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435523,"specialActionFlags":0,"assistType":13,"abilityModifiers":[{"type":171,"value":10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":501881,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435523,"specialActionFlags":0,"assistType":13,"abilityModifiers":[{"type":171,"value":5}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491474,"name":"Electrical Rage","description":"Causes (DMG0) main hand weapon DPS and puts High Voltage on the caster. [SC_SKILLTIPS_02] is increased by (Buff7-0)% for (Buff7-Time) seconds. High Voltage stacks up to 3 times.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":15,"percentage":false},{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575246,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501880,501884,501882,501881]}}],"icon":"/assets/ui/rom-spells/575246.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-20","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":541917,"sourceSkillId":491477,"name":"Lightning's Touch","description":"Your weapon strikes the enemy with a flash of lightning, dealing (DMG0) points of Wind damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":575247,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501883],"components":[{"id":501883,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-50,"damagePowerSkillLevelArg":45,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":491477,"name":"Lightning's Touch","description":"Your weapon strikes the enemy with a flash of lightning, dealing (DMG0) points of Wind damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.5},"source":{"imageId":575247,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501883]}}],"icon":"/assets/ui/rom-spells/575247.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-25","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":541947,"sourceSkillId":491331,"name":"Sense of Danger","description":"Lowers the damage you receive by (Buff0-0)% for (Buff0-Time) Seconds. Can only be activated when HP is below 30%. (Does not lower critical damage received)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575214,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501802,509772],"components":[{"id":501802,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435683,"specialActionFlags":0,"assistType":178,"abilityModifiers":[{"type":143,"value":10},{"type":142,"value":0}],"abilitySkillLevelArg":17,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509772,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268959969,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":143,"value":0},{"type":142,"value":10}],"abilitySkillLevelArg":17,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491331,"name":"Sense of Danger","description":"Lowers the damage you receive by (Buff0-0)% for (Buff0-Time) Seconds. Can only be activated when HP is below 30%. (Does not lower critical damage received)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575214,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501802,509772]}}],"icon":"/assets/ui/rom-spells/575214.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-30","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":541977,"sourceSkillId":491332,"name":"Thunder Sword","description":"Fires 4 sword shaped thunder bolts at the target inflicting (DMG0) points of Wind damage.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":575215,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501803],"components":[{"id":501803,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":35,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491332,"name":"Thunder Sword","description":"Fires 4 sword shaped thunder bolts at the target inflicting (DMG0) points of Wind damage.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":575215,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501803]}}],"icon":"/assets/ui/rom-spells/575215.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-35","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":35,"keyItemId":542008,"sourceSkillId":492618,"name":"Electric Attack","description":"For (Buff0-Time) seconds, your normal attacks additionally cause (Buff0-0) Wind damage.\n[SC_SKILLTIPS_492618]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576992,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502886],"components":[{"id":502886,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":187,"value":100}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":492618,"name":"Electric Attack","description":"For (Buff0-Time) seconds, your normal attacks additionally cause (Buff0-0) Wind damage.\n[SC_SKILLTIPS_492618]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576992,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502886]}}],"icon":"/assets/ui/rom-spells/576992.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-40","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":40,"keyItemId":542038,"sourceSkillId":492913,"name":"Lava Weapon","description":"Adds (Buff0-0) Fire damage to your normal attacks for (Buff0-Time) seconds. (The value of this damage varies considerably.)\n[SC_SKILLTIPS_492618]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577575,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503163],"components":[{"id":503163,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":186,"value":70}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":492913,"name":"Lava Weapon","description":"Adds (Buff0-0) Fire damage to your normal attacks for (Buff0-Time) seconds. (The value of this damage varies considerably.)\n[SC_SKILLTIPS_492618]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577575,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503163]}}],"icon":"/assets/ui/rom-spells/577575.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-45","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"passive","unlockLevel":45,"keyItemId":542068,"sourceSkillId":493000,"name":"Power Control","description":"Causes your Electric Attack to additionally increase your physical accuracy and your Lava Weapon to raise your physical critical hit rate.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577643,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":493000,"name":"Power Control","description":"Causes your Electric Attack to additionally increase your physical accuracy and your Lava Weapon to raise your physical critical hit rate.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577643,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577643.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-50","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"passive","unlockLevel":50,"keyItemId":542098,"sourceSkillId":499486,"name":"Wind Bastion","description":"When you use [499487], a defensive wind will protect you, lowering the physical damage inflicted upon you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577773,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":499486,"name":"Wind Bastion","description":"When you use [499487], a defensive wind will protect you, lowering the physical damage inflicted upon you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577773,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577773.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-60","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"elite","unlockLevel":60,"keyItemId":546734,"sourceSkillId":490062,"name":"Lightning Burn Weapon","description":"A special power that controls wind and fire. Instills flame and electricity in your weapon, but their power is reduced by 25%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500162,500163],"components":[{"id":500162,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":110,"clearFlags":1024,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":490063,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500163,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":490062,"name":"Lightning Burn Weapon","description":"A special power that controls wind and fire. Instills flame and electricity in your weapon, but their power is reduced by 25%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[500162,500163]}}],"icon":"/assets/ui/rom-spells/801261.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-mage-elite-70","classId":"rom-warrior","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546735,"sourceSkillId":499485,"name":"Possessed by Anger","description":"Makes your [499994] stackable and have an extra [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] bonus increase.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801309,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499485,"name":"Possessed by Anger","description":"Makes your [499994] stackable and have an extra [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] bonus increase.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801309,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801309.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-15","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":15,"keyItemId":541888,"sourceSkillId":491466,"name":"Defender's Roar","description":"Increases your and your party members' [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"health","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575244,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501872,506365],"components":[{"id":501872,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":120,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":102,"abilityModifiers":[{"type":8,"value":300}],"abilitySkillLevelArg":10,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495381,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":506365,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":120,"hateCost":-10,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491466,"name":"Defender's Roar","description":"Increases your and your party members' [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"health","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575244,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501872,506365]}}],"icon":"/assets/ui/rom-spells/575244.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-20","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":541918,"sourceSkillId":491469,"name":"Interrupting Strike","description":"Interrupts target's casting and causes (DMG0) points of damage. (The interrupted spell will enter a cooldown phase. If the interrupted spell has no cooldown, all spells will enter a cooldown time of 3 seconds.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":575556,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501875,502703],"components":[{"id":501875,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":30,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-16.4,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-16.4,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502703,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":491469,"name":"Interrupting Strike","description":"Interrupts target's casting and causes (DMG0) points of damage. (The interrupted spell will enter a cooldown phase. If the interrupted spell has no cooldown, all spells will enter a cooldown time of 3 seconds.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.164},"source":{"imageId":575556,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501875,502703]}}],"icon":"/assets/ui/rom-spells/575556.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-25","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":25,"keyItemId":541948,"sourceSkillId":491471,"name":"Magic Barrier Perfection","description":"Your Magic Barrier now also decreases the [SC_SKILLTIPS_MDMG] received.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575735,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":491471,"name":"Magic Barrier Perfection","description":"Your Magic Barrier now also decreases the [SC_SKILLTIPS_MDMG] received.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575735,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575735.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-30","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":541978,"sourceSkillId":492332,"name":"Bloodlust","description":"Convert 10% of your HP into 30 points of rage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"health","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575736,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501873],"components":[{"id":501873,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":18,"abilityModifiers":[{"type":8,"value":150}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":30,"fixedValue":0,"attack":{"type":2,"calculationType":4,"damagePower":30,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":492332,"name":"Bloodlust","description":"Convert 10% of your HP into 30 points of rage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"health","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575736,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501873]}}],"icon":"/assets/ui/rom-spells/575736.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-35","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":35,"keyItemId":542009,"sourceSkillId":492617,"name":"Opportunity","description":"When the target is Weakened, (DMG0) main hand weapon DPS is dealt to the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576993,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502884,502923],"components":[{"id":502884,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.4,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.4,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":6,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502923,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":492617,"name":"Opportunity","description":"When the target is Weakened, (DMG0) main hand weapon DPS is dealt to the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576993,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502884,502923]}}],"icon":"/assets/ui/rom-spells/576993.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-40","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":40,"keyItemId":542039,"sourceSkillId":492912,"name":"Blood Retention","description":"When you use Bloodlust, you'll gain 3 rage points every 2 seconds for 10 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577576,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":492912,"name":"Blood Retention","description":"When you use Bloodlust, you'll gain 3 rage points every 2 seconds for 10 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577576,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577576.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-45","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542069,"sourceSkillId":492998,"name":"Morale Boost","description":"Causes your Berserk to increase the [SC_SKILLTIPS_DMG] of nearby party members' next four attacks for 30 seconds. Disappears after four attacks or 30 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577644,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":492998,"name":"Morale Boost","description":"Causes your Berserk to increase the [SC_SKILLTIPS_DMG] of nearby party members' next four attacks for 30 seconds. Disappears after four attacks or 30 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577644,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577644.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-50","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":542099,"sourceSkillId":493249,"name":"Barbarian Battle Cry","description":"Causes multiple targets within a radius of 80 to fear your power, and lowers their [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-0)% for (Buff0-Time) seconds. If the target has been inflicted with Fear, your Slash and Probing Attack will cause additional damage.","target":"self","range":8,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577774,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503511],"components":[{"id":503511,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":1,"abilityModifiers":[{"type":173,"value":-2},{"type":44,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":493249,"name":"Barbarian Battle Cry","description":"Causes multiple targets within a radius of 80 to fear your power, and lowers their [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-0)% for (Buff0-Time) seconds. If the target has been inflicted with Fear, your Slash and Probing Attack will cause additional damage.","target":"self","range":8,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577774,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503511]}}],"icon":"/assets/ui/rom-spells/577774.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-60","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":60,"keyItemId":546736,"sourceSkillId":499488,"name":"Combat Expertise","description":"Stops your [499489] from reducing [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801262,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499488,"name":"Combat Expertise","description":"Stops your [499489] from reducing [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801262,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801262.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-priest-elite-70","classId":"rom-warrior","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546737,"sourceSkillId":499490,"name":"Blood Fury Battle Cry","description":"When you use [499992] it will carry an additional increase of [SC_SKILLTIPS_DPS] by (Buff1-622956)% and [SC_SKILLTIPS_CRI] by (Buff0-622956) points. Lasts for 15 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801310,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622956],"components":[{"id":622956,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":18,"value":30},{"type":23,"value":-1}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499490,"name":"Blood Fury Battle Cry","description":"When you use [499992] it will carry an additional increase of [SC_SKILLTIPS_DPS] by (Buff1-622956)% and [SC_SKILLTIPS_CRI] by (Buff0-622956) points. Lasts for 15 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801310,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622956]}}],"icon":"/assets/ui/rom-spells/801310.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-15","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"elite","unlockLevel":15,"keyItemId":541889,"sourceSkillId":491333,"name":"Throw Shield","description":"Throws your shield at the target causing (DMG0) main hand weapon DPS + (FixDMG-620344) x (shield's defense value) damage.\n(Must have a shield equipped)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575216,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620344],"components":[{"id":620344,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":491333,"name":"Throw Shield","description":"Throws your shield at the target causing (DMG0) main hand weapon DPS + (FixDMG-620344) x (shield's defense value) damage.\n(Must have a shield equipped)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575216,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620344]}}],"icon":"/assets/ui/rom-spells/575216.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-20","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"elite","unlockLevel":20,"keyItemId":541919,"sourceSkillId":491480,"name":"Blocking Stance","description":"Increases your chance to parry by (Buff0-0) points for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575558,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502007],"components":[{"id":502007,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":491480,"name":"Blocking Stance","description":"Increases your chance to parry by (Buff0-0) points for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575558,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502007]}}],"icon":"/assets/ui/rom-spells/575558.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-25","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"elite","unlockLevel":25,"keyItemId":541949,"sourceSkillId":491334,"name":"Ignore Pain","description":"Immune to Helpless, Stun, Root and Slow for (Buff0-Time) seconds.\n(Effect can only be removed if target has Movement Impairing Effect or Stun)\n\n[SC_SKILLTIPS_FEAR]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575217,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501805],"components":[{"id":501805,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":491334,"name":"Ignore Pain","description":"Immune to Helpless, Stun, Root and Slow for (Buff0-Time) seconds.\n(Effect can only be removed if target has Movement Impairing Effect or Stun)\n\n[SC_SKILLTIPS_FEAR]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575217,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501805]}}],"icon":"/assets/ui/rom-spells/575217.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-30","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541979,"sourceSkillId":491484,"name":"Shield Bash","description":"Immediately strike at the target with your shield causing (DMG0) main hand weapon DPS + (FixDMG-620345) x (shield's defense value) damage and restore you (DMG4) rage.\n(Must have a shield equipped)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575557,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620345,502012],"components":[{"id":620345,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.55,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.55,"damagePowerSkillLevelArg":6,"fixedValue":-0.1,"fixedType":12,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502012,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":30,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":5,"fixedValue":0,"attack":{"type":2,"calculationType":4,"damagePower":5,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491484,"name":"Shield Bash","description":"Immediately strike at the target with your shield causing (DMG0) main hand weapon DPS + (FixDMG-620345) x (shield's defense value) damage and restore you (DMG4) rage.\n(Must have a shield equipped)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575557,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620345,502012]}}],"icon":"/assets/ui/rom-spells/575557.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-35","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":35,"keyItemId":542010,"sourceSkillId":492661,"name":"Heroic Surprise Attack","description":"Your Surprise Attack generates additional rage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576994,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492661,"name":"Heroic Surprise Attack","description":"Your Surprise Attack generates additional rage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576994,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/576994.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-40","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":40,"keyItemId":542040,"sourceSkillId":492914,"name":"Concentrated Precision","description":"Increases [SC_SKILLTIPS_HIT] by (Buff0-0) and allows you to equip plate armor.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577577,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620374],"components":[{"id":620374,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":16,"value":10},{"type":99,"value":1}],"abilitySkillLevelArg":10.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":492914,"name":"Concentrated Precision","description":"Increases [SC_SKILLTIPS_HIT] by (Buff0-0) and allows you to equip plate armor.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577577,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620374]}}],"icon":"/assets/ui/rom-spells/577577.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-45","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":45,"keyItemId":542070,"sourceSkillId":493003,"name":"Fierce Attack","description":"When you hit the target with your Throw Shield, instantly decreases your target's [SC_SKILLTIPS_CRI_PASSIVE] for (Buff-Time-503253) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503312)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577645,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503253,503312],"components":[{"id":503253,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":1342177474,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":182,"value":-22}],"abilitySkillLevelArg":12.5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493053,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503312,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493003,"name":"Fierce Attack","description":"When you hit the target with your Throw Shield, instantly decreases your target's [SC_SKILLTIPS_CRI_PASSIVE] for (Buff-Time-503253) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503312)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577645,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503253,503312]}}],"icon":"/assets/ui/rom-spells/577645.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-50","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":50,"keyItemId":542100,"sourceSkillId":493251,"name":"Resist","description":"In Blocking Stance you will receive less physical damage, and there is an additional chance that your rage will increase.\n([SC_SKILLTIPS_CD_1](Buff-Time-503572)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577775,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503572],"components":[{"id":503572,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493251,"name":"Resist","description":"In Blocking Stance you will receive less physical damage, and there is an additional chance that your rage will increase.\n([SC_SKILLTIPS_CD_1](Buff-Time-503572)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577775,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503572]}}],"icon":"/assets/ui/rom-spells/577775.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-60","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546738,"sourceSkillId":499491,"name":"Whirlwind Battle Technique","description":"Reduces your [499989|Whirlwind's] rage by 25 and cooldown time by 15 seconds. If a shield is equipped then it increases aggro.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801263,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499491,"name":"Whirlwind Battle Technique","description":"Reduces your [499989|Whirlwind's] rage by 25 and cooldown time by 15 seconds. If a shield is equipped then it increases aggro.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801263,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801263.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-knight-elite-70","classId":"rom-warrior","secondaryClassId":"rom-knight","group":"passive","unlockLevel":70,"keyItemId":546739,"sourceSkillId":499492,"name":"Bullseye","description":"Makes your [499988] hits cause an additional Stun effect for (Buff-Time-622972) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801311,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622972],"components":[{"id":622972,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":2,"hateCost":0,"settingFlags":1342701634,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":499492,"name":"Bullseye","description":"Makes your [499988] hits cause an additional Stun effect for (Buff-Time-622972) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801311,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622972]}}],"icon":"/assets/ui/rom-spells/801311.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-15","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":15,"keyItemId":543016,"sourceSkillId":494031,"name":"Savage Strike","description":"Increases your [SC_SKILLTIPS_01] after you hit a target with a Surprise Attack.\n([SC_SKILLTIPS_CD_1](Buff-Time-506367)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579101,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506367],"components":[{"id":506367,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494031,"name":"Savage Strike","description":"Increases your [SC_SKILLTIPS_01] after you hit a target with a Surprise Attack.\n([SC_SKILLTIPS_CD_1](Buff-Time-506367)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579101,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506367]}}],"icon":"/assets/ui/rom-spells/579101.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-20","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":20,"keyItemId":543024,"sourceSkillId":494032,"name":"Attack Weakener","description":"Use when the target is Vulnerable to inflict (DMG0) main hand weapon DPS and reduce target's physical attack by (Buff4-0)% for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579102,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620346,504584,501520],"components":[{"id":620346,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504584,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501520,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494032,"name":"Attack Weakener","description":"Use when the target is Vulnerable to inflict (DMG0) main hand weapon DPS and reduce target's physical attack by (Buff4-0)% for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579102,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620346,504584,501520]}}],"icon":"/assets/ui/rom-spells/579102.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-25","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":25,"keyItemId":543032,"sourceSkillId":494033,"name":"Mental Bestiary","description":"Understand the structure of organisms, increasing the damage of your Slash attacks on vulnerable beasts and humanoid monsters.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579103,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494033,"name":"Mental Bestiary","description":"Understand the structure of organisms, increasing the damage of your Slash attacks on vulnerable beasts and humanoid monsters.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579103,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579103.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-30","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":30,"keyItemId":543040,"sourceSkillId":494324,"name":"Savage Whirlwind","description":"Harness primal natural forces to launch an attack. Inflicts (DMG0) main hand weapon DPS on target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579879,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503952],"components":[{"id":503952,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494324,"name":"Savage Whirlwind","description":"Harness primal natural forces to launch an attack. Inflicts (DMG0) main hand weapon DPS on target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579879,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503952]}}],"icon":"/assets/ui/rom-spells/579879.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-35","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":35,"keyItemId":543048,"sourceSkillId":494374,"name":"Wild Howl","description":"Upon hitting the target your Savage Whirlwind can temporary increase your own and your party members' [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG].\n([SC_SKILLTIPS_CD_1](Buff-Time-505168)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579880,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505168],"components":[{"id":505168,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494374,"name":"Wild Howl","description":"Upon hitting the target your Savage Whirlwind can temporary increase your own and your party members' [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG].\n([SC_SKILLTIPS_CD_1](Buff-Time-505168)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579880,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505168]}}],"icon":"/assets/ui/rom-spells/579880.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-40","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":40,"keyItemId":543056,"sourceSkillId":499495,"name":"Awakening of the Wild","description":"Renders you immune to Root and Slow effects for (Buff0-Time) seconds, and makes your next attack a critical attack.\n(Effect can only be removed if target has Movement Impairing Effect)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579881,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623004,623005],"components":[{"id":623004,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623005,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,64],"clearFlags":1057,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":499495,"name":"Awakening of the Wild","description":"Renders you immune to Root and Slow effects for (Buff0-Time) seconds, and makes your next attack a critical attack.\n(Effect can only be removed if target has Movement Impairing Effect)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579881,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623004,623005]}}],"icon":"/assets/ui/rom-spells/579881.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-45","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":45,"keyItemId":543064,"sourceSkillId":494624,"name":"Battle Creed","description":"Increases your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)% for (Buff0-Time) seconds. While the effect lasts, when you hit a target with Slash or Probing Attack, your attacks generate (Buff0-505845)% less aggro for (Buff-Time-505845) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-505846)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581098,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505208,505845,505846],"components":[{"id":505208,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505845,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":-15}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494972,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505846,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":494624,"name":"Battle Creed","description":"Increases your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)% for (Buff0-Time) seconds. While the effect lasts, when you hit a target with Slash or Probing Attack, your attacks generate (Buff0-505845)% less aggro for (Buff-Time-505845) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-505846)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581098,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505208,505845,505846]}}],"icon":"/assets/ui/rom-spells/581098.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-50","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543072,"sourceSkillId":494625,"name":"Air Tremor","description":"Coalesces the power within the surrounding atmosphere in your body and then releases it in an instant, inflicting (DMG0) main hand weapon DPS to all targets within a radius of 80.","target":"self","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581099,"sourceEffectType":1,"sourceTarget":0,"componentIds":[505209],"components":[{"id":505209,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494625,"name":"Air Tremor","description":"Coalesces the power within the surrounding atmosphere in your body and then releases it in an instant, inflicting (DMG0) main hand weapon DPS to all targets within a radius of 80.","target":"self","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581099,"sourceEffectType":1,"sourceTarget":0,"componentIds":[505209]}}],"icon":"/assets/ui/rom-spells/581099.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-60","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":60,"keyItemId":546740,"sourceSkillId":499493,"name":"Visceral Impact","description":"Makes your [499987] hits cause an additional reduction of [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801264,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499493,"name":"Visceral Impact","description":"Makes your [499987] hits cause an additional reduction of [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801264,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801264.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warden-elite-70","classId":"rom-warrior","secondaryClassId":"rom-warden","group":"passive","unlockLevel":70,"keyItemId":546741,"sourceSkillId":499494,"name":"Barbaric Execution","description":"Makes it possible for your [499986] hits to inflict an additional Stun effect for (Buff-Time-622974) seconds. The higher the level of [499986], the longer the effect works. Also increases critical hit rate by 50% against enemies with less than 30% HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801312,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622974],"components":[{"id":622974,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499494,"name":"Barbaric Execution","description":"Makes it possible for your [499986] hits to inflict an additional Stun effect for (Buff-Time-622974) seconds. The higher the level of [499986], the longer the effect works. Also increases critical hit rate by 50% against enemies with less than 30% HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801312,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622974]}}],"icon":"/assets/ui/rom-spells/801312.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-15","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543017,"sourceSkillId":494034,"name":"Rose Vine","description":"When the sharp rose vines entwine your weapon, your standard attacks cause your target to bleed, inflicting (Buff-Dot-504585) points of blood damage every 2 seconds for (Buff-Time-504585) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504712)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579104,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504543,504585,504712],"components":[{"id":504543,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"onAttackTrigger":{"rate":100,"rank":0,"id":495278},"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504585,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":1342185674,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494210,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":2,"dotType":0,"dotBase":-20,"dot":{"timeSeconds":2,"type":0,"base":-20,"skillLevelArg":10},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504712,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":268443648,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494034,"name":"Rose Vine","description":"When the sharp rose vines entwine your weapon, your standard attacks cause your target to bleed, inflicting (Buff-Dot-504585) points of blood damage every 2 seconds for (Buff-Time-504585) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504712)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579104,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504543,504585,504712]}}],"icon":"/assets/ui/rom-spells/579104.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-20","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":20,"keyItemId":543025,"sourceSkillId":494035,"name":"Tremor","description":"Use when target is Weakened to cause fierce tremors that inflict (DMG0) main hand weapon DPS. Each successful hit has a chance of reducing the target's [SC_SKILLTIPS_HIT] by (Buff4-0) points for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-506417)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579105,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504544,504586,502923,506417],"components":[{"id":504544,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504586,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":1073742018,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":16,"value":-6}],"abilitySkillLevelArg":12,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495409,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502923,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":70,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506417,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":494035,"name":"Tremor","description":"Use when target is Weakened to cause fierce tremors that inflict (DMG0) main hand weapon DPS. Each successful hit has a chance of reducing the target's [SC_SKILLTIPS_HIT] by (Buff4-0) points for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-506417)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579105,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504544,504586,502923,506417]}}],"icon":"/assets/ui/rom-spells/579105.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-25","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":25,"keyItemId":543033,"sourceSkillId":494036,"name":"Guardian's Pledge","description":"Temporarily increases you and your party members' [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0). Also raises [SC_SKILLTIPS_CRI_PASSIVE] by (Buff8-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579106,"sourceEffectType":1,"sourceTarget":0,"componentIds":[504545,506227,506228],"components":[{"id":504545,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":8,"value":40}],"abilitySkillLevelArg":22,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495287,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506227,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1}],"abilitySkillLevelArg":13,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506228,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":182,"value":22}],"abilitySkillLevelArg":12.5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494036,"name":"Guardian's Pledge","description":"Temporarily increases you and your party members' [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0). Also raises [SC_SKILLTIPS_CRI_PASSIVE] by (Buff8-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579106,"sourceEffectType":1,"sourceTarget":0,"componentIds":[504545,506227,506228]}}],"icon":"/assets/ui/rom-spells/579106.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-30","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":30,"keyItemId":543041,"sourceSkillId":494325,"name":"Redemption","description":"When you use your Probing Attack, physical and magical accuracy for all party members in a range of 100 will be increased by (Buff0-620359) for (Buff-Time-620359) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579882,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620359],"components":[{"id":620359,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":32,"abilityModifiers":[{"type":16,"value":10},{"type":195,"value":10}],"abilitySkillLevelArg":46,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494340,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494325,"name":"Redemption","description":"When you use your Probing Attack, physical and magical accuracy for all party members in a range of 100 will be increased by (Buff0-620359) for (Buff-Time-620359) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579882,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620359]}}],"icon":"/assets/ui/rom-spells/579882.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-35","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":35,"keyItemId":543049,"sourceSkillId":494376,"name":"Remove Magic","description":"Cleanses harmful magical effects from your target.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579883,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504903],"components":[{"id":504903,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":494376,"name":"Remove Magic","description":"Cleanses harmful magical effects from your target.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579883,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504903]}}],"icon":"/assets/ui/rom-spells/579883.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-40","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":40,"keyItemId":543057,"sourceSkillId":494377,"name":"Recovery of Life","description":"Your Whirlwind's cooldown time is reduced by 10 seconds, and the required rage is reduced by 10. Upon hitting the target, rage requirement for the skill is immediately decreased.\n([SC_SKILLTIPS_CD_1](Buff-Time-506368)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579884,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506368],"components":[{"id":506368,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494377,"name":"Recovery of Life","description":"Your Whirlwind's cooldown time is reduced by 10 seconds, and the required rage is reduced by 10. Upon hitting the target, rage requirement for the skill is immediately decreased.\n([SC_SKILLTIPS_CD_1](Buff-Time-506368)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579884,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506368]}}],"icon":"/assets/ui/rom-spells/579884.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-45","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":45,"keyItemId":543065,"sourceSkillId":494626,"name":"Resistance","description":"When you are attacked when you have the Berserk buff active, you will be able to completely resist the next attack.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581100,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494626,"name":"Resistance","description":"When you are attacked when you have the Berserk buff active, you will be able to completely resist the next attack.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581100,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581100.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-50","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"elite","unlockLevel":50,"keyItemId":543073,"sourceSkillId":494627,"name":"Stifle","description":"When the target is Vulnerable and is not able to respond in time your attack will deal him (DMG0) main hand weapon DPS. Additionally the next 10 times physical damage is dealt to the target it will be increased by 20%. Starting with the first attack the Stifle effect will gradually decrease by 2% with the overall time span being (Buff-Time-505906) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581101,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505680,501520,505906],"components":[{"id":505680,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501520,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":532480,"specialActionFlags":0,"assistType":69,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-55.35,"fixedValue":0,"summonCreatureId":0},{"id":505906,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":32834,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":494627,"name":"Stifle","description":"When the target is Vulnerable and is not able to respond in time your attack will deal him (DMG0) main hand weapon DPS. Additionally the next 10 times physical damage is dealt to the target it will be increased by 20%. Starting with the first attack the Stifle effect will gradually decrease by 2% with the overall time span being (Buff-Time-505906) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581101,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505680,501520,505906]}}],"icon":"/assets/ui/rom-spells/581101.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-60","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546742,"sourceSkillId":499496,"name":"Revival Slash","description":"When targets are hit by your [499497], there is a chance that you will receive a [493528] effect. However, the healing effect is reduced. \n(Can't be re-triggered while [493528] is in effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801265,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499496,"name":"Revival Slash","description":"When targets are hit by your [499497], there is a chance that you will receive a [493528] effect. However, the healing effect is reduced. \n(Can't be re-triggered while [493528] is in effect.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801265,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801265.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-druid-elite-70","classId":"rom-warrior","secondaryClassId":"rom-druid","group":"passive","unlockLevel":70,"keyItemId":546743,"sourceSkillId":499498,"name":"Irresistible Force","description":"When you use [499499] and a target is hit, there is a chance you will achieve a [499498] effect. This effect will increase your inflicted damage and lasts for (Buff-Time-623013) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-623014) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801313,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623013,623014],"components":[{"id":623013,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":195,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":2},{"type":205,"value":2}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623014,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499498,"name":"Irresistible Force","description":"When you use [499499] and a target is hit, there is a chance you will achieve a [499498] effect. This effect will increase your inflicted damage and lasts for (Buff-Time-623013) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-623014) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801313,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623013,623014]}}],"icon":"/assets/ui/rom-spells/801313.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-15","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":15,"keyItemId":545960,"sourceSkillId":498706,"name":"Rage Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If target is attacking you, the skill will increase your rage by (DMG4). If nothing is attacking then it will restore (DMG5) points of your focus. \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800120,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621447,621448,621449],"components":[{"id":621447,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621448,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":15,"fixedValue":0,"attack":{"type":2,"calculationType":4,"damagePower":15,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621449,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":15,"fixedValue":0,"attack":{"type":3,"calculationType":4,"damagePower":15,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498706,"name":"Rage Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target. If target is attacking you, the skill will increase your rage by (DMG4). If nothing is attacking then it will restore (DMG5) points of your focus. \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800120,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621447,621448,621449]}}],"icon":"/assets/ui/rom-spells/800120.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-20","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":20,"keyItemId":545961,"sourceSkillId":498707,"name":"Psychic Whirlwind","description":"Inflicts (DMG0) main hand weapon physical DPS on targets nearby the designated target. If target is in a Weakened state, then skill will cause extra damage. \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800129,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621476,501577,621480,621478],"components":[{"id":621476,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621480,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621478,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498707,"name":"Psychic Whirlwind","description":"Inflicts (DMG0) main hand weapon physical DPS on targets nearby the designated target. If target is in a Weakened state, then skill will cause extra damage. \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800129,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621476,501577,621480,621478]}}],"icon":"/assets/ui/rom-spells/800129.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-25","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":25,"keyItemId":545962,"sourceSkillId":498734,"name":"Divine Battle Spirit","description":"Earns (Buff0-Dot) rage every second for (Buff0-Time). \n(Effect disappears after you cross the line or change areas.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800130,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621477],"components":[{"id":621477,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"clearFlags":1072,"abilitySkillLevelArg":0,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":5},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498734,"name":"Divine Battle Spirit","description":"Earns (Buff0-Dot) rage every second for (Buff0-Time). \n(Effect disappears after you cross the line or change areas.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800130,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621477]}}],"icon":"/assets/ui/rom-spells/800130.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-30","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":30,"keyItemId":545963,"sourceSkillId":498735,"name":"Psychic Battle Cry","description":"Earns Psychic Torrent state. \nWhen you use an elite skill that inflicts area damage, party members in the damage area will earn Spirit Shield Protection. This effect will resist an amount of damage equal to (Buff-Shield-621479)% of the caster's healing bonus for (Buff-Time-621479) seconds. Shield can be stacked a maximum of 3 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":8000},"source":{"imageId":800131,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621478,621479],"components":[{"id":621478,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621479,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":33123,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":4,"effect":0,"point":50,"skillLevelArg":100}}]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498735,"name":"Psychic Battle Cry","description":"Earns Psychic Torrent state. \nWhen you use an elite skill that inflicts area damage, party members in the damage area will earn Spirit Shield Protection. This effect will resist an amount of damage equal to (Buff-Shield-621479)% of the caster's healing bonus for (Buff-Time-621479) seconds. Shield can be stacked a maximum of 3 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":8000},"source":{"imageId":800131,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621478,621479]}}],"icon":"/assets/ui/rom-spells/800131.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-35","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":35,"keyItemId":545964,"sourceSkillId":498739,"name":"Psychic Ghost Step","description":"Charges the target and inflicts (DMG0) main hand weapon physical DPS on nearby targets. If Divine Battle Spirit is in effect then additional damage is inflicted on most targets. \n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800132,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621483,621484,621477,621480],"components":[{"id":621483,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.3,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.3,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621484,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4163,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.2,"fixedValue":0,"summonCreatureId":0},{"id":621477,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"clearFlags":1072,"abilitySkillLevelArg":0,"dotTime":1,"dotType":2,"dotBase":5,"dot":{"timeSeconds":1,"type":2,"base":5,"skillLevelArg":5},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621480,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498739,"name":"Psychic Ghost Step","description":"Charges the target and inflicts (DMG0) main hand weapon physical DPS on nearby targets. If Divine Battle Spirit is in effect then additional damage is inflicted on most targets. \n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800132,"sourceEffectType":1,"sourceTarget":6,"componentIds":[621483,621484,621477,621480]}}],"icon":"/assets/ui/rom-spells/800132.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-40","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":40,"keyItemId":545965,"sourceSkillId":498740,"name":"Spirit-Cracking Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target and carries a Spirit Wound state. Every 2 seconds, this state inflicts (Buff4-Dot) physical damage on the target and increases the caster's rage by (Buff8-Dot). Lasts for (Buff4-Time). \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800133,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621487,621488,621489],"components":[{"id":621487,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621488,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-4,"dot":{"timeSeconds":2,"type":0,"base":-4,"skillLevelArg":45},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621489,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":75,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":2,"dotBase":4,"dot":{"timeSeconds":2,"type":2,"base":4,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498740,"name":"Spirit-Cracking Blow","description":"Inflicts (DMG0) main hand weapon physical DPS on target and carries a Spirit Wound state. Every 2 seconds, this state inflicts (Buff4-Dot) physical damage on the target and increases the caster's rage by (Buff8-Dot). Lasts for (Buff4-Time). \n[SC_SKILLTIPS_03]","target":"hostile","range":7.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800133,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621487,621488,621489]}}],"icon":"/assets/ui/rom-spells/800133.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-45","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":45,"keyItemId":545966,"sourceSkillId":498741,"name":"Lightning Spell","description":"Inflicts (DMG0) main hand weapon physical DPS on targets in range. Also increases [SC_SKILLTIPS_MOVE] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":7.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579904,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621490,621491,621480,621478],"components":[{"id":621490,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621491,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621480,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621478,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":498741,"name":"Lightning Spell","description":"Inflicts (DMG0) main hand weapon physical DPS on targets in range. Also increases [SC_SKILLTIPS_MOVE] by (Buff4-0)% for (Buff4-Time) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":7.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579904,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621490,621491,621480,621478]}}],"icon":"/assets/ui/rom-spells/579904.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-50","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":545967,"sourceSkillId":498742,"name":"Spirit Blade Storm","description":"Summons a Spirit Blade Storm that engulfs targets in range. Inflicts (DMG-621497) main hand weapon physical DPS for 6 seconds. Also reduces [SC_SKILLTIPS_MOVE] by (Buff0-621498)% for (Buff-Time-621498) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800204,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621496,621480,621478,621497,621498],"components":[{"id":621496,"magicFunc":6,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621480,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621478,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621497,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.2,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.2,"damagePowerSkillLevelArg":6.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621498,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498742,"name":"Spirit Blade Storm","description":"Summons a Spirit Blade Storm that engulfs targets in range. Inflicts (DMG-621497) main hand weapon physical DPS for 6 seconds. Also reduces [SC_SKILLTIPS_MOVE] by (Buff0-621498)% for (Buff-Time-621498) seconds. \n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800204,"sourceEffectType":1,"sourceTarget":0,"componentIds":[621496,621480,621478,621497,621498]}}],"icon":"/assets/ui/rom-spells/800204.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-60","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":60,"keyItemId":546744,"sourceSkillId":499827,"name":"Speed Slash","description":"There is a chance that [499828] will reset the cooldown timer of [498739].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801614,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":499827,"name":"Speed Slash","description":"There is a chance that [499828] will reset the cooldown timer of [498739].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801614,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801614.png","iconResolution":"native-interface-fdb"},{"id":"rom-warrior-rom-warlock-elite-70","classId":"rom-warrior","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":70,"keyItemId":546745,"sourceSkillId":499806,"name":"Excellent Combat Training","description":"The cooldown time of [499825] is reduced to 10 seconds, and each time [499826] hits a target, the cooldown time of [498742] is reduced by 3 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801615,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499806,"name":"Excellent Combat Training","description":"The cooldown time of [499825] is reduced to 10 seconds, and each time [499826] hits a target, the cooldown time of [498742] is reduced by 3 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801615,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801615.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-15","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":541890,"sourceSkillId":491337,"name":"Battle Instinct","description":"Temporarily increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575220,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501821,506361],"components":[{"id":501821,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":6,"value":20}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495379,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506361,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":165,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491337,"name":"Battle Instinct","description":"Temporarily increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575220,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501821,506361]}}],"icon":"/assets/ui/rom-spells/575220.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-20","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":541920,"sourceSkillId":491488,"name":"Master of Survival","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575705,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501889,506369],"components":[{"id":501889,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":8,"value":50}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":506369,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":491488,"name":"Master of Survival","description":"Increases [SC_SKILLTIPS_HP] by (current [SC_SKILLTIPS_HP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575705,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501889,506369]}}],"icon":"/assets/ui/rom-spells/575705.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-25","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":541950,"sourceSkillId":491489,"name":"Enhanced Throat Attack","description":"Your Throat Attack can cause an additional 4 seconds of Silence to the target, and also increases the range of Throat Attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575575,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":491489,"name":"Enhanced Throat Attack","description":"Your Throat Attack can cause an additional 4 seconds of Silence to the target, and also increases the range of Throat Attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575575,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575575.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-30","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":541980,"sourceSkillId":491491,"name":"Mental Focus","description":"Recovers (Buff0-Dot) focus points every 5 seconds for a total of (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575704,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501892],"components":[{"id":501892,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":120,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":40,"abilitySkillLevelArg":5,"dotTime":5,"dotType":3,"dotBase":5,"dot":{"timeSeconds":5,"type":3,"base":5,"skillLevelArg":11.2},"attackType":3,"damagePower":5,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":491491,"name":"Mental Focus","description":"Recovers (Buff0-Dot) focus points every 5 seconds for a total of (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575704,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501892]}}],"icon":"/assets/ui/rom-spells/575704.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-35","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542011,"sourceSkillId":492620,"name":"Target Lock","description":"Physical damage received by the target is increased by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576995,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502920],"components":[{"id":502920,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":492620,"name":"Target Lock","description":"Physical damage received by the target is increased by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576995,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502920]}}],"icon":"/assets/ui/rom-spells/576995.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-40","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":40,"keyItemId":542041,"sourceSkillId":492915,"name":"Gale","description":"Increases damage of Combo Shot and prevents you from being interrupted by an attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577578,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492915,"name":"Gale","description":"Increases damage of Combo Shot and prevents you from being interrupted by an attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577578,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577578.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-45","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":542071,"sourceSkillId":493006,"name":"Accurate Targeting","description":"When your Shot hits a target, it instantly increases your [SC_SKILLTIPS_01]. Effective for (Buff-Time-503255) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503254)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577646,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503255,503254],"components":[{"id":503255,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":12,"value":50}],"abilitySkillLevelArg":11,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493054,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"summonCreatureId":0},{"id":503254,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":493006,"name":"Accurate Targeting","description":"When your Shot hits a target, it instantly increases your [SC_SKILLTIPS_01]. Effective for (Buff-Time-503255) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503254)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577646,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503255,503254]}}],"icon":"/assets/ui/rom-spells/577646.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-50","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":542101,"sourceSkillId":493252,"name":"Recover Vitality","description":"Upon hitting a target with Snipe or Piercing Arrow, there is an additional chance that you will gain rage points. Also, upon hitting a target with Snipe, there is an additional chance of canceling beneficial effects on the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577776,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":493252,"name":"Recover Vitality","description":"Upon hitting a target with Snipe or Piercing Arrow, there is an additional chance that you will gain rage points. Also, upon hitting a target with Snipe, there is an additional chance of canceling beneficial effects on the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577776,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577776.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-60","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546748,"sourceSkillId":499511,"name":"Vital Reflection","description":"Increases damage inflicted by your [499512] on targets that have less than 30% HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801266,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499511,"name":"Vital Reflection","description":"Increases damage inflicted by your [499512] on targets that have less than 30% HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801266,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801266.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warrior-elite-70","classId":"rom-scout","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546749,"sourceSkillId":499513,"name":"Breathing Obstruction","description":"If a target uses a skill in the time allotted after being hit by your [490442], then that skills cooldown time will be increased by an extra (Buff-Time-623057) seconds. If the skill doesn't have a cooldown time then the cooldown times for all skills will be (Buff-Time-623060) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801382,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623057,623060],"components":[{"id":623057,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623060,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499513,"name":"Breathing Obstruction","description":"If a target uses a skill in the time allotted after being hit by your [490442], then that skills cooldown time will be increased by an extra (Buff-Time-623057) seconds. If the skill doesn't have a cooldown time then the cooldown times for all skills will be (Buff-Time-623060) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801382,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623057,623060]}}],"icon":"/assets/ui/rom-spells/801382.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-15","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":541891,"sourceSkillId":491493,"name":"Weak Spot","description":"Aiming at the target's weak spot inflicts (DMG0) ranged weapon DPS. Also increases your [SC_SKILLTIPS_CRI] by (Buff4-0) for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575572,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501894,501895],"components":[{"id":501894,"magicFunc":0,"magicType":4,"effectType":1,"effectTime":-1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":34,"abilityModifiers":[{"type":18,"value":5}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501895,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":34,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":491493,"name":"Weak Spot","description":"Aiming at the target's weak spot inflicts (DMG0) ranged weapon DPS. Also increases your [SC_SKILLTIPS_CRI] by (Buff4-0) for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575572,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501894,501895]}}],"icon":"/assets/ui/rom-spells/575572.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-20","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":541921,"sourceSkillId":491336,"name":"Blinding Powder","description":"Prevents your target from attacking for (Buff0-Time) seconds. \n(For players this effect lasts for (Buff1-Time) seconds.)\n(Effect will be removed when target is attacked)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575219,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501820,503840,502719],"components":[{"id":501820,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":126,"effectFlagWords":[2099,0],"clearFlags":2,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503840,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[51,0],"clearFlags":2,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":491336,"name":"Blinding Powder","description":"Prevents your target from attacking for (Buff0-Time) seconds. \n(For players this effect lasts for (Buff1-Time) seconds.)\n(Effect will be removed when target is attacked)","target":"hostile","range":10,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575219,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501820,503840,502719]}}],"icon":"/assets/ui/rom-spells/575219.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-25","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":541951,"sourceSkillId":492342,"name":"Lasso Master","description":"Your lasso now hinders the target from movement and attacks.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575561,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":492342,"name":"Lasso Master","description":"Your lasso now hinders the target from movement and attacks.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575561,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575561.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-30","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":541981,"sourceSkillId":491496,"name":"Sapping Arrow","description":"Decreases the target's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575576,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501897],"components":[{"id":501897,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":30,"settingFlags":66,"specialActionFlags":0,"assistType":114,"abilityModifiers":[{"type":170,"value":-1},{"type":135,"value":-1}],"abilitySkillLevelArg":28,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":491496,"name":"Sapping Arrow","description":"Decreases the target's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575576,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501897]}}],"icon":"/assets/ui/rom-spells/575576.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-35","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542012,"sourceSkillId":492621,"name":"Deadly Poison Bite","description":"The deadly poison on your arrow inflicts (DMG0) ranged weapon DPS. When the target is under the effect of [501690], Deadly Poison Bite will also cause (DMG4) ranged weapon DPS.","target":"hostile","range":16,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576996,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502890,620183,501690],"components":[{"id":502890,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.6,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620183,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.4,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501690,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":492621,"name":"Deadly Poison Bite","description":"The deadly poison on your arrow inflicts (DMG0) ranged weapon DPS. When the target is under the effect of [501690], Deadly Poison Bite will also cause (DMG4) ranged weapon DPS.","target":"hostile","range":16,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576996,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502890,620183,501690]}}],"icon":"/assets/ui/rom-spells/576996.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-40","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":40,"keyItemId":542042,"sourceSkillId":492916,"name":"Exploiting Shot","description":"When your Shot makes a critical hit, you increase your targets received Physical Damage by (Buff0-503169)%. Lasts (Buff-Time-503169) seconds. \n(This skill increases the target's received Physical Damage by a maximum of (Max-Buff0-503169)%.)\n([SC_SKILLTIPS_CD_1](Buff-Time-503453)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577579,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503169,503453],"components":[{"id":503169,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":1342177506,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":-2}],"abilitySkillLevelArg":14,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493245,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503453,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":492916,"name":"Exploiting Shot","description":"When your Shot makes a critical hit, you increase your targets received Physical Damage by (Buff0-503169)%. Lasts (Buff-Time-503169) seconds. \n(This skill increases the target's received Physical Damage by a maximum of (Max-Buff0-503169)%.)\n([SC_SKILLTIPS_CD_1](Buff-Time-503453)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577579,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503169,503453]}}],"icon":"/assets/ui/rom-spells/577579.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-45","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":542072,"sourceSkillId":493007,"name":"Deadly Counterattack","description":"When your Piercing Arrow hits the target, it instantly increases your [SC_SKILLTIPS_CRI].\n([SC_SKILLTIPS_CD_1](Buff-Time-503299)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577647,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503299],"components":[{"id":503299,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.65,"fixedValue":-20,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":493007,"name":"Deadly Counterattack","description":"When your Piercing Arrow hits the target, it instantly increases your [SC_SKILLTIPS_CRI].\n([SC_SKILLTIPS_CD_1](Buff-Time-503299)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577647,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503299]}}],"icon":"/assets/ui/rom-spells/577647.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-50","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":50,"keyItemId":542102,"sourceSkillId":493253,"name":"Poisonous Spit","description":"Keeps your Reflected Shot from losing reflective damage. Also, with every successful hit of your Reflected Shot or Combo Shot, the target will be poisoned if you are carrying Poison Powder.\n([SC_SKILLTIPS_CD_1](Buff-Time-503521)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577777,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503521],"components":[{"id":503521,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":493253,"name":"Poisonous Spit","description":"Keeps your Reflected Shot from losing reflective damage. Also, with every successful hit of your Reflected Shot or Combo Shot, the target will be poisoned if you are carrying Poison Powder.\n([SC_SKILLTIPS_CD_1](Buff-Time-503521)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577777,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503521]}}],"icon":"/assets/ui/rom-spells/577777.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-60","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546750,"sourceSkillId":499534,"name":"Master Reflected Shot","description":"Makes your [499535] fire 2 additional shots. Also increases damage from each [499535].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801267,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499534,"name":"Master Reflected Shot","description":"Makes your [499535] fire 2 additional shots. Also increases damage from each [499535].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801267,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801267.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-rogue-elite-70","classId":"rom-scout","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546751,"sourceSkillId":499536,"name":"Meridian Attack","description":"Makes your [499537] cause an additional decrease in the target's [SC_SKILLTIPS_MDMG]. Also prolongs the effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801315,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499536,"name":"Meridian Attack","description":"Makes your [499537] cause an additional decrease in the target's [SC_SKILLTIPS_MDMG]. Also prolongs the effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801315,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801315.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-15","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541892,"sourceSkillId":491507,"name":"Purifying Arrow","description":"Removes curses and harmful effects from target.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575564,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501908],"components":[{"id":501908,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-5,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491507,"name":"Purifying Arrow","description":"Removes curses and harmful effects from target.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575564,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501908]}}],"icon":"/assets/ui/rom-spells/575564.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-20","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":541922,"sourceSkillId":499538,"name":"Blazing Energy","description":"When activated, power of your Fire based spells increases by (Buff0-0)% and area damage increases by (Buff0-1)%. This effect lasts (Buff0-Time) seconds. If you shoot while this is in effect, there is a chance of casting Fireball automatically.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575706,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501907],"components":[{"id":501907,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":47,"value":2},{"type":208,"value":3}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-5,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":499538,"name":"Blazing Energy","description":"When activated, power of your Fire based spells increases by (Buff0-0)% and area damage increases by (Buff0-1)%. This effect lasts (Buff0-Time) seconds. If you shoot while this is in effect, there is a chance of casting Fireball automatically.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575706,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501907]}}],"icon":"/assets/ui/rom-spells/575706.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-25","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":541952,"sourceSkillId":491509,"name":"Ignite","description":"Inflicts ((DMG0), based on the DPS of the ranged weapon, + (FixDMG-501910) x intelligence) [SC_SKILLTIPS_FLAME] to multiple targets within range.\n\n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575699,"sourceEffectType":0,"sourceTarget":16,"componentIds":[501910],"components":[{"id":501910,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.35,"fixedValue":-0.2,"attack":{"type":0,"calculationType":3,"damagePower":-0.35,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491509,"name":"Ignite","description":"Inflicts ((DMG0), based on the DPS of the ranged weapon, + (FixDMG-501910) x intelligence) [SC_SKILLTIPS_FLAME] to multiple targets within range.\n\n[SC_SKILLTIPS_03]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575699,"sourceEffectType":0,"sourceTarget":16,"componentIds":[501910]}}],"icon":"/assets/ui/rom-spells/575699.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-30","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":541982,"sourceSkillId":491510,"name":"Gone with the Wind","description":"Wind magic makes the caster invisible for (Buff0-Time) seconds, clearing aggro and ending combat.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":575709,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501909,501567],"components":[{"id":501909,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501567,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":16,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491510,"name":"Gone with the Wind","description":"Wind magic makes the caster invisible for (Buff0-Time) seconds, clearing aggro and ending combat.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":575709,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501909,501567]}}],"icon":"/assets/ui/rom-spells/575709.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-35","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":35,"keyItemId":542013,"sourceSkillId":492623,"name":"Cursed Arrow","description":"Puts a poisonous curse on your arrow to inflict (DMG0) damage on the target, based on the DPS of the ranged weapon. After a hit, Healing effects on the target are reduced by (Buff4-0)% for (Buff4-Time) seconds.\n(Received healing of players is reduced by (Buff5-0)% for (Buff5-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50] \n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576997,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502880,502892,504248],"components":[{"id":502880,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.6,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502892,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504248,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":492623,"name":"Cursed Arrow","description":"Puts a poisonous curse on your arrow to inflict (DMG0) damage on the target, based on the DPS of the ranged weapon. After a hit, Healing effects on the target are reduced by (Buff4-0)% for (Buff4-Time) seconds.\n(Received healing of players is reduced by (Buff5-0)% for (Buff5-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50] \n[SC_SKILLTIPS_03]","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":576997,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502880,502892,504248]}}],"icon":"/assets/ui/rom-spells/576997.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-40","classId":"rom-scout","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":542043,"sourceSkillId":492918,"name":"Prairie Fire","description":"Increases damage of Ignite and has a chance of triggering Root on your opponent.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577581,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":492918,"name":"Prairie Fire","description":"Increases damage of Ignite and has a chance of triggering Root on your opponent.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577581,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577581.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-45","classId":"rom-scout","secondaryClassId":"rom-mage","group":"passive","unlockLevel":45,"keyItemId":542073,"sourceSkillId":493013,"name":"Wilderness Campaign","description":"When your Combo Shot makes a successful hit, it instantly increases the [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] of all nearby party members.\n([SC_SKILLTIPS_CD_1](Buff-Time-503292)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577648,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503292],"components":[{"id":503292,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":493013,"name":"Wilderness Campaign","description":"When your Combo Shot makes a successful hit, it instantly increases the [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] of all nearby party members.\n([SC_SKILLTIPS_CD_1](Buff-Time-503292)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577648,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503292]}}],"icon":"/assets/ui/rom-spells/577648.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-50","classId":"rom-scout","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":542103,"sourceSkillId":493255,"name":"Aggro Transfer","description":"Using Shot while Aggro Transfer is in effect triggers Secret Hatred, which lasts for (Buff-Time-503574) seconds. While Secret Hatred is in effect, you can transfer your aggro to a party member through the power of the wind.\nAggro Transfer is in effect for (Buff0-Time) seconds, during this time this party member will receive (Buff0-Dot) MP every 2 seconds. \n(In order to transfer aggro to a party member your target needs to be within a range of 500.)\n(Cannot be cast on yourself.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577778,"sourceEffectType":0,"sourceTarget":1,"componentIds":[501912,501911,503574],"components":[{"id":501912,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1048683,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":1,"dotBase":3,"dot":{"timeSeconds":2,"type":1,"base":3,"skillLevelArg":30},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501911,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503574,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":-100,"settingFlags":268435651,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1073741824,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":491512,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":493255,"name":"Aggro Transfer","description":"Using Shot while Aggro Transfer is in effect triggers Secret Hatred, which lasts for (Buff-Time-503574) seconds. While Secret Hatred is in effect, you can transfer your aggro to a party member through the power of the wind.\nAggro Transfer is in effect for (Buff0-Time) seconds, during this time this party member will receive (Buff0-Dot) MP every 2 seconds. \n(In order to transfer aggro to a party member your target needs to be within a range of 500.)\n(Cannot be cast on yourself.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577778,"sourceEffectType":0,"sourceTarget":1,"componentIds":[501912,501911,503574]}}],"icon":"/assets/ui/rom-spells/577778.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-60","classId":"rom-scout","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546752,"sourceSkillId":499539,"name":"Cross-Domain Discipline","description":"Allows you to equip a staff. When hitting a target with your [499540], there is a chance that it will carry ((DMG-623064) + (FixDMG-623064) * INT) wind damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801268,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623062,623064],"components":[{"id":623062,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":91,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623064,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499539,"name":"Cross-Domain Discipline","description":"Allows you to equip a staff. When hitting a target with your [499540], there is a chance that it will carry ((DMG-623064) + (FixDMG-623064) * INT) wind damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801268,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623062,623064]}}],"icon":"/assets/ui/rom-spells/801268.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-mage-elite-70","classId":"rom-scout","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546753,"sourceSkillId":499548,"name":"Wind Return","description":"Earns you a [499548] effect after your [499549] effect wears off. Increases [SC_SKILLTIPS_01] by (Buff0-623070)% and [SC_SKILLTIPS_02] by (Buff1-623070)%. Also recovers (Buff-Dot-623083) HP every two seconds. Lasts (Buff-Time-623070) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801316,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623070,623083],"components":[{"id":623070,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1},{"type":171,"value":1}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623083,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":20,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499548,"name":"Wind Return","description":"Earns you a [499548] effect after your [499549] effect wears off. Increases [SC_SKILLTIPS_01] by (Buff0-623070)% and [SC_SKILLTIPS_02] by (Buff1-623070)%. Also recovers (Buff-Dot-623083) HP every two seconds. Lasts (Buff-Time-623070) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801316,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623070,623083]}}],"icon":"/assets/ui/rom-spells/801316.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-15","classId":"rom-scout","secondaryClassId":"rom-priest","group":"elite","unlockLevel":15,"keyItemId":541893,"sourceSkillId":491504,"name":"Purifying Shot","description":"Removes harmful effects from target.","target":"friendly","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575574,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501904],"components":[{"id":501904,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":-30,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491504,"name":"Purifying Shot","description":"Removes harmful effects from target.","target":"friendly","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575574,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501904]}}],"icon":"/assets/ui/rom-spells/575574.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-20","classId":"rom-scout","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":541923,"sourceSkillId":491513,"name":"Mana Arrows","description":"Casting Mana Arrow to the party members of your range of 50 absorbs all damage equal to (Buff0-Shield)% of the targets' max HP for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":575562,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620186],"components":[{"id":620186,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":5,"skillLevelArg":3}}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":491513,"name":"Mana Arrows","description":"Casting Mana Arrow to the party members of your range of 50 absorbs all damage equal to (Buff0-Shield)% of the targets' max HP for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":575562,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620186]}}],"icon":"/assets/ui/rom-spells/575562.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-25","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":25,"keyItemId":541953,"sourceSkillId":492344,"name":"Sniper","description":"Reduces casting time of Snipe by 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575563,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":492344,"name":"Sniper","description":"Reduces casting time of Snipe by 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575563,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575563.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-30","classId":"rom-scout","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":541983,"sourceSkillId":491335,"name":"Spiritual Leader","description":"Raises the speed of physical attacks and spell casting of you and your party members by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":30,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575218,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501819],"components":[{"id":501819,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":25,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":9,"abilityModifiers":[{"type":23,"value":-2},{"type":51,"value":-2}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":491335,"name":"Spiritual Leader","description":"Raises the speed of physical attacks and spell casting of you and your party members by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":30,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575218,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501819]}}],"icon":"/assets/ui/rom-spells/575218.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-35","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":542014,"sourceSkillId":492622,"name":"Vampiric Transformation","description":"Transforms the blood drawn by your Vampire Arrows into heals for your own group members.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576998,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":492622,"name":"Vampiric Transformation","description":"Transforms the blood drawn by your Vampire Arrows into heals for your own group members.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576998,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/576998.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-40","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":40,"keyItemId":542044,"sourceSkillId":492917,"name":"Target Neck","description":"Extends the range of your Neck Strike, but requires long range weapons.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577582,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":492917,"name":"Target Neck","description":"Extends the range of your Neck Strike, but requires long range weapons.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577582,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577582.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-45","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542074,"sourceSkillId":493010,"name":"Drums of War","description":"Each time you hit your target with a Shot, it instantly increases the [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] of party members near you. Effective for (Buff-Time-503258) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503310)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577649,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503258,503310],"components":[{"id":503258,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":1342177379,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20},{"type":20,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503310,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":493010,"name":"Drums of War","description":"Each time you hit your target with a Shot, it instantly increases the [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] of party members near you. Effective for (Buff-Time-503258) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503310)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577649,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503258,503310]}}],"icon":"/assets/ui/rom-spells/577649.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-50","classId":"rom-scout","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":542104,"sourceSkillId":493254,"name":"Aggro Lead","description":"Using Shot while Aggro Lead is in effect triggers Secret Hatred, which lasts for (Buff-Time-503574) seconds. While Secret Hatred is in effect, you can transfer your aggro to a party member through the power of the wind.\nAggro Lead is in effect for (Buff0-Time) seconds, during this time [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] suffered by this party member are decreased by (Buff0-0)%. (Cannot be cast on yourself.)\n(In order to transfer aggro to a party member your target needs to be within a range of 500.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577779,"sourceEffectType":0,"sourceTarget":1,"componentIds":[501901,509801,501900,503574],"components":[{"id":501901,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":2},{"type":142,"value":0}],"abilitySkillLevelArg":8,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":509801,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":268959969,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":0},{"type":142,"value":2}],"abilitySkillLevelArg":8,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497698,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501900,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503574,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":-100,"settingFlags":268435651,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1073741824,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":491512,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":493254,"name":"Aggro Lead","description":"Using Shot while Aggro Lead is in effect triggers Secret Hatred, which lasts for (Buff-Time-503574) seconds. While Secret Hatred is in effect, you can transfer your aggro to a party member through the power of the wind.\nAggro Lead is in effect for (Buff0-Time) seconds, during this time [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] suffered by this party member are decreased by (Buff0-0)%. (Cannot be cast on yourself.)\n(In order to transfer aggro to a party member your target needs to be within a range of 500.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577779,"sourceEffectType":0,"sourceTarget":1,"componentIds":[501901,509801,501900,503574]}}],"icon":"/assets/ui/rom-spells/577779.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-60","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":60,"keyItemId":546754,"sourceSkillId":499552,"name":"Revival Engraving","description":"Increases your companions' [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-623087)%, reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MDMG] by (Buff1-623087)% after a target is hit by your [490443]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801269,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623087],"components":[{"id":623087,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":144,"value":3},{"type":142,"value":3},{"type":143,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499552,"name":"Revival Engraving","description":"Increases your companions' [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-623087)%, reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MDMG] by (Buff1-623087)% after a target is hit by your [490443]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801269,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623087]}}],"icon":"/assets/ui/rom-spells/801269.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-priest-elite-70","classId":"rom-scout","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546755,"sourceSkillId":499555,"name":"Screen Attack","description":"Causes an additional (Buff0-623089)% increase in damage inflicted by your and your friendly targets' [499578]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801317,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623089],"components":[{"id":623089,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":2},{"type":192,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499555,"name":"Screen Attack","description":"Causes an additional (Buff0-623089)% increase in damage inflicted by your and your friendly targets' [499578]. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801317,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623089]}}],"icon":"/assets/ui/rom-spells/801317.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-15","classId":"rom-scout","secondaryClassId":"rom-knight","group":"elite","unlockLevel":15,"keyItemId":541894,"sourceSkillId":491516,"name":"Repelling Arrow","description":"Repelling your target Roots it for (Buff4-Time) seconds and inflicts (DMG0) ranged weapon DPS.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575573,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502016,502013,503847],"components":[{"id":502016,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":2,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502013,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilityModifiers":[{"type":0,"value":-60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503847,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilityModifiers":[{"type":0,"value":-60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":491516,"name":"Repelling Arrow","description":"Repelling your target Roots it for (Buff4-Time) seconds and inflicts (DMG0) ranged weapon DPS.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575573,"sourceEffectType":1,"sourceTarget":6,"componentIds":[502016,502013,503847]}}],"icon":"/assets/ui/rom-spells/575573.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-20","classId":"rom-scout","secondaryClassId":"rom-knight","group":"elite","unlockLevel":20,"keyItemId":541924,"sourceSkillId":499558,"name":"Healing Shot","description":"Fires one Shot at the target causing (DMG0) ranged weapon DPS. When it hits, it will also heal the party member with the lowest maximum HP by (DMG-501888) + (FixDMG-501888) x (ranged weapon damage).","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575703,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620194,623090,501888],"components":[{"id":620194,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623090,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501888,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":23,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0.2,"attack":{"type":0,"calculationType":5,"damagePower":30,"damagePowerSkillLevelArg":18,"fixedValue":0.2,"fixedType":3,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":499558,"name":"Healing Shot","description":"Fires one Shot at the target causing (DMG0) ranged weapon DPS. When it hits, it will also heal the party member with the lowest maximum HP by (DMG-501888) + (FixDMG-501888) x (ranged weapon damage).","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575703,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620194,623090,501888]}}],"icon":"/assets/ui/rom-spells/575703.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-25","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":25,"keyItemId":541954,"sourceSkillId":492346,"name":"Enhanced Armor Perfection","description":"Enhanced Armor now lasts (Buff-Time-501823) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575568,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501823],"components":[{"id":501823,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":2,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":492346,"name":"Enhanced Armor Perfection","description":"Enhanced Armor now lasts (Buff-Time-501823) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575568,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501823]}}],"icon":"/assets/ui/rom-spells/575568.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-30","classId":"rom-scout","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541984,"sourceSkillId":491519,"name":"Mana Conversion","description":"Converts mana into (DMG0) focus points.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":5,"percentage":true},{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575701,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502019],"components":[{"id":502019,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":10,"fixedValue":0,"attack":{"type":3,"calculationType":4,"damagePower":10,"damagePowerSkillLevelArg":18,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491519,"name":"Mana Conversion","description":"Converts mana into (DMG0) focus points.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":5,"percentage":true},{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575701,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502019]}}],"icon":"/assets/ui/rom-spells/575701.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-35","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":35,"keyItemId":542015,"sourceSkillId":492624,"name":"Mana Recovery","description":"Gives your Healing Shots an additional chance of recovering mana.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576999,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492624,"name":"Mana Recovery","description":"Gives your Healing Shots an additional chance of recovering mana.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":576999,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/576999.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-40","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":40,"keyItemId":542045,"sourceSkillId":490431,"name":"Armor-Piercing Arrow","description":"Extends the range of your Disarmament. The damage caused is increased according to the DPS of the ranged weapon. (Requires ranged weapon.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577583,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":490431,"name":"Armor-Piercing Arrow","description":"Extends the range of your Disarmament. The damage caused is increased according to the DPS of the ranged weapon. (Requires ranged weapon.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577583,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577583.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-45","classId":"rom-scout","secondaryClassId":"rom-knight","group":"elite","unlockLevel":45,"keyItemId":542075,"sourceSkillId":493016,"name":"Escape Danger","description":"For (Buff0-Time) seconds you are immune against Helpless, Stun, Root, and Slow effects.\n(Effect can only be removed if target has Movement Impairing Effect or Stun)\n[SC_SKILLTIPS_FEAR]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577650,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503261],"components":[{"id":503261,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493016,"name":"Escape Danger","description":"For (Buff0-Time) seconds you are immune against Helpless, Stun, Root, and Slow effects.\n(Effect can only be removed if target has Movement Impairing Effect or Stun)\n[SC_SKILLTIPS_FEAR]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577650,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503261]}}],"icon":"/assets/ui/rom-spells/577650.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-50","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":50,"keyItemId":542105,"sourceSkillId":493256,"name":"Spirit Meld","description":"Keeps your Reflected Shots from losing reflective damage. Also, with every successful hit of your Reflected Shot, it boosts the [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] of party members within a radius of 100.\n([SC_SKILLTIPS_CD_1](Buff-Time-503563)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577780,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503563],"components":[{"id":503563,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493256,"name":"Spirit Meld","description":"Keeps your Reflected Shots from losing reflective damage. Also, with every successful hit of your Reflected Shot, it boosts the [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] of party members within a radius of 100.\n([SC_SKILLTIPS_CD_1](Buff-Time-503563)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577780,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503563]}}],"icon":"/assets/ui/rom-spells/577780.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-60","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546756,"sourceSkillId":499561,"name":"Blessed Quiver","description":"Reduces your [499562] cooldown time by 4 seconds. Also increases your [499562] critical hit rate. When your [499562] is a critical attack, it will definitely trigger a [492624].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801270,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499561,"name":"Blessed Quiver","description":"Reduces your [499562] cooldown time by 4 seconds. Also increases your [499562] critical hit rate. When your [499562] is a critical attack, it will definitely trigger a [492624].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801270,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801270.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-knight-elite-70","classId":"rom-scout","secondaryClassId":"rom-knight","group":"passive","unlockLevel":70,"keyItemId":546757,"sourceSkillId":499564,"name":"Transformation Torrent","description":"When you use [499565], it affects all companions in a range of 90 by recovering Energy, Rage, and Focus.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801318,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":499564,"name":"Transformation Torrent","description":"When you use [499565], it affects all companions in a range of 90 by recovering Energy, Rage, and Focus.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801318,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801318.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-15","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":15,"keyItemId":543018,"sourceSkillId":494037,"name":"Thorn Arrow","description":"Use it when you have a Briar Shield to turn the thorns that surround you into thorn arrows that attack your target inflicting (DMG0) ranged weapon DPS. (The Briar Shield will not disappear.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579107,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504546],"components":[{"id":504546,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.8,"damagePowerSkillLevelArg":5.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494037,"name":"Thorn Arrow","description":"Use it when you have a Briar Shield to turn the thorns that surround you into thorn arrows that attack your target inflicting (DMG0) ranged weapon DPS. (The Briar Shield will not disappear.)","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579107,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504546]}}],"icon":"/assets/ui/rom-spells/579107.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-20","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":20,"keyItemId":543026,"sourceSkillId":494038,"name":"Entling Offering","description":"For (Buff0-Time) seconds, each time your Shot hits a target, the target will also take ranged damage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":200,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579108,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504547],"components":[{"id":504547,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494038,"name":"Entling Offering","description":"For (Buff0-Time) seconds, each time your Shot hits a target, the target will also take ranged damage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":200,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579108,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504547]}}],"icon":"/assets/ui/rom-spells/579108.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-25","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":25,"keyItemId":543034,"sourceSkillId":494039,"name":"Hidden Peril","description":"You attack your target using the forest for cover, inflicting (DMG0) ranged weapon DPS on the target. There is a chance of reducing the casting time of Snipe to 1 second the next time you cast it.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579109,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504548,504588],"components":[{"id":504548,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504588,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494039,"name":"Hidden Peril","description":"You attack your target using the forest for cover, inflicting (DMG0) ranged weapon DPS on the target. There is a chance of reducing the casting time of Snipe to 1 second the next time you cast it.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579109,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504548,504588]}}],"icon":"/assets/ui/rom-spells/579109.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-30","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":30,"keyItemId":543042,"sourceSkillId":494326,"name":"Charged Power","description":"Your Charged Chop can be activated from a distance, but cooldown is changed to 15 seconds and it also causes a Knockdown effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579885,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494326,"name":"Charged Power","description":"Your Charged Chop can be activated from a distance, but cooldown is changed to 15 seconds and it also causes a Knockdown effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579885,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579885.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-35","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":35,"keyItemId":543050,"sourceSkillId":494378,"name":"Natural Care","description":"Permanently increases the amount of healing you receive by (Buff0-0)%, and also increases your ranged weapon damage by (Buff4-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579886,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504905,505169],"components":[{"id":504905,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":144,"value":1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505169,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":52,"value":1}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494378,"name":"Natural Care","description":"Permanently increases the amount of healing you receive by (Buff0-0)%, and also increases your ranged weapon damage by (Buff4-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579886,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504905,505169]}}],"icon":"/assets/ui/rom-spells/579886.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-40","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":40,"keyItemId":543058,"sourceSkillId":494379,"name":"Hide Scent","description":"While merged with your surrounding, all enemies will lose interest in you allowing you to leave combat for (Buff0-Time) seconds and erasing all aggro. Additionally, your next Hidden Peril damage is increased by (Buff0-505194)% for (Buff4-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":579887,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504906,505193,501567,505194],"components":[{"id":504906,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505193,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501567,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":16,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505194,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":8193,"abilityModifiers":[{"type":173,"value":20}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":494379,"name":"Hide Scent","description":"While merged with your surrounding, all enemies will lose interest in you allowing you to leave combat for (Buff0-Time) seconds and erasing all aggro. Additionally, your next Hidden Peril damage is increased by (Buff0-505194)% for (Buff4-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":579887,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504906,505193,501567,505194]}}],"icon":"/assets/ui/rom-spells/579887.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-45","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":45,"keyItemId":543066,"sourceSkillId":494628,"name":"Wind Attack","description":"Your Combo Shots cannot be interrupted by damage. Also, when you make a critical hit it will additionally decrease the target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE].\n([SC_SKILLTIPS_CD_1](Buff-Time-507327)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581102,"sourceEffectType":2,"sourceTarget":0,"componentIds":[507327],"components":[{"id":507327,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":494628,"name":"Wind Attack","description":"Your Combo Shots cannot be interrupted by damage. Also, when you make a critical hit it will additionally decrease the target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE].\n([SC_SKILLTIPS_CD_1](Buff-Time-507327)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581102,"sourceEffectType":2,"sourceTarget":0,"componentIds":[507327]}}],"icon":"/assets/ui/rom-spells/581102.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-50","classId":"rom-scout","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543074,"sourceSkillId":494629,"name":"Gryphon Bash","description":"Like a mighty gryphon using its sharp claws to attack an enemy, it shoots a fierce arrow, causing (DMG0) ranged weapon DPS. When the target is struck, it may also damage all targets within a radius of 80.\n(This skill has a fairly high chance to make a critical hit.)","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581103,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620195],"components":[{"id":620195,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":10,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494629,"name":"Gryphon Bash","description":"Like a mighty gryphon using its sharp claws to attack an enemy, it shoots a fierce arrow, causing (DMG0) ranged weapon DPS. When the target is struck, it may also damage all targets within a radius of 80.\n(This skill has a fairly high chance to make a critical hit.)","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581103,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620195]}}],"icon":"/assets/ui/rom-spells/581103.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-60","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":60,"keyItemId":546758,"sourceSkillId":499571,"name":"Deep Roots","description":"Increases the distance of your [499573] reflected shot to 180. Also each reflected shot has a a chance to root the enemy for (Buff-Time-623114) seconds. \n(When the reflected shot target is a player, the rooting effect is reduced.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801271,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623114],"components":[{"id":623114,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499571,"name":"Deep Roots","description":"Increases the distance of your [499573] reflected shot to 180. Also each reflected shot has a a chance to root the enemy for (Buff-Time-623114) seconds. \n(When the reflected shot target is a player, the rooting effect is reduced.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801271,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623114]}}],"icon":"/assets/ui/rom-spells/801271.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-warden-elite-70","classId":"rom-scout","secondaryClassId":"rom-warden","group":"passive","unlockLevel":70,"keyItemId":546759,"sourceSkillId":499575,"name":"Forest Guidance","description":"When a target is hit by your [499576], it causes a (Buff0-623117)% increase in [SC_SKILLTIPS_DMG] received by the enemy. Lasts for (Buff-Time-623117) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801319,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623117],"components":[{"id":623117,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":143,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499575,"name":"Forest Guidance","description":"When a target is hit by your [499576], it causes a (Buff0-623117)% increase in [SC_SKILLTIPS_DMG] received by the enemy. Lasts for (Buff-Time-623117) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801319,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623117]}}],"icon":"/assets/ui/rom-spells/801319.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-15","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543019,"sourceSkillId":494040,"name":"Curse Breaker","description":"Removes target's cursed status. (Requires ranged weapon.)","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579110,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504549],"components":[{"id":504549,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494040,"name":"Curse Breaker","description":"Removes target's cursed status. (Requires ranged weapon.)","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579110,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504549]}}],"icon":"/assets/ui/rom-spells/579110.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-20","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":20,"keyItemId":543027,"sourceSkillId":499583,"name":"Snake Poison Arrow","description":"Turns your magic into poisonous snakes, inflicting (DMG0) ranged weapon DPS and (Buff4-Dot) poison every 2 seconds for (Buff4-Time) seconds. When the target is affected by Vampire Arrows, it will stun the target for (Buff8-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579111,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504550,504590,504589,501690],"components":[{"id":504550,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504590,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-11,"dot":{"timeSeconds":2,"type":0,"base":-11,"skillLevelArg":24},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504589,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777331,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501690,"magicFunc":1,"magicType":5,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":499583,"name":"Snake Poison Arrow","description":"Turns your magic into poisonous snakes, inflicting (DMG0) ranged weapon DPS and (Buff4-Dot) poison every 2 seconds for (Buff4-Time) seconds. When the target is affected by Vampire Arrows, it will stun the target for (Buff8-Time) seconds.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579111,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504550,504590,504589,501690]}}],"icon":"/assets/ui/rom-spells/579111.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-25","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":25,"keyItemId":543035,"sourceSkillId":494042,"name":"Unbinding Magic","description":"Removes Root and Slow from target's body. (Requires ranged weapon)\n(Effective only when the Movement Impairing Effect on the target is displayed.)","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579112,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504551],"components":[{"id":504551,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494042,"name":"Unbinding Magic","description":"Removes Root and Slow from target's body. (Requires ranged weapon)\n(Effective only when the Movement Impairing Effect on the target is displayed.)","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579112,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504551]}}],"icon":"/assets/ui/rom-spells/579112.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-30","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":30,"keyItemId":543043,"sourceSkillId":494327,"name":"Elven Eye","description":"Temporarily increases critical physical hit rate by (Buff0-0) points for (Buff0-Time) seconds. Every second costs (Buff0-Dot)% mana.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579888,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504719],"components":[{"id":504719,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":34,"clearFlags":2048,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":22,"dotTime":2,"dotType":6,"dotBase":-5,"dot":{"timeSeconds":2,"type":6,"base":-5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494327,"name":"Elven Eye","description":"Temporarily increases critical physical hit rate by (Buff0-0) points for (Buff0-Time) seconds. Every second costs (Buff0-Dot)% mana.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579888,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504719]}}],"icon":"/assets/ui/rom-spells/579888.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-35","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":35,"keyItemId":543051,"sourceSkillId":494380,"name":"Devour Blood","description":"A successful hit of your Vampire Arrows restores MP to party members in a range of 100.\n([SC_SKILLTIPS_CD_1](Buff-Time-506370)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579889,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506370],"components":[{"id":506370,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":494380,"name":"Devour Blood","description":"A successful hit of your Vampire Arrows restores MP to party members in a range of 100.\n([SC_SKILLTIPS_CD_1](Buff-Time-506370)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579889,"sourceEffectType":2,"sourceTarget":0,"componentIds":[506370]}}],"icon":"/assets/ui/rom-spells/579889.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-40","classId":"rom-scout","secondaryClassId":"rom-druid","group":"elite","unlockLevel":40,"keyItemId":543059,"sourceSkillId":494529,"name":"Focus","description":"For (Buff-Time-504908) seconds 50% of your wisdom will be converted into [SC_SKILLTIPS_01].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579890,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505273,504908],"components":[{"id":505273,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504908,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":268435559,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":12,"value":1}],"abilitySkillLevelArg":100,"triggers":{"onTimeMagicId":494681,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494529,"name":"Focus","description":"For (Buff-Time-504908) seconds 50% of your wisdom will be converted into [SC_SKILLTIPS_01].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579890,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505273,504908]}}],"icon":"/assets/ui/rom-spells/579890.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-45","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":45,"keyItemId":543067,"sourceSkillId":494919,"name":"Archer Blessing","description":"When your shot hits a target, the damage received from the next attack for 3 party members or pets is reduced.\n([SC_SKILLTIPS_CD_1](Buff-Time-505718)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581104,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505718],"components":[{"id":505718,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494919,"name":"Archer Blessing","description":"When your shot hits a target, the damage received from the next attack for 3 party members or pets is reduced.\n([SC_SKILLTIPS_CD_1](Buff-Time-505718)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581104,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505718]}}],"icon":"/assets/ui/rom-spells/581104.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-50","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":50,"keyItemId":543075,"sourceSkillId":499584,"name":"Ancestor's Blessing","description":"Permanently reduces the damage you receive by (Buff0-0)% and when you strike a target with Piercing Arrow, the aggro caused by the next action of the party member with the second most aggro will be reduced.\n([SC_SKILLTIPS_CD_1](Buff-Time-503954)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581105,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505684,503954],"components":[{"id":505684,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":1},{"type":143,"value":1}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503954,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":499584,"name":"Ancestor's Blessing","description":"Permanently reduces the damage you receive by (Buff0-0)% and when you strike a target with Piercing Arrow, the aggro caused by the next action of the party member with the second most aggro will be reduced.\n([SC_SKILLTIPS_CD_1](Buff-Time-503954)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581105,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505684,503954]}}],"icon":"/assets/ui/rom-spells/581105.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-60","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546760,"sourceSkillId":499587,"name":"Efficiency Guidance","description":"When your [499592] is triggered, it recovers (DMG-623151) of your companions' Rage, Focus, and Energy. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801272,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623151],"components":[{"id":623151,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":2,"fixedValue":0,"attack":{"type":2,"calculationType":4,"damagePower":2,"damagePowerSkillLevelArg":28,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499587,"name":"Efficiency Guidance","description":"When your [499592] is triggered, it recovers (DMG-623151) of your companions' Rage, Focus, and Energy. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801272,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623151]}}],"icon":"/assets/ui/rom-spells/801272.png","iconResolution":"native-interface-fdb"},{"id":"rom-scout-rom-druid-elite-70","classId":"rom-scout","secondaryClassId":"rom-druid","group":"passive","unlockLevel":70,"keyItemId":546761,"sourceSkillId":499594,"name":"Soul Blessing","description":"When your [494919] is triggered, it affects your entire party and has an enhanced effect.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801320,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499594,"name":"Soul Blessing","description":"When your [494919] is triggered, it affects your entire party and has an enhanced effect.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801320,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801320.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-15","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":15,"keyItemId":541895,"sourceSkillId":491526,"name":"Throwing Mastery","description":"Your Throw can now Slow the target for 5 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575245,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491526,"name":"Throwing Mastery","description":"Your Throw can now Slow the target for 5 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575245,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575245.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-20","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":541925,"sourceSkillId":491527,"name":"One-Hand Axe Mastery","description":"One-hand axe damage increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575734,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620315],"components":[{"id":620315,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":61,"value":5}],"abilitySkillLevelArg":26,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":491527,"name":"One-Hand Axe Mastery","description":"One-hand axe damage increases by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575734,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620315]}}],"icon":"/assets/ui/rom-spells/575734.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-25","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":541955,"sourceSkillId":492349,"name":"Whirlwind Mastery","description":"Reduces the cost of Whirlwind by 20 rage and decreases cooldown by 20 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575738,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":492349,"name":"Whirlwind Mastery","description":"Reduces the cost of Whirlwind by 20 rage and decreases cooldown by 20 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575738,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575738.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-30","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":541985,"sourceSkillId":491339,"name":"Death's Touch","description":"For (Buff8-Time) seconds causes (DMG4) main hand weapon DPS + (FixDMG4) x Dexterity physical damage to your target, reduces healing effects received by the target by (Buff0-0)% and increases your [SC_SKILLTIPS_01] by (Buff8-0)%.\n(This skill reduces the target's received healing by a maximum of (Max-Buff0-501815)%.)\n(Received healing of players is reduced by (Buff1-0)% for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575222,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501815,506383,620285,506222],"components":[{"id":501815,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":48,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506383,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":48,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620285,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":7,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":506222,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":491339,"name":"Death's Touch","description":"For (Buff8-Time) seconds causes (DMG4) main hand weapon DPS + (FixDMG4) x Dexterity physical damage to your target, reduces healing effects received by the target by (Buff0-0)% and increases your [SC_SKILLTIPS_01] by (Buff8-0)%.\n(This skill reduces the target's received healing by a maximum of (Max-Buff0-501815)%.)\n(Received healing of players is reduced by (Buff1-0)% for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575222,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501815,506383,620285,506222]}}],"icon":"/assets/ui/rom-spells/575222.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-35","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542016,"sourceSkillId":492625,"name":"Poisonous Infection","description":"While Poisonous, each successful hit can poison the target inflicting (Buff4-Dot) poison damage every 2 seconds. Additionally (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage is dealt to the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577000,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620287,502894,500715],"components":[{"id":620287,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.85,"damagePowerSkillLevelArg":7.5,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502894,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":113,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-12,"dot":{"timeSeconds":2,"type":0,"base":-12,"skillLevelArg":35},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":500715,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":106,"onAttackTrigger":{"rate":50,"rank":0,"id":490357},"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":492625,"name":"Poisonous Infection","description":"While Poisonous, each successful hit can poison the target inflicting (Buff4-Dot) poison damage every 2 seconds. Additionally (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage is dealt to the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577000,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620287,502894,500715]}}],"icon":"/assets/ui/rom-spells/577000.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-40","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":542046,"sourceSkillId":492920,"name":"Poison Spray","description":"Can be used when the target is Poisoned from a Poisonous Infection to spread the poison to nearby targets and cause (DMG-503223) damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":2},"source":{"imageId":577591,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503222,503223],"components":[{"id":503222,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503223,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-200,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492920,"name":"Poison Spray","description":"Can be used when the target is Poisoned from a Poisonous Infection to spread the poison to nearby targets and cause (DMG-503223) damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":2},"source":{"imageId":577591,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503222,503223]}}],"icon":"/assets/ui/rom-spells/577591.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-45","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":45,"keyItemId":542076,"sourceSkillId":493017,"name":"Decay","description":"Can be used when Poisonous. It causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage and increases your [SC_SKILLTIPS_CRI] by (Buff8-0) and [SC_SKILLTIPS_CRI_POWER] by (Buff4-0)%. Effective for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503309)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577651,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620288,503263,506231,503309],"components":[{"id":620288,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.85,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.85,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503263,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":1}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493179,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506231,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503309,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":493017,"name":"Decay","description":"Can be used when Poisonous. It causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage and increases your [SC_SKILLTIPS_CRI] by (Buff8-0) and [SC_SKILLTIPS_CRI_POWER] by (Buff4-0)%. Effective for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503309)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577651,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620288,503263,506231,503309]}}],"icon":"/assets/ui/rom-spells/577651.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-50","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":542106,"sourceSkillId":493257,"name":"Reclaim Energy","description":"When you use Shadowstab, you have a chance of recovering energy. When you use Poisonous Infection, there is a chance that your rage will increase.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577781,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":493257,"name":"Reclaim Energy","description":"When you use Shadowstab, you have a chance of recovering energy. When you use Poisonous Infection, there is a chance that your rage will increase.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577781,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577781.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-60","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546762,"sourceSkillId":499476,"name":"Toxic Splash","description":"Makes [499477] trigger a [493296] effect that causes damage and poisons all surrounding enemies.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801273,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499476,"name":"Toxic Splash","description":"Makes [499477] trigger a [493296] effect that causes damage and poisons all surrounding enemies.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801273,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801273.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warrior-elite-70","classId":"rom-rogue","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546763,"sourceSkillId":499480,"name":"Poison Battle Technique","description":"If target hit by your [499481] has a [499476] effect, then extra damage is inflicted.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801321,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499480,"name":"Poison Battle Technique","description":"If target hit by your [499481] has a [499476] effect, then extra damage is inflicted.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801321,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801321.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-15","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":15,"keyItemId":545984,"sourceSkillId":498826,"name":"Confusion Mechanism","description":"Creates a Confusion Mechanism near the target. This mechanism forces the target to attack it and reduces the target's [SC_SKILLTIPS_DEF] by (Buff0-621600)% and [SC_SKILLTIPS_MDEF] by (Buff0-621600)% in the process. Confusion Mechanism exists for 3 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800184,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623430,621601,621653,621600],"components":[{"id":623430,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[262144,0],"abilityModifiers":[{"type":135,"value":-5},{"type":170,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621601,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621600,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[262144,0],"abilityModifiers":[{"type":135,"value":-5},{"type":170,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498826,"name":"Confusion Mechanism","description":"Creates a Confusion Mechanism near the target. This mechanism forces the target to attack it and reduces the target's [SC_SKILLTIPS_DEF] by (Buff0-621600)% and [SC_SKILLTIPS_MDEF] by (Buff0-621600)% in the process. Confusion Mechanism exists for 3 seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800184,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623430,621601,621653,621600]}}],"icon":"/assets/ui/rom-spells/800184.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-20","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":545985,"sourceSkillId":498828,"name":"Foot Mechanism","description":"Creates a Foot Mechanism under the caster's feet. When a a friendly target hits the mechanism, it will increase [SC_SKILLTIPS_MOVE] by (Buff0-621605)% for (Buff-Time-621605) seconds. This mechanism will affect a maximum of 6 friendly targets or last for 30 seconds then disappear.","target":"self","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800185,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623432,621604,621653,621605],"components":[{"id":623432,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621604,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621605,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498828,"name":"Foot Mechanism","description":"Creates a Foot Mechanism under the caster's feet. When a a friendly target hits the mechanism, it will increase [SC_SKILLTIPS_MOVE] by (Buff0-621605)% for (Buff-Time-621605) seconds. This mechanism will affect a maximum of 6 friendly targets or last for 30 seconds then disappear.","target":"self","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800185,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623432,621604,621653,621605]}}],"icon":"/assets/ui/rom-spells/800185.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-25","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":25,"keyItemId":545986,"sourceSkillId":498830,"name":"Stepping Mechanism","description":"Creates a Stepping Mechanism under the caster's feet. When a target passes through the mechanism, it will activate and create a Slow area which reduces the [SC_SKILLTIPS_MOVE] of targets in the area by (Buff0-621608)%. This mechanism lasts for 10 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800186,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623429,621606,621653,621608],"components":[{"id":623429,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621606,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621608,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":2,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498830,"name":"Stepping Mechanism","description":"Creates a Stepping Mechanism under the caster's feet. When a target passes through the mechanism, it will activate and create a Slow area which reduces the [SC_SKILLTIPS_MOVE] of targets in the area by (Buff0-621608)%. This mechanism lasts for 10 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800186,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623429,621606,621653,621608]}}],"icon":"/assets/ui/rom-spells/800186.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-30","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":30,"keyItemId":545987,"sourceSkillId":498833,"name":"Silent Rune Bomb","description":"Drops a Silent Rune Bomb that inflicts (DMG0) main hand weapon [SC_SKILLTIPS_NONE] DPS on targets in the area. Also carries a Silenced effect for (Buff4-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800187,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621609,621610,621653],"components":[{"id":621609,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621610,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":22,"effectFlagWords":[1,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498833,"name":"Silent Rune Bomb","description":"Drops a Silent Rune Bomb that inflicts (DMG0) main hand weapon [SC_SKILLTIPS_NONE] DPS on targets in the area. Also carries a Silenced effect for (Buff4-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800187,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621609,621610,621653]}}],"icon":"/assets/ui/rom-spells/800187.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-35","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":35,"keyItemId":545988,"sourceSkillId":498834,"name":"Pulse Rune Bomb","description":"Drops a Pulse Rune Bomb that inflicts (DMG0) main hand weapon [SC_SKILLTIPS_NONE] DPS on targets in the area. Also carries a Stunned effect for (Buff4-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800188,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621609,621611,621653],"components":[{"id":621609,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621611,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498834,"name":"Pulse Rune Bomb","description":"Drops a Pulse Rune Bomb that inflicts (DMG0) main hand weapon [SC_SKILLTIPS_NONE] DPS on targets in the area. Also carries a Stunned effect for (Buff4-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800188,"sourceEffectType":1,"sourceTarget":16,"componentIds":[621609,621611,621653]}}],"icon":"/assets/ui/rom-spells/800188.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-40","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"passive","unlockLevel":40,"keyItemId":545989,"sourceSkillId":498836,"name":"Mechanism Activation Spike","description":"Each time an elite skill is used , your next normal attack will cause extra damage. Lasts for (Buff-Time-621613) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800189,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621613],"components":[{"id":621613,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":181,"value":100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498836,"name":"Mechanism Activation Spike","description":"Each time an elite skill is used , your next normal attack will cause extra damage. Lasts for (Buff-Time-621613) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800189,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621613]}}],"icon":"/assets/ui/rom-spells/800189.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-45","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":45,"keyItemId":545990,"sourceSkillId":498837,"name":"Burying Mechanism","description":"Creates a Burying Mechanism under the caster's feet. When a target passes through the mechanism, it activates and increases the damage received by the target by (Buff0-621651)%. It also reduces the target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE] by (Buff2-621651) for (Buff-Time-621651) seconds. This mechanism lasts for 25 seconds. \n\n(Only one mechanism can exist at a time.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800190,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623431,621614,621653,621651],"components":[{"id":623431,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621614,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621651,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":-10},{"type":143,"value":-10},{"type":183,"value":-100},{"type":182,"value":-100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498837,"name":"Burying Mechanism","description":"Creates a Burying Mechanism under the caster's feet. When a target passes through the mechanism, it activates and increases the damage received by the target by (Buff0-621651)%. It also reduces the target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE] by (Buff2-621651) for (Buff-Time-621651) seconds. This mechanism lasts for 25 seconds. \n\n(Only one mechanism can exist at a time.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800190,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623431,621614,621653,621651]}}],"icon":"/assets/ui/rom-spells/800190.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-50","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"passive","unlockLevel":50,"keyItemId":545991,"sourceSkillId":498839,"name":"Nerve Gear","description":"Every time an elite skill is used, it increases [SC_SKILLTIPS_DPS] by (Buff0-621652)% and [SC_SKILLTIPS_DOGEP] by (Buff1-621652)% for (Buff-Time-621652) seconds. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800191,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621652],"components":[{"id":621652,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-5},{"type":198,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498839,"name":"Nerve Gear","description":"Every time an elite skill is used, it increases [SC_SKILLTIPS_DPS] by (Buff0-621652)% and [SC_SKILLTIPS_DOGEP] by (Buff1-621652)% for (Buff-Time-621652) seconds. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800191,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621652]}}],"icon":"/assets/ui/rom-spells/800191.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-60","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"passive","unlockLevel":60,"keyItemId":546778,"sourceSkillId":499817,"name":"Guidance Feedback","description":"Each time the mechanism is triggered it reduces the cooldown time of all mechanism skills to 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801620,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":499817,"name":"Guidance Feedback","description":"Each time the mechanism is triggered it reduces the cooldown time of all mechanism skills to 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801620,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801620.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-champion-elite-70","classId":"rom-rogue","secondaryClassId":"rom-champion","group":"elite","unlockLevel":70,"keyItemId":546779,"sourceSkillId":499816,"name":"Electrocution Mechanism","description":"Creates a mechanism at the casting location that continuously releases electrical shocks to enemies within a range of 60 at a maximum of three targets per second. The electrical shocks inflict (DMG-623471) main hand weapon DPS for (Buff-Time-623479) seconds.\n[SC_SKILLTIPS_03]\n(Affected targets will be in a state of Electrocution)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801621,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623470,621653,623471,623479],"components":[{"id":623470,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621653,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498835,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623471,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":8388608,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-5,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-5,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623479,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":5,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":499815,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":499816,"name":"Electrocution Mechanism","description":"Creates a mechanism at the casting location that continuously releases electrical shocks to enemies within a range of 60 at a maximum of three targets per second. The electrical shocks inflict (DMG-623471) main hand weapon DPS for (Buff-Time-623479) seconds.\n[SC_SKILLTIPS_03]\n(Affected targets will be in a state of Electrocution)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":45000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801621,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623470,621653,623471,623479]}}],"icon":"/assets/ui/rom-spells/801621.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-15","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":15,"keyItemId":541896,"sourceSkillId":491530,"name":"Deadly Shot","description":"Increases your Shot's critical hit rate by 30%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575565,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491530,"name":"Deadly Shot","description":"Increases your Shot's critical hit rate by 30%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575565,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575565.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-20","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":541926,"sourceSkillId":491532,"name":"Slit Throat","description":"Your Throat Attack now also Silences the target for 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575739,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":491532,"name":"Slit Throat","description":"Your Throat Attack now also Silences the target for 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575739,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575739.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-25","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":541956,"sourceSkillId":491528,"name":"Energy Thief","description":"Every normal attack restores 20 points of energy. This effect will last (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575560,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501924],"components":[{"id":501924,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"onAttackTrigger":{"rate":100,"rank":1,"id":491529},"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":491528,"name":"Energy Thief","description":"Every normal attack restores 20 points of energy. This effect will last (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575560,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501924]}}],"icon":"/assets/ui/rom-spells/575560.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-30","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":541986,"sourceSkillId":491525,"name":"Combat Master","description":"Raises your [SC_SKILLTIPS_CRI] by (Buff0-0) and enhances [SC_SKILLTIPS_CRI_POWER] by (Buff4-0)% for (Buff0-Time) seconds.\n(This skill increases [SC_SKILLTIPS_CRI_POWER] by a maximum of (Max-Buff0-506223)%.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575566,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501921,506223],"components":[{"id":501921,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":34,"abilityModifiers":[{"type":18,"value":25}],"abilitySkillLevelArg":15.3,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495281,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506223,"magicFunc":1,"magicType":4,"effectType":1,"effectTime":900,"hateCost":-10,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":491525,"name":"Combat Master","description":"Raises your [SC_SKILLTIPS_CRI] by (Buff0-0) and enhances [SC_SKILLTIPS_CRI_POWER] by (Buff4-0)% for (Buff0-Time) seconds.\n(This skill increases [SC_SKILLTIPS_CRI_POWER] by a maximum of (Max-Buff0-506223)%.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575566,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501921,506223]}}],"icon":"/assets/ui/rom-spells/575566.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-35","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":542017,"sourceSkillId":492626,"name":"Substitute","description":"Conjures a substitute for you for (Buff0-Time) seconds to take 1 physical attack for you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":20000},"source":{"imageId":577001,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620305],"components":[{"id":620305,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":1,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":492626,"name":"Substitute","description":"Conjures a substitute for you for (Buff0-Time) seconds to take 1 physical attack for you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":20000},"source":{"imageId":577001,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620305]}}],"icon":"/assets/ui/rom-spells/577001.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-40","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":542047,"sourceSkillId":492922,"name":"Tongue Poison","description":"Using [492922] on your target causes the target's Casting Time to increase by (Buff0-0)% for (Buff0-Time) seconds.\n(Casting time of players increases by (Buff1-0)% for (Buff1-Time) seconds.)\n(Consumes one poison bottle.)","target":"hostile","range":12,"castTimeMs":1000,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577594,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503180,504246],"components":[{"id":503180,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504246,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":492922,"name":"Tongue Poison","description":"Using [492922] on your target causes the target's Casting Time to increase by (Buff0-0)% for (Buff0-Time) seconds.\n(Casting time of players increases by (Buff1-0)% for (Buff1-Time) seconds.)\n(Consumes one poison bottle.)","target":"hostile","range":12,"castTimeMs":1000,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577594,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503180,504246]}}],"icon":"/assets/ui/rom-spells/577594.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-45","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":542077,"sourceSkillId":493019,"name":"Coerce","description":"The energy cost for using Low Blow is reduced by 5. When your target's HP drops below 30%, using Low Blow on your target will increase the damage of your physical attack by (Buff0-503264)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577652,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503264],"components":[{"id":503264,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":8192,"abilityModifiers":[{"type":173,"value":2}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":493019,"name":"Coerce","description":"The energy cost for using Low Blow is reduced by 5. When your target's HP drops below 30%, using Low Blow on your target will increase the damage of your physical attack by (Buff0-503264)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577652,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503264]}}],"icon":"/assets/ui/rom-spells/577652.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-50","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":50,"keyItemId":542107,"sourceSkillId":493258,"name":"Wraith Attack","description":"Your Shadowstab will damage 2 targets at once. However, damage done to the second target will be half.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577782,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493258,"name":"Wraith Attack","description":"Your Shadowstab will damage 2 targets at once. However, damage done to the second target will be half.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577782,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577782.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-60","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546764,"sourceSkillId":499611,"name":"Paralysis Attack","description":"Transforms your [490347] to arrow use.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801274,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499611,"name":"Paralysis Attack","description":"Transforms your [490347] to arrow use.","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801274,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801274.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-scout-elite-70","classId":"rom-rogue","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546765,"sourceSkillId":499482,"name":"Shadow Figure","description":"Summons a real [499501] on the spot when a [499501] is used. The [499501] exists for (Buff-Time-620305) seconds and maintains a [499503] with a range of 70. After it is attacked 5 times it will blow up, causing damage and [503174] for (Buff-Time-503174) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801322,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620305,503174],"components":[{"id":620305,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":1,"skillLevelArg":0}},{"id":503174,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[67,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499482,"name":"Shadow Figure","description":"Summons a real [499501] on the spot when a [499501] is used. The [499501] exists for (Buff-Time-620305) seconds and maintains a [499503] with a range of 70. After it is attacked 5 times it will blow up, causing damage and [503174] for (Buff-Time-503174) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801322,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620305,503174]}}],"icon":"/assets/ui/rom-spells/801322.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-15","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541897,"sourceSkillId":491178,"name":"Enchanted Throw","description":"Enchants your projectile weapons so that every normal attack will carry additional [490309] damage. \n(Launching during an attack will consume one projectile weapon.)\n(This effect is mutually exclusive with [490329].)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801383,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501279,501274],"components":[{"id":501279,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":163,"specialActionFlags":0,"assistType":106,"onAttackTrigger":{"rate":100,"rank":0,"id":492506},"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":491185,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501274,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":35,"specialActionFlags":0,"assistType":106,"onAttackTrigger":{"rate":100,"rank":0,"id":492506},"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491178,"name":"Enchanted Throw","description":"Enchants your projectile weapons so that every normal attack will carry additional [490309] damage. \n(Launching during an attack will consume one projectile weapon.)\n(This effect is mutually exclusive with [490329].)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801383,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501279,501274]}}],"icon":"/assets/ui/rom-spells/801383.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-20","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":541927,"sourceSkillId":491180,"name":"Enlivened Blade","description":"Launches an enchanted projectile at the specified area and causes (DMG0) main hand weapon DPS + (FixDMG0) * [SC_SKILLTIPS_THROWDMG] physical damage to a maximum of 5 enemies in the area. If the attack causes damage to more than 3 enemies, then the skill's cooldown time is reduced by half. \n(Consumes one projectile weapon.)","target":"self","range":20,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801359,"sourceEffectType":1,"sourceTarget":16,"componentIds":[501276,502598],"components":[{"id":501276,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-1,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":7,"fixedValue":-1,"fixedType":4,"fixedDamageSkillLevelArg":7,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502598,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"effectFlagWords":[2,0],"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":491180,"name":"Enlivened Blade","description":"Launches an enchanted projectile at the specified area and causes (DMG0) main hand weapon DPS + (FixDMG0) * [SC_SKILLTIPS_THROWDMG] physical damage to a maximum of 5 enemies in the area. If the attack causes damage to more than 3 enemies, then the skill's cooldown time is reduced by half. \n(Consumes one projectile weapon.)","target":"self","range":20,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801359,"sourceEffectType":1,"sourceTarget":16,"componentIds":[501276,502598]}}],"icon":"/assets/ui/rom-spells/801359.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-25","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"passive","unlockLevel":25,"keyItemId":541957,"sourceSkillId":491181,"name":"Evil Intent","description":"Enables you to use [491182] in a battle, but it will have a 90 second cooldown time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801384,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491181,"name":"Evil Intent","description":"Enables you to use [491182] in a battle, but it will have a 90 second cooldown time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801384,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801384.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-30","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":541987,"sourceSkillId":491183,"name":"Day of Rain","description":"Launches a projectile at all surrounding enemies and causes (DMG0) projectile DPS + (FixDMG0) x [SC_SKILLTIPS_THROWDMG] physical damage. Every time [490309] is used, the skill's cooldown time can be reduced by 1 second. If [491178] is used in conjunction, then it only has a 50% hit rate. \n(Consumes 2 projectiles.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":25000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801363,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501278,502598],"components":[{"id":501278,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":-1,"attack":{"type":0,"calculationType":2,"damagePower":-1,"damagePowerSkillLevelArg":7,"fixedValue":-1,"fixedType":4,"fixedDamageSkillLevelArg":7,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502598,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"effectFlagWords":[2,0],"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491183,"name":"Day of Rain","description":"Launches a projectile at all surrounding enemies and causes (DMG0) projectile DPS + (FixDMG0) x [SC_SKILLTIPS_THROWDMG] physical damage. Every time [490309] is used, the skill's cooldown time can be reduced by 1 second. If [491178] is used in conjunction, then it only has a 50% hit rate. \n(Consumes 2 projectiles.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":25000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801363,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501278,502598]}}],"icon":"/assets/ui/rom-spells/801363.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-35","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":542018,"sourceSkillId":491184,"name":"Vengeance Sting","description":"If you are attacked while [491178] is in effect, this will inflict (DMG-502595) main hand weapon DPS + (FixDMG-502595) * [SC_SKILLTIPS_THROWDMG] physical damage to your attacker. You will also receive a [502596] effect which reduces received [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-502596)%. Lasts (Buff-Time-502596) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801385,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502595,502596],"components":[{"id":502595,"magicFunc":0,"magicType":0,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-1,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":7,"fixedValue":-1,"fixedType":4,"fixedDamageSkillLevelArg":7,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0},{"id":502596,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":10},{"type":143,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":491184,"name":"Vengeance Sting","description":"If you are attacked while [491178] is in effect, this will inflict (DMG-502595) main hand weapon DPS + (FixDMG-502595) * [SC_SKILLTIPS_THROWDMG] physical damage to your attacker. You will also receive a [502596] effect which reduces received [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-502596)%. Lasts (Buff-Time-502596) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801385,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502595,502596]}}],"icon":"/assets/ui/rom-spells/801385.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-40","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":542048,"sourceSkillId":491186,"name":"Life Rope Throw","description":"Reduces the interval time of [491187] to 0.5 seconds and increases the number of throws to 4. \nConsumes four projectile weapons each time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801386,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":491186,"name":"Life Rope Throw","description":"Reduces the interval time of [491187] to 0.5 seconds and increases the number of throws to 4. \nConsumes four projectile weapons each time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801386,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801386.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-45","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":542078,"sourceSkillId":498024,"name":"Create Opportunity","description":"Increase [SC_SKILLTIPS_CRI] by (Buff0-0) for (Buff0-Time) seconds, and there is a chance to stun the target for (Buff-Time-503267) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577653,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620301,503267],"components":[{"id":620301,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"onAttackTrigger":{"rate":100,"rank":5,"id":490851},"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503267,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":4,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777331,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":498024,"name":"Create Opportunity","description":"Increase [SC_SKILLTIPS_CRI] by (Buff0-0) for (Buff0-Time) seconds, and there is a chance to stun the target for (Buff-Time-503267) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577653,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620301,503267]}}],"icon":"/assets/ui/rom-spells/577653.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-50","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"passive","unlockLevel":50,"keyItemId":542108,"sourceSkillId":491188,"name":"Disabling Blade","description":"Renders enemies that are being attacked by [491180] and [491183] unable to carry out physical attacks and use physical skills, and slows their [SC_SKILLTIPS_MOVE] by (Buff0-502598)% for a period of time. Lasts for (Buff-Time-502598) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801387,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502598],"components":[{"id":502598,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"effectFlagWords":[2,0],"abilityModifiers":[{"type":24,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":491188,"name":"Disabling Blade","description":"Renders enemies that are being attacked by [491180] and [491183] unable to carry out physical attacks and use physical skills, and slows their [SC_SKILLTIPS_MOVE] by (Buff0-502598)% for a period of time. Lasts for (Buff-Time-502598) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801387,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502598]}}],"icon":"/assets/ui/rom-spells/801387.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-60","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":60,"keyItemId":546766,"sourceSkillId":497206,"name":"Instant Shadow","description":"This effect can be triggered after you do a dodge maneuver. It quickly conceals you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":15,"percentage":false},{"resource":"mana","amount":6,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801275,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502597],"components":[{"id":502597,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":52,"effectFlagWords":[16896,0],"clearFlags":11,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":497206,"name":"Instant Shadow","description":"This effect can be triggered after you do a dodge maneuver. It quickly conceals you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":15,"percentage":false},{"resource":"mana","amount":6,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801275,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502597]}}],"icon":"/assets/ui/rom-spells/801275.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-mage-elite-70","classId":"rom-rogue","secondaryClassId":"rom-mage","group":"elite","unlockLevel":70,"keyItemId":546767,"sourceSkillId":497205,"name":"Illusion Blade Dance","description":"After this is cast, you enter a [491189] state that lasts for (Buff-Time-502599) seconds. It will also cause (DMG-502577) projectile DPS + (FixDMG-502577) x [SC_SKILLTIPS_THROWDMG] physical damage to surrounding enemies every 2 seconds. While in effect, it also increases [SC_SKILLTIPS_DPS] by (Buff0-0)% and critical damage by (Buff0-1)%. \n(Consumes 10 projectiles.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801323,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502599,502577],"components":[{"id":502599,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":103,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-2},{"type":19,"value":5}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":491189,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502577,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":-1,"attack":{"type":0,"calculationType":2,"damagePower":-1,"damagePowerSkillLevelArg":7,"fixedValue":-1,"fixedType":4,"fixedDamageSkillLevelArg":7,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":497205,"name":"Illusion Blade Dance","description":"After this is cast, you enter a [491189] state that lasts for (Buff-Time-502599) seconds. It will also cause (DMG-502577) projectile DPS + (FixDMG-502577) x [SC_SKILLTIPS_THROWDMG] physical damage to surrounding enemies every 2 seconds. While in effect, it also increases [SC_SKILLTIPS_DPS] by (Buff0-0)% and critical damage by (Buff0-1)%. \n(Consumes 10 projectiles.) \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":801323,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502599,502577]}}],"icon":"/assets/ui/rom-spells/801323.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-15","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"elite","unlockLevel":15,"keyItemId":541898,"sourceSkillId":491536,"name":"Quickness Aura","description":"Your and your party members' dodge rate raises by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575559,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501932],"components":[{"id":501932,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":31,"abilityModifiers":[{"type":198,"value":2}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491536,"name":"Quickness Aura","description":"Your and your party members' dodge rate raises by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":25,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575559,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501932]}}],"icon":"/assets/ui/rom-spells/575559.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-20","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":20,"keyItemId":541928,"sourceSkillId":491539,"name":"Wound Tear","description":"Raises your Wound Attack's critical hit rate by 30%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575740,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":491539,"name":"Wound Tear","description":"Raises your Wound Attack's critical hit rate by 30%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575740,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575740.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-25","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":25,"keyItemId":541958,"sourceSkillId":491537,"name":"Shadow Walker","description":"You can use Sneak Attack during battle. The energy cost is reduced by 10, but the cooldown is increased by 10 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575741,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":491537,"name":"Shadow Walker","description":"You can use Sneak Attack during battle. The energy cost is reduced by 10, but the cooldown is increased by 10 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":20000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575741,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575741.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-30","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":541988,"sourceSkillId":491540,"name":"Fearless","description":"Immune to Fear effect for the next (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575742,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501933],"components":[{"id":501933,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":17,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":491540,"name":"Fearless","description":"Immune to Fear effect for the next (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575742,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501933]}}],"icon":"/assets/ui/rom-spells/575742.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-35","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"elite","unlockLevel":35,"keyItemId":542019,"sourceSkillId":492627,"name":"Kick","description":"Kicks the targets shinbone causing (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage . Due to great pain the target's movement speed is lowered by (Buff4-0)% for (Buff4-Time) seconds.\n(Movement speed of players is lowered by (Buff5-0)% for (Buff5-Time) seconds.)\n(This skill lowers the movement speed by a maximum of (Max-Buff0-502896)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577003,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620293,502896,503852],"components":[{"id":620293,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502896,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503852,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":492627,"name":"Kick","description":"Kicks the targets shinbone causing (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage . Due to great pain the target's movement speed is lowered by (Buff4-0)% for (Buff4-Time) seconds.\n(Movement speed of players is lowered by (Buff5-0)% for (Buff5-Time) seconds.)\n(This skill lowers the movement speed by a maximum of (Max-Buff0-502896)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":15000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577003,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620293,502896,503852]}}],"icon":"/assets/ui/rom-spells/577003.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-40","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"elite","unlockLevel":40,"keyItemId":542049,"sourceSkillId":492921,"name":"Slowing Poison","description":"Using [492351] on your target reduces the target's Physical Attack Speed by (Buff0-0)% for (Buff0-Time) seconds.\n(Physical Attack Speed of players reduces by (Buff1-0)% for (Buff1-Time) seconds.)\n(Consumes one poison bottle.)","target":"hostile","range":12,"castTimeMs":1000,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577592,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503176,504247],"components":[{"id":503176,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":115,"abilityModifiers":[{"type":23,"value":60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504247,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":115,"abilityModifiers":[{"type":23,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":492921,"name":"Slowing Poison","description":"Using [492351] on your target reduces the target's Physical Attack Speed by (Buff0-0)% for (Buff0-Time) seconds.\n(Physical Attack Speed of players reduces by (Buff1-0)% for (Buff1-Time) seconds.)\n(Consumes one poison bottle.)","target":"hostile","range":12,"castTimeMs":1000,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577592,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503176,504247]}}],"icon":"/assets/ui/rom-spells/577592.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-45","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542079,"sourceSkillId":493020,"name":"Sinister Methods","description":"Making a successful hit with Low Blow or Blind Spot instantly increases your [SC_SKILLTIPS_CRI] for (Buff-Time-503265) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503300)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577654,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503265,503300],"components":[{"id":503265,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493023,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503300,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":493020,"name":"Sinister Methods","description":"Making a successful hit with Low Blow or Blind Spot instantly increases your [SC_SKILLTIPS_CRI] for (Buff-Time-503265) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503300)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577654,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503265,503300]}}],"icon":"/assets/ui/rom-spells/577654.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-50","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":50,"keyItemId":542109,"sourceSkillId":493260,"name":"Mana Surge","description":"Magic Barrier will recover MP whenever you receive a physical attack, and reduce the damage inflicted on you by (Buff0-503181)%.\n([SC_SKILLTIPS_CD_1](Buff-Time-503529)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577784,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503181,503529],"components":[{"id":503181,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":-5},{"type":207,"value":-5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503529,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":493260,"name":"Mana Surge","description":"Magic Barrier will recover MP whenever you receive a physical attack, and reduce the damage inflicted on you by (Buff0-503181)%.\n([SC_SKILLTIPS_CD_1](Buff-Time-503529)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577784,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503181,503529]}}],"icon":"/assets/ui/rom-spells/577784.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-60","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":60,"keyItemId":546768,"sourceSkillId":499505,"name":"Mana Needle","description":"While in a [493297], received [SC_SKILLTIPS_DMG] will stun the attacker for (Buff-Time-623033) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-623034) [SC_SKILLTIPS_CD_2].)","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801276,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623033,623034],"components":[{"id":623033,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[16777283,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623034,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499505,"name":"Mana Needle","description":"While in a [493297], received [SC_SKILLTIPS_DMG] will stun the attacker for (Buff-Time-623033) seconds. \n([SC_SKILLTIPS_CD_1] (Buff-Time-623034) [SC_SKILLTIPS_CD_2].)","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801276,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623033,623034]}}],"icon":"/assets/ui/rom-spells/801276.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-priest-elite-70","classId":"rom-rogue","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546769,"sourceSkillId":499510,"name":"Demonstration of Evil","description":"When [493020] are triggered, your party members receive half the effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801324,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499510,"name":"Demonstration of Evil","description":"When [493020] are triggered, your party members receive half the effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801324,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801324.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-15","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"passive","unlockLevel":15,"keyItemId":541899,"sourceSkillId":491551,"name":"Armor Breaker","description":"Raises the damage by way of Disarmament, and adds a cooldown time of 3 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575744,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":491551,"name":"Armor Breaker","description":"Raises the damage by way of Disarmament, and adds a cooldown time of 3 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575744,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575744.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-20","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":20,"keyItemId":541929,"sourceSkillId":491549,"name":"Poison Protection","description":"When activated, this will protect you from getting Poisoned for the next (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575745,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501943],"components":[{"id":501943,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":5,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":491549,"name":"Poison Protection","description":"When activated, this will protect you from getting Poisoned for the next (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575745,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501943]}}],"icon":"/assets/ui/rom-spells/575745.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-25","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":25,"keyItemId":541959,"sourceSkillId":491552,"name":"Lion's Protection","description":"You feel strong like a lion! Your [SC_SKILLTIPS_01] is increased by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575567,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620316],"components":[{"id":620316,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":112,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":491552,"name":"Lion's Protection","description":"You feel strong like a lion! Your [SC_SKILLTIPS_01] is increased by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575567,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620316]}}],"icon":"/assets/ui/rom-spells/575567.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-30","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541989,"sourceSkillId":491546,"name":"Holy Light Protection","description":"Lowers [SC_SKILLTIPS_MDMG] you suffer by (Buff0-0)% and renders you immune to Root or Slow effects for the next (Buff0-Time) seconds.\n(Effect can only be removed if target has Movement Impairing Effect)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575571,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501940],"components":[{"id":501940,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":142,"value":2}],"abilitySkillLevelArg":54,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491546,"name":"Holy Light Protection","description":"Lowers [SC_SKILLTIPS_MDMG] you suffer by (Buff0-0)% and renders you immune to Root or Slow effects for the next (Buff0-Time) seconds.\n(Effect can only be removed if target has Movement Impairing Effect)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575571,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501940]}}],"icon":"/assets/ui/rom-spells/575571.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-35","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":35,"keyItemId":542020,"sourceSkillId":492629,"name":"Courageous Guard","description":"Protects party members in a range of 100 from Fear for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"self","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577004,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502898],"components":[{"id":502898,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":17,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492629,"name":"Courageous Guard","description":"Protects party members in a range of 100 from Fear for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"self","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577004,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502898]}}],"icon":"/assets/ui/rom-spells/577004.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-40","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":40,"keyItemId":542050,"sourceSkillId":492924,"name":"Power of the Lion","description":"While you are under the Lion's Protection, you can turn it into Power of the Lion to instantly restore your HP by (current [SC_SKILLTIPS_HP] x (DMG4)) + (DMG0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":577595,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503185,506308,503225],"components":[{"id":503185,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":30,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":506308,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":1,"damagePowerSkillLevelArg":14,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503225,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":112,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":492924,"name":"Power of the Lion","description":"While you are under the Lion's Protection, you can turn it into Power of the Lion to instantly restore your HP by (current [SC_SKILLTIPS_HP] x (DMG4)) + (DMG0).","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":577595,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503185,506308,503225]}}],"icon":"/assets/ui/rom-spells/577595.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-45","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"elite","unlockLevel":45,"keyItemId":542080,"sourceSkillId":493025,"name":"Searing Light","description":"Causes your normal attacks to deal additional (Buff0-0) Light damage for (Buff0-Time) seconds. Also, when your physical attacks hit the target your [SC_SKILLTIPS_CRI] increases by (Buff0-503270) points for (Buff-Time-503270) seconds. (This effect is mutually exclusive with Poisonous.)\n([SC_SKILLTIPS_CD_1](Buff-Time-506385)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577655,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503268,503270,506385],"components":[{"id":503268,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":106,"abilityModifiers":[{"type":188,"value":10}],"onAttackTrigger":{"rate":100,"rank":0,"id":495578},"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503270,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495385,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506385,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493025,"name":"Searing Light","description":"Causes your normal attacks to deal additional (Buff0-0) Light damage for (Buff0-Time) seconds. Also, when your physical attacks hit the target your [SC_SKILLTIPS_CRI] increases by (Buff0-503270) points for (Buff-Time-503270) seconds. (This effect is mutually exclusive with Poisonous.)\n([SC_SKILLTIPS_CD_1](Buff-Time-506385)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577655,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503268,503270,506385]}}],"icon":"/assets/ui/rom-spells/577655.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-50","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"passive","unlockLevel":50,"keyItemId":542110,"sourceSkillId":493261,"name":"Reckless Warrior","description":"Whenever you use Low Blow or Blind Spot and successfully hit your target your [SC_SKILLTIPS_01] increases. Effective for (Buff-Time-503531) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503532)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577785,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503531,503532],"components":[{"id":503531,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":8,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":12,"value":50}],"abilitySkillLevelArg":11,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493284,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503532,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493261,"name":"Reckless Warrior","description":"Whenever you use Low Blow or Blind Spot and successfully hit your target your [SC_SKILLTIPS_01] increases. Effective for (Buff-Time-503531) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503532)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577785,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503531,503532]}}],"icon":"/assets/ui/rom-spells/577785.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-60","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546770,"sourceSkillId":499529,"name":"Illegal Punishment","description":"Inflicts additional damage caused by your [490074] depending on [SC_SKILLTIPS_AGI].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801277,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499529,"name":"Illegal Punishment","description":"Inflicts additional damage caused by your [490074] depending on [SC_SKILLTIPS_AGI].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801277,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801277.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-knight-elite-70","classId":"rom-rogue","secondaryClassId":"rom-knight","group":"passive","unlockLevel":70,"keyItemId":546771,"sourceSkillId":490069,"name":"Punishment Thrust","description":"[490185] will now cause the Stun effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801325,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":490069,"name":"Punishment Thrust","description":"[490185] will now cause the Stun effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801325,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801325.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-15","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":15,"keyItemId":543020,"sourceSkillId":494043,"name":"Weak Point Strike","description":"Inflicts (DMG1) main hand weapon DPS + (FixDMG1) x Dexterity physical damage. This skill has a chance of causing the target's weak point to suffer a powerful attack, suffering (DMG0) + (FixDMG0) x Dexterity main hand weapon physical DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579113,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620294,620295],"components":[{"id":620294,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.95,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.95,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620295,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494043,"name":"Weak Point Strike","description":"Inflicts (DMG1) main hand weapon DPS + (FixDMG1) x Dexterity physical damage. This skill has a chance of causing the target's weak point to suffer a powerful attack, suffering (DMG0) + (FixDMG0) x Dexterity main hand weapon physical DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579113,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620294,620295]}}],"icon":"/assets/ui/rom-spells/579113.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-20","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"passive","unlockLevel":20,"keyItemId":543028,"sourceSkillId":494044,"name":"Hidden Master","description":"Reduces [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] received while in Hide status.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579114,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494044,"name":"Hidden Master","description":"Reduces [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] received while in Hide status.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579114,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579114.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-25","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":25,"keyItemId":543036,"sourceSkillId":494045,"name":"Bloodthirsty Blade","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. Successful attacks increase your [SC_SKILLTIPS_CRI] by (Buff4-0) points for (Buff4-Time) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-507326)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579115,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620296,504595,504598,507326],"components":[{"id":620296,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504595,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":1073741923,"specialActionFlags":0,"assistType":34,"abilityModifiers":[{"type":18,"value":6}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504598,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":268959809,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507326,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":20,"hateCost":0,"settingFlags":268959809,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494045,"name":"Bloodthirsty Blade","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. Successful attacks increase your [SC_SKILLTIPS_CRI] by (Buff4-0) points for (Buff4-Time) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-507326)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579115,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620296,504595,504598,507326]}}],"icon":"/assets/ui/rom-spells/579115.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-30","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"passive","unlockLevel":30,"keyItemId":543044,"sourceSkillId":494328,"name":"Crazed Creed","description":"Permanently raises your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579891,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504720],"components":[{"id":504720,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":19,"value":1}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494328,"name":"Crazed Creed","description":"Permanently raises your [SC_SKILLTIPS_CRI_POWER] by (Buff0-0)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579891,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504720]}}],"icon":"/assets/ui/rom-spells/579891.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-35","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":35,"keyItemId":543052,"sourceSkillId":494545,"name":"Emotional Obstruction","description":"Creates a purple fog that temporarily reduces the magical damage done by the target by (Buff0-0)% for (Buff0-Time) seconds.\n(If the target is a player, the damage done will be reduced by (Buff1-0)% for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579892,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504909,504249],"components":[{"id":504909,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":44,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504249,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":44,"value":-5}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494545,"name":"Emotional Obstruction","description":"Creates a purple fog that temporarily reduces the magical damage done by the target by (Buff0-0)% for (Buff0-Time) seconds.\n(If the target is a player, the damage done will be reduced by (Buff1-0)% for (Buff1-Time) seconds.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579892,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504909,504249]}}],"icon":"/assets/ui/rom-spells/579892.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-40","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"passive","unlockLevel":40,"keyItemId":543060,"sourceSkillId":494546,"name":"Wood Spirit's Grasp","description":"Increases the damage of Power of the Wood Spirit. Additionally, a successful hit will increase your and your party members' [SC_SKILLTIPS_MDMG] and [SC_SKILLTIPS_DMG].\n([SC_SKILLTIPS_CD_1](Buff-Time-505171)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579893,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505171],"components":[{"id":505171,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":494546,"name":"Wood Spirit's Grasp","description":"Increases the damage of Power of the Wood Spirit. Additionally, a successful hit will increase your and your party members' [SC_SKILLTIPS_MDMG] and [SC_SKILLTIPS_DMG].\n([SC_SKILLTIPS_CD_1](Buff-Time-505171)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579893,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505171]}}],"icon":"/assets/ui/rom-spells/579893.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-45","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":45,"keyItemId":543068,"sourceSkillId":494921,"name":"Wound Patch","description":"When you suffer physical or magic attacks within (Buff0-Time) seconds, you will recover (DMG-620302) HP and your dodge rate will be continuously increased by (Buff0-623527)% for (Buff-Time-623527) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-505731)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":581106,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505685,620302,623527,505731],"components":[{"id":505685,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":494948,"onMagicAttackReboundMagicId":494948,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620302,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":30,"damagePowerSkillLevelArg":18,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623527,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":20},{"type":200,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505731,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":494921,"name":"Wound Patch","description":"When you suffer physical or magic attacks within (Buff0-Time) seconds, you will recover (DMG-620302) HP and your dodge rate will be continuously increased by (Buff0-623527)% for (Buff-Time-623527) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-505731)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":581106,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505685,620302,623527,505731]}}],"icon":"/assets/ui/rom-spells/581106.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-50","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543076,"sourceSkillId":494922,"name":"Phantom Blade","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. A successful hit will summon two Oak Walkers that will attack your opponent for 15 seconds. \n\n(Oak Walkers will also use Phantom Blade for attacking. Damage increases with skill level.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"health","amount":5,"percentage":true},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102324},"source":{"imageId":581107,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620311,505942,505943],"components":[{"id":620311,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.75,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-0.75,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505942,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102324,"summon":{"creatureId":102324,"level":0,"rangeLevel":0,"lifetimeSeconds":15,"skillLevelArg":0,"type":1,"groupId":3,"ownerPowerRate":0.6}},{"id":505943,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102324,"summon":{"creatureId":102324,"level":0,"rangeLevel":0,"lifetimeSeconds":15,"skillLevelArg":0,"type":1,"groupId":4,"ownerPowerRate":0.6}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494922,"name":"Phantom Blade","description":"Causes (DMG0) main hand weapon DPS + (FixDMG0) x Dexterity physical damage. A successful hit will summon two Oak Walkers that will attack your opponent for 15 seconds. \n\n(Oak Walkers will also use Phantom Blade for attacking. Damage increases with skill level.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"health","amount":5,"percentage":true},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102324},"source":{"imageId":581107,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620311,505942,505943]}}],"icon":"/assets/ui/rom-spells/581107.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-60","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"elite","unlockLevel":60,"keyItemId":546772,"sourceSkillId":499542,"name":"Revival","description":"While in a [499544] state, each time you receive physical or magic attack you can stack a [499542] effect. Effect can be stacked a maximum of 10 times. Actively using [499542] makes you recover HP. The amount of HP you recover is dependent on [499542].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801278,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623078],"components":[{"id":623078,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499542,"name":"Revival","description":"While in a [499544] state, each time you receive physical or magic attack you can stack a [499542] effect. Effect can be stacked a maximum of 10 times. Actively using [499542] makes you recover HP. The amount of HP you recover is dependent on [499542].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801278,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623078]}}],"icon":"/assets/ui/rom-spells/801278.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warden-elite-70","classId":"rom-rogue","secondaryClassId":"rom-warden","group":"passive","unlockLevel":70,"keyItemId":546773,"sourceSkillId":499547,"name":"Group Panic","description":"Makes your [499546] cause an additional reduction of physical and magic damage. Also changes effects from solo to group.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801326,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499547,"name":"Group Panic","description":"Makes your [499546] cause an additional reduction of physical and magic damage. Also changes effects from solo to group.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801326,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801326.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-15","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543021,"sourceSkillId":494046,"name":"Hysteric Vengeance","description":"If you are hit by physical attacks in the next (Buff0-Time) seconds, your [SC_SKILLTIPS_CRI] will increase by (Buff0-620303) for (Buff-Time-620303) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504593)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579116,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504555,620303,504593],"components":[{"id":504555,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":494072,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620303,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494073,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504593,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268443649,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494046,"name":"Hysteric Vengeance","description":"If you are hit by physical attacks in the next (Buff0-Time) seconds, your [SC_SKILLTIPS_CRI] will increase by (Buff0-620303) for (Buff-Time-620303) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504593)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579116,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504555,620303,504593]}}],"icon":"/assets/ui/rom-spells/579116.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-20","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":20,"keyItemId":543029,"sourceSkillId":494047,"name":"Poison Antibodies","description":"Makes it so you cannot be affected by poison for 5 seconds after you successfully use Antidote.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579117,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":494047,"name":"Poison Antibodies","description":"Makes it so you cannot be affected by poison for 5 seconds after you successfully use Antidote.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579117,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579117.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-25","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"elite","unlockLevel":25,"keyItemId":543037,"sourceSkillId":494048,"name":"Poison Shroud","description":"Poison Shroud inflicts (Buff0-Dot) points of poison damage every 2 seconds on targets within a range of 70 for (Buff0-Time) seconds. (Consumes one poison bottle.)","target":"self","range":15,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579118,"sourceEffectType":1,"sourceTarget":16,"componentIds":[620304],"components":[{"id":620304,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":12,"hateCost":0,"settingFlags":8394,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494962,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":2,"dotType":0,"dotBase":-40,"dot":{"timeSeconds":2,"type":0,"base":-40,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494048,"name":"Poison Shroud","description":"Poison Shroud inflicts (Buff0-Dot) points of poison damage every 2 seconds on targets within a range of 70 for (Buff0-Time) seconds. (Consumes one poison bottle.)","target":"self","range":15,"castTimeMs":1000,"cooldownMs":15000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579118,"sourceEffectType":1,"sourceTarget":16,"componentIds":[620304]}}],"icon":"/assets/ui/rom-spells/579118.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-30","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"elite","unlockLevel":30,"keyItemId":543045,"sourceSkillId":494329,"name":"Killin' Time","description":"Increases the critical physical hit rate of your next 4 attacks by (Buff0-504872) points and critical damage by (Buff1-504872)% for (Buff-Time-504872) seconds. (This effect continues until expended or time runs out.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579894,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504872,504881],"components":[{"id":504872,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"clearFlags":8193,"abilityModifiers":[{"type":18,"value":120},{"type":19,"value":1}],"abilitySkillLevelArg":16,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494339,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504881,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494329,"name":"Killin' Time","description":"Increases the critical physical hit rate of your next 4 attacks by (Buff0-504872) points and critical damage by (Buff1-504872)% for (Buff-Time-504872) seconds. (This effect continues until expended or time runs out.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579894,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504872,504881]}}],"icon":"/assets/ui/rom-spells/579894.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-35","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":35,"keyItemId":543053,"sourceSkillId":498027,"name":"Crippling Poison","description":"Causes your Poisonous effect to additionally reduce the target's [SC_SKILLTIPS_CAST] and [SC_SKILLTIPS_DPS].","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579895,"sourceEffectType":2,"sourceTarget":6,"componentIds":[505173,504250],"components":[{"id":505173,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":170,"abilityModifiers":[{"type":170,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504250,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":170,"abilityModifiers":[{"type":170,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":498027,"name":"Crippling Poison","description":"Causes your Poisonous effect to additionally reduce the target's [SC_SKILLTIPS_CAST] and [SC_SKILLTIPS_DPS].","target":"hostile","range":12,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579895,"sourceEffectType":2,"sourceTarget":6,"componentIds":[505173,504250]}}],"icon":"/assets/ui/rom-spells/579895.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-40","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"elite","unlockLevel":40,"keyItemId":543061,"sourceSkillId":494548,"name":"Slaughter Blessing","description":"Instantly restores (current [SC_SKILLTIPS_HP] x (DMG4)) + (DMG8) HP to you and your party members, and temporarily increases [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":579896,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505175,506387,504912],"components":[{"id":505175,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5},{"type":171,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506387,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":1,"damagePowerSkillLevelArg":8.4,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504912,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":30,"damagePowerSkillLevelArg":9.6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494548,"name":"Slaughter Blessing","description":"Instantly restores (current [SC_SKILLTIPS_HP] x (DMG4)) + (DMG8) HP to you and your party members, and temporarily increases [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":579896,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505175,506387,504912]}}],"icon":"/assets/ui/rom-spells/579896.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-45","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":45,"keyItemId":543069,"sourceSkillId":494923,"name":"Shadow Smash","description":"Extends your Poison Shroud effect by 4 seconds and inflicts dark damage to targets within a range of 70.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581108,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494923,"name":"Shadow Smash","description":"Extends your Poison Shroud effect by 4 seconds and inflicts dark damage to targets within a range of 70.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581108,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581108.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-50","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":50,"keyItemId":543077,"sourceSkillId":494924,"name":"Quick Light Protection","description":"Reduces the energy required for your Blind Spot attack by 10 and when you strike a target it has a chance of restoring HP to the party member with the lowest HP.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581109,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":494924,"name":"Quick Light Protection","description":"Reduces the energy required for your Blind Spot attack by 10 and when you strike a target it has a chance of restoring HP to the party member with the lowest HP.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581109,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581109.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-60","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546774,"sourceSkillId":499566,"name":"Malicious Intent Release","description":"Your [499567] will not be limited in the times it can be used, but its time limit is reduced from 15 seconds to 7 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801279,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499566,"name":"Malicious Intent Release","description":"Your [499567] will not be limited in the times it can be used, but its time limit is reduced from 15 seconds to 7 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801279,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801279.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-druid-elite-70","classId":"rom-rogue","secondaryClassId":"rom-druid","group":"passive","unlockLevel":70,"keyItemId":546775,"sourceSkillId":499568,"name":"Erosion","description":"Causes an additional reduction of your target's armor and [SC_SKILLTIPS_MDEF] while [499569] is in effect. Causes additional damage from triggered [494923] in level with [SC_SKILLTIPS_AGI].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801327,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499568,"name":"Erosion","description":"Causes an additional reduction of your target's armor and [SC_SKILLTIPS_MDEF] while [499569] is in effect. Causes additional damage from triggered [494923] in level with [SC_SKILLTIPS_AGI].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801327,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801327.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-15","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":15,"keyItemId":545976,"sourceSkillId":498799,"name":"Dark Soul Barrier","description":"Sets up a dark spirit barrier in a designated area. This barrier will increase the [SC_SKILLTIPS_DOGEP] of all party members inside the barrier by (Buff0-621565)%. The Dark Soul Barrier lasts for 12 seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800220,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621560,621565],"components":[{"id":621560,"magicFunc":6,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621565,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":268435459,"specialActionFlags":0,"assistType":31,"abilityModifiers":[{"type":198,"value":10}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498799,"name":"Dark Soul Barrier","description":"Sets up a dark spirit barrier in a designated area. This barrier will increase the [SC_SKILLTIPS_DOGEP] of all party members inside the barrier by (Buff0-621565)%. The Dark Soul Barrier lasts for 12 seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800220,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621560,621565]}}],"icon":"/assets/ui/rom-spells/800220.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-20","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":20,"keyItemId":545977,"sourceSkillId":498801,"name":"Energy Conservation","description":"Use of this skill requires an HP less than 75%.\nRestores (Buff0-Dot)% HP every second until HP reaches 75% or the effect lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800153,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621561],"components":[{"id":621561,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":79,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498802,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":5,"dotBase":3,"dot":{"timeSeconds":1,"type":5,"base":3,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498801,"name":"Energy Conservation","description":"Use of this skill requires an HP less than 75%.\nRestores (Buff0-Dot)% HP every second until HP reaches 75% or the effect lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"energy","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800153,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621561]}}],"icon":"/assets/ui/rom-spells/800153.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-25","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":25,"keyItemId":545978,"sourceSkillId":498803,"name":"Soul Stab","description":"Inflicts (DMG1) + (FixDMG1) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS on the target. If target is in a Weakened state then they will receive (DMG0) + (FixDMG0) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800154,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621564,501577,621563],"components":[{"id":621564,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.5,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-1.5,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621563,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.3,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-1.3,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498803,"name":"Soul Stab","description":"Inflicts (DMG1) + (FixDMG1) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS on the target. If target is in a Weakened state then they will receive (DMG0) + (FixDMG0) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800154,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621564,501577,621563]}}],"icon":"/assets/ui/rom-spells/800154.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-30","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":30,"keyItemId":545979,"sourceSkillId":498804,"name":"Begin When Ready","description":"Immediately resets the cooldown time for Fervent Attack and Evasion.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800155,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621566],"components":[{"id":621566,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498804,"name":"Begin When Ready","description":"Immediately resets the cooldown time for Fervent Attack and Evasion.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800155,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621566]}}],"icon":"/assets/ui/rom-spells/800155.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-35","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":35,"keyItemId":545980,"sourceSkillId":498805,"name":"Dark Soul Precision","description":"Soul Pain doesn't need any casting time and reduces target's [SC_SKILLTIPS_DEF].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800156,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498805,"name":"Dark Soul Precision","description":"Soul Pain doesn't need any casting time and reduces target's [SC_SKILLTIPS_DEF].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800156,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800156.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-40","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":40,"keyItemId":545981,"sourceSkillId":498807,"name":"Soul Agility","description":"Increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800157,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621568,621569],"components":[{"id":621568,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":6,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621569,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":165,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498807,"name":"Soul Agility","description":"Increases [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800157,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621568,621569]}}],"icon":"/assets/ui/rom-spells/800157.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-45","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":45,"keyItemId":545982,"sourceSkillId":498808,"name":"Dark Soul Smelt","description":"While in a Poisonous state, normal attack hits can cause additional [SC_SKILLTIPS_DARK].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800158,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":498808,"name":"Dark Soul Smelt","description":"While in a Poisonous state, normal attack hits can cause additional [SC_SKILLTIPS_DARK].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800158,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800158.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-50","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":545983,"sourceSkillId":498811,"name":"Ghostly Strike","description":"Inflicts (DMG0) + (FixDMG0) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS and carries a Weakened effect. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800159,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621572,501577],"components":[{"id":621572,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.5,"fixedValue":-0.3,"attack":{"type":0,"calculationType":0,"damagePower":-1.5,"damagePowerSkillLevelArg":6,"fixedValue":-0.3,"fixedType":7,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498811,"name":"Ghostly Strike","description":"Inflicts (DMG0) + (FixDMG0) x Dexterity main hand weapon [SC_SKILLTIPS_MDMG] DPS and carries a Weakened effect. \n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":800159,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621572,501577]}}],"icon":"/assets/ui/rom-spells/800159.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-60","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":60,"keyItemId":546776,"sourceSkillId":498813,"name":"Dark Soul Assail","description":"Increases [SC_SKILLTIPS_DARK]. In a state of [498814], [SC_SKILLTIPS_DARK] is additionally increased.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801618,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623424],"components":[{"id":623424,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524295,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":50,"value":50}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":499803,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":498813,"name":"Dark Soul Assail","description":"Increases [SC_SKILLTIPS_DARK]. In a state of [498814], [SC_SKILLTIPS_DARK] is additionally increased.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801618,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623424]}}],"icon":"/assets/ui/rom-spells/801618.png","iconResolution":"native-interface-fdb"},{"id":"rom-rogue-rom-warlock-elite-70","classId":"rom-rogue","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":70,"keyItemId":546777,"sourceSkillId":499820,"name":"Soul Curtain","description":"Decreases the cooldown time of [499819] by 60 seconds. When [499819] is being cast, it removes the effect of being Helpless and leaves a Substitute that Taunts nearby enemies for 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801619,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499820,"name":"Soul Curtain","description":"Decreases the cooldown time of [499819] by 60 seconds. When [499819] is being cast, it removes the effect of being Helpless and leaves a Substitute that Taunts nearby enemies for 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801619,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801619.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-15","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":541900,"sourceSkillId":491562,"name":"Magical Talent","description":"Temporarily increases your [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575729,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501947,506398],"components":[{"id":501947,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":50}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495400,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":506398,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524353,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":168,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491562,"name":"Magical Talent","description":"Temporarily increases your [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575729,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501947,506398]}}],"icon":"/assets/ui/rom-spells/575729.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-20","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":20,"keyItemId":541930,"sourceSkillId":491563,"name":"Magical Enlightenment","description":"Lets you regenerate (Buff0-Dot) MP every 5 seconds for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575726,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501948],"components":[{"id":501948,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":5,"dotType":1,"dotBase":10,"dot":{"timeSeconds":5,"type":1,"base":10,"skillLevelArg":10},"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":491563,"name":"Magical Enlightenment","description":"Lets you regenerate (Buff0-Dot) MP every 5 seconds for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575726,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501948]}}],"icon":"/assets/ui/rom-spells/575726.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-25","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":25,"keyItemId":541960,"sourceSkillId":491564,"name":"Elemental Explosion","description":"Your [SC_SKILLTIPS_MCRI] is increased by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575720,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501949],"components":[{"id":501949,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":491564,"name":"Elemental Explosion","description":"Your [SC_SKILLTIPS_MCRI] is increased by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575720,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501949]}}],"icon":"/assets/ui/rom-spells/575720.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-30","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":541990,"sourceSkillId":491565,"name":"Rage Mana","description":"Converts your rage into (DMG0) MP and increases your magical damage by (Buff4-0)% for (Buff4-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575569,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501951,623528],"components":[{"id":501951,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":180,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":26,"abilityModifiers":[{"type":2,"value":10}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":20,"fixedValue":0,"attack":{"type":1,"calculationType":4,"damagePower":20,"damagePowerSkillLevelArg":100,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623528,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":10}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":491565,"name":"Rage Mana","description":"Converts your rage into (DMG0) MP and increases your magical damage by (Buff4-0)% for (Buff4-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575569,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501951,623528]}}],"icon":"/assets/ui/rom-spells/575569.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-35","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542021,"sourceSkillId":492630,"name":"Activate Mana","description":"Transforms your mana into (DMG0) rage and reduces Aggro by (Buff4-0)% for (Buff4-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":80,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577005,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502899,623531],"components":[{"id":502899,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":20,"fixedValue":0,"attack":{"type":2,"calculationType":4,"damagePower":20,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623531,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":492630,"name":"Activate Mana","description":"Transforms your mana into (DMG0) rage and reduces Aggro by (Buff4-0)% for (Buff4-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":80,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577005,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502899,623531]}}],"icon":"/assets/ui/rom-spells/577005.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-40","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":40,"keyItemId":542051,"sourceSkillId":492925,"name":"Magic Boost","description":"Lets your Berserk simultaneously raise your magic attack and physical attack while lowering your [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577596,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503186],"components":[{"id":503186,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":64,"abilityModifiers":[{"type":135,"value":-3},{"type":134,"value":3},{"type":171,"value":2},{"type":170,"value":-2}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492925,"name":"Magic Boost","description":"Lets your Berserk simultaneously raise your magic attack and physical attack while lowering your [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577596,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503186]}}],"icon":"/assets/ui/rom-spells/577596.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-45","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":542081,"sourceSkillId":493026,"name":"Enhanced Intensification","description":"Lets your Intensification increase the [SC_SKILLTIPS_MDMG]. Also increases [SC_SKILLTIPS_MCRI_POWER] while in effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577656,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":493026,"name":"Enhanced Intensification","description":"Lets your Intensification increase the [SC_SKILLTIPS_MDMG]. Also increases [SC_SKILLTIPS_MCRI_POWER] while in effect.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577656,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577656.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-50","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":542111,"sourceSkillId":493262,"name":"Meditative Current","description":"Whenever you hit a target with Plasma Arrow or Flame, your Casting Speed increases additionally. Effective for (Buff-Time-503533) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503534)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577791,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503533,503534],"components":[{"id":503533,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":-10}],"abilitySkillLevelArg":4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493319,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503534,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":493262,"name":"Meditative Current","description":"Whenever you hit a target with Plasma Arrow or Flame, your Casting Speed increases additionally. Effective for (Buff-Time-503533) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503534)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577791,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503533,503534]}}],"icon":"/assets/ui/rom-spells/577791.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-60","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546780,"sourceSkillId":499588,"name":"Meditation Path","description":"When you cast [490204], [490212], [490242] or [490239], you can achieve a mobile casting skill state. Lasts for 7 seconds. (Can't be re-triggered within the next 15 seconds.)","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801280,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499588,"name":"Meditation Path","description":"When you cast [490204], [490212], [490242] or [490239], you can achieve a mobile casting skill state. Lasts for 7 seconds. (Can't be re-triggered within the next 15 seconds.)","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801280,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801280.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warrior-elite-70","classId":"rom-mage","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":70,"keyItemId":546781,"sourceSkillId":499589,"name":"Wisdom and Bravery","description":"Gives your [499590] an extra increase in [SC_SKILLTIPS_STA]. \nAfter it is used, it increases your [SC_SKILLTIPS_INT] by 50% of your [SC_SKILLTIPS_STA] plus 50% of your [SC_SKILLTIPS_STR]. Lasts (Buff-Time-623148) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801328,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623150,623148],"components":[{"id":623150,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623148,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":4,"value":1}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499589,"name":"Wisdom and Bravery","description":"Gives your [499590] an extra increase in [SC_SKILLTIPS_STA]. \nAfter it is used, it increases your [SC_SKILLTIPS_INT] by 50% of your [SC_SKILLTIPS_STA] plus 50% of your [SC_SKILLTIPS_STR]. Lasts (Buff-Time-623148) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801328,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623150,623148]}}],"icon":"/assets/ui/rom-spells/801328.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-15","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":15,"keyItemId":546015,"sourceSkillId":498823,"name":"Electric Explosion Expertise","description":"While in a Charged state, every Electric Explosion hit adds additional rage and recovers MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800168,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498823,"name":"Electric Explosion Expertise","description":"While in a Charged state, every Electric Explosion hit adds additional rage and recovers MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800168,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800168.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-20","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":546016,"sourceSkillId":498825,"name":"Brain Shock","description":"Ends the cooldown time for your Lightning and Discharge. Also increases [SC_SKILLTIPS_INT] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800169,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621621,621622],"components":[{"id":621621,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":163,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621622,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498825,"name":"Brain Shock","description":"Ends the cooldown time for your Lightning and Discharge. Also increases [SC_SKILLTIPS_INT] by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800169,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621621,621622]}}],"icon":"/assets/ui/rom-spells/800169.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-25","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":25,"keyItemId":546017,"sourceSkillId":498862,"name":"Electric Current Arc","description":"Increases Plasma Arrow damage and continuously adds rage while in a Charged state.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800170,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498862,"name":"Electric Current Arc","description":"Increases Plasma Arrow damage and continuously adds rage while in a Charged state.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800170,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800170.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-30","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":30,"keyItemId":546018,"sourceSkillId":498864,"name":"Voltage Seize","description":"There is a chance to use this skill when a current inflicts continuous damage. Inflicts (DMG0) + (FixDMG0) x INT [SC_SKILLTIPS_WIND]. \n[SC_SKILLTIPS_03]","target":"hostile","range":22,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800171,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621626],"components":[{"id":621626,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":-0.4,"attack":{"type":0,"calculationType":1,"damagePower":-100,"damagePowerSkillLevelArg":35,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498864,"name":"Voltage Seize","description":"There is a chance to use this skill when a current inflicts continuous damage. Inflicts (DMG0) + (FixDMG0) x INT [SC_SKILLTIPS_WIND]. \n[SC_SKILLTIPS_03]","target":"hostile","range":22,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800171,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621626]}}],"icon":"/assets/ui/rom-spells/800171.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-35","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":35,"keyItemId":546019,"sourceSkillId":498867,"name":"Energy Passage","description":"After a Static Field finishes, this skill inflicts an extra reduction of the target's [SC_SKILLTIPS_MOVE] by (Buff0-621662)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800172,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621662],"components":[{"id":621662,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498867,"name":"Energy Passage","description":"After a Static Field finishes, this skill inflicts an extra reduction of the target's [SC_SKILLTIPS_MOVE] by (Buff0-621662)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800172,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621662]}}],"icon":"/assets/ui/rom-spells/800172.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-40","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":40,"keyItemId":546020,"sourceSkillId":498869,"name":"Electrolysis Power","description":"Largely increases damage caused by Discharge and reduces the cooldown time by 10 seconds, but also cancels Stun effect.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800173,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621631,621632],"components":[{"id":621631,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":496444,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621632,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498869,"name":"Electrolysis Power","description":"Largely increases damage caused by Discharge and reduces the cooldown time by 10 seconds, but also cancels Stun effect.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800173,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621631,621632]}}],"icon":"/assets/ui/rom-spells/800173.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-45","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":45,"keyItemId":546021,"sourceSkillId":498871,"name":"Electrostatic Charge Expertise","description":"Reduces Electrostatic Charge cooldown time by 30 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800174,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498871,"name":"Electrostatic Charge Expertise","description":"Reduces Electrostatic Charge cooldown time by 30 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800174,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800174.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-50","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":50,"keyItemId":546022,"sourceSkillId":498873,"name":"Ion Storm","description":"Consumes (Buff0-Dot) rage every second to cause (DMG-621635) [SC_SKILLTIPS_WIND] on targets nearby. Also reduces wind attribute resistance by 2% for (Buff-Time-621636) seconds and can be stacked 10 times. \n(This state ends when rage has been exhausted.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"dot","coefficient":0.25,"ticks":2,"intervalMs":2000},"source":{"imageId":800175,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621634,621635,621636],"components":[{"id":621634,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":111,"specialActionFlags":0,"assistType":-1,"clearFlags":1152,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498874,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":2,"dotBase":-5,"dot":{"timeSeconds":1,"type":2,"base":-5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621635,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":79,"specialActionFlags":0,"assistType":-1,"clearFlags":3072,"abilitySkillLevelArg":5,"dotTime":1,"dotType":6,"dotBase":2,"dot":{"timeSeconds":1,"type":6,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":-25,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-25,"damagePowerSkillLevelArg":30,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621636,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":32834,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":224,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498873,"name":"Ion Storm","description":"Consumes (Buff0-Dot) rage every second to cause (DMG-621635) [SC_SKILLTIPS_WIND] on targets nearby. Also reduces wind attribute resistance by 2% for (Buff-Time-621636) seconds and can be stacked 10 times. \n(This state ends when rage has been exhausted.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"dot","coefficient":0.25,"ticks":2,"intervalMs":2000},"source":{"imageId":800175,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621634,621635,621636]}}],"icon":"/assets/ui/rom-spells/800175.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-60","classId":"rom-mage","secondaryClassId":"rom-champion","group":"elite","unlockLevel":60,"keyItemId":546797,"sourceSkillId":499811,"name":"Lightning Shield","description":"Obtain a [623438] that deals (DMG-623435) + (FixDMG-623435) x INT [SC_SKILLTIPS_WIND] to the source of any damage dealt to you and has a chance to trigger a [498864].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":801624,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623438,623435],"components":[{"id":623438,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":180,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":499810,"onMagicAttackReboundMagicId":499810,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623435,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-65,"fixedValue":-0.4,"attack":{"type":0,"calculationType":1,"damagePower":-65,"damagePowerSkillLevelArg":5,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":499811,"name":"Lightning Shield","description":"Obtain a [623438] that deals (DMG-623435) + (FixDMG-623435) x INT [SC_SKILLTIPS_WIND] to the source of any damage dealt to you and has a chance to trigger a [498864].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":801624,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623438,623435]}}],"icon":"/assets/ui/rom-spells/801624.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-champion-elite-70","classId":"rom-mage","secondaryClassId":"rom-champion","group":"passive","unlockLevel":70,"keyItemId":546798,"sourceSkillId":499807,"name":"Ion Barrier","description":"While in a [499809] state, reduces damage suffered by (Buff0-623444)% but increases the required rage points by 10.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801625,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623444],"components":[{"id":623444,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524359,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":-30},{"type":207,"value":-30}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":499808,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":499807,"name":"Ion Barrier","description":"While in a [499809] state, reduces damage suffered by (Buff0-623444)% but increases the required rage points by 10.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801625,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623444]}}],"icon":"/assets/ui/rom-spells/801625.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-15","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":541901,"sourceSkillId":491570,"name":"Thunderclap","description":"A magic arrow binds the target for (Buff0-Time) seconds to its current location. \n(If the target is a player, they cannot move for (Buff1-Time) seconds.)\n(The effect is removed when the target is attacked.)","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575728,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501956,507286],"components":[{"id":501956,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507286,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491570,"name":"Thunderclap","description":"A magic arrow binds the target for (Buff0-Time) seconds to its current location. \n(If the target is a player, they cannot move for (Buff1-Time) seconds.)\n(The effect is removed when the target is attacked.)","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575728,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501956,507286]}}],"icon":"/assets/ui/rom-spells/575728.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-20","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":20,"keyItemId":541931,"sourceSkillId":491573,"name":"Fire Arrow","description":"Your [SC_SKILLTIPS_MCRI] is increased by (Buff0-0) and Shot inflicts additional fire damage. This effect lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_491573]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575248,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501955],"components":[{"id":501955,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":20,"value":150}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":491573,"name":"Fire Arrow","description":"Your [SC_SKILLTIPS_MCRI] is increased by (Buff0-0) and Shot inflicts additional fire damage. This effect lasts for (Buff0-Time) seconds.\n[SC_SKILLTIPS_491573]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575248,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501955]}}],"icon":"/assets/ui/rom-spells/575248.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-25","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":541961,"sourceSkillId":491343,"name":"Fire Rose","description":"Plants a rose seed inside the target that causes (Buff3-Dot) Fire damage every 2 seconds for (Buff3-Time) seconds.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575226,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501842,501814,501806],"components":[{"id":501842,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":133,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-24,"dot":{"timeSeconds":2,"type":0,"base":-24,"skillLevelArg":20},"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0},{"id":501814,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":133,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":20},"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0},{"id":501806,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":133,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-8,"dot":{"timeSeconds":2,"type":0,"base":-8,"skillLevelArg":20},"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":491343,"name":"Fire Rose","description":"Plants a rose seed inside the target that causes (Buff3-Dot) Fire damage every 2 seconds for (Buff3-Time) seconds.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575226,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501842,501814,501806]}}],"icon":"/assets/ui/rom-spells/575226.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-30","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":541991,"sourceSkillId":491344,"name":"Fire Rose Explosion","description":"Instantly ignites all Fire Roses planted in target, causing (DMG0) + (FixDMG-620220) x INT [SC_SKILLTIPS_FLAME]. \n(Requires 3 seeds in the target.)","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":575227,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620220],"components":[{"id":620220,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":-0.8,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":40,"fixedValue":-0.8,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":491344,"name":"Fire Rose Explosion","description":"Instantly ignites all Fire Roses planted in target, causing (DMG0) + (FixDMG-620220) x INT [SC_SKILLTIPS_FLAME]. \n(Requires 3 seeds in the target.)","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":575227,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620220]}}],"icon":"/assets/ui/rom-spells/575227.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-35","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":542022,"sourceSkillId":492631,"name":"Flame Spirit","description":"Turns your flame energy for 40 seconds into concrete substance to support your attacks.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":101686},"source":{"imageId":577006,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502900],"components":[{"id":502900,"magicFunc":3,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":101686,"summon":{"creatureId":101686,"level":0,"rangeLevel":0,"lifetimeSeconds":40,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0.3}}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":492631,"name":"Flame Spirit","description":"Turns your flame energy for 40 seconds into concrete substance to support your attacks.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":101686},"source":{"imageId":577006,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502900]}}],"icon":"/assets/ui/rom-spells/577006.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-40","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":542052,"sourceSkillId":492926,"name":"Power of the Wind","description":"Increases [SC_SKILLTIPS_MAG_HIT] by (Buff0-0). Shot also inflicts Wind damage for (Buff0-Time) seconds.\n[SC_SKILLTIPS_491573]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577597,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503187],"components":[{"id":503187,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":195,"value":50}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":492926,"name":"Power of the Wind","description":"Increases [SC_SKILLTIPS_MAG_HIT] by (Buff0-0). Shot also inflicts Wind damage for (Buff0-Time) seconds.\n[SC_SKILLTIPS_491573]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577597,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503187]}}],"icon":"/assets/ui/rom-spells/577597.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-45","classId":"rom-mage","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":542082,"sourceSkillId":493028,"name":"Fire Rose Storm","description":"You deal extra [SC_SKILLTIPS_MDMG] when you successfully launch a Fire Rose.\n([SC_SKILLTIPS_CD_1](Buff-Time-503272)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577657,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503272],"components":[{"id":503272,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":493028,"name":"Fire Rose Storm","description":"You deal extra [SC_SKILLTIPS_MDMG] when you successfully launch a Fire Rose.\n([SC_SKILLTIPS_CD_1](Buff-Time-503272)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577657,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503272]}}],"icon":"/assets/ui/rom-spells/577657.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-50","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":542112,"sourceSkillId":493263,"name":"Magic Crossflow","description":"Raises the casting speed of master and pet by (Buff0-0)% for (Buff0-Time) seconds.\n(If the pet disappears, this effect will be cancelled.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577792,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503535],"components":[{"id":503535,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":25,"hateCost":0,"settingFlags":71,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":-2}],"abilitySkillLevelArg":23,"triggers":{"onTimeMagicId":493496,"onTimeSeconds":5,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493263,"name":"Magic Crossflow","description":"Raises the casting speed of master and pet by (Buff0-0)% for (Buff0-Time) seconds.\n(If the pet disappears, this effect will be cancelled.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":40000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577792,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503535]}}],"icon":"/assets/ui/rom-spells/577792.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-60","classId":"rom-mage","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546782,"sourceSkillId":491576,"name":"Strength of Ashes","description":"After your [491577] disappears, this provides you with an increase in [SC_SKILLTIPS_MDMG]. Lasts (Buff-Time-623178) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801281,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623178],"components":[{"id":623178,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":20}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":491576,"name":"Strength of Ashes","description":"After your [491577] disappears, this provides you with an increase in [SC_SKILLTIPS_MDMG]. Lasts (Buff-Time-623178) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801281,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623178]}}],"icon":"/assets/ui/rom-spells/801281.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-scout-elite-70","classId":"rom-mage","secondaryClassId":"rom-scout","group":"elite","unlockLevel":70,"keyItemId":546783,"sourceSkillId":499597,"name":"Wind Fire Cultivation","description":"Earn both [491573] and [623181] at the same time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801329,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623179,623181],"components":[{"id":623179,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623181,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":97,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":195,"value":10}],"abilitySkillLevelArg":11,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499597,"name":"Wind Fire Cultivation","description":"Earn both [491573] and [623181] at the same time.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801329,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623179,623181]}}],"icon":"/assets/ui/rom-spells/801329.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-15","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":541902,"sourceSkillId":491578,"name":"Cursed Fangs","description":"Puts a curse on your hidden weapons. For (Buff0-Time) seconds targets hit with these cursed projectiles suffer (Buff0-Dot) Dark damage every 2 seconds. (As long as your Fang Ritual is active, additional (DMG4) + (FixDMG-620238) x INT [SC_SKILLTIPS_DARK] will be done.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":575725,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501960,620238,502036,623195],"components":[{"id":501960,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":21,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":30},"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":620238,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":5,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-20,"damagePowerSkillLevelArg":25,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502036,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":15,"abilityModifiers":[{"type":50,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":623195,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":15,"abilityModifiers":[{"type":50,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":491578,"name":"Cursed Fangs","description":"Puts a curse on your hidden weapons. For (Buff0-Time) seconds targets hit with these cursed projectiles suffer (Buff0-Dot) Dark damage every 2 seconds. (As long as your Fang Ritual is active, additional (DMG4) + (FixDMG-620238) x INT [SC_SKILLTIPS_DARK] will be done.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":575725,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501960,620238,502036,623195]}}],"icon":"/assets/ui/rom-spells/575725.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-20","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":541932,"sourceSkillId":491345,"name":"Kiss of the Vampire","description":"Inflicts (DMG0) + (FixDMG-620199) x INT [SC_SKILLTIPS_DARK] on your opponent and restores (DMG4) to your HP.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575228,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620237,501560,620199],"components":[{"id":620237,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":20,"settingFlags":0,"specialActionFlags":0,"assistType":23,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":25,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501560,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":20,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":10,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":10,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620199,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-70,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-70,"damagePowerSkillLevelArg":40,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":491345,"name":"Kiss of the Vampire","description":"Inflicts (DMG0) + (FixDMG-620199) x INT [SC_SKILLTIPS_DARK] on your opponent and restores (DMG4) to your HP.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575228,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620237,501560,620199]}}],"icon":"/assets/ui/rom-spells/575228.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-25","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":25,"keyItemId":541962,"sourceSkillId":491348,"name":"Demoralize","description":"Your target cannot attack for (Buff0-Time) seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575231,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501813,503839,502719],"components":[{"id":501813,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":126,"effectFlagWords":[3,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503839,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":126,"effectFlagWords":[3,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":491348,"name":"Demoralize","description":"Your target cannot attack for (Buff0-Time) seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575231,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501813,503839,502719]}}],"icon":"/assets/ui/rom-spells/575231.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-30","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":541992,"sourceSkillId":491581,"name":"Fang Ritual","description":"Raises the damage dealt by Dark magic by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575724,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502036],"components":[{"id":502036,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":15,"abilityModifiers":[{"type":50,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":491581,"name":"Fang Ritual","description":"Raises the damage dealt by Dark magic by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575724,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502036]}}],"icon":"/assets/ui/rom-spells/575724.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-35","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542023,"sourceSkillId":492632,"name":"Distract","description":"Distracts the target, so that it loses its focus on you. You get the lowest place in the aggro table for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577007,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502901],"components":[{"id":502901,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[1073741824,0],"abilityModifiers":[{"type":138,"value":-35}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":492632,"name":"Distract","description":"Distracts the target, so that it loses its focus on you. You get the lowest place in the aggro table for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577007,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502901]}}],"icon":"/assets/ui/rom-spells/577007.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-40","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":40,"keyItemId":542053,"sourceSkillId":492927,"name":"Shadow Shroud","description":"Sinister magic shrouds your target, causing your Demoralize to additionally lower the target's magic defense.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577598,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":492927,"name":"Shadow Shroud","description":"Sinister magic shrouds your target, causing your Demoralize to additionally lower the target's magic defense.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577598,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577598.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-45","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":45,"keyItemId":542083,"sourceSkillId":493030,"name":"Shadow Protection","description":"Increases your casting speed by (Buff0-0)% for (Buff0-Time) seconds. If you receive a critical physical hit while it is in effect, your movement speed is instantly increased by (Buff0-503275)% for (Buff-Time-503275) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503303)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577658,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503274,503275,503303],"components":[{"id":503274,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":204,"abilityModifiers":[{"type":51,"value":-1}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503275,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10}],"abilitySkillLevelArg":11,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493178,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503303,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":60,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":493030,"name":"Shadow Protection","description":"Increases your casting speed by (Buff0-0)% for (Buff0-Time) seconds. If you receive a critical physical hit while it is in effect, your movement speed is instantly increased by (Buff0-503275)% for (Buff-Time-503275) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503303)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577658,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503274,503275,503303]}}],"icon":"/assets/ui/rom-spells/577658.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-50","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":50,"keyItemId":542113,"sourceSkillId":493264,"name":"Gift of the Baron","description":"When you succeed in casting Kiss of the Vampire, you will additionally increase the damage of your next two magical attacks. Effective for (Buff-Time-503538) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577793,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503538],"components":[{"id":503538,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"clearFlags":4096,"abilityModifiers":[{"type":44,"value":1}],"abilitySkillLevelArg":24,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493322,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":493264,"name":"Gift of the Baron","description":"When you succeed in casting Kiss of the Vampire, you will additionally increase the damage of your next two magical attacks. Effective for (Buff-Time-503538) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577793,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503538]}}],"icon":"/assets/ui/rom-spells/577793.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-60","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546784,"sourceSkillId":499600,"name":"Night Refuge","description":"When [499601] is in effect and you receive a normal attack, this instills Fear in the attacker for (Buff-Time-623192) seconds. It also immediately casts [493320] on the attacker. \n([SC_SKILLTIPS_CD_1] (Buff-Time-503303) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623192,503303],"components":[{"id":623192,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[131075,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503303,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":60,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499600,"name":"Night Refuge","description":"When [499601] is in effect and you receive a normal attack, this instills Fear in the attacker for (Buff-Time-623192) seconds. It also immediately casts [493320] on the attacker. \n([SC_SKILLTIPS_CD_1] (Buff-Time-503303) [SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801282,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623192,503303]}}],"icon":"/assets/ui/rom-spells/801282.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-rogue-elite-70","classId":"rom-mage","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546785,"sourceSkillId":499604,"name":"Pride of the Baron","description":"When you have the [499605] effect, the critical attack caused by your spells will reduce the cooldown time of [493320] by 3 seconds. Your [493321] will then have an additional increase to the [SC_SKILLTIPS_MCRI].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801330,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499604,"name":"Pride of the Baron","description":"When you have the [499605] effect, the critical attack caused by your spells will reduce the cooldown time of [493320] by 3 seconds. Your [493321] will then have an additional increase to the [SC_SKILLTIPS_MCRI].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801330,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801330.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-15","classId":"rom-mage","secondaryClassId":"rom-priest","group":"elite","unlockLevel":15,"keyItemId":541903,"sourceSkillId":491587,"name":"Essence of Magic","description":"Increases [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-0)) x ((Buff4-0)%) + (Buff0-0) for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576262,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501962,506232],"components":[{"id":501962,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":15,"value":10}],"abilitySkillLevelArg":60,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495283,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506232,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491587,"name":"Essence of Magic","description":"Increases [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-0)) x ((Buff4-0)%) + (Buff0-0) for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":576262,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501962,506232]}}],"icon":"/assets/ui/rom-spells/576262.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-20","classId":"rom-mage","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":541933,"sourceSkillId":491588,"name":"Purify","description":"Can dispel curses from your target.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575722,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501963],"components":[{"id":501963,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":491588,"name":"Purify","description":"Can dispel curses from your target.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575722,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501963]}}],"icon":"/assets/ui/rom-spells/575722.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-25","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":25,"keyItemId":541963,"sourceSkillId":491589,"name":"Outburst","description":"Flame and Fireball now have a higher chance to deal additional damage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575730,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":491589,"name":"Outburst","description":"Flame and Fireball now have a higher chance to deal additional damage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575730,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575730.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-30","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":30,"keyItemId":541993,"sourceSkillId":491590,"name":"Rising Tide Mastery","description":"Your Rising Tide is now an instant cast with a cooldown of 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575570,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":491590,"name":"Rising Tide Mastery","description":"Your Rising Tide is now an instant cast with a cooldown of 4 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575570,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575570.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-35","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":542024,"sourceSkillId":492633,"name":"Shine of the Holy Aura","description":"Used with a Holy Aura, there is extra recovery of HP but all mana costs raise by 1%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577008,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":492633,"name":"Shine of the Holy Aura","description":"Used with a Holy Aura, there is extra recovery of HP but all mana costs raise by 1%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577008,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577008.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-40","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":40,"keyItemId":542054,"sourceSkillId":492928,"name":"Grand Dispel","description":"Allows your Purify to also dispel harmful effects.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577599,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":492928,"name":"Grand Dispel","description":"Allows your Purify to also dispel harmful effects.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577599,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577599.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-45","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542084,"sourceSkillId":493031,"name":"Disable","description":"A successful Flame or Plasma Arrow hit decreases the target's [SC_SKILLTIPS_MCRI_PASSIVE] for (Buff-Time-503277) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503276)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577659,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503277,503276],"components":[{"id":503277,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177474,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":183,"value":-22}],"abilitySkillLevelArg":12.5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493088,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503276,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":493031,"name":"Disable","description":"A successful Flame or Plasma Arrow hit decreases the target's [SC_SKILLTIPS_MCRI_PASSIVE] for (Buff-Time-503277) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503276)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577659,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503277,503276]}}],"icon":"/assets/ui/rom-spells/577659.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-50","classId":"rom-mage","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":542114,"sourceSkillId":493265,"name":"Magic Drain","description":"Steals the target's attack power, and lowers the target's [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. It also increases your own [SC_SKILLTIPS_02] by (Buff4-0)%. Effective for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577794,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503713,503714],"components":[{"id":503713,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":-2},{"type":171,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503714,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":493265,"name":"Magic Drain","description":"Steals the target's attack power, and lowers the target's [SC_SKILLTIPS_01] and [SC_SKILLTIPS_02] by (Buff0-0)%. It also increases your own [SC_SKILLTIPS_02] by (Buff4-0)%. Effective for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577794,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503713,503714]}}],"icon":"/assets/ui/rom-spells/577794.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-60","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":60,"keyItemId":546786,"sourceSkillId":499607,"name":"Boiling Impact","description":"Increases [490256] damage and transforms your [499608] into [SC_SKILLTIPS_FLAME]. It can also be affected by [490221].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801388,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499607,"name":"Boiling Impact","description":"Increases [490256] damage and transforms your [499608] into [SC_SKILLTIPS_FLAME]. It can also be affected by [490221].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801388,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801388.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-priest-elite-70","classId":"rom-mage","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546787,"sourceSkillId":499609,"name":"Intelligence Seize","description":"Makes your [499610] cause an extra reduction of the target's [SC_SKILLTIPS_INT] and increases your [SC_SKILLTIPS_INT].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801331,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499609,"name":"Intelligence Seize","description":"Makes your [499610] cause an extra reduction of the target's [SC_SKILLTIPS_INT] and increases your [SC_SKILLTIPS_INT].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801331,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801331.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-15","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":15,"keyItemId":541904,"sourceSkillId":491594,"name":"Holy Light Strike","description":"Inflicts (DMG0) + (FixDMG-620224) x INT [SC_SKILLTIPS_LIGHT] on the target.","target":"hostile","range":15,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":575731,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620224,501972,503845],"components":[{"id":620224,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.4,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":40,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501972,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503845,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777299,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":491594,"name":"Holy Light Strike","description":"Inflicts (DMG0) + (FixDMG-620224) x INT [SC_SKILLTIPS_LIGHT] on the target.","target":"hostile","range":15,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":575731,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620224,501972,503845]}}],"icon":"/assets/ui/rom-spells/575731.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-20","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":20,"keyItemId":541934,"sourceSkillId":491347,"name":"Stars of Light","description":"The opponent is showered with exploding hexagrams of Light. For 5 seconds each second one flare explodes, dealing (DMG0) + (FixDMG-620223) x INT [SC_SKILLTIPS_LIGHT].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":2000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":575230,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620223],"components":[{"id":620223,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-25,"fixedValue":-0.1,"attack":{"type":0,"calculationType":1,"damagePower":-25,"damagePowerSkillLevelArg":40,"fixedValue":-0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":491347,"name":"Stars of Light","description":"The opponent is showered with exploding hexagrams of Light. For 5 seconds each second one flare explodes, dealing (DMG0) + (FixDMG-620223) x INT [SC_SKILLTIPS_LIGHT].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":2000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":575230,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620223]}}],"icon":"/assets/ui/rom-spells/575230.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-25","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":25,"keyItemId":541964,"sourceSkillId":491597,"name":"Enhanced Holy Light Strike","description":"Holy Light Strike now has a 30% chance to Stun the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575700,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":491597,"name":"Enhanced Holy Light Strike","description":"Holy Light Strike now has a 30% chance to Stun the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575700,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575700.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-30","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541994,"sourceSkillId":491599,"name":"Messenger of Light","description":"When activated, all damage caused by your Light based spells is increased by (Buff0-0)%. This lasts (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575727,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502034],"components":[{"id":502034,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":49,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491599,"name":"Messenger of Light","description":"When activated, all damage caused by your Light based spells is increased by (Buff0-0)%. This lasts (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575727,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502034]}}],"icon":"/assets/ui/rom-spells/575727.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-35","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":35,"keyItemId":542025,"sourceSkillId":492634,"name":"Light Charge","description":"The power of Light enters your enemy's body with a violent shock, inflicting (DMG0) + (FixDMG-620225) x INT [SC_SKILLTIPS_LIGHT] and Slowing him down by (Buff4-0)% for (Buff4-Time) seconds.\n(This skill slows the target down by a maximum of (Max-Buff0-502881)%.)\n(Players get slowed down by (Buff5-0)%.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":577009,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620225,502881,503851],"components":[{"id":620225,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":30,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":3,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502881,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10},{"type":169,"value":-10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503851,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":6,"abilityModifiers":[{"type":24,"value":-10},{"type":169,"value":-10}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492634,"name":"Light Charge","description":"The power of Light enters your enemy's body with a violent shock, inflicting (DMG0) + (FixDMG-620225) x INT [SC_SKILLTIPS_LIGHT] and Slowing him down by (Buff4-0)% for (Buff4-Time) seconds.\n(This skill slows the target down by a maximum of (Max-Buff0-502881)%.)\n(Players get slowed down by (Buff5-0)%.)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.4},"source":{"imageId":577009,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620225,502881,503851]}}],"icon":"/assets/ui/rom-spells/577009.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-40","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":40,"keyItemId":542055,"sourceSkillId":492929,"name":"Concentrated Attention","description":"Causes your Messenger of Light to increase your [SC_SKILLTIPS_MAG_HIT].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577600,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":492929,"name":"Concentrated Attention","description":"Causes your Messenger of Light to increase your [SC_SKILLTIPS_MAG_HIT].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577600,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577600.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-45","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":45,"keyItemId":542085,"sourceSkillId":493034,"name":"Light of Day","description":"When you successfully strike your opponent with Holy Light Strike or Light Charge, it instantly increases your [SC_SKILLTIPS_LIGHT] for (Buff-Time-620182) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503278)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577660,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620182,503278],"components":[{"id":620182,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":49,"value":8}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493037,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503278,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493034,"name":"Light of Day","description":"When you successfully strike your opponent with Holy Light Strike or Light Charge, it instantly increases your [SC_SKILLTIPS_LIGHT] for (Buff-Time-620182) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-503278)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577660,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620182,503278]}}],"icon":"/assets/ui/rom-spells/577660.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-50","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":50,"keyItemId":542115,"sourceSkillId":493266,"name":"Energy Recovery","description":"Causes your Energy Influx to boost your [SC_SKILLTIPS_MCRI_POWER] by an additional (Buff0-503746)%. While this is in effect, each critical strike your Holy Light Strike lands will also recover (current [SC_SKILLTIPS_MP] x (DMG-506530)) + (DMG-503571) MP.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577795,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503746,506530,503571],"components":[{"id":503746,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524451,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":21,"value":2}],"abilitySkillLevelArg":8,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497727,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506530,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1048576,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":1,"fixedValue":0,"attack":{"type":1,"calculationType":8,"damagePower":1,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503571,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":15,"fixedValue":0,"attack":{"type":1,"calculationType":4,"damagePower":15,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493266,"name":"Energy Recovery","description":"Causes your Energy Influx to boost your [SC_SKILLTIPS_MCRI_POWER] by an additional (Buff0-503746)%. While this is in effect, each critical strike your Holy Light Strike lands will also recover (current [SC_SKILLTIPS_MP] x (DMG-506530)) + (DMG-503571) MP.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577795,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503746,506530,503571]}}],"icon":"/assets/ui/rom-spells/577795.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-60","classId":"rom-mage","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546788,"sourceSkillId":499612,"name":"Brilliance Award","description":"Reduces your [499613] chant time by half. Also increases target's [SC_SKILLTIPS_LIGHT] by 3%. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801284,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499612,"name":"Brilliance Award","description":"Reduces your [499613] chant time by half. Also increases target's [SC_SKILLTIPS_LIGHT] by 3%. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801284,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801284.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-knight-elite-70","classId":"rom-mage","secondaryClassId":"rom-knight","group":"elite","unlockLevel":70,"keyItemId":546789,"sourceSkillId":499614,"name":"Saint's Resilience","description":"Removes Helpless, Dizzy, Root, Slow and Fear states. (Target must be in a Root, Slow or Dizzy state for removal effect to work.) \nThis skill can be used under any state that hinders casting. Also reduces your received damage by (Buff0-0)% and lasts for (Buff0-Time) seconds. After the [499614] effect wears off, it causes an extra increase in your [SC_SKILLTIPS_MOVE]. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801332,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623214],"components":[{"id":623214,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":60},{"type":143,"value":60}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":499615,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":499614,"name":"Saint's Resilience","description":"Removes Helpless, Dizzy, Root, Slow and Fear states. (Target must be in a Root, Slow or Dizzy state for removal effect to work.) \nThis skill can be used under any state that hinders casting. Also reduces your received damage by (Buff0-0)% and lasts for (Buff0-Time) seconds. After the [499614] effect wears off, it causes an extra increase in your [SC_SKILLTIPS_MOVE]. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801332,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623214]}}],"icon":"/assets/ui/rom-spells/801332.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-15","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":15,"keyItemId":543022,"sourceSkillId":494049,"name":"Earth Surge","description":"Causes massive damage to target, but the chance of hitting the target is pretty low. Inflicts (DMG0) + (FixDMG-620236) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1.4},"source":{"imageId":579119,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620236],"components":[{"id":620236,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-140,"fixedValue":-0.6,"attack":{"type":0,"calculationType":1,"damagePower":-140,"damagePowerSkillLevelArg":30,"fixedValue":-0.6,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494049,"name":"Earth Surge","description":"Causes massive damage to target, but the chance of hitting the target is pretty low. Inflicts (DMG0) + (FixDMG-620236) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1.4},"source":{"imageId":579119,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620236]}}],"icon":"/assets/ui/rom-spells/579119.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-20","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":20,"keyItemId":543030,"sourceSkillId":494050,"name":"Absence","description":"Causes target to become absent minded, reducing [SC_SKILLTIPS_MAG_HITP] by (Buff0-0)% for (Buff0-Time) seconds.\n(When the target is a player, lowers [SC_SKILLTIPS_MAG_HITP] by (Buff1-0)% for (Buff1-Time) seconds. )\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579120,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504559,504245],"components":[{"id":504559,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":199,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504245,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"abilityModifiers":[{"type":199,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494050,"name":"Absence","description":"Causes target to become absent minded, reducing [SC_SKILLTIPS_MAG_HITP] by (Buff0-0)% for (Buff0-Time) seconds.\n(When the target is a player, lowers [SC_SKILLTIPS_MAG_HITP] by (Buff1-0)% for (Buff1-Time) seconds. )\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579120,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504559,504245]}}],"icon":"/assets/ui/rom-spells/579120.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-25","classId":"rom-mage","secondaryClassId":"rom-warden","group":"passive","unlockLevel":25,"keyItemId":543038,"sourceSkillId":494051,"name":"Flame Follower","description":"The flame follower understands the flow of flame energy, reducing your Fireball cooldown by 1 second and increasing your Fireball critical rate.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579121,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494051,"name":"Flame Follower","description":"The flame follower understands the flow of flame energy, reducing your Fireball cooldown by 1 second and increasing your Fireball critical rate.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579121,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579121.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-30","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":30,"keyItemId":543046,"sourceSkillId":494330,"name":"Earth Groaning Wind Blade","description":"Combines the power of earth and wind. Slices through the air, causing the earth to resonate, inflicting (DMG4) + (FixDMG-620234) x INT [SC_SKILLTIPS_WIND] and (DMG0) + (FixDMG-620233) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":579897,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620234,620233],"components":[{"id":620234,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620233,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494330,"name":"Earth Groaning Wind Blade","description":"Combines the power of earth and wind. Slices through the air, causing the earth to resonate, inflicting (DMG4) + (FixDMG-620234) x INT [SC_SKILLTIPS_WIND] and (DMG0) + (FixDMG-620233) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":579897,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620234,620233]}}],"icon":"/assets/ui/rom-spells/579897.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-35","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":35,"keyItemId":543054,"sourceSkillId":494562,"name":"Earth Scepter","description":"Your done magical Earth damage is increased by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579898,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504913],"components":[{"id":504913,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":45,"value":5}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494562,"name":"Earth Scepter","description":"Your done magical Earth damage is increased by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579898,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504913]}}],"icon":"/assets/ui/rom-spells/579898.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-40","classId":"rom-mage","secondaryClassId":"rom-warden","group":"passive","unlockLevel":40,"keyItemId":543062,"sourceSkillId":494563,"name":"Feedback","description":"A successful hit of your Earth Groaning Wind Blade has a chance of restoring MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579899,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":494563,"name":"Feedback","description":"A successful hit of your Earth Groaning Wind Blade has a chance of restoring MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579899,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579899.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-45","classId":"rom-mage","secondaryClassId":"rom-warden","group":"passive","unlockLevel":45,"keyItemId":543070,"sourceSkillId":850318,"name":"Elves' Favor","description":"When you use Elven Amulet, any attack damage received while the effect lasts may cause your next spell casting time to be 1 second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581110,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":850318,"name":"Elves' Favor","description":"When you use Elven Amulet, any attack damage received while the effect lasts may cause your next spell casting time to be 1 second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581110,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581110.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-50","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543078,"sourceSkillId":494926,"name":"Earth Marking","description":"Earth Markings branded on your body will increase your chance to inflict critical damage with magic attacks by (Buff0-0) for (Buff0-Time) seconds. When using earth spells this chance will be additionally increased by another (Buff0-505904) points. This effect can be stacked up to 10 times.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":200,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581111,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505690,505904],"components":[{"id":505690,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505904,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":40}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494926,"name":"Earth Marking","description":"Earth Markings branded on your body will increase your chance to inflict critical damage with magic attacks by (Buff0-0) for (Buff0-Time) seconds. When using earth spells this chance will be additionally increased by another (Buff0-505904) points. This effect can be stacked up to 10 times.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":200,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581111,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505690,505904]}}],"icon":"/assets/ui/rom-spells/581111.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-60","classId":"rom-mage","secondaryClassId":"rom-warden","group":"passive","unlockLevel":60,"keyItemId":546790,"sourceSkillId":499617,"name":"Follower's Ground","description":"While [494562] is in effect, this provides an extra increase in your [SC_SKILLTIPS_INT] and [SC_SKILLTIPS_STA]. Also your [494050] will cause an additional increase in the [SC_SKILLTIPS_EARTH] received by the target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801285,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499617,"name":"Follower's Ground","description":"While [494562] is in effect, this provides an extra increase in your [SC_SKILLTIPS_INT] and [SC_SKILLTIPS_STA]. Also your [494050] will cause an additional increase in the [SC_SKILLTIPS_EARTH] received by the target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801285,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801285.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warden-elite-70","classId":"rom-mage","secondaryClassId":"rom-warden","group":"elite","unlockLevel":70,"keyItemId":546791,"sourceSkillId":499620,"name":"Earth Core Barrier","description":"Reduces your received damage by (Buff0-0)%. Also all spells are transformed to instant spells. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801333,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623219],"components":[{"id":623219,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,524288],"abilityModifiers":[{"type":142,"value":60},{"type":143,"value":60}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499620,"name":"Earth Core Barrier","description":"Reduces your received damage by (Buff0-0)%. Also all spells are transformed to instant spells. Lasts for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801333,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623219]}}],"icon":"/assets/ui/rom-spells/801333.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-15","classId":"rom-mage","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543023,"sourceSkillId":494052,"name":"Perception","description":"Temporarily increases [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-1)% + (Buff0-0). Also increases [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-1)) x (Buff4-0)% + (Buff0-1) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579122,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504561,506234],"components":[{"id":504561,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":30},{"type":15,"value":20}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495284,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506234,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":1},{"type":168,"value":1}],"abilitySkillLevelArg":7,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494052,"name":"Perception","description":"Temporarily increases [SC_SKILLTIPS_MP] by (current [SC_SKILLTIPS_MP] + (Buff0-0)) x (Buff4-1)% + (Buff0-0). Also increases [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-1)) x (Buff4-0)% + (Buff0-1) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579122,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504561,506234]}}],"icon":"/assets/ui/rom-spells/579122.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-20","classId":"rom-mage","secondaryClassId":"rom-druid","group":"elite","unlockLevel":20,"keyItemId":543031,"sourceSkillId":494053,"name":"Magic Target","description":"Temporarily increases your magic accuracy by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579123,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504562],"components":[{"id":504562,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":195,"value":10}],"abilitySkillLevelArg":10.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":494053,"name":"Magic Target","description":"Temporarily increases your magic accuracy by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579123,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504562]}}],"icon":"/assets/ui/rom-spells/579123.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-25","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":25,"keyItemId":543039,"sourceSkillId":494054,"name":"Control Flame","description":"When your Eruption effect is triggered, [SC_SKILLTIPS_02] additionally increases by (Buff0-504563)% .\n([SC_SKILLTIPS_CD_1](Buff-Time-504869)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579124,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504563,504869],"components":[{"id":504563,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":8}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494078,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504869,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494054,"name":"Control Flame","description":"When your Eruption effect is triggered, [SC_SKILLTIPS_02] additionally increases by (Buff0-504563)% .\n([SC_SKILLTIPS_CD_1](Buff-Time-504869)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579124,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504563,504869]}}],"icon":"/assets/ui/rom-spells/579124.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-30","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":30,"keyItemId":543047,"sourceSkillId":494331,"name":"Green Guardian","description":"After Mother Earth's Protection effect ends, additionally restores (Buff-Dot-620188)% + (Buff-Dot-504874) HP every 2 seconds for (Buff-Time-504874) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579900,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620188,504874],"components":[{"id":620188,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":8297,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":5,"dotBase":2,"dot":{"timeSeconds":2,"type":5,"base":2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504874,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":8299,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":30,"dot":{"timeSeconds":2,"type":0,"base":30,"skillLevelArg":30},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494331,"name":"Green Guardian","description":"After Mother Earth's Protection effect ends, additionally restores (Buff-Dot-620188)% + (Buff-Dot-504874) HP every 2 seconds for (Buff-Time-504874) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579900,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620188,504874]}}],"icon":"/assets/ui/rom-spells/579900.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-35","classId":"rom-mage","secondaryClassId":"rom-druid","group":"elite","unlockLevel":35,"keyItemId":543055,"sourceSkillId":494564,"name":"Magma Blade","description":"Forms the power of earth and fire into a blade dealing (DMG0) + (FixDMG-620227) x INT [SC_SKILLTIPS_FLAME] and (DMG4) + (FixDMG-620228) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":579901,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620227,620228],"components":[{"id":620227,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.15,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.15,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620228,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":-0.15,"attack":{"type":0,"calculationType":1,"damagePower":-10,"damagePowerSkillLevelArg":30,"fixedValue":-0.15,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":494564,"name":"Magma Blade","description":"Forms the power of earth and fire into a blade dealing (DMG0) + (FixDMG-620227) x INT [SC_SKILLTIPS_FLAME] and (DMG4) + (FixDMG-620228) x INT [SC_SKILLTIPS_EARTH].","target":"hostile","range":25,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":579901,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620227,620228]}}],"icon":"/assets/ui/rom-spells/579901.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-40","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":40,"keyItemId":543063,"sourceSkillId":494565,"name":"Boiling Rock","description":"The critical hit rate for your [494564|Magma Blade's] Fire damage is increased and its Earth damage has a chance of restoring MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579902,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494565,"name":"Boiling Rock","description":"The critical hit rate for your [494564|Magma Blade's] Fire damage is increased and its Earth damage has a chance of restoring MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579902,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579902.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-45","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":45,"keyItemId":543071,"sourceSkillId":494927,"name":"Earth Attack","description":"Causes the damage range of Earth Pulse to become fan-shaped and reduces cooldown by 5 seconds. When it hits, it will increase earth damage inflicted on the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581112,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494927,"name":"Earth Attack","description":"Causes the damage range of Earth Pulse to become fan-shaped and reduces cooldown by 5 seconds. When it hits, it will increase earth damage inflicted on the target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581112,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581112.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-50","classId":"rom-mage","secondaryClassId":"rom-druid","group":"elite","unlockLevel":50,"keyItemId":543079,"sourceSkillId":494928,"name":"Elven Mystic","description":"Using ancient Elven magic lets you concentrate magical energy inside your body for (Buff0-Time) seconds. While in effect casting offensive spells will give you the chance to get Energetically Charged. When this effect stacks 5 times, further casting of offensive spells will give you the chance of receiving Mystic Energy. Mystic Energy can be released to inflict (DMG-620231) + (FixDMG-620231) x INT [SC_SKILLTIPS_WIND] on your target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":300,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":3.5},"source":{"imageId":581155,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505914,505913,620231],"components":[{"id":505914,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505913,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"clearFlags":4096,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495070,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620231,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-700,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-700,"damagePowerSkillLevelArg":5,"fixedValue":-0.2,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":494928,"name":"Elven Mystic","description":"Using ancient Elven magic lets you concentrate magical energy inside your body for (Buff0-Time) seconds. While in effect casting offensive spells will give you the chance to get Energetically Charged. When this effect stacks 5 times, further casting of offensive spells will give you the chance of receiving Mystic Energy. Mystic Energy can be released to inflict (DMG-620231) + (FixDMG-620231) x INT [SC_SKILLTIPS_WIND] on your target.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":300,"percentage":false},{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":3.5},"source":{"imageId":581155,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505914,505913,620231]}}],"icon":"/assets/ui/rom-spells/581155.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-60","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546792,"sourceSkillId":499621,"name":"Infiltration Spirit","description":"After a target is hit by your [499622], it causes an additional reduction of the target's [SC_SKILLTIPS_MDEF].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801286,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499621,"name":"Infiltration Spirit","description":"After a target is hit by your [499622], it causes an additional reduction of the target's [SC_SKILLTIPS_MDEF].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801286,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801286.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-druid-elite-70","classId":"rom-mage","secondaryClassId":"rom-druid","group":"passive","unlockLevel":70,"keyItemId":546793,"sourceSkillId":499623,"name":"Pulse Link","description":"You will receive [499624] as well when you use [499624] on a target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801334,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499623,"name":"Pulse Link","description":"You will receive [499624] as well when you use [499624] on a target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801334,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801334.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-15","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":15,"keyItemId":545992,"sourceSkillId":498744,"name":"Static Resonance","description":"Immediately resets the cooldown time for Electrostatic Charge.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800136,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621500],"components":[{"id":621500,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498744,"name":"Static Resonance","description":"Immediately resets the cooldown time for Electrostatic Charge.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800136,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621500]}}],"icon":"/assets/ui/rom-spells/800136.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-20","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":20,"keyItemId":545993,"sourceSkillId":498745,"name":"Industry Fire","description":"Increases damage dealt by Soul Pain and transforms it into fire damage. Also inflicts extra fire damage when used.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800137,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498745,"name":"Industry Fire","description":"Increases damage dealt by Soul Pain and transforms it into fire damage. Also inflicts extra fire damage when used.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800137,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800137.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-25","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":25,"keyItemId":545994,"sourceSkillId":498748,"name":"Lightning Display","description":"Increases the effective time of [621505] caused by the Plasma Arrow to (Buff-Time-621505) seconds and increases your [SC_SKILLTIPS_WIND].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800138,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621505],"components":[{"id":621505,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":18,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":96,"abilityModifiers":[{"type":20,"value":20},{"type":48,"value":1}],"abilitySkillLevelArg":12,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-10,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498748,"name":"Lightning Display","description":"Increases the effective time of [621505] caused by the Plasma Arrow to (Buff-Time-621505) seconds and increases your [SC_SKILLTIPS_WIND].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800138,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621505]}}],"icon":"/assets/ui/rom-spells/800138.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-30","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":30,"keyItemId":545995,"sourceSkillId":498750,"name":"Breath Erase","description":"Aggro is reduced by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800139,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621506],"components":[{"id":621506,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilityModifiers":[{"type":138,"value":-10}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498750,"name":"Breath Erase","description":"Aggro is reduced by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800139,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621506]}}],"icon":"/assets/ui/rom-spells/800139.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-35","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":35,"keyItemId":545996,"sourceSkillId":498751,"name":"Elements of Pride","description":"You will receive [621508] effect when Flame is used, increasing the [SC_SKILLTIPS_WIND]. You will receive [621507] effect when Electric Explosion is used, increasing the [SC_SKILLTIPS_FLAME]. These effects can be stacked individually up to 2 times. The effects last (Buff-Time-621507) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800140,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621508,621507],"components":[{"id":621508,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":13,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":48,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621507,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":13,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":47,"value":1}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498751,"name":"Elements of Pride","description":"You will receive [621508] effect when Flame is used, increasing the [SC_SKILLTIPS_WIND]. You will receive [621507] effect when Electric Explosion is used, increasing the [SC_SKILLTIPS_FLAME]. These effects can be stacked individually up to 2 times. The effects last (Buff-Time-621507) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800140,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621508,621507]}}],"icon":"/assets/ui/rom-spells/800140.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-40","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":40,"keyItemId":545997,"sourceSkillId":498757,"name":"Soul Stepping","description":"For (Buff0-Time) seconds, allows you to move while casting any spell. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800141,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623434,621509],"components":[{"id":623434,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilityModifiers":[{"type":24,"value":20},{"type":51,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621509,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498757,"name":"Soul Stepping","description":"For (Buff0-Time) seconds, allows you to move while casting any spell. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800141,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623434,621509]}}],"icon":"/assets/ui/rom-spells/800141.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-45","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":45,"keyItemId":545998,"sourceSkillId":498758,"name":"Deep Inspiration","description":"Immediately resets the cooldown time for Intensification and Energy Well.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800142,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621510],"components":[{"id":621510,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":498758,"name":"Deep Inspiration","description":"Immediately resets the cooldown time for Intensification and Energy Well.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800142,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621510]}}],"icon":"/assets/ui/rom-spells/800142.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-50","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":545999,"sourceSkillId":498759,"name":"Fire Lightning Burst","description":"Inflicts (DMG0) + (FixDMG-621511) x INT [SC_SKILLTIPS_FLAME] and (DMG4) + (FixDMG-621512) x INT [SC_SKILLTIPS_WIND] on target. If the target doesn't die during this attack, then the skill's cooldown time is immediately reset. \n([SC_SKILLTIPS_CD_1](Buff-Time-621514)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":7000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":800143,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621511,621512,621514],"components":[{"id":621511,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-60,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621512,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-60,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621514,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498759,"name":"Fire Lightning Burst","description":"Inflicts (DMG0) + (FixDMG-621511) x INT [SC_SKILLTIPS_FLAME] and (DMG4) + (FixDMG-621512) x INT [SC_SKILLTIPS_WIND] on target. If the target doesn't die during this attack, then the skill's cooldown time is immediately reset. \n([SC_SKILLTIPS_CD_1](Buff-Time-621514)[SC_SKILLTIPS_CD_2])\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":2000,"cooldownMs":7000,"costs":[{"resource":"focus","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":800143,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621511,621512,621514]}}],"icon":"/assets/ui/rom-spells/800143.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-60","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":60,"keyItemId":546794,"sourceSkillId":499813,"name":"Soul Speed","description":"Causes [498757] to additionally increase [SC_SKILLTIPS_MOVE] by (Buff0-623434)% and [SC_SKILLTIPS_CAST] by (Buff0-623434)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801622,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623434],"components":[{"id":623434,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1048576],"abilityModifiers":[{"type":24,"value":20},{"type":51,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":499813,"name":"Soul Speed","description":"Causes [498757] to additionally increase [SC_SKILLTIPS_MOVE] by (Buff0-623434)% and [SC_SKILLTIPS_CAST] by (Buff0-623434)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801622,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623434]}}],"icon":"/assets/ui/rom-spells/801622.png","iconResolution":"native-interface-fdb"},{"id":"rom-mage-rom-warlock-elite-70","classId":"rom-mage","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":70,"keyItemId":546796,"sourceSkillId":499814,"name":"Elemental Extraction","description":"When critically hit by [499812] or [491170], the target's [SC_SKILLTIPS_DEF] will be reduced by (Buff0-623436)% and [SC_SKILLTIPS_MDEF] by (Buff1-623436)% for (Buff-Time-623436) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801623,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623436],"components":[{"id":623436,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":-30},{"type":170,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499814,"name":"Elemental Extraction","description":"When critically hit by [499812] or [491170], the target's [SC_SKILLTIPS_DEF] will be reduced by (Buff0-623436)% and [SC_SKILLTIPS_MDEF] by (Buff1-623436)% for (Buff-Time-623436) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801623,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623436]}}],"icon":"/assets/ui/rom-spells/801623.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-15","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":541905,"sourceSkillId":491600,"name":"Battle Monk Stance","description":"When the stance is activated, [SC_SKILLTIPS_01] will be increased by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff0-506388)% + (Buff0-0), and [SC_SKILLTIPS_DEF] will be increased by (Buff0-507324)%, but healing ability will be reduced by (Buff0-506386)%. The stance is effective for(Buff0-Time) seconds. (This skill increases defense by a maximum of (Max-Buff0-507324)% and reduces healing ability by a maximum of(Max-Buff0-506386)%).","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575718,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501977,507325,506388,507324,506386],"components":[{"id":501977,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":12,"value":30}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495280,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507325,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506388,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":2}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":507324,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":10}],"abilitySkillLevelArg":9.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506386,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":-3}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491600,"name":"Battle Monk Stance","description":"When the stance is activated, [SC_SKILLTIPS_01] will be increased by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff0-506388)% + (Buff0-0), and [SC_SKILLTIPS_DEF] will be increased by (Buff0-507324)%, but healing ability will be reduced by (Buff0-506386)%. The stance is effective for(Buff0-Time) seconds. (This skill increases defense by a maximum of (Max-Buff0-507324)% and reduces healing ability by a maximum of(Max-Buff0-506386)%).","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575718,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501977,507325,506388,507324,506386]}}],"icon":"/assets/ui/rom-spells/575718.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-20","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":20,"keyItemId":541935,"sourceSkillId":491362,"name":"Explosion of Fighting Spirit","description":"Mana is converted into fighting spirit to attack the target and inflict (DMG0) main hand weapon DPS. \n(Requires the Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575233,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501789],"components":[{"id":501789,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":491362,"name":"Explosion of Fighting Spirit","description":"Mana is converted into fighting spirit to attack the target and inflict (DMG0) main hand weapon DPS. \n(Requires the Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575233,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501789]}}],"icon":"/assets/ui/rom-spells/575233.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-25","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":25,"keyItemId":541965,"sourceSkillId":491363,"name":"Fighting Spirit Combination","description":"Releases two successive bursts of fighting spirit, that cause (DMG0) main hand weapon DPS. \n(Requires Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575234,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501790],"components":[{"id":501790,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":491363,"name":"Fighting Spirit Combination","description":"Releases two successive bursts of fighting spirit, that cause (DMG0) main hand weapon DPS. \n(Requires Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575234,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501790]}}],"icon":"/assets/ui/rom-spells/575234.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-30","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":541995,"sourceSkillId":491364,"name":"Ascending Dragon Strike","description":"Transforms rage into a dragon-like form inflicting (DMG0) main hand weapon DPS. \n(Requires Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575235,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501791],"components":[{"id":501791,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.8,"damagePowerSkillLevelArg":4,"fixedValue":0,"fixedType":1,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":491364,"name":"Ascending Dragon Strike","description":"Transforms rage into a dragon-like form inflicting (DMG0) main hand weapon DPS. \n(Requires Battle Monk Stance)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575235,"sourceEffectType":1,"sourceTarget":6,"componentIds":[501791]}}],"icon":"/assets/ui/rom-spells/575235.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-35","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542026,"sourceSkillId":492635,"name":"Power Build-Up","description":"Converts Mana into fighting spirit, which accumulates in you. Increases for (Buff0-Time) seconds your 1-H Weapon Damage by (Buff0-1)%, 2-H Staff Damage by (Buff0-3)%, and your maximum HP by (Buff0-0)%.\n(Requires the Battle Monk Stance.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577010,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502904],"components":[{"id":502904,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":1},{"type":61,"value":3},{"type":62,"value":3},{"type":64,"value":2}],"abilitySkillLevelArg":28,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":492635,"name":"Power Build-Up","description":"Converts Mana into fighting spirit, which accumulates in you. Increases for (Buff0-Time) seconds your 1-H Weapon Damage by (Buff0-1)%, 2-H Staff Damage by (Buff0-3)%, and your maximum HP by (Buff0-0)%.\n(Requires the Battle Monk Stance.)\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577010,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502904]}}],"icon":"/assets/ui/rom-spells/577010.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-40","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":542056,"sourceSkillId":492930,"name":"Vindictive Strike","description":"Inflicts (DMG0) DPS on the target, and Stuns it for (Buff4-Time) seconds.","target":"hostile","range":7,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":3},"source":{"imageId":577601,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503193,503194,503855,502719],"components":[{"id":503193,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-300,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-300,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503194,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777331,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503855,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":4,"effectFlagWords":[16777331,0],"abilityModifiers":[{"type":198,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502719,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":4,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492930,"name":"Vindictive Strike","description":"Inflicts (DMG0) DPS on the target, and Stuns it for (Buff4-Time) seconds.","target":"hostile","range":7,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":3},"source":{"imageId":577601,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503193,503194,503855,502719]}}],"icon":"/assets/ui/rom-spells/577601.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-45","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":45,"keyItemId":542086,"sourceSkillId":493038,"name":"Condensed Rage","description":"Instantly lets you enter Condensed Rage state for (Buff0-Time) seconds. When attacked in this state you recover (Buff-Dot-503301) HP.\n(Requires [491600])\n(After the effect has ended it cannot be triggered again for (Buff-Time-506323) seconds.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577661,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503280,503301,506323],"components":[{"id":503280,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":107,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":493056,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503301,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":137,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495293,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":0,"dotBase":50,"dot":{"timeSeconds":1,"type":0,"base":50,"skillLevelArg":20},"attackType":0,"damagePower":50,"fixedValue":0,"summonCreatureId":0},{"id":506323,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":65,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":493038,"name":"Condensed Rage","description":"Instantly lets you enter Condensed Rage state for (Buff0-Time) seconds. When attacked in this state you recover (Buff-Dot-503301) HP.\n(Requires [491600])\n(After the effect has ended it cannot be triggered again for (Buff-Time-506323) seconds.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577661,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503280,503301,506323]}}],"icon":"/assets/ui/rom-spells/577661.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-50","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":50,"keyItemId":542116,"sourceSkillId":493267,"name":"Fire Fairy","description":"Summons a fire fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102104},"source":{"imageId":577786,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503164],"components":[{"id":503164,"magicFunc":3,"magicType":2,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"summonCreatureId":102104,"summon":{"creatureId":102104,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":493267,"name":"Fire Fairy","description":"Summons a fire fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102104},"source":{"imageId":577786,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503164]}}],"icon":"/assets/ui/rom-spells/577786.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-60","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546799,"sourceSkillId":499984,"name":"Light Healer Fighting Spirit","description":"When [622997] hits a target, it can recover the caster's HP.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801287,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622997],"components":[{"id":622997,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499984,"name":"Light Healer Fighting Spirit","description":"When [622997] hits a target, it can recover the caster's HP.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801287,"sourceEffectType":2,"sourceTarget":0,"componentIds":[622997]}}],"icon":"/assets/ui/rom-spells/801287.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warrior-elite-70","classId":"rom-priest","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546800,"sourceSkillId":499982,"name":"Violent Kick","description":"When [493277] is in effect, [501791] carries a Stun effect and when this effect wears off, a Slow effect is invoked.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801335,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501791],"components":[{"id":501791,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1.8,"damagePowerSkillLevelArg":4,"fixedValue":0,"fixedType":1,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499982,"name":"Violent Kick","description":"When [493277] is in effect, [501791] carries a Stun effect and when this effect wears off, a Slow effect is invoked.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801335,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501791]}}],"icon":"/assets/ui/rom-spells/801335.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-15","classId":"rom-priest","secondaryClassId":"rom-champion","group":"passive","unlockLevel":15,"keyItemId":546031,"sourceSkillId":498610,"name":"Infused Light Chain","description":"Increases damage caused by Chain of Light and doesn't require cooldown time. Hits can carry an extra addition of rage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800176,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498610,"name":"Infused Light Chain","description":"Increases damage caused by Chain of Light and doesn't require cooldown time. Hits can carry an extra addition of rage.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800176,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800176.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-20","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":546032,"sourceSkillId":498612,"name":"Heart Rune Energy","description":"Restores (DMG1) HP to friendly targets. Also increases caster's [SC_SKILLTIPS_MND] by (Buff4-0)% for (Buff4-Time) seconds.","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":800177,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621152,621546,621547],"components":[{"id":621152,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0.4,"attack":{"type":0,"calculationType":5,"damagePower":70,"damagePowerSkillLevelArg":20,"fixedValue":0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":621546,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":35,"fixedValue":0.2,"attack":{"type":0,"calculationType":5,"damagePower":35,"damagePowerSkillLevelArg":20,"fixedValue":0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":621547,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":7,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":164,"value":2}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498612,"name":"Heart Rune Energy","description":"Restores (DMG1) HP to friendly targets. Also increases caster's [SC_SKILLTIPS_MND] by (Buff4-0)% for (Buff4-Time) seconds.","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":800177,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621152,621546,621547]}}],"icon":"/assets/ui/rom-spells/800177.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-25","classId":"rom-priest","secondaryClassId":"rom-champion","group":"passive","unlockLevel":25,"keyItemId":546033,"sourceSkillId":498613,"name":"Protection Rune Seal","description":"Increases Regeneration's healing effect and carries an 8% chance to immediately reset the cooldown time of Heart Rune Energy every time Regeneration is invoked.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800178,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498613,"name":"Protection Rune Seal","description":"Increases Regeneration's healing effect and carries an 8% chance to immediately reset the cooldown time of Heart Rune Energy every time Regeneration is invoked.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800178,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800178.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-30","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":30,"keyItemId":546034,"sourceSkillId":498615,"name":"Healing Diamond Light","description":"Converts (Buff0-Dot)% MP to Diamond Light every second while in effect. Also recovers (DMG-621551) + (FixDMG-621551) x INT HP for all party members in contact in a range of 120. \n(This state ends when MP has been exhausted.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":29,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.35},"source":{"imageId":800179,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621550,621551],"components":[{"id":621550,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":111,"specialActionFlags":0,"assistType":-1,"clearFlags":2080,"abilityModifiers":[{"type":0,"value":8}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":498616,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":6,"dotBase":-7,"dot":{"timeSeconds":1,"type":6,"base":-7,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621551,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":35,"fixedValue":0.1,"attack":{"type":0,"calculationType":5,"damagePower":35,"damagePowerSkillLevelArg":12,"fixedValue":0.1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498615,"name":"Healing Diamond Light","description":"Converts (Buff0-Dot)% MP to Diamond Light every second while in effect. Also recovers (DMG-621551) + (FixDMG-621551) x INT HP for all party members in contact in a range of 120. \n(This state ends when MP has been exhausted.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":29,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.35},"source":{"imageId":800179,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621550,621551]}}],"icon":"/assets/ui/rom-spells/800179.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-35","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":35,"keyItemId":546035,"sourceSkillId":498617,"name":"Diamond Light Activation","description":"Immediately recovers (DMG4) MP and increases amount of healing by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800180,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621151,621150],"components":[{"id":621151,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"clearFlags":2048,"abilityModifiers":[{"type":149,"value":4}],"abilitySkillLevelArg":15,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621150,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":33,"fixedValue":0,"attack":{"type":1,"calculationType":8,"damagePower":33,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498617,"name":"Diamond Light Activation","description":"Immediately recovers (DMG4) MP and increases amount of healing by (Buff0-0)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800180,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621151,621150]}}],"icon":"/assets/ui/rom-spells/800180.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-40","classId":"rom-priest","secondaryClassId":"rom-champion","group":"passive","unlockLevel":40,"keyItemId":546036,"sourceSkillId":498618,"name":"Quick Heal","description":"Increases the amount of HP restored by Heart Rune Energy when current target's HP falls below 40%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800181,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498618,"name":"Quick Heal","description":"Increases the amount of HP restored by Heart Rune Energy when current target's HP falls below 40%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800181,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800181.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-45","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":45,"keyItemId":546037,"sourceSkillId":498619,"name":"Rune Footstep","description":"Increases [SC_SKILLTIPS_MOVE] by (Buff0-0)% and [SC_SKILLTIPS_HEAL] by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800182,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621552],"components":[{"id":621552,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10},{"type":149,"value":5}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498619,"name":"Rune Footstep","description":"Increases [SC_SKILLTIPS_MOVE] by (Buff0-0)% and [SC_SKILLTIPS_HEAL] by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800182,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621552]}}],"icon":"/assets/ui/rom-spells/800182.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-50","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":50,"keyItemId":546038,"sourceSkillId":498620,"name":"Beacon of Regeneration","description":"After a beacon has been created on a friendly party member, it will restore (DMG-621227) points of this member's HP every time you invoke a healing effect. \n(Beacon of Regeneration lasts for (Buff0-Time) seconds.)","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":29,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800183,"sourceEffectType":0,"sourceTarget":1,"componentIds":[620489,620490,621227],"components":[{"id":620489,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":0,"value":10},{"type":0,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620490,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":-10,"settingFlags":524481,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":0,"value":10},{"type":0,"value":10}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621227,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":35,"dot":{"timeSeconds":1,"type":0,"base":35,"skillLevelArg":30},"attackType":0,"damagePower":35,"fixedValue":0.2,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498620,"name":"Beacon of Regeneration","description":"After a beacon has been created on a friendly party member, it will restore (DMG-621227) points of this member's HP every time you invoke a healing effect. \n(Beacon of Regeneration lasts for (Buff0-Time) seconds.)","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":29,"percentage":false},{"resource":"mana","amount":1,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800183,"sourceEffectType":0,"sourceTarget":1,"componentIds":[620489,620490,621227]}}],"icon":"/assets/ui/rom-spells/800183.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-60","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":60,"keyItemId":546811,"sourceSkillId":498625,"name":"Tower of Vitality","description":"Creates a tower that increases the attributes of friendly targets within range by (Buff0-622051)% for 20 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":6,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801628,"sourceEffectType":0,"sourceTarget":0,"componentIds":[622047,622051],"components":[{"id":622047,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622051,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":166,"value":6}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":498625,"name":"Tower of Vitality","description":"Creates a tower that increases the attributes of friendly targets within range by (Buff0-622051)% for 20 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":6,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801628,"sourceEffectType":0,"sourceTarget":0,"componentIds":[622047,622051]}}],"icon":"/assets/ui/rom-spells/801628.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-champion-elite-70","classId":"rom-priest","secondaryClassId":"rom-champion","group":"elite","unlockLevel":70,"keyItemId":546812,"sourceSkillId":498626,"name":"Light Connection","description":"Creates a shield on a target party member that reduces damage taken by (Buff1-623068)% and increases the target's and caster's [SC_SKILLTIPS_MOVE] by (Buff0-623068)%.\n(Cannot be cast on yourself.)","target":"friendly","range":21.700000000000003,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801629,"sourceEffectType":0,"sourceTarget":1,"componentIds":[622994,623068],"components":[{"id":622994,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":268435456,"specialActionFlags":8,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623068,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":5},{"type":206,"value":-5},{"type":207,"value":-5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":498626,"name":"Light Connection","description":"Creates a shield on a target party member that reduces damage taken by (Buff1-623068)% and increases the target's and caster's [SC_SKILLTIPS_MOVE] by (Buff0-623068)%.\n(Cannot be cast on yourself.)","target":"friendly","range":21.700000000000003,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801629,"sourceEffectType":0,"sourceTarget":1,"componentIds":[622994,623068]}}],"icon":"/assets/ui/rom-spells/801629.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-15","classId":"rom-priest","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":541906,"sourceSkillId":491323,"name":"Embrace of the Water Spirit","description":"Beseeches the Water Spirits for their blessing, and raises your and your party members' [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501778,506321],"components":[{"id":501778,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":15,"value":20}],"abilitySkillLevelArg":40,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495292,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506321,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491323,"name":"Embrace of the Water Spirit","description":"Beseeches the Water Spirits for their blessing, and raises your and your party members' [SC_SKILLTIPS_02] by (current [SC_SKILLTIPS_02] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575261,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501778,506321]}}],"icon":"/assets/ui/rom-spells/575261.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-20","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":541936,"sourceSkillId":492396,"name":"Throat Stab","description":"Increase the range of Throat Attack","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575264,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":492396,"name":"Throat Stab","description":"Increase the range of Throat Attack","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575264,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575264.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-25","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":25,"keyItemId":541966,"sourceSkillId":492357,"name":"Enhanced Wave Armor","description":"Your Wave Armor now also increases defense.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575714,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":492357,"name":"Enhanced Wave Armor","description":"Your Wave Armor now also increases defense.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575714,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575714.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-30","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":30,"keyItemId":541996,"sourceSkillId":492398,"name":"Tide Control","description":"Rising Tide now additionaly causes ranged weapon damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575265,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":492398,"name":"Tide Control","description":"Rising Tide now additionaly causes ranged weapon damage.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575265,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575265.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-35","classId":"rom-priest","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":542027,"sourceSkillId":492636,"name":"Curing Shot","description":"Shoots an arrow filled with the power of Light on 5 friendly targets within reach, healing them for (DMG0) HP and additionally restores (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":12000,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":577011,"sourceEffectType":0,"sourceTarget":16,"componentIds":[502905,502914],"components":[{"id":502905,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":20,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":20,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502914,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":10,"dot":{"timeSeconds":2,"type":0,"base":10,"skillLevelArg":15},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":492636,"name":"Curing Shot","description":"Shoots an arrow filled with the power of Light on 5 friendly targets within reach, healing them for (DMG0) HP and additionally restores (Buff4-Dot) HP every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":12000,"costs":[{"resource":"mana","amount":120,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":577011,"sourceEffectType":0,"sourceTarget":16,"componentIds":[502905,502914]}}],"icon":"/assets/ui/rom-spells/577011.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-40","classId":"rom-priest","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":542057,"sourceSkillId":490070,"name":"Ice Blade","description":"Turns magic into a knife blade to attack the target, causing (DMG0) [SC_SKILLTIPS_WATER].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":577602,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620410],"components":[{"id":620410,"magicFunc":0,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-25,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-25,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":490070,"name":"Ice Blade","description":"Turns magic into a knife blade to attack the target, causing (DMG0) [SC_SKILLTIPS_WATER].","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.25},"source":{"imageId":577602,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620410]}}],"icon":"/assets/ui/rom-spells/577602.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-45","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":542087,"sourceSkillId":493039,"name":"Saint's Blessing","description":"When you cast a Heal on a friendly target whose HP is lower than 30%, the healing effect will be additionally enhanced by (Buff0-503283) + (Buff0-620406)%.","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577662,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503283,620406],"components":[{"id":503283,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":81920,"abilityModifiers":[{"type":150,"value":30}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"summonCreatureId":0},{"id":620406,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":81920,"abilityModifiers":[{"type":149,"value":1}],"abilitySkillLevelArg":19,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":493039,"name":"Saint's Blessing","description":"When you cast a Heal on a friendly target whose HP is lower than 30%, the healing effect will be additionally enhanced by (Buff0-503283) + (Buff0-620406)%.","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577662,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503283,620406]}}],"icon":"/assets/ui/rom-spells/577662.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-50","classId":"rom-priest","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":542117,"sourceSkillId":493268,"name":"Water Fairy","description":"Summons a water fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102105},"source":{"imageId":577787,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503456],"components":[{"id":503456,"magicFunc":3,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102105,"summon":{"creatureId":102105,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493268,"name":"Water Fairy","description":"Summons a water fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102105},"source":{"imageId":577787,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503456]}}],"icon":"/assets/ui/rom-spells/577787.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-60","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546801,"sourceSkillId":499980,"name":"Area of Light Chain","description":"When [499979] hits, it recovers the HP of all party members within an area of 60.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801288,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499980,"name":"Area of Light Chain","description":"When [499979] hits, it recovers the HP of all party members within an area of 60.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801288,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801288.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-scout-elite-70","classId":"rom-priest","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546802,"sourceSkillId":499978,"name":"Waterstop Curse","description":"When [493278] is in effect, casting [499977] has a chance to reset the cooldown time of [492636].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801336,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499978,"name":"Waterstop Curse","description":"When [493278] is in effect, casting [499977] has a chance to reset the cooldown time of [492636].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801336,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801336.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-15","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":541907,"sourceSkillId":492403,"name":"Snake Curse","description":"Your curse inflicts (Buff0-Dot) points of Dark damage every 2 seconds for (Buff0-Time) seconds on your target.","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575708,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502663],"components":[{"id":502663,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":26},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":492403,"name":"Snake Curse","description":"Your curse inflicts (Buff0-Dot) points of Dark damage every 2 seconds for (Buff0-Time) seconds on your target.","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575708,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502663]}}],"icon":"/assets/ui/rom-spells/575708.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-20","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":541937,"sourceSkillId":492402,"name":"Infectious Wound","description":"Infects target's wounds, causing (DMG0) points of [SC_SKILLTIPS_DARK] and lowers the effectiveness of heals received by the target by (Buff4-0)%. Lasts (Buff4-Time) seconds.\n(This skill lowers the effectiveness of heals received by the target by a maximum of (Max-Buff0-502006)%.)\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575552,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620412,502006,504251],"components":[{"id":620412,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8256,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":25,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502006,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504251,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":492402,"name":"Infectious Wound","description":"Infects target's wounds, causing (DMG0) points of [SC_SKILLTIPS_DARK] and lowers the effectiveness of heals received by the target by (Buff4-0)%. Lasts (Buff4-Time) seconds.\n(This skill lowers the effectiveness of heals received by the target by a maximum of (Max-Buff0-502006)%.)\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":575552,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620412,502006,504251]}}],"icon":"/assets/ui/rom-spells/575552.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-25","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":541967,"sourceSkillId":492400,"name":"Quick Spellcasting","description":"Uses your Nimble Hands for greatly increased spell casting speed.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575551,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":492400,"name":"Quick Spellcasting","description":"Uses your Nimble Hands for greatly increased spell casting speed.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575551,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575551.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-30","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":541997,"sourceSkillId":492360,"name":"Purge","description":"Removes all beneficial effects on target.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":200,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575249,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502549],"components":[{"id":502549,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":492360,"name":"Purge","description":"Removes all beneficial effects on target.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":200,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575249,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502549]}}],"icon":"/assets/ui/rom-spells/575249.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-35","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542028,"sourceSkillId":492637,"name":"Lure of the Snake Woman","description":"Lures the target into a poisoned dreamland for (Buff-Time-502906) seconds. Inflicts (Buff0-Dot) Dark damage every 2 seconds for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":45000,"costs":[{"resource":"energy","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577012,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502882,502906,503865],"components":[{"id":502882,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":-10,"dot":{"timeSeconds":2,"type":0,"base":-10,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502906,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":43,"effectFlagWords":[33554547,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":492646,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503865,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":43,"effectFlagWords":[33554547,0],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":492646,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":492637,"name":"Lure of the Snake Woman","description":"Lures the target into a poisoned dreamland for (Buff-Time-502906) seconds. Inflicts (Buff0-Dot) Dark damage every 2 seconds for (Buff0-Time) seconds.\n(For players this effect lasts for (Buff5-Time) seconds.)","target":"hostile","range":15,"castTimeMs":1000,"cooldownMs":45000,"costs":[{"resource":"energy","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577012,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502882,502906,503865]}}],"icon":"/assets/ui/rom-spells/577012.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-40","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":542058,"sourceSkillId":492932,"name":"Shadow Fury","description":"Increases the whole party's [SC_SKILLTIPS_MCRI] by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577603,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503196],"components":[{"id":503196,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":492932,"name":"Shadow Fury","description":"Increases the whole party's [SC_SKILLTIPS_MCRI] by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577603,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503196]}}],"icon":"/assets/ui/rom-spells/577603.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-45","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":542088,"sourceSkillId":493040,"name":"Snake Spirit","description":"Replenishes your mana when the effect of your Snake Curse wears off. (This effect can only be used on one target at one time.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577663,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":493040,"name":"Snake Spirit","description":"Replenishes your mana when the effect of your Snake Curse wears off. (This effect can only be used on one target at one time.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577663,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577663.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-50","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":542118,"sourceSkillId":493269,"name":"Shadow Fairy","description":"Summons a shadow fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102106},"source":{"imageId":577788,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503458],"components":[{"id":503458,"magicFunc":3,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102106,"summon":{"creatureId":102106,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":493269,"name":"Shadow Fairy","description":"Summons a shadow fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102106},"source":{"imageId":577788,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503458]}}],"icon":"/assets/ui/rom-spells/577788.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-60","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546803,"sourceSkillId":499961,"name":"Toxic Feedback","description":"Makes your [499975] have a chance to make the next [499976] an instant spell.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801289,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499961,"name":"Toxic Feedback","description":"Makes your [499975] have a chance to make the next [499976] an instant spell.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801289,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801289.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-rogue-elite-70","classId":"rom-priest","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546804,"sourceSkillId":499974,"name":"Black Source Resonance","description":"When [493279] is in effect, [499973] can cause additional [SC_SKILLTIPS_DARK]. Lasts for (Buff-Time-623027) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801337,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623027],"components":[{"id":623027,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":1,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":1,"type":0,"base":-16,"skillLevelArg":30},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499974,"name":"Black Source Resonance","description":"When [493279] is in effect, [499973] can cause additional [SC_SKILLTIPS_DARK]. Lasts for (Buff-Time-623027) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801337,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623027]}}],"icon":"/assets/ui/rom-spells/801337.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-15","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541908,"sourceSkillId":491586,"name":"Freeze","description":"Frost roots your target for (Buff0-Time) seconds. (For players this effect lasts for (Buff1-Time) seconds. Effect is removed when target receives damage.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575250,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501961,503844],"components":[{"id":501961,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":10,"hateCost":50,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[83,0],"clearFlags":2,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503844,"magicFunc":1,"magicType":1,"effectType":0,"effectTime":5,"hateCost":50,"settingFlags":70,"specialActionFlags":0,"assistType":101,"effectFlagWords":[83,0],"clearFlags":2,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":493813,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491586,"name":"Freeze","description":"Frost roots your target for (Buff0-Time) seconds. (For players this effect lasts for (Buff1-Time) seconds. Effect is removed when target receives damage.)\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575250,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501961,503844]}}],"icon":"/assets/ui/rom-spells/575250.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-20","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":541938,"sourceSkillId":491646,"name":"Remove Curse","description":"Removes curse from target.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575252,"sourceEffectType":0,"sourceTarget":4,"componentIds":[502063],"components":[{"id":502063,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":491646,"name":"Remove Curse","description":"Removes curse from target.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":150,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575252,"sourceEffectType":0,"sourceTarget":4,"componentIds":[502063]}}],"icon":"/assets/ui/rom-spells/575252.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-25","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":541968,"sourceSkillId":491644,"name":"Angel's Blessing","description":"The Angel's Blessing grants your party restoration of additional (Buff0-Dot) MP every 5 seconds. Lasts (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575715,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502026],"components":[{"id":502026,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":600,"hateCost":-10,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":5,"dotType":1,"dotBase":10,"dot":{"timeSeconds":5,"type":1,"base":10,"skillLevelArg":8},"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491644,"name":"Angel's Blessing","description":"The Angel's Blessing grants your party restoration of additional (Buff0-Dot) MP every 5 seconds. Lasts (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575715,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502026]}}],"icon":"/assets/ui/rom-spells/575715.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-30","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":541998,"sourceSkillId":491365,"name":"Angel's Carol","description":"Angels appear among the group and all party members regenerate (DMG-502064) MP every 2 seconds. Lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575236,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501792,502064],"components":[{"id":501792,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":268435527,"specialActionFlags":0,"assistType":24,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":491647,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":60,"fixedValue":0,"summonCreatureId":0},{"id":502064,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":30,"fixedValue":0,"attack":{"type":1,"calculationType":4,"damagePower":30,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491365,"name":"Angel's Carol","description":"Angels appear among the group and all party members regenerate (DMG-502064) MP every 2 seconds. Lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575236,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501792,502064]}}],"icon":"/assets/ui/rom-spells/575236.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-35","classId":"rom-priest","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":542029,"sourceSkillId":492638,"name":"Lightning Rod","description":"If Bone Chill is on the target, striking it with Lightning will also cause an Electric Shock, which raises suffered Water and Wind damage for (Buff-Time-502907) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577014,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502907],"components":[{"id":502907,"magicFunc":1,"magicType":3,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":28,"value":-50},{"type":30,"value":-50}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":492638,"name":"Lightning Rod","description":"If Bone Chill is on the target, striking it with Lightning will also cause an Electric Shock, which raises suffered Water and Wind damage for (Buff-Time-502907) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577014,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502907]}}],"icon":"/assets/ui/rom-spells/577014.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-40","classId":"rom-priest","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":542059,"sourceSkillId":492933,"name":"Enlightenment","description":"When you use Heal, you temporarily increase your Wisdom.\n(This skill increases your Wisdom by a maximum of (Max-Buff0-503197)%.)\n([SC_SKILLTIPS_CD_1](Buff-Time-506532)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577604,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503197,506532],"components":[{"id":503197,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":29,"abilityModifiers":[{"type":164,"value":1}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495295,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506532,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":492933,"name":"Enlightenment","description":"When you use Heal, you temporarily increase your Wisdom.\n(This skill increases your Wisdom by a maximum of (Max-Buff0-503197)%.)\n([SC_SKILLTIPS_CD_1](Buff-Time-506532)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577604,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503197,506532]}}],"icon":"/assets/ui/rom-spells/577604.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-45","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":542089,"sourceSkillId":493043,"name":"Icewind Blade","description":"Water and wind energies combine to form a sharpened blade that inflicts (DMG4) Wind damage and (DMG0) Water damage to the target.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":577664,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620413,620414],"components":[{"id":620413,"magicFunc":0,"magicType":1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620414,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-30,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-30,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":493043,"name":"Icewind Blade","description":"Water and wind energies combine to form a sharpened blade that inflicts (DMG4) Wind damage and (DMG0) Water damage to the target.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":577664,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620413,620414]}}],"icon":"/assets/ui/rom-spells/577664.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-50","classId":"rom-priest","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":542119,"sourceSkillId":493270,"name":"Wind Fairy","description":"Summons a wind fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102107},"source":{"imageId":577789,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503460],"components":[{"id":503460,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102107,"summon":{"creatureId":102107,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":493270,"name":"Wind Fairy","description":"Summons a wind fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102107},"source":{"imageId":577789,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503460]}}],"icon":"/assets/ui/rom-spells/577789.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-60","classId":"rom-priest","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546805,"sourceSkillId":499972,"name":"Element Defense","description":"Casting [499971] will earn a blessing that reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by 3%. Can be stacked a maximum of 3 times.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801290,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499972,"name":"Element Defense","description":"Casting [499971] will earn a blessing that reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by 3%. Can be stacked a maximum of 3 times.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801290,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801290.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-mage-elite-70","classId":"rom-priest","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546806,"sourceSkillId":499958,"name":"Spinning Wind","description":"While [499970] is in effect, the caster's [SC_SKILLTIPS_CAST] will increase by (Buff0-623018)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801338,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623018],"components":[{"id":623018,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"clearFlags":32,"abilityModifiers":[{"type":51,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499958,"name":"Spinning Wind","description":"While [499970] is in effect, the caster's [SC_SKILLTIPS_CAST] will increase by (Buff0-623018)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801338,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623018]}}],"icon":"/assets/ui/rom-spells/801338.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-15","classId":"rom-priest","secondaryClassId":"rom-knight","group":"passive","unlockLevel":15,"keyItemId":541909,"sourceSkillId":492355,"name":"Enhanced Grace of Life","description":"Your Grace of Life also increases the maximum MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575707,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490151],"sourceSkillId":492355,"name":"Enhanced Grace of Life","description":"Your Grace of Life also increases the maximum MP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575707,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575707.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-20","classId":"rom-priest","secondaryClassId":"rom-knight","group":"passive","unlockLevel":20,"keyItemId":541939,"sourceSkillId":492361,"name":"Life Link","description":"Your Urgent Heal now also heals you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575255,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490151],"sourceSkillId":492361,"name":"Life Link","description":"Your Urgent Heal now also heals you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575255,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575255.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-25","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":25,"keyItemId":541969,"sourceSkillId":491648,"name":"Last Prayer","description":"Your next spell's casting time is reduced to 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575717,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502030],"components":[{"id":502030,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"clearFlags":1601536,"abilityModifiers":[{"type":51,"value":-1000}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":1,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490151],"sourceSkillId":491648,"name":"Last Prayer","description":"Your next spell's casting time is reduced to 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575717,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502030]}}],"icon":"/assets/ui/rom-spells/575717.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-30","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":30,"keyItemId":541999,"sourceSkillId":491366,"name":"Divine Incarnation","description":"By transforming into a Divine Incarnation the effectiveness of your heals is increased by (Buff0-0)% and the MP cost is reduced by (Buff0-4)%, but [SC_SKILLTIPS_02] also decreases by (Buff0-3)%. Effect lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575237,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501793],"components":[{"id":501793,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":15},{"type":171,"value":-50},{"type":33,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490151],"sourceSkillId":491366,"name":"Divine Incarnation","description":"By transforming into a Divine Incarnation the effectiveness of your heals is increased by (Buff0-0)% and the MP cost is reduced by (Buff0-4)%, but [SC_SKILLTIPS_02] also decreases by (Buff0-3)%. Effect lasts for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575237,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501793]}}],"icon":"/assets/ui/rom-spells/575237.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-35","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":35,"keyItemId":542030,"sourceSkillId":492639,"name":"Calm Heart","description":"Cast on a friendly target making it resist Fear for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577016,"sourceEffectType":0,"sourceTarget":4,"componentIds":[502908],"components":[{"id":502908,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":17,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490151],"sourceSkillId":492639,"name":"Calm Heart","description":"Cast on a friendly target making it resist Fear for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577016,"sourceEffectType":0,"sourceTarget":4,"componentIds":[502908]}}],"icon":"/assets/ui/rom-spells/577016.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-40","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":40,"keyItemId":542060,"sourceSkillId":492934,"name":"Sacrificial Cure","description":"Sacrifice your own life energy to restore a party member's HP by (DMG0).\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":70,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":577605,"sourceEffectType":0,"sourceTarget":1,"componentIds":[503199],"components":[{"id":503199,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":30,"damagePowerSkillLevelArg":4.6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490151],"sourceSkillId":492934,"name":"Sacrificial Cure","description":"Sacrifice your own life energy to restore a party member's HP by (DMG0).\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"health","amount":70,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.3},"source":{"imageId":577605,"sourceEffectType":0,"sourceTarget":1,"componentIds":[503199]}}],"icon":"/assets/ui/rom-spells/577605.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-45","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":45,"keyItemId":542090,"sourceSkillId":493044,"name":"Holy Power","description":"Temporarily increases [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff0-1)% + (Buff0-0) for (Buff0-Time) seconds. This effect disappears if you use Heal three times.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577665,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503287,503445],"components":[{"id":503287,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"clearFlags":16384,"abilityModifiers":[{"type":5,"value":60},{"type":164,"value":1}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493090,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503445,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490151],"sourceSkillId":493044,"name":"Holy Power","description":"Temporarily increases [SC_SKILLTIPS_MND] by (current [SC_SKILLTIPS_MND] + (Buff0-0)) x (Buff0-1)% + (Buff0-0) for (Buff0-Time) seconds. This effect disappears if you use Heal three times.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577665,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503287,503445]}}],"icon":"/assets/ui/rom-spells/577665.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-50","classId":"rom-priest","secondaryClassId":"rom-knight","group":"elite","unlockLevel":50,"keyItemId":542120,"sourceSkillId":493271,"name":"Light Fairy","description":"Summons a light fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102108},"source":{"imageId":577790,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503506],"components":[{"id":503506,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102108,"summon":{"creatureId":102108,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490151],"sourceSkillId":493271,"name":"Light Fairy","description":"Summons a light fairy to assist you.","target":"self","range":5,"castTimeMs":6000,"cooldownMs":0,"costs":[{"resource":"mana","amount":250,"percentage":false}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102108},"source":{"imageId":577790,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503506]}}],"icon":"/assets/ui/rom-spells/577790.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-60","classId":"rom-priest","secondaryClassId":"rom-knight","group":"passive","unlockLevel":60,"keyItemId":546807,"sourceSkillId":499968,"name":"Splendor Ripple","description":"When [499967] is cast, it will recover extra HP for the target.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801291,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490151],"sourceSkillId":499968,"name":"Splendor Ripple","description":"When [499967] is cast, it will recover extra HP for the target.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801291,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801291.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-knight-elite-70","classId":"rom-priest","secondaryClassId":"rom-knight","group":"passive","unlockLevel":70,"keyItemId":546808,"sourceSkillId":499957,"name":"Light Guidance","description":"(While [499966] is in effect, the caster's [SC_SKILLTIPS_HEAL] will increase by (Buff0-623015)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801339,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623015],"components":[{"id":623015,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490151],"sourceSkillId":499957,"name":"Light Guidance","description":"(While [499966] is in effect, the caster's [SC_SKILLTIPS_HEAL] will increase by (Buff0-623015)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801339,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623015]}}],"icon":"/assets/ui/rom-spells/801339.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-15","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":15,"keyItemId":546023,"sourceSkillId":498766,"name":"Psychic Passage","description":"When Psychic Arrows hit, this skill restores (DMG-621518) HP to the target's current target.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800144,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621518],"components":[{"id":621518,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":50,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[497958],"sourceSkillId":498766,"name":"Psychic Passage","description":"When Psychic Arrows hit, this skill restores (DMG-621518) HP to the target's current target.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800144,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621518]}}],"icon":"/assets/ui/rom-spells/800144.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-20","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":20,"keyItemId":546024,"sourceSkillId":498769,"name":"Touch of Revival","description":"Restores (DMG0) HP to all party members in a fan-shaped range of 120.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":800145,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621519],"components":[{"id":621519,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":70,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[497958],"sourceSkillId":498769,"name":"Touch of Revival","description":"Restores (DMG0) HP to all party members in a fan-shaped range of 120.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.7},"source":{"imageId":800145,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621519]}}],"icon":"/assets/ui/rom-spells/800145.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-25","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":25,"keyItemId":546025,"sourceSkillId":498770,"name":"Prayer of Tribulation","description":"Continuously heals a friendly target 4 times. Each time restores (DMG0) HP. When target's HP reaches over 40%, the skill increases the target's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by 2% for (Buff-Time-621522) seconds. When the target's HP falls below 40%, this skill can be stacked 2 times at once, up to 8 times.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":577662,"sourceEffectType":0,"sourceTarget":7,"componentIds":[621520,621521,621522],"components":[{"id":621520,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":30,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":30,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621521,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621522,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":2},{"type":170,"value":2}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[497958],"sourceSkillId":498770,"name":"Prayer of Tribulation","description":"Continuously heals a friendly target 4 times. Each time restores (DMG0) HP. When target's HP reaches over 40%, the skill increases the target's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by 2% for (Buff-Time-621522) seconds. When the target's HP falls below 40%, this skill can be stacked 2 times at once, up to 8 times.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.3},"source":{"imageId":577662,"sourceEffectType":0,"sourceTarget":7,"componentIds":[621520,621521,621522]}}],"icon":"/assets/ui/rom-spells/577662.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-30","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":30,"keyItemId":546026,"sourceSkillId":498771,"name":"Soul Cleansing Ceremony","description":"Cleanse can also remove cursed states.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800147,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[497958],"sourceSkillId":498771,"name":"Soul Cleansing Ceremony","description":"Cleanse can also remove cursed states.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800147,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800147.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-35","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":35,"keyItemId":546027,"sourceSkillId":498773,"name":"Spirit Jump","description":"Blessed by the holy spirit, you are able to pull a friendly target close to you.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800148,"sourceEffectType":0,"sourceTarget":1,"componentIds":[621524],"components":[{"id":621524,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":-2147483648,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[497958],"sourceSkillId":498773,"name":"Spirit Jump","description":"Blessed by the holy spirit, you are able to pull a friendly target close to you.","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800148,"sourceEffectType":0,"sourceTarget":1,"componentIds":[621524]}}],"icon":"/assets/ui/rom-spells/800148.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-40","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"passive","unlockLevel":40,"keyItemId":546028,"sourceSkillId":498774,"name":"Spirit Spring","description":"Blessed Spring Water can increase the healing you receive.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800149,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[497958],"sourceSkillId":498774,"name":"Spirit Spring","description":"Blessed Spring Water can increase the healing you receive.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800149,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800149.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-45","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":45,"keyItemId":546029,"sourceSkillId":495296,"name":"Holy Salvation Candle","description":"Once this is used, your next Holy Aura can be cast on friendly targets. However, the effect time is reduced by 2 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800150,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621556,621557],"components":[{"id":621556,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"clearFlags":1072,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621557,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[497958],"sourceSkillId":495296,"name":"Holy Salvation Candle","description":"Once this is used, your next Holy Aura can be cast on friendly targets. However, the effect time is reduced by 2 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800150,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621556,621557]}}],"icon":"/assets/ui/rom-spells/800150.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-50","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":50,"keyItemId":546030,"sourceSkillId":498798,"name":"Spirit Embodiment","description":"Summons the Spirit Embodiment. For the duration of its existence, the embodiment will recover (DMG-621099) HP for the party member with the lowest HP every time a spell is cast. It also reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621149)% for (Buff-Time-621149) seconds.\nThe Spirit Embodiment remains for 30 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.9},"source":{"imageId":800151,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621097,621098,621099,621149],"components":[{"id":621097,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621098,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"clearFlags":48,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621099,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":90,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":90,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":621149,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":-1879048125,"specialActionFlags":0,"assistType":20,"clearFlags":48,"abilityModifiers":[{"type":206,"value":-10},{"type":207,"value":-10},{"type":209,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[497958],"sourceSkillId":498798,"name":"Spirit Embodiment","description":"Summons the Spirit Embodiment. For the duration of its existence, the embodiment will recover (DMG-621099) HP for the party member with the lowest HP every time a spell is cast. It also reduces [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621149)% for (Buff-Time-621149) seconds.\nThe Spirit Embodiment remains for 30 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.9},"source":{"imageId":800151,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621097,621098,621099,621149]}}],"icon":"/assets/ui/rom-spells/800151.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-60","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":60,"keyItemId":546809,"sourceSkillId":498628,"name":"Spatial Jump","description":"Blessed by the holy spirit, you are able to pull friendly targets in a range of 180 close to you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801626,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623175],"components":[{"id":623175,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[497958],"sourceSkillId":498628,"name":"Spatial Jump","description":"Blessed by the holy spirit, you are able to pull friendly targets in a range of 180 close to you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801626,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623175]}}],"icon":"/assets/ui/rom-spells/801626.png","iconResolution":"native-interface-fdb"},{"id":"rom-priest-rom-warlock-elite-70","classId":"rom-priest","secondaryClassId":"rom-warlock","group":"elite","unlockLevel":70,"keyItemId":546810,"sourceSkillId":499829,"name":"Life Surge","description":"Continuous casting for 15 seconds. Increases all attributes of friendly targets in range by (Buff4-0)% and recovers (DMG0) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801627,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623468,623200],"components":[{"id":623468,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":4,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":4,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623200,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":2,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":166,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[497958],"sourceSkillId":499829,"name":"Life Surge","description":"Continuous casting for 15 seconds. Increases all attributes of friendly targets in range by (Buff4-0)% and recovers (DMG0) HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801627,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623468,623200]}}],"icon":"/assets/ui/rom-spells/801627.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-15","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":15,"keyItemId":541910,"sourceSkillId":491609,"name":"Whirlwind Shield Mastery","description":"Increases the main hand weapon damage dealt by Whirlwind Shield.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575555,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":491609,"name":"Whirlwind Shield Mastery","description":"Increases the main hand weapon damage dealt by Whirlwind Shield.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575555,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575555.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-20","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":541940,"sourceSkillId":490065,"name":"Weapon Master","description":"Allows you to equip all swords, axes, and hammers and increases their damage by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575229,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500221],"components":[{"id":500221,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":-1,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":56,"value":4},{"type":92,"value":1},{"type":88,"value":1}],"abilitySkillLevelArg":17,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":490065,"name":"Weapon Master","description":"Allows you to equip all swords, axes, and hammers and increases their damage by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575229,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500221]}}],"icon":"/assets/ui/rom-spells/575229.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-25","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":541970,"sourceSkillId":491639,"name":"Deadly Whirlwind","description":"The rage cost for Whirlwind is reduced by 10 points, cooldown is reduced by 20 seconds. For 10 seconds the target suffers Deadly Wounds and the effectiveness of healings is reduced by 30%.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575549,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":491639,"name":"Deadly Whirlwind","description":"The rage cost for Whirlwind is reduced by 10 points, cooldown is reduced by 20 seconds. For 10 seconds the target suffers Deadly Wounds and the effectiveness of healings is reduced by 30%.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575549,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575549.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-30","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":542001,"sourceSkillId":490064,"name":"Quick Reflexes","description":"Gives you panther-like reflexes. Raises your [SC_SKILLTIPS_PARRY] by (Buff0-0) and your critical hit rate by (Buff0-1) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575209,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500220],"components":[{"id":500220,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":210},{"type":18,"value":150},{"type":20,"value":150}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":490064,"name":"Quick Reflexes","description":"Gives you panther-like reflexes. Raises your [SC_SKILLTIPS_PARRY] by (Buff0-0) and your critical hit rate by (Buff0-1) for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575209,"sourceEffectType":1,"sourceTarget":0,"componentIds":[500220]}}],"icon":"/assets/ui/rom-spells/575209.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-35","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":542031,"sourceSkillId":490088,"name":"Fearless","description":"Increases your courage. During the effect time, you are immune against Fear. Also increases [SC_SKILLTIPS_STR] and [SC_SKILLTIPS_STA] for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577017,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502113],"components":[{"id":502113,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":17,"abilityModifiers":[{"type":161,"value":3},{"type":162,"value":3}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":490088,"name":"Fearless","description":"Increases your courage. During the effect time, you are immune against Fear. Also increases [SC_SKILLTIPS_STR] and [SC_SKILLTIPS_STA] for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"self","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577017,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502113]}}],"icon":"/assets/ui/rom-spells/577017.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-40","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":542061,"sourceSkillId":492935,"name":"Master of Parry","description":"Increases your [SC_SKILLTIPS_PARRY] by (Buff0-0). (Disappears after two successful blocks)","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577606,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503192],"components":[{"id":503192,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":103,"specialActionFlags":0,"assistType":33,"abilityModifiers":[{"type":22,"value":5000}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":493094,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":492935,"name":"Master of Parry","description":"Increases your [SC_SKILLTIPS_PARRY] by (Buff0-0). (Disappears after two successful blocks)","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577606,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503192]}}],"icon":"/assets/ui/rom-spells/577606.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-45","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":542091,"sourceSkillId":490086,"name":"Survival Instinct","description":"When attacked while under [490085] and [490084] states, there is a chance that [502114] will be activated and the cooldown time of [492935] will be reduced by 1 second.\n[502114]: Temporarily increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_AGI] for (Buff-Time-502114) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577666,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502114],"components":[{"id":502114,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":2},{"type":165,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":490086,"name":"Survival Instinct","description":"When attacked while under [490085] and [490084] states, there is a chance that [502114] will be activated and the cooldown time of [492935] will be reduced by 1 second.\n[502114]: Temporarily increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_AGI] for (Buff-Time-502114) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577666,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502114]}}],"icon":"/assets/ui/rom-spells/577666.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-50","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":50,"keyItemId":542121,"sourceSkillId":490018,"name":"Authoritative Deterrence","description":"Forces a target to face and attack you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622319)%. Increases all damage on the target by (Buff4-0)% for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577796,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503557,502112,622319],"components":[{"id":503557,"magicFunc":7,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502112,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":5},{"type":207,"value":5}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622319,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":1}],"abilitySkillLevelArg":14,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":490018,"name":"Authoritative Deterrence","description":"Forces a target to face and attack you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622319)%. Increases all damage on the target by (Buff4-0)% for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577796,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503557,502112,622319]}}],"icon":"/assets/ui/rom-spells/577796.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-60","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":60,"keyItemId":546813,"sourceSkillId":499930,"name":"United Efforts","description":"Rushes to party members and provides a shield for them and you. Reduces [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-0)%. Lasts for (Buff0-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801292,"sourceEffectType":0,"sourceTarget":1,"componentIds":[623154],"components":[{"id":623154,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":30},{"type":142,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499930,"name":"United Efforts","description":"Rushes to party members and provides a shield for them and you. Reduces [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] by (Buff0-0)%. Lasts for (Buff0-Time) seconds.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801292,"sourceEffectType":0,"sourceTarget":1,"componentIds":[623154]}}],"icon":"/assets/ui/rom-spells/801292.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-warrior-elite-70","classId":"rom-knight","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546814,"sourceSkillId":491608,"name":"Divine Punishment","description":"Increases damage dealt by [490151] by (Buff0-500284)%. When [490151] hits the target, it will increase the Light damage on the target by (Buff0-502052)% for (Buff-Time-502052) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801340,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500284,502052],"components":[{"id":500284,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":1},{"type":205,"value":1}],"abilitySkillLevelArg":50,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502052,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":190,"abilityModifiers":[{"type":225,"value":1}],"abilitySkillLevelArg":50,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":491608,"name":"Divine Punishment","description":"Increases damage dealt by [490151] by (Buff0-500284)%. When [490151] hits the target, it will increase the Light damage on the target by (Buff0-502052)% for (Buff-Time-502052) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801340,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500284,502052]}}],"icon":"/assets/ui/rom-spells/801340.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-15","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":541911,"sourceSkillId":491616,"name":"Arrow of Vengeance","description":"Fires an arrow full of aggro that taunts your target. You become the one with the most aggro. Also increases your aggro by (Buff0-622326)%.\n(Requires ranged weapon.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575253,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502061,622326],"components":[{"id":502061,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":200,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"summonCreatureId":0},{"id":622326,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":491616,"name":"Arrow of Vengeance","description":"Fires an arrow full of aggro that taunts your target. You become the one with the most aggro. Also increases your aggro by (Buff0-622326)%.\n(Requires ranged weapon.)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575253,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502061,622326]}}],"icon":"/assets/ui/rom-spells/575253.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-20","classId":"rom-knight","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":541941,"sourceSkillId":491610,"name":"Enhanced Holy Strike","description":"Increases the main weapon damage of your Holy Strike.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575550,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":491610,"name":"Enhanced Holy Strike","description":"Increases the main weapon damage of your Holy Strike.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575550,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575550.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-25","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":541971,"sourceSkillId":491613,"name":"Holy Chains","description":"Roots your target with your holy powers for (Buff0-Time) seconds. (Can only be used on undead and demons)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575548,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502058],"components":[{"id":502058,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":0,"effectFlagWords":[67,0],"clearFlags":2,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":491613,"name":"Holy Chains","description":"Roots your target with your holy powers for (Buff0-Time) seconds. (Can only be used on undead and demons)","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575548,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502058]}}],"icon":"/assets/ui/rom-spells/575548.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-30","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":542002,"sourceSkillId":491354,"name":"Heavenly Arrow","description":"As you pray for the power of the holy Light, an arrow of Light shoots down from the sky and taunts up the enemies within a range of 100. You become the one with the most aggro. Also increases your aggro by (Buff0-622320)%.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575207,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501795,622320],"components":[{"id":501795,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":200,"settingFlags":66,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"summonCreatureId":0},{"id":622320,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":491354,"name":"Heavenly Arrow","description":"As you pray for the power of the holy Light, an arrow of Light shoots down from the sky and taunts up the enemies within a range of 100. You become the one with the most aggro. Also increases your aggro by (Buff0-622320)%.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575207,"sourceEffectType":0,"sourceTarget":6,"componentIds":[501795,622320]}}],"icon":"/assets/ui/rom-spells/575207.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-35","classId":"rom-knight","secondaryClassId":"rom-scout","group":"passive","unlockLevel":35,"keyItemId":542032,"sourceSkillId":490066,"name":"Weaken Weapon Strength","description":"When you use your Heavenly Arrow to taunt a target, the physical damage of the target will be lowered.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577018,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":490066,"name":"Weaken Weapon Strength","description":"When you use your Heavenly Arrow to taunt a target, the physical damage of the target will be lowered.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577018,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577018.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-40","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":542062,"sourceSkillId":492939,"name":"Sacred Resistance","description":"Causes (DMG0) ranged weapon DPS to your target and increases your [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff4-0)) x (Buff8-0)% + (Buff4-0) for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503454)[SC_SKILLTIPS_CD_2])","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577610,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503206,503207,506236,503454],"components":[{"id":503206,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":-1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.6,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503207,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342701795,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":6,"value":20}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493246,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506236,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268959841,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":165,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503454,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":524289,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":492939,"name":"Sacred Resistance","description":"Causes (DMG0) ranged weapon DPS to your target and increases your [SC_SKILLTIPS_AGI] by (current [SC_SKILLTIPS_AGI] + (Buff4-0)) x (Buff8-0)% + (Buff4-0) for (Buff4-Time) seconds.\n([SC_SKILLTIPS_CD_1](Buff-Time-503454)[SC_SKILLTIPS_CD_2])","target":"hostile","range":6,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577610,"sourceEffectType":1,"sourceTarget":6,"componentIds":[503206,503207,506236,503454]}}],"icon":"/assets/ui/rom-spells/577610.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-45","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":45,"keyItemId":542092,"sourceSkillId":493046,"name":"Sacred Protection","description":"Focuses holy energy onto your shield, temporarily increasing your chance to shield block by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577667,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503290],"components":[{"id":503290,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":33,"abilityModifiers":[{"type":172,"value":100}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":493046,"name":"Sacred Protection","description":"Focuses holy energy onto your shield, temporarily increasing your chance to shield block by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":60,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577667,"sourceEffectType":0,"sourceTarget":0,"componentIds":[503290]}}],"icon":"/assets/ui/rom-spells/577667.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-50","classId":"rom-knight","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":542122,"sourceSkillId":493273,"name":"Disregard Danger","description":"Shares (Buff0-0)% damage of one attack on a party member. Also increases [SC_SKILLTIPS_PARRY] by (Buff4-0) for (Buff4-Time) seconds.\n(Cannot be cast on yourself.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577797,"sourceEffectType":1,"sourceTarget":1,"componentIds":[502056,506305],"components":[{"id":502056,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":143,"value":40}],"abilitySkillLevelArg":2,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":491614,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506305,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":20}],"abilitySkillLevelArg":12.4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":493273,"name":"Disregard Danger","description":"Shares (Buff0-0)% damage of one attack on a party member. Also increases [SC_SKILLTIPS_PARRY] by (Buff4-0) for (Buff4-Time) seconds.\n(Cannot be cast on yourself.)\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577797,"sourceEffectType":1,"sourceTarget":1,"componentIds":[502056,506305]}}],"icon":"/assets/ui/rom-spells/577797.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-60","classId":"rom-knight","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546815,"sourceSkillId":499926,"name":"Evil Shackles","description":"[499925] is not limited to any target type, but when target is not an Undead or Demon target, effect time is reduced by half.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801293,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499926,"name":"Evil Shackles","description":"[499925] is not limited to any target type, but when target is not an Undead or Demon target, effect time is reduced by half.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801293,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801293.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-scout-elite-70","classId":"rom-knight","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546816,"sourceSkillId":499923,"name":"Blood Punishment","description":"When [499924] is activated it increases your received healing by (Buff0-623167)%. Also increases damage inflicted by [499923] by (Buff0-623168)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801341,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623167,623168],"components":[{"id":623167,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":101,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilityModifiers":[{"type":144,"value":50}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":499910,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623168,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":100},{"type":205,"value":100}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499923,"name":"Blood Punishment","description":"When [499924] is activated it increases your received healing by (Buff0-623167)%. Also increases damage inflicted by [499923] by (Buff0-623168)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801341,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623167,623168]}}],"icon":"/assets/ui/rom-spells/801341.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-15","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":15,"keyItemId":541912,"sourceSkillId":491621,"name":"God's Sword","description":"Your Holy Strike's critical hit rate is increased by 40%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575232,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":491621,"name":"God's Sword","description":"Your Holy Strike's critical hit rate is increased by 40%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575232,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575232.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-20","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":541942,"sourceSkillId":490019,"name":"Smash","description":"Direct attack on your enemy causing (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-504896) [SC_SKILLTIPS_DMG|Physical Light Damage]. (Can only be used after you inflict a critical hit.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":7,"percentage":true}],"passive":false,"effect":{"kind":"dot","coefficient":0.9,"ticks":5,"intervalMs":2000},"source":{"imageId":575702,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504896],"components":[{"id":504896,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":106,"specialActionFlags":0,"assistType":39,"abilityModifiers":[{"type":138,"value":20}],"abilitySkillLevelArg":5,"dotTime":10,"dotType":0,"dotBase":20,"dot":{"timeSeconds":10,"type":0,"base":20,"skillLevelArg":5},"attackType":0,"damagePower":-90,"fixedValue":-0.2,"attack":{"type":0,"calculationType":9,"damagePower":-90,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":8,"fixedDamageSkillLevelArg":2,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":490019,"name":"Smash","description":"Direct attack on your enemy causing (DMG0) + current [SC_SKILLTIPS_STA] x (FixDMG-504896) [SC_SKILLTIPS_DMG|Physical Light Damage]. (Can only be used after you inflict a critical hit.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"health","amount":7,"percentage":true}],"passive":false,"effect":{"kind":"dot","coefficient":0.9,"ticks":5,"intervalMs":2000},"source":{"imageId":575702,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504896]}}],"icon":"/assets/ui/rom-spells/575702.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-25","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":541972,"sourceSkillId":491618,"name":"Blind Stab Mastery","description":"Extends the Blind effect of your Blind Stab to (Buff-Time-501990) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575721,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501990],"components":[{"id":501990,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":117,"effectFlagWords":[32,0],"abilityModifiers":[{"type":197,"value":-40}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":491618,"name":"Blind Stab Mastery","description":"Extends the Blind effect of your Blind Stab to (Buff-Time-501990) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575721,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501990]}}],"icon":"/assets/ui/rom-spells/575721.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-30","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":542003,"sourceSkillId":491355,"name":"Crazy Blades","description":"For (Buff0-Time) seconds your [SC_SKILLTIPS_CRI] is increased by (Buff0-0).","target":"self","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575208,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501796],"components":[{"id":501796,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":491355,"name":"Crazy Blades","description":"For (Buff0-Time) seconds your [SC_SKILLTIPS_CRI] is increased by (Buff0-0).","target":"self","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575208,"sourceEffectType":1,"sourceTarget":0,"componentIds":[501796]}}],"icon":"/assets/ui/rom-spells/575208.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-35","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":542033,"sourceSkillId":490020,"name":"Dance of Two Blades","description":"The whirling weapons inflict two times (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second to multiple targets inside a range of 50.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577019,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502048],"components":[{"id":502048,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.4,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.4,"damagePowerSkillLevelArg":8,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":3,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":490020,"name":"Dance of Two Blades","description":"The whirling weapons inflict two times (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] per second to multiple targets inside a range of 50.","target":"self","range":5,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":577019,"sourceEffectType":1,"sourceTarget":0,"componentIds":[502048]}}],"icon":"/assets/ui/rom-spells/577019.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-40","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":542063,"sourceSkillId":495402,"name":"Leopard Instinct","description":"Your reaction time will become like that of a leopard for (Buff0-Time) seconds, increasing your dodge rate by (Buff0-0)%. There is also a chance of absorbing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG]. \n(This effect will cease after absorbing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] 3 times.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":577608,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620144,620141],"components":[{"id":620144,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":524481,"specialActionFlags":0,"assistType":31,"abilityModifiers":[{"type":198,"value":50}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497926,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620141,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":483,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":497924,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":1,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":495402,"name":"Leopard Instinct","description":"Your reaction time will become like that of a leopard for (Buff0-Time) seconds, increasing your dodge rate by (Buff0-0)%. There is also a chance of absorbing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG]. \n(This effect will cease after absorbing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] 3 times.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":10000},"source":{"imageId":577608,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620144,620141]}}],"icon":"/assets/ui/rom-spells/577608.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-45","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":542093,"sourceSkillId":493047,"name":"Panther's Blessing","description":"When attacked while under the protection of Shield of Valor or Shield of Discipline, there is a chance that your dodge rate increases temporarily. Lasts (Buff-Time-503282) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577668,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503282],"components":[{"id":503282,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":2}],"abilitySkillLevelArg":8,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":493183,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":493047,"name":"Panther's Blessing","description":"When attacked while under the protection of Shield of Valor or Shield of Discipline, there is a chance that your dodge rate increases temporarily. Lasts (Buff-Time-503282) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577668,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503282]}}],"icon":"/assets/ui/rom-spells/577668.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-50","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":50,"keyItemId":542123,"sourceSkillId":499934,"name":"God's Vengeance","description":"When your [499909] hits the target, there is a 50% chance that the Holy Seal won't be consumed, but it will still cause the damage that the Holy Seal deals.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577798,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":499934,"name":"God's Vengeance","description":"When your [499909] hits the target, there is a 50% chance that the Holy Seal won't be consumed, but it will still cause the damage that the Holy Seal deals.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577798,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577798.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-60","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546817,"sourceSkillId":490028,"name":"Approach","description":"Makes [490029] increase the Light damage on the target by (Buff0-501941)% and reduce the damage received by (Buff0-501942)% for (Buff-Time-501941) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801294,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501941,501942],"components":[{"id":501941,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":225,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0},{"id":501942,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":206,"value":-20},{"type":207,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":490028,"name":"Approach","description":"Makes [490029] increase the Light damage on the target by (Buff0-501941)% and reduce the damage received by (Buff0-501942)% for (Buff-Time-501941) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801294,"sourceEffectType":2,"sourceTarget":0,"componentIds":[501941,501942]}}],"icon":"/assets/ui/rom-spells/801294.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-rogue-elite-70","classId":"rom-knight","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546818,"sourceSkillId":490021,"name":"Revenge Instinct","description":"[490022] doesn't require consumption anymore. Increases the damage dealt by [490022] and gives the target 1 Holy Seal. There is a 50% chance of giving the target another layer of Holy Seal.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801342,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":490021,"name":"Revenge Instinct","description":"[490022] doesn't require consumption anymore. Increases the damage dealt by [490022] and gives the target 1 Holy Seal. There is a 50% chance of giving the target another layer of Holy Seal.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801342,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801342.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-15","classId":"rom-knight","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":541913,"sourceSkillId":491606,"name":"Holy Light Domain","description":"The power of the holy light in you inflicts (DMG-502050) + [SC_SKILLTIPS_STA] x (FixDMG-502050) [SC_SKILLTIPS_LIGHT] every 2 seconds to surrounding targets within range. Also adds a [502051] and lasts for (Buff-Time-502049) seconds.\n[502051]: Reduces damage by (Buff0-502051)%. The effect lasts (Buff-Time-502051) seconds.\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":575553,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502049,502050,502051],"components":[{"id":502049,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":-10,"settingFlags":5,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":497471,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":502050,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":10,"hateCost":20,"settingFlags":0,"specialActionFlags":0,"assistType":38,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-20,"damagePowerSkillLevelArg":25,"fixedValue":-0.2,"fixedType":8,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502051,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":1,"abilityModifiers":[{"type":173,"value":-1},{"type":44,"value":-1}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":491606,"name":"Holy Light Domain","description":"The power of the holy light in you inflicts (DMG-502050) + [SC_SKILLTIPS_STA] x (FixDMG-502050) [SC_SKILLTIPS_LIGHT] every 2 seconds to surrounding targets within range. Also adds a [502051] and lasts for (Buff-Time-502049) seconds.\n[502051]: Reduces damage by (Buff0-502051)%. The effect lasts (Buff-Time-502051) seconds.\n[SC_SKILLTIPS_03]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.2},"source":{"imageId":575553,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502049,502050,502051]}}],"icon":"/assets/ui/rom-spells/575553.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-20","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":20,"keyItemId":541943,"sourceSkillId":491630,"name":"Lightning Shield","description":"Your Whirlwind Shield now deals extra wind damage and slows the target for 5 seconds.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575723,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":491630,"name":"Lightning Shield","description":"Your Whirlwind Shield now deals extra wind damage and slows the target for 5 seconds.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575723,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575723.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-25","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":25,"keyItemId":541973,"sourceSkillId":491625,"name":"Divine Intensification","description":"Doubles the effect time of Intensification and increases the Light damage dealt by you.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577020,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":491625,"name":"Divine Intensification","description":"Doubles the effect time of Intensification and increases the Light damage dealt by you.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577020,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577020.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-30","classId":"rom-knight","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":542004,"sourceSkillId":491350,"name":"Mana Shield","description":"Instantly restores (DMG4) MP and increases maximum MP by (Buff0-0)%. Each point of damage absorbed by the Mana Shield costs 1 MP. This shield lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":30000},"source":{"imageId":575746,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501797,506311],"components":[{"id":501797,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilityModifiers":[{"type":168,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":0,"effect":0,"point":0,"skillLevelArg":0}},{"id":506311,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":-10,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":100,"fixedValue":0,"attack":{"type":1,"calculationType":8,"damagePower":100,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":491350,"name":"Mana Shield","description":"Instantly restores (DMG4) MP and increases maximum MP by (Buff0-0)%. Each point of damage absorbed by the Mana Shield costs 1 MP. This shield lasts (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":30000},"source":{"imageId":575746,"sourceEffectType":0,"sourceTarget":0,"componentIds":[501797,506311]}}],"icon":"/assets/ui/rom-spells/575746.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-35","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":542034,"sourceSkillId":490076,"name":"Confession Judgment","description":"Makes [490077] deal extra [SC_SKILLTIPS_LIGHT] and adds 4 stacks of Holy Seal effect. The cooldown time of [490151] will also be immediately reset.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":803164,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":490076,"name":"Confession Judgment","description":"Makes [490077] deal extra [SC_SKILLTIPS_LIGHT] and adds 4 stacks of Holy Seal effect. The cooldown time of [490151] will also be immediately reset.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":803164,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/803164.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-40","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":542064,"sourceSkillId":490035,"name":"Hall of Order","description":"Increases damage dealt by [491628] and the effect time of [500292] by 6 seconds. The caster's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] will be increased as well.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577609,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500292],"components":[{"id":500292,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":1,"abilityModifiers":[{"type":173,"value":-1},{"type":44,"value":-1}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-9.975,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":490035,"name":"Hall of Order","description":"Increases damage dealt by [491628] and the effect time of [500292] by 6 seconds. The caster's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] will be increased as well.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577609,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500292]}}],"icon":"/assets/ui/rom-spells/577609.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-45","classId":"rom-knight","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":542094,"sourceSkillId":490034,"name":"Light Energy Weapon","description":"The weapon obtains the power of light, giving your normal attack additional (Buff0-0) Light damage.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570957,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502105],"components":[{"id":502105,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":110,"abilityModifiers":[{"type":188,"value":100}],"abilitySkillLevelArg":15,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":490034,"name":"Light Energy Weapon","description":"The weapon obtains the power of light, giving your normal attack additional (Buff0-0) Light damage.","target":"self","range":30,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":40,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":570957,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502105]}}],"icon":"/assets/ui/rom-spells/570957.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-50","classId":"rom-knight","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":542124,"sourceSkillId":490078,"name":"War Prayer","description":"Deals (DMG0) + [SC_SKILLTIPS_STA] x (FixDMG-502102) Light damage on the target and adds one layer of Holy Seal every 3 seconds for (Buff4-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":577799,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502102,502103],"components":[{"id":502102,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":30,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-65,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-65,"damagePowerSkillLevelArg":25,"fixedValue":-0.2,"fixedType":8,"fixedDamageSkillLevelArg":20,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":502103,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":70,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":490079,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":490078,"name":"War Prayer","description":"Deals (DMG0) + [SC_SKILLTIPS_STA] x (FixDMG-502102) Light damage on the target and adds one layer of Holy Seal every 3 seconds for (Buff4-Time) seconds.\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":577799,"sourceEffectType":0,"sourceTarget":6,"componentIds":[502102,502103]}}],"icon":"/assets/ui/rom-spells/577799.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-60","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546819,"sourceSkillId":499917,"name":"Magic Healing","description":"While your [499626] is in effect, an extra 1% of HP is recovered every second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801295,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499917,"name":"Magic Healing","description":"While your [499626] is in effect, an extra 1% of HP is recovered every second.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801295,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801295.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-mage-elite-70","classId":"rom-knight","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546820,"sourceSkillId":490031,"name":"Confessor","description":"Reduces the cooldown time of [490032] by 4 seconds, and the cooldown time of [490033] by 10 seconds. When both skills hit the target, the caster's [SC_SKILLTIPS_MOVE] will be increased by (Buff0-502101)% for (Buff-Time-502101) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801343,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502101],"components":[{"id":502101,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":33}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-2.7,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":490031,"name":"Confessor","description":"Reduces the cooldown time of [490032] by 4 seconds, and the cooldown time of [490033] by 10 seconds. When both skills hit the target, the caster's [SC_SKILLTIPS_MOVE] will be increased by (Buff0-502101)% for (Buff-Time-502101) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801343,"sourceEffectType":2,"sourceTarget":0,"componentIds":[502101]}}],"icon":"/assets/ui/rom-spells/801343.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-15","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":15,"keyItemId":541914,"sourceSkillId":491635,"name":"Holy Light's Fury","description":"Reduces the cooldown time of [490149] by 3 seconds, also increases the damage dealt.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575554,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":491635,"name":"Holy Light's Fury","description":"Reduces the cooldown time of [490149] by 3 seconds, also increases the damage dealt.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":575554,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/575554.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-20","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":20,"keyItemId":541944,"sourceSkillId":490194,"name":"Holy Smite","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] each second. If the target has the Holy Seal effect, it will all be consumed to heal the caster and a nearby party member, restoring an amount of HP between (DMG-500206) and (DMG-500209) maximum HP, according to the amount of the Holy Seal.\n|cff99FF37 Each Holy Seal restores (DMG-500206) maximum HP.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575547,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500108,500206,500209],"components":[{"id":500108,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.5,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.5,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500206,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":2,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":2,"damagePowerSkillLevelArg":3,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":500209,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":8,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":8,"damagePowerSkillLevelArg":3,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":490194,"name":"Holy Smite","description":"Deals (DMG0) main hand weapon [SC_SKILLTIPS_DMG|Physical Light Damage] each second. If the target has the Holy Seal effect, it will all be consumed to heal the caster and a nearby party member, restoring an amount of HP between (DMG-500206) and (DMG-500209) maximum HP, according to the amount of the Holy Seal.\n|cff99FF37 Each Holy Seal restores (DMG-500206) maximum HP.\nIt can be stacked up to 4 times.|r\n[SC_SKILLTIPS_03]","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":575547,"sourceEffectType":1,"sourceTarget":6,"componentIds":[500108,500206,500209]}}],"icon":"/assets/ui/rom-spells/575547.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-25","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":25,"keyItemId":541974,"sourceSkillId":491640,"name":"Holy Protection","description":"Reduces inflicted aggro by (Buff0-0)% and increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-1)% for (Buff0-Time) seconds. If you cast it on yourself, it will increase the inflicted aggro by (Buff1-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575251,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500673,500674],"components":[{"id":500673,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":98,"abilityModifiers":[{"type":138,"value":-2},{"type":135,"value":2},{"type":170,"value":2}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":50,"summonCreatureId":0},{"id":500674,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":900,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":98,"abilityModifiers":[{"type":138,"value":2},{"type":170,"value":2},{"type":135,"value":2}],"abilitySkillLevelArg":23,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":491640,"name":"Holy Protection","description":"Reduces inflicted aggro by (Buff0-0)% and increases [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-1)% for (Buff0-Time) seconds. If you cast it on yourself, it will increase the inflicted aggro by (Buff1-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"friendly","range":15,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575251,"sourceEffectType":0,"sourceTarget":4,"componentIds":[500673,500674]}}],"icon":"/assets/ui/rom-spells/575251.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-30","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":30,"keyItemId":542005,"sourceSkillId":491351,"name":"Free Will","description":"Target is immune against Root and Slow effects for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575210,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501798],"components":[{"id":501798,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":491351,"name":"Free Will","description":"Target is immune against Root and Slow effects for (Buff0-Time) seconds.\n[SC_SKILLTIPS_FEAR]","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":575210,"sourceEffectType":0,"sourceTarget":4,"componentIds":[501798]}}],"icon":"/assets/ui/rom-spells/575210.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-35","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":542035,"sourceSkillId":490080,"name":"Truth Oracle","description":"Reduces the cooldown time of [490081] by 30 seconds. When you use [490081], there is a chance of not consuming Holy Seal, but it will still cause the damage that the Holy Seal deals.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577021,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":490080,"name":"Truth Oracle","description":"Reduces the cooldown time of [490081] by 30 seconds. When you use [490081], there is a chance of not consuming Holy Seal, but it will still cause the damage that the Holy Seal deals.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577021,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577021.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-40","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":40,"keyItemId":542065,"sourceSkillId":490030,"name":"Concentration Practice","description":"Increases [SC_SKILLTIPS_HITP] and [SC_SKILLTIPS_MAG_HITP] by (Buff0-0)%, as well as [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] by (Buff4-0).\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577607,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503201,501944],"components":[{"id":503201,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":197,"value":2},{"type":199,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":501944,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":30,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":20,"value":30},{"type":18,"value":30}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-200,"fixedValue":50,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":490030,"name":"Concentration Practice","description":"Increases [SC_SKILLTIPS_HITP] and [SC_SKILLTIPS_MAG_HITP] by (Buff0-0)%, as well as [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] by (Buff4-0).\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577607,"sourceEffectType":2,"sourceTarget":0,"componentIds":[503201,501944]}}],"icon":"/assets/ui/rom-spells/577607.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-45","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":45,"keyItemId":542095,"sourceSkillId":490036,"name":"Great Inspiration","description":"Let your [490037] increase your maximum HP and enable the party members in a range of 60 to block one attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577670,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":490036,"name":"Great Inspiration","description":"Let your [490037] increase your maximum HP and enable the party members in a range of 60 to block one attack.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":577670,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/577670.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-50","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":50,"keyItemId":542125,"sourceSkillId":491632,"name":"Holy Illumination","description":"Boosts the healing capacity of party members within a radius of 60 by (Buff0-0)%, [SC_SKILLTIPS_DMG] by (Buff0-1)% and [SC_SKILLTIPS_MDMG] by (Buff0-2)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":50,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577800,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502106],"components":[{"id":502106,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":174,"abilityModifiers":[{"type":144,"value":4},{"type":173,"value":2},{"type":192,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":491632,"name":"Holy Illumination","description":"Boosts the healing capacity of party members within a radius of 60 by (Buff0-0)%, [SC_SKILLTIPS_DMG] by (Buff0-1)% and [SC_SKILLTIPS_MDMG] by (Buff0-2)% for (Buff0-Time) seconds.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":50,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":577800,"sourceEffectType":0,"sourceTarget":0,"componentIds":[502106]}}],"icon":"/assets/ui/rom-spells/577800.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-60","classId":"rom-knight","secondaryClassId":"rom-priest","group":"elite","unlockLevel":60,"keyItemId":546821,"sourceSkillId":499913,"name":"Angel Salvation","description":"Uses the holy light to resurrect a player. \n(Can be used in battle.)","target":"friendly","range":15,"castTimeMs":4000,"cooldownMs":180000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":801296,"sourceEffectType":0,"sourceTarget":15,"componentIds":[623182],"components":[{"id":623182,"magicFunc":8,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"raise":{"experiencePercent":0},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499913,"name":"Angel Salvation","description":"Uses the holy light to resurrect a player. \n(Can be used in battle.)","target":"friendly","range":15,"castTimeMs":4000,"cooldownMs":180000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"resurrection","coefficient":0.35},"source":{"imageId":801296,"sourceEffectType":0,"sourceTarget":15,"componentIds":[623182]}}],"icon":"/assets/ui/rom-spells/801296.png","iconResolution":"native-interface-fdb"},{"id":"rom-knight-rom-priest-elite-70","classId":"rom-knight","secondaryClassId":"rom-priest","group":"passive","unlockLevel":70,"keyItemId":546822,"sourceSkillId":499914,"name":"Divine Protection","description":"When [499912] is cast, the party members can receive an extra (Buff0-623183)% damage reduction and a (Buff-Dot-623361) HP recovery every second.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801344,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623183,623361],"components":[{"id":623183,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":2},{"type":143,"value":2}],"abilitySkillLevelArg":24,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-152.95,"fixedValue":0,"summonCreatureId":0},{"id":623361,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":5,"hateCost":-10,"settingFlags":9,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":1,"dotType":0,"dotBase":20,"dot":{"timeSeconds":1,"type":0,"base":20,"skillLevelArg":14},"attackType":0,"damagePower":-152.95,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499914,"name":"Divine Protection","description":"When [499912] is cast, the party members can receive an extra (Buff0-623183)% damage reduction and a (Buff-Dot-623361) HP recovery every second.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801344,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623183,623361]}}],"icon":"/assets/ui/rom-spells/801344.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-15","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":543080,"sourceSkillId":494001,"name":"Double Chop","description":"Inflicts (DMG0) main hand weapon DPS twice.\n(Each skill level adds to aggro)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579061,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504510],"components":[{"id":504510,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.6,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.6,"damagePowerSkillLevelArg":5.5,"fixedValue":-0.1,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":494001,"name":"Double Chop","description":"Inflicts (DMG0) main hand weapon DPS twice.\n(Each skill level adds to aggro)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":3000,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579061,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504510]}}],"icon":"/assets/ui/rom-spells/579061.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-20","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":20,"keyItemId":543090,"sourceSkillId":494002,"name":"Beast Chop","description":"Inflicts (DMG0) main hand weapon DPS and a [620690] for (Buff4-Time) seconds.\n(Each skill level adds to aggro)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579062,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504511,620690],"components":[{"id":504511,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":-0.1,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0},{"id":620690,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":181,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":494002,"name":"Beast Chop","description":"Inflicts (DMG0) main hand weapon DPS and a [620690] for (Buff4-Time) seconds.\n(Each skill level adds to aggro)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579062,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504511,620690]}}],"icon":"/assets/ui/rom-spells/579062.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-25","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":25,"keyItemId":543100,"sourceSkillId":494003,"name":"Ire","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622321)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579063,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504512,622321],"components":[{"id":504512,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":622321,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":494003,"name":"Ire","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff0-622321)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579063,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504512,622321]}}],"icon":"/assets/ui/rom-spells/579063.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-30","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":543110,"sourceSkillId":498220,"name":"Immortal Power","description":"Immortal power flows from the deepest recesses of your being. You can withstand [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] three times over the course of (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":35,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":579847,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620707,620751],"components":[{"id":620707,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":483,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498231,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":1,"skillLevelArg":0}},{"id":620751,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498230,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":498220,"name":"Immortal Power","description":"Immortal power flows from the deepest recesses of your being. You can withstand [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] three times over the course of (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":35,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":15000},"source":{"imageId":579847,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620707,620751]}}],"icon":"/assets/ui/rom-spells/579847.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-35","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":543120,"sourceSkillId":493607,"name":"Pulse Mastery","description":"You can only cast it on targets with a [620690]. Causes (DMG0) main weapon DPS to the target and for (Buff8-Time) seconds aggro created by attacks in increased by (Buff8-0)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578291,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620691,620690,620727,620692],"components":[{"id":620691,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1.1,"fixedValue":-0.2,"attack":{"type":0,"calculationType":0,"damagePower":-1.1,"damagePowerSkillLevelArg":6,"fixedValue":-0.2,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0},{"id":620690,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":7,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":181,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620727,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":181,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620692,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":15,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":493607,"name":"Pulse Mastery","description":"You can only cast it on targets with a [620690]. Causes (DMG0) main weapon DPS to the target and for (Buff8-Time) seconds aggro created by attacks in increased by (Buff8-0)%.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"rage","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578291,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620691,620690,620727,620692]}}],"icon":"/assets/ui/rom-spells/578291.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-40","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":40,"keyItemId":543130,"sourceSkillId":494354,"name":"Resilience of Life","description":"Allows you to equip plate armor, and also reduces the damage received from monsters by 5%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579849,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620693],"components":[{"id":620693,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":207,"value":-5},{"type":99,"value":1}],"abilitySkillLevelArg":10.2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":494354,"name":"Resilience of Life","description":"Allows you to equip plate armor, and also reduces the damage received from monsters by 5%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579849,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620693]}}],"icon":"/assets/ui/rom-spells/579849.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-45","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":543140,"sourceSkillId":494610,"name":"Will Attack","description":"When your [493391] hits the target, it will reduce the damage dealt by target by (Buff0-620694)% for (Buff-Time-620694) seconds.","target":"self","range":7.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581114,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620694],"components":[{"id":620694,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":-10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":494610,"name":"Will Attack","description":"When your [493391] hits the target, it will reduce the damage dealt by target by (Buff0-620694)% for (Buff-Time-620694) seconds.","target":"self","range":7.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581114,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620694]}}],"icon":"/assets/ui/rom-spells/581114.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-50","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":50,"keyItemId":543150,"sourceSkillId":494611,"name":"Coat of Arms","description":"When you cast [494611] on a friendly party member, it increases your and the friendly member's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":35,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581115,"sourceEffectType":0,"sourceTarget":4,"componentIds":[620695,621116],"components":[{"id":620695,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":192,"abilityModifiers":[{"type":170,"value":30},{"type":135,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621116,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":524387,"specialActionFlags":0,"assistType":192,"abilityModifiers":[{"type":170,"value":30},{"type":135,"value":30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":494611,"name":"Coat of Arms","description":"When you cast [494611] on a friendly party member, it increases your and the friendly member's [SC_SKILLTIPS_DEF] and [SC_SKILLTIPS_MDEF] by (Buff0-0)% for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":35,"percentage":false},{"resource":"mana","amount":2,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581115,"sourceEffectType":0,"sourceTarget":4,"componentIds":[620695,621116]}}],"icon":"/assets/ui/rom-spells/581115.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-60","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546823,"sourceSkillId":499902,"name":"Elf Blessing","description":"When [499903] is used, it causes an increase of the caster's [SC_SKILLTIPS_DEF] and recovers HP every second.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801297,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499902,"name":"Elf Blessing","description":"When [499903] is used, it causes an increase of the caster's [SC_SKILLTIPS_DEF] and recovers HP every second.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801297,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801297.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-warrior-elite-70","classId":"rom-warden","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":70,"keyItemId":546824,"sourceSkillId":499900,"name":"Feral Leader","description":"Increases your inflicted damage by (Buff0-623248)% for (Buff-Time-623248) seconds and reduces your damage received by (Buff3-623248)%. Also reduces aggro for your party members.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":300,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801345,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623248,623250],"components":[{"id":623248,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":50},{"type":192,"value":50},{"type":207,"value":-30},{"type":206,"value":-30}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623250,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499900,"name":"Feral Leader","description":"Increases your inflicted damage by (Buff0-623248)% for (Buff-Time-623248) seconds and reduces your damage received by (Buff3-623248)%. Also reduces aggro for your party members.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":300,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801345,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623248,623250]}}],"icon":"/assets/ui/rom-spells/801345.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-15","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":543081,"sourceSkillId":494004,"name":"Anti-Magic Arrow","description":"Inflicts (DMG0) ranged weapon DPS and has a chance of restoring (DMG4) of your mana. (Requires ranged weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579064,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504513,504565],"components":[{"id":504513,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":3,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504565,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":25,"fixedValue":0,"attack":{"type":1,"calculationType":4,"damagePower":25,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":494004,"name":"Anti-Magic Arrow","description":"Inflicts (DMG0) ranged weapon DPS and has a chance of restoring (DMG4) of your mana. (Requires ranged weapon.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"focus","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579064,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504513,504565]}}],"icon":"/assets/ui/rom-spells/579064.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-20","classId":"rom-warden","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":543091,"sourceSkillId":494005,"name":"Beast Tamer","description":"Increase your pet's [SC_SKILLTIPS_CRI] by (Buff0-504514) points and [SC_SKILLTIPS_DOGE] by (Buff0-506421) points.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579068,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504514,506421],"components":[{"id":504514,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":30}],"abilitySkillLevelArg":22,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506421,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":17,"value":35}],"abilitySkillLevelArg":12.5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":494005,"name":"Beast Tamer","description":"Increase your pet's [SC_SKILLTIPS_CRI] by (Buff0-504514) points and [SC_SKILLTIPS_DOGE] by (Buff0-506421) points.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579068,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504514,506421]}}],"icon":"/assets/ui/rom-spells/579068.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-25","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":543101,"sourceSkillId":494006,"name":"Untamable","description":"Inflicts (DMG0) main hand weapon DPS on the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"focus","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579066,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620697],"components":[{"id":620697,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":494006,"name":"Untamable","description":"Inflicts (DMG0) main hand weapon DPS on the target.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"focus","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579066,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620697]}}],"icon":"/assets/ui/rom-spells/579066.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-30","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":543111,"sourceSkillId":494212,"name":"Summon Chiron the Centaur","description":"Summons the centaur Chiron to help you in battle.","target":"self","range":5,"castTimeMs":8000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102803},"source":{"imageId":579850,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504605,500499],"components":[{"id":504605,"magicFunc":3,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":102803,"summon":{"creatureId":102803,"level":0,"rangeLevel":0,"lifetimeSeconds":-1,"skillLevelArg":0,"type":0,"groupId":0,"ownerPowerRate":0}},{"id":500499,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"clearFlags":1056,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":498200,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":494212,"name":"Summon Chiron the Centaur","description":"Summons the centaur Chiron to help you in battle.","target":"self","range":5,"castTimeMs":8000,"cooldownMs":0,"costs":[{"resource":"mana","amount":15,"percentage":true}],"passive":false,"effect":{"kind":"summon","coefficient":0.75,"creatureId":102803},"source":{"imageId":579850,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504605,500499]}}],"icon":"/assets/ui/rom-spells/579850.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-35","classId":"rom-warden","secondaryClassId":"rom-scout","group":"passive","unlockLevel":35,"keyItemId":543121,"sourceSkillId":494356,"name":"Secret Agreement","description":"Permanently increases your melee weapon damage by (Buff0-0)% and all damage caused by Chiron the Centaur by (Buff0-505184)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579852,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504919,505184],"components":[{"id":504919,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":56,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505184,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":173,"value":5}],"abilitySkillLevelArg":6,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":494356,"name":"Secret Agreement","description":"Permanently increases your melee weapon damage by (Buff0-0)% and all damage caused by Chiron the Centaur by (Buff0-505184)%.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579852,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504919,505184]}}],"icon":"/assets/ui/rom-spells/579852.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-40","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":543131,"sourceSkillId":494357,"name":"Morale Boost","description":"Temporarily increases your and your party members' [SC_SKILLTIPS_DMG] by (Buff0-1) + (Buff4-1)% and [SC_SKILLTIPS_MDMG] by (Buff0-0) + (Buff4-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579853,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505150,620696],"components":[{"id":505150,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":203,"abilityModifiers":[{"type":191,"value":20},{"type":25,"value":30}],"abilitySkillLevelArg":7,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":493562,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620696,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435521,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":2},{"type":173,"value":2}],"abilitySkillLevelArg":7,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":494357,"name":"Morale Boost","description":"Temporarily increases your and your party members' [SC_SKILLTIPS_DMG] by (Buff0-1) + (Buff4-1)% and [SC_SKILLTIPS_MDMG] by (Buff0-0) + (Buff4-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"focus","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579853,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505150,620696]}}],"icon":"/assets/ui/rom-spells/579853.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-45","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":45,"keyItemId":543141,"sourceSkillId":494612,"name":"Valiant Shot","description":"Inflicts (DMG0) physical damage and increases the [SC_SKILLTIPS_01] of pet and master by (Buff0-505745)% for (Buff-Time-505745) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-505746)[SC_SKILLTIPS_CD_2])\n[SC_SKILL_COLLECT_01]","target":"hostile","range":25,"castTimeMs":2000,"cooldownMs":6000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":581116,"sourceEffectType":0,"sourceTarget":6,"componentIds":[505695,505760,505745,505746],"components":[{"id":505695,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-45,"fixedValue":0,"attack":{"type":0,"calculationType":9,"damagePower":-45,"damagePowerSkillLevelArg":22,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505760,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505745,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":8}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494959,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505746,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":25,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":494612,"name":"Valiant Shot","description":"Inflicts (DMG0) physical damage and increases the [SC_SKILLTIPS_01] of pet and master by (Buff0-505745)% for (Buff-Time-505745) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-505746)[SC_SKILLTIPS_CD_2])\n[SC_SKILL_COLLECT_01]","target":"hostile","range":25,"castTimeMs":2000,"cooldownMs":6000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.45},"source":{"imageId":581116,"sourceEffectType":0,"sourceTarget":6,"componentIds":[505695,505760,505745,505746]}}],"icon":"/assets/ui/rom-spells/581116.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-50","classId":"rom-warden","secondaryClassId":"rom-scout","group":"elite","unlockLevel":50,"keyItemId":543151,"sourceSkillId":494613,"name":"Sacrifice","description":"Sacrifices your pet to restore you (DMG0) HP and (DMG4) MP. However, your pet will be exhausted and unable to move for (Buff-Time-503639) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.5},"source":{"imageId":581117,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505696,505747,505748,503639],"components":[{"id":505696,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":50,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505747,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":50,"fixedValue":0,"attack":{"type":1,"calculationType":8,"damagePower":50,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505748,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503639,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[4195,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":494613,"name":"Sacrifice","description":"Sacrifices your pet to restore you (DMG0) HP and (DMG4) MP. However, your pet will be exhausted and unable to move for (Buff-Time-503639) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.5},"source":{"imageId":581117,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505696,505747,505748,503639]}}],"icon":"/assets/ui/rom-spells/581117.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-60","classId":"rom-warden","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546825,"sourceSkillId":499898,"name":"Forest Surround","description":"Increases [102803|Chiron the Centaur's] [SC_SKILLTIPS_CAST] by (Buff0-623251)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801298,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623251],"components":[{"id":623251,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499898,"name":"Forest Surround","description":"Increases [102803|Chiron the Centaur's] [SC_SKILLTIPS_CAST] by (Buff0-623251)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801298,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623251]}}],"icon":"/assets/ui/rom-spells/801298.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-scout-elite-70","classId":"rom-warden","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546826,"sourceSkillId":499899,"name":"Wind-piercing Arrow","description":"When the [498206] of [102803] hits, it will increase the caster's [SC_SKILLTIPS_DPS] by (Buff0-623252)%. Can be stacked a maximum of 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801346,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623252],"components":[{"id":623252,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":32867,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-5}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499899,"name":"Wind-piercing Arrow","description":"When the [498206] of [102803] hits, it will increase the caster's [SC_SKILLTIPS_DPS] by (Buff0-623252)%. Can be stacked a maximum of 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801346,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623252]}}],"icon":"/assets/ui/rom-spells/801346.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-15","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":543082,"sourceSkillId":494007,"name":"Achilles' Heel Strike","description":"Attacks the target's Achilles' heel. Inflicts (DMG0) main hand weapon DPS, and it has a chance of increasing both your pet's and your [SC_SKILLTIPS_CRI] by (Buff0-504569) points for (Buff-Time-504569) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504715)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":2000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578396,"sourceEffectType":1,"sourceTarget":6,"componentIds":[623259,623254,504516,504570,504569,504715],"components":[{"id":623259,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":-0.1,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623254,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504516,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504570,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504569,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":1342177507,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":20}],"abilitySkillLevelArg":12.4,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494334,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504715,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":25,"hateCost":0,"settingFlags":268443649,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":494007,"name":"Achilles' Heel Strike","description":"Attacks the target's Achilles' heel. Inflicts (DMG0) main hand weapon DPS, and it has a chance of increasing both your pet's and your [SC_SKILLTIPS_CRI] by (Buff0-504569) points for (Buff-Time-504569) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504715)[SC_SKILLTIPS_CD_2])","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":2000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":578396,"sourceEffectType":1,"sourceTarget":6,"componentIds":[623259,623254,504516,504570,504569,504715]}}],"icon":"/assets/ui/rom-spells/578396.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-20","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":20,"keyItemId":543092,"sourceSkillId":494202,"name":"Thorn Upgrade","description":"Increases damage done by thorny vines and has a chance of restoring your mana when the effect ends.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578413,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":494202,"name":"Thorn Upgrade","description":"Increases damage done by thorny vines and has a chance of restoring your mana when the effect ends.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578413,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/578413.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-25","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":25,"keyItemId":543102,"sourceSkillId":494009,"name":"Gravel Attack","description":"Inflicts (DMG0) main hand weapon DPS on target. It also additionally deals (Buff4-Dot) earth damage every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579074,"sourceEffectType":1,"sourceTarget":6,"componentIds":[623256,623254,504518,504571],"components":[{"id":623256,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5.5,"fixedValue":-0.1,"fixedType":6,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623254,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504518,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5.5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504571,"magicFunc":1,"magicType":0,"effectType":1,"effectTime":6,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-6,"dot":{"timeSeconds":2,"type":0,"base":-6,"skillLevelArg":50},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":494009,"name":"Gravel Attack","description":"Inflicts (DMG0) main hand weapon DPS on target. It also additionally deals (Buff4-Dot) earth damage every 2 seconds for (Buff4-Time) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579074,"sourceEffectType":1,"sourceTarget":6,"componentIds":[623256,623254,504518,504571]}}],"icon":"/assets/ui/rom-spells/579074.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-30","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":30,"keyItemId":543112,"sourceSkillId":494213,"name":"Soul of the Spirit Tree","description":"Increases the damage inflicted by Power of the Wood Spirit. When the target's HP reaches 30%, the critical hit chance of the Wood Spirit increases by 15%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579854,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":494213,"name":"Soul of the Spirit Tree","description":"Increases the damage inflicted by Power of the Wood Spirit. When the target's HP reaches 30%, the critical hit chance of the Wood Spirit increases by 15%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579854,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579854.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-35","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":35,"keyItemId":543122,"sourceSkillId":494358,"name":"Store Power","description":"Slightly increases the damage of your Charged Chop, and also increases its critical hit rate by 10%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579855,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":494358,"name":"Store Power","description":"Slightly increases the damage of your Charged Chop, and also increases its critical hit rate by 10%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579855,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579855.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-40","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":40,"keyItemId":543132,"sourceSkillId":494359,"name":"Critical Feeling","description":"If your Oak Walkers' skill successfully hits its target, there is a chance of your next 2 attacks within (Buff-Time-505185) seconds being critical hits.\n([SC_SKILLTIPS_CD_1]30[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579856,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505185],"components":[{"id":505185,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":494359,"name":"Critical Feeling","description":"If your Oak Walkers' skill successfully hits its target, there is a chance of your next 2 attacks within (Buff-Time-505185) seconds being critical hits.\n([SC_SKILLTIPS_CD_1]30[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579856,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505185]}}],"icon":"/assets/ui/rom-spells/579856.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-45","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":45,"keyItemId":543142,"sourceSkillId":494614,"name":"Walker Spirit","description":"Awakens the spirit of the Oak Walker within you, temporarily increasing your movement speed by (Buff0-0)% and dodge rate by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581118,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505697],"components":[{"id":505697,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":50},{"type":198,"value":50}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":494614,"name":"Walker Spirit","description":"Awakens the spirit of the Oak Walker within you, temporarily increasing your movement speed by (Buff0-0)% and dodge rate by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581118,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505697]}}],"icon":"/assets/ui/rom-spells/581118.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-50","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":543152,"sourceSkillId":494615,"name":"Together","description":"Immediately inflicts (DMG0) main hand weapon DPS to your target and simultaneously increases the damage dealt by you and your pet by (Buff0-505939)% for (Buff-Time-505939) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581119,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505698,505940,505939],"components":[{"id":505698,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-3,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-3,"damagePowerSkillLevelArg":5,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505940,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505939,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":15,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":205,"value":10},{"type":204,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1000,"fixedValue":3,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":494615,"name":"Together","description":"Immediately inflicts (DMG0) main hand weapon DPS to your target and simultaneously increases the damage dealt by you and your pet by (Buff0-505939)% for (Buff-Time-505939) seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"energy","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581119,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505698,505940,505939]}}],"icon":"/assets/ui/rom-spells/581119.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-60","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546827,"sourceSkillId":499896,"name":"Force Fountain","description":"While your [499897] is in effect, it causes an additional increase in [SC_SKILLTIPS_STR].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801299,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499896,"name":"Force Fountain","description":"While your [499897] is in effect, it causes an additional increase in [SC_SKILLTIPS_STR].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801299,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801299.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-rogue-elite-70","classId":"rom-warden","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":70,"keyItemId":546828,"sourceSkillId":499894,"name":"Enemy Sigil","description":"Inflicts [499894] on target and makes your [494581], [494342], [494007] and [494009] cause additional [SC_SKILLTIPS_STR] damage.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801347,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623254],"components":[{"id":623254,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499894,"name":"Enemy Sigil","description":"Inflicts [499894] on target and makes your [494581], [494342], [494007] and [494009] cause additional [SC_SKILLTIPS_STR] damage.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":55,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801347,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623254]}}],"icon":"/assets/ui/rom-spells/801347.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-15","classId":"rom-warden","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":543083,"sourceSkillId":494010,"name":"Wind Chop","description":"Inflicts (DMG0) main hand weapon DPS. Each successful hit has an additional chance of inflicting (DMG4) wind damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579070,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504519,504601],"components":[{"id":504519,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504601,"magicFunc":0,"magicType":3,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-20,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-20,"damagePowerSkillLevelArg":50,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":494010,"name":"Wind Chop","description":"Inflicts (DMG0) main hand weapon DPS. Each successful hit has an additional chance of inflicting (DMG4) wind damage.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579070,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504519,504601]}}],"icon":"/assets/ui/rom-spells/579070.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-20","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":20,"keyItemId":543093,"sourceSkillId":494207,"name":"Tough Oak","description":"Increases your pet's [SC_SKILLTIPS_DEF] by (Buff0-504600)% and reduces [SC_SKILLTIPS_CDTIME] from [493382] and [493385] by 1 second.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578412,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504600],"components":[{"id":504600,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":5}],"abilitySkillLevelArg":20,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":494207,"name":"Tough Oak","description":"Increases your pet's [SC_SKILLTIPS_DEF] by (Buff0-504600)% and reduces [SC_SKILLTIPS_CDTIME] from [493382] and [493385] by 1 second.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578412,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504600]}}],"icon":"/assets/ui/rom-spells/578412.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-25","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":25,"keyItemId":543103,"sourceSkillId":494011,"name":"Oak Blessing","description":"During the effect time of [491668], increases your [SC_SKILLTIPS_01] by (Buff0-620679)% and restores your HP by (Buff-Dot-620679)% every 3 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579065,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620679],"components":[{"id":620679,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":363,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":5}],"abilitySkillLevelArg":0,"dotTime":3,"dotType":5,"dotBase":1,"dot":{"timeSeconds":3,"type":5,"base":1,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":1,"effect":0,"point":2,"skillLevelArg":0}}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":494011,"name":"Oak Blessing","description":"During the effect time of [491668], increases your [SC_SKILLTIPS_01] by (Buff0-620679)% and restores your HP by (Buff-Dot-620679)% every 3 seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579065,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620679]}}],"icon":"/assets/ui/rom-spells/579065.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-30","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":30,"keyItemId":543113,"sourceSkillId":498205,"name":"Nature's Revenge","description":"Enhances the skills of your pet [102325]. Increases the resisted damage of [498201] by (Buff-Shield-620702)% and the effect of [498202] by (Buff0-620703)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579857,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620702,620703],"components":[{"id":620702,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435811,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":15,"skillLevelArg":0}},{"id":620703,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-8},{"type":51,"value":-8}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":498205,"name":"Nature's Revenge","description":"Enhances the skills of your pet [102325]. Increases the resisted damage of [498201] by (Buff-Shield-620702)% and the effect of [498202] by (Buff0-620703)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579857,"sourceEffectType":2,"sourceTarget":0,"componentIds":[620702,620703]}}],"icon":"/assets/ui/rom-spells/579857.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-35","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":543123,"sourceSkillId":498227,"name":"Spiritual Feedback","description":"Enhances the power of your pet \"Oak Walker\". When your skill delivers a critical hit, the attack power of the Oak Walker's Sepal Stab will be greatly enhanced.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579858,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":498227,"name":"Spiritual Feedback","description":"Enhances the power of your pet \"Oak Walker\". When your skill delivers a critical hit, the attack power of the Oak Walker's Sepal Stab will be greatly enhanced.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579858,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579858.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-40","classId":"rom-warden","secondaryClassId":"rom-mage","group":"elite","unlockLevel":40,"keyItemId":543133,"sourceSkillId":498219,"name":"Crystal Protection","description":"Orders your Nature Crystal to protect team members by wrapping them in its shards. Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of multiple friendly targets by (Buff0-505154)% within a radius of 100. The effect lasts for (Buff-Time-505154) seconds.","target":"self","range":40,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":588116,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505154],"components":[{"id":505154,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":143,"value":20},{"type":142,"value":20}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":498219,"name":"Crystal Protection","description":"Orders your Nature Crystal to protect team members by wrapping them in its shards. Reduces the [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] of multiple friendly targets by (Buff0-505154)% within a radius of 100. The effect lasts for (Buff-Time-505154) seconds.","target":"self","range":40,"castTimeMs":0,"cooldownMs":120000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":588116,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505154]}}],"icon":"/assets/ui/rom-spells/588116.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-45","classId":"rom-warden","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":543143,"sourceSkillId":494616,"name":"Narrow Escape","description":"Your pet is under the effect of [505705] and will be reborn immediately after death.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581120,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505897,505705],"components":[{"id":505897,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505705,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":494616,"name":"Narrow Escape","description":"Your pet is under the effect of [505705] and will be reborn immediately after death.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581120,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505897,505705]}}],"icon":"/assets/ui/rom-spells/581120.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-50","classId":"rom-warden","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":543153,"sourceSkillId":498214,"name":"Pet Enhance","description":"Temporarily enhances your pet, increasing its [SC_SKILLTIPS_01] and [SC_SKILLTIPS_DMG] by (Buff0-620713)% for (Buff-Time-620713) seconds.","target":"self","range":25,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581121,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620714,620713],"components":[{"id":620714,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620713,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":30},{"type":173,"value":30}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":498214,"name":"Pet Enhance","description":"Temporarily enhances your pet, increasing its [SC_SKILLTIPS_01] and [SC_SKILLTIPS_DMG] by (Buff0-620713)% for (Buff-Time-620713) seconds.","target":"self","range":25,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":3,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581121,"sourceEffectType":0,"sourceTarget":0,"componentIds":[620714,620713]}}],"icon":"/assets/ui/rom-spells/581121.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-60","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546829,"sourceSkillId":499893,"name":"Resonation of Wind","description":"When your [494010] hits a target and triggers [SC_SKILLTIPS_WIND], this will reduce your [493347] cooldown time by 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801300,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499893,"name":"Resonation of Wind","description":"When your [494010] hits a target and triggers [SC_SKILLTIPS_WIND], this will reduce your [493347] cooldown time by 5 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801300,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801300.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-mage-elite-70","classId":"rom-warden","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546830,"sourceSkillId":499891,"name":"Wild Offensive","description":"Makes your [499892] increase the pet's [SC_SKILLTIPS_DPS] and reduces the cooldown time of [499892].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801348,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499891,"name":"Wild Offensive","description":"Makes your [499892] increase the pet's [SC_SKILLTIPS_DPS] and reduces the cooldown time of [499892].","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801348,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801348.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-15","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":15,"keyItemId":543084,"sourceSkillId":494013,"name":"Dispel Curse","description":"Cleanses a Curse from one friendly target.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579073,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504522],"components":[{"id":504522,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493528],"sourceSkillId":494013,"name":"Dispel Curse","description":"Cleanses a Curse from one friendly target.","target":"friendly","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579073,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504522]}}],"icon":"/assets/ui/rom-spells/579073.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-20","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":20,"keyItemId":543094,"sourceSkillId":493389,"name":"Magic Control","description":"Restricts target's magic energy. Decreases target's [SC_SKILLTIPS_02] and [SC_SKILLTIPS_01] by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578271,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503624],"components":[{"id":503624,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":172,"abilityModifiers":[{"type":171,"value":-2},{"type":173,"value":-2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[493528],"sourceSkillId":493389,"name":"Magic Control","description":"Restricts target's magic energy. Decreases target's [SC_SKILLTIPS_02] and [SC_SKILLTIPS_01] by (Buff0-0)% for (Buff0-Time) seconds.","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":578271,"sourceEffectType":0,"sourceTarget":6,"componentIds":[503624]}}],"icon":"/assets/ui/rom-spells/578271.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-25","classId":"rom-warden","secondaryClassId":"rom-druid","group":"passive","unlockLevel":25,"keyItemId":543104,"sourceSkillId":494208,"name":"Quick Reflexes","description":"Increases [SC_SKILLTIPS_CRI_PASSIVE] of yours and your pet's by (Buff0-0) and [SC_SKILLTIPS_DOGEP] by (Buff4-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578411,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504711,506422],"components":[{"id":504711,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":182,"value":200}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506422,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":198,"value":2}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[493528],"sourceSkillId":494208,"name":"Quick Reflexes","description":"Increases [SC_SKILLTIPS_CRI_PASSIVE] of yours and your pet's by (Buff0-0) and [SC_SKILLTIPS_DOGEP] by (Buff4-0)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578411,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504711,506422]}}],"icon":"/assets/ui/rom-spells/578411.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-30","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":30,"keyItemId":543114,"sourceSkillId":494215,"name":"Earth Spirit Essence","description":"Cloaks your weapon in the power of earth. Normal attacks inflict (Buff0-0) earth damage, and (Buff0-1)% [SC_SKILLTIPS_DMG] is resisted for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579860,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504847],"components":[{"id":504847,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":184,"value":100},{"type":143,"value":2}],"abilitySkillLevelArg":10,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493528],"sourceSkillId":494215,"name":"Earth Spirit Essence","description":"Cloaks your weapon in the power of earth. Normal attacks inflict (Buff0-0) earth damage, and (Buff0-1)% [SC_SKILLTIPS_DMG] is resisted for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579860,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504847]}}],"icon":"/assets/ui/rom-spells/579860.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-35","classId":"rom-warden","secondaryClassId":"rom-druid","group":"passive","unlockLevel":35,"keyItemId":543124,"sourceSkillId":494362,"name":"Natural Spring","description":"When your [493395] hits the target, you can heal party members within a range of 75. The skill can't be triggered again within (Buff-Time-505205) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579861,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505205],"components":[{"id":505205,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493528],"sourceSkillId":494362,"name":"Natural Spring","description":"When your [493395] hits the target, you can heal party members within a range of 75. The skill can't be triggered again within (Buff-Time-505205) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579861,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505205]}}],"icon":"/assets/ui/rom-spells/579861.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-40","classId":"rom-warden","secondaryClassId":"rom-druid","group":"passive","unlockLevel":40,"keyItemId":543134,"sourceSkillId":494363,"name":"Connection","description":"Your Elven Prayer can bestow an additional spell onto you and your pet, increasing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] for (Buff-Time-505155) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579878,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505155],"components":[{"id":505155,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":10},{"type":173,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493528],"sourceSkillId":494363,"name":"Connection","description":"Your Elven Prayer can bestow an additional spell onto you and your pet, increasing [SC_SKILLTIPS_DMG] and [SC_SKILLTIPS_MDMG] for (Buff-Time-505155) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579878,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505155]}}],"icon":"/assets/ui/rom-spells/579878.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-45","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":45,"keyItemId":543144,"sourceSkillId":494618,"name":"Blade of Protection","description":"An attack with the Power to Protect. Inflicts (DMG0) main hand weapon DPS. Upon hitting a target it may increase the [SC_SKILLTIPS_DEF] of party members within a radius of 70 by (Buff0-505752)% for (Buff-Time-505752) seconds.\n(Increases the [SC_SKILLTIPS_DEF] by a maximum of (Max-Buff0-505752)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581122,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505701,505751,623270,505752],"components":[{"id":505701,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.7,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.7,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":5},"summonCreatureId":0},{"id":505751,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":524293,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":494960,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623270,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":524288,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505752,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":135,"value":1}],"abilitySkillLevelArg":18,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493528],"sourceSkillId":494618,"name":"Blade of Protection","description":"An attack with the Power to Protect. Inflicts (DMG0) main hand weapon DPS. Upon hitting a target it may increase the [SC_SKILLTIPS_DEF] of party members within a radius of 70 by (Buff0-505752)% for (Buff-Time-505752) seconds.\n(Increases the [SC_SKILLTIPS_DEF] by a maximum of (Max-Buff0-505752)%.)","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":7000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":581122,"sourceEffectType":1,"sourceTarget":6,"componentIds":[505701,505751,623270,505752]}}],"icon":"/assets/ui/rom-spells/581122.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-50","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":50,"keyItemId":543154,"sourceSkillId":491669,"name":"Thorn Sigil","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff4-0)% for 15 seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801358,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504512,503949],"components":[{"id":504512,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":268435522,"specialActionFlags":0,"assistType":169,"effectFlagWords":[262144,0],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503949,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":67,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493528],"sourceSkillId":491669,"name":"Thorn Sigil","description":"Forces the target to turn towards you, and you become the one with the most aggro. Also increases your aggro by (Buff4-0)% for 15 seconds.","target":"hostile","range":15,"castTimeMs":0,"cooldownMs":25000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801358,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504512,503949]}}],"icon":"/assets/ui/rom-spells/801358.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-60","classId":"rom-warden","secondaryClassId":"rom-druid","group":"passive","unlockLevel":60,"keyItemId":546831,"sourceSkillId":499888,"name":"Briar Control","description":"Your [499889] increases your [SC_SKILLTIPS_HEAL] and [SC_SKILLTIPS_HEAL_PASSIVE]. Every time you use [499886], you earn a shield that is 5% of Maximum HP.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801301,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[493528],"sourceSkillId":499888,"name":"Briar Control","description":"Your [499889] increases your [SC_SKILLTIPS_HEAL] and [SC_SKILLTIPS_HEAL_PASSIVE]. Every time you use [499886], you earn a shield that is 5% of Maximum HP.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801301,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801301.png","iconResolution":"native-interface-fdb"},{"id":"rom-warden-rom-druid-elite-70","classId":"rom-warden","secondaryClassId":"rom-druid","group":"elite","unlockLevel":70,"keyItemId":546832,"sourceSkillId":499885,"name":"Beast Awakening","description":"Increases Maximum HP (Buff0-0)% and lasts for (Buff0-Time) seconds. When [494618] hits, reduces [499885] cooldown time for the target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":300,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801349,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623269],"components":[{"id":623269,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493528],"sourceSkillId":499885,"name":"Beast Awakening","description":"Increases Maximum HP (Buff0-0)% and lasts for (Buff0-Time) seconds. When [494618] hits, reduces [499885] cooldown time for the target.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":300,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801349,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623269]}}],"icon":"/assets/ui/rom-spells/801349.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-15","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":15,"keyItemId":543085,"sourceSkillId":494016,"name":"Natural Attack","description":"Gathers the power of nature to launch an attack. Inflicts ((DMG0) main hand weapon DPS + (FixDMG-504525) x Wisdom) damage. When you are hit, you receive 1 point of Nature's Power.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579076,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504525,504575,623080],"components":[{"id":504525,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":-0.1,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504575,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623080,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":3},{"type":164,"value":3}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":494016,"name":"Natural Attack","description":"Gathers the power of nature to launch an attack. Inflicts ((DMG0) main hand weapon DPS + (FixDMG-504525) x Wisdom) damage. When you are hit, you receive 1 point of Nature's Power.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":4000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579076,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504525,504575,623080]}}],"icon":"/assets/ui/rom-spells/579076.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-20","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":20,"keyItemId":543095,"sourceSkillId":494017,"name":"Glory Wand","description":"Increases your attack speed by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds. Also, during physical attacks, a protective shield will appear that absorbs (Buff-Shield-504725) damage for (Buff-Time-504725) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504727)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":8000},"source":{"imageId":579077,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504526,504725,504727],"components":[{"id":504526,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":23,"value":-1},{"type":144,"value":1}],"abilitySkillLevelArg":19,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":493605,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504725,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1342177763,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494015,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":2,"effect":0,"point":200,"skillLevelArg":19}},{"id":504727,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":494017,"name":"Glory Wand","description":"Increases your attack speed by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds. Also, during physical attacks, a protective shield will appear that absorbs (Buff-Shield-504725) damage for (Buff-Time-504725) seconds. \n([SC_SKILLTIPS_CD_1](Buff-Time-504727)[SC_SKILLTIPS_CD_2])","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":8000},"source":{"imageId":579077,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504526,504725,504727]}}],"icon":"/assets/ui/rom-spells/579077.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-25","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":25,"keyItemId":543105,"sourceSkillId":494018,"name":"Cross of Thorns Attack","description":"Launches a rapid Double Attack on the target. Inflicts twice (DMG1) main hand weapon DPS plus (FixDMG1) times wisdom damage on the target, and restores 1 point of Nature's Power to you when you hit the target.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance the power and Inflicts (2 x (DMG0) main hand weapon DPS + (FixDMG0) x Wisdom) damage on the target. There is also a chance of restoring 1 point of Nature's Power if you hit the target.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579078,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620461,503827,620460,504527,504576],"components":[{"id":620461,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5,"fixedValue":-0.1,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620460,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.8,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.8,"damagePowerSkillLevelArg":5,"fixedValue":-0.1,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504527,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":-0.1,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":5,"fixedValue":-0.1,"fixedType":9,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504576,"magicFunc":7,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":494018,"name":"Cross of Thorns Attack","description":"Launches a rapid Double Attack on the target. Inflicts twice (DMG1) main hand weapon DPS plus (FixDMG1) times wisdom damage on the target, and restores 1 point of Nature's Power to you when you hit the target.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance the power and Inflicts (2 x (DMG0) main hand weapon DPS + (FixDMG0) x Wisdom) damage on the target. There is also a chance of restoring 1 point of Nature's Power if you hit the target.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":6000,"costs":[{"resource":"rage","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579078,"sourceEffectType":1,"sourceTarget":6,"componentIds":[620461,503827,620460,504527,504576]}}],"icon":"/assets/ui/rom-spells/579078.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-30","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":30,"keyItemId":543115,"sourceSkillId":494216,"name":"Heart Piercing","description":"Concentrates the power of nature in your body to launch a severe attack on your target. Inflicts (DMG1) main hand weapon DPS on target. Each successful hit will produce (DMG4) points of rage.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) main hand weapon DPS on target. Each successful hit will produce (DMG4) points of rage.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579862,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504860,503827,620462,504882,623080],"components":[{"id":504860,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-1,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-1,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620462,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-0.9,"fixedValue":0,"attack":{"type":0,"calculationType":0,"damagePower":-0.9,"damagePowerSkillLevelArg":6,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504882,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":15,"fixedValue":0,"attack":{"type":2,"calculationType":4,"damagePower":15,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":623080,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":3},{"type":164,"value":3}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":494216,"name":"Heart Piercing","description":"Concentrates the power of nature in your body to launch a severe attack on your target. Inflicts (DMG1) main hand weapon DPS on target. Each successful hit will produce (DMG4) points of rage.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) main hand weapon DPS on target. Each successful hit will produce (DMG4) points of rage.","target":"hostile","range":9,"castTimeMs":0,"cooldownMs":8000,"costs":[{"resource":"mana","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.15},"source":{"imageId":579862,"sourceEffectType":1,"sourceTarget":6,"componentIds":[504860,503827,620462,504882,623080]}}],"icon":"/assets/ui/rom-spells/579862.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-35","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":543125,"sourceSkillId":494364,"name":"Awakening of the Wild","description":"Increases your and your party members' [SC_SKILLTIPS_01] by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) as well as [SC_SKILLTIPS_DMG] by (Buff0-1), both for (Buff0-Time) seconds.\n(This effect cannot co-exist with similar effects.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579863,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505157,506538],"components":[{"id":505157,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":42,"abilityModifiers":[{"type":12,"value":40},{"type":25,"value":25}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":5,"onBuffTimeoutMagicId":495576,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506538,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":524321,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":1}],"abilitySkillLevelArg":9,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":5,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":494364,"name":"Awakening of the Wild","description":"Increases your and your party members' [SC_SKILLTIPS_01] by (current [SC_SKILLTIPS_01] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) as well as [SC_SKILLTIPS_DMG] by (Buff0-1), both for (Buff0-Time) seconds.\n(This effect cannot co-exist with similar effects.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579863,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505157,506538]}}],"icon":"/assets/ui/rom-spells/579863.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-40","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":543135,"sourceSkillId":494365,"name":"Healing Wind","description":"Restores (DMG1) HP to you and your party members in a range of 100.\nWhen you have Nature's Power, 1 point of it will automatically be consumed to increase abilities as well as heal (DMG0) of your HP as well as the HP of party members within a range of 100.","target":"self","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.65},"source":{"imageId":579864,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505158,503827,620463,620441],"components":[{"id":505158,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":65,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":65,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620463,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":50,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":50,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":494365,"name":"Healing Wind","description":"Restores (DMG1) HP to you and your party members in a range of 100.\nWhen you have Nature's Power, 1 point of it will automatically be consumed to increase abilities as well as heal (DMG0) of your HP as well as the HP of party members within a range of 100.","target":"self","range":5,"castTimeMs":0,"cooldownMs":5000,"costs":[{"resource":"rage","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.65},"source":{"imageId":579864,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505158,503827,620463,620441]}}],"icon":"/assets/ui/rom-spells/579864.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-45","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":45,"keyItemId":543145,"sourceSkillId":494929,"name":"Slash Fury","description":"Increases the attack range of your Slash, and upon hitting a target with Slash, it has a chance of increasing your healing and rage generation.\n([SC_SKILLTIPS_CD_1](Buff-Time-505733)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581124,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505733],"components":[{"id":505733,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":268959809,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":494929,"name":"Slash Fury","description":"Increases the attack range of your Slash, and upon hitting a target with Slash, it has a chance of increasing your healing and rage generation.\n([SC_SKILLTIPS_CD_1](Buff-Time-505733)[SC_SKILLTIPS_CD_2])","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581124,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505733]}}],"icon":"/assets/ui/rom-spells/581124.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-50","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":50,"keyItemId":543155,"sourceSkillId":494930,"name":"Nourish","description":"It causes Nature's Power to be stored in a friendly target for (Buff0-Time) seconds. When the target's HP drops below 40%, it will immediately restore (DMG-505736) HP and restore 2 points of Nature's Power to you. (Healing effect requires a (Buff-Time-505899) seconds cooldown.)","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":581125,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505704,505898,505736,505899],"components":[{"id":505704,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":120,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505898,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":130,"hateCost":0,"settingFlags":524417,"specialActionFlags":0,"assistType":-1,"clearFlags":2,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495062,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505736,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":15,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":15,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505899,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":494930,"name":"Nourish","description":"It causes Nature's Power to be stored in a friendly target for (Buff0-Time) seconds. When the target's HP drops below 40%, it will immediately restore (DMG-505736) HP and restore 2 points of Nature's Power to you. (Healing effect requires a (Buff-Time-505899) seconds cooldown.)","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":581125,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505704,505898,505736,505899]}}],"icon":"/assets/ui/rom-spells/581125.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-60","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546833,"sourceSkillId":499955,"name":"Briar Technique","description":"When your [494016], [499956] or [494216] hits a target, you can earn the Briar Technique effect. This provides an extra increase of [SC_SKILLTIPS_01] by (Buff0-623080)% and of [SC_SKILLTIPS_MND] by (Buff1-623080)%. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801302,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623080],"components":[{"id":623080,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":134,"value":3},{"type":164,"value":3}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499955,"name":"Briar Technique","description":"When your [494016], [499956] or [494216] hits a target, you can earn the Briar Technique effect. This provides an extra increase of [SC_SKILLTIPS_01] by (Buff0-623080)% and of [SC_SKILLTIPS_MND] by (Buff1-623080)%. Can be stacked 5 times.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801302,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623080]}}],"icon":"/assets/ui/rom-spells/801302.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warrior-elite-70","classId":"rom-druid","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546834,"sourceSkillId":499953,"name":"Heart of the Wild","description":"Allows you to equip Leather Armor and Chainmail and increases [SC_SKILLTIPS_POWER] by (Buff0-2)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801350,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623081],"components":[{"id":623081,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":100,"value":1},{"type":101,"value":1},{"type":56,"value":5}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499953,"name":"Heart of the Wild","description":"Allows you to equip Leather Armor and Chainmail and increases [SC_SKILLTIPS_POWER] by (Buff0-2)%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801350,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623081]}}],"icon":"/assets/ui/rom-spells/801350.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-15","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":15,"keyItemId":543086,"sourceSkillId":494019,"name":"Camellia Flower","description":"Causes target to recover (Buff3-Dot) HP per second for (Buff0-Time) seconds. Can be stacked up to 3 times.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579079,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504578,504577,504528],"components":[{"id":504578,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":268443755,"specialActionFlags":0,"assistType":136,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":35,"dot":{"timeSeconds":1,"type":0,"base":35,"skillLevelArg":16},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504577,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":268443755,"specialActionFlags":0,"assistType":136,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":25,"dot":{"timeSeconds":1,"type":0,"base":25,"skillLevelArg":16},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504528,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":268443755,"specialActionFlags":0,"assistType":136,"abilitySkillLevelArg":5,"dotTime":1,"dotType":0,"dotBase":15,"dot":{"timeSeconds":1,"type":0,"base":15,"skillLevelArg":16},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490420],"sourceSkillId":494019,"name":"Camellia Flower","description":"Causes target to recover (Buff3-Dot) HP per second for (Buff0-Time) seconds. Can be stacked up to 3 times.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579079,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504578,504577,504528]}}],"icon":"/assets/ui/rom-spells/579079.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-20","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":20,"keyItemId":543096,"sourceSkillId":494020,"name":"Life Guide","description":"Causes you to recover HP every 2 seconds when you use Recover.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579080,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490420],"sourceSkillId":494020,"name":"Life Guide","description":"Causes you to recover HP every 2 seconds when you use Recover.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579080,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579080.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-25","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":25,"keyItemId":543106,"sourceSkillId":494021,"name":"Healing Arrows","description":"Restores (Buff1-Dot) HP every 2 seconds to 5 friendly targets in range. Lasts for (Buff0-Time) seconds. \nIf you possess Nature's Power, it automatically will consume 1 point of Nature's Power to enhance abilities and restore (Buff0-Dot) HP. \n(Requires ranged weapon.)","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":5000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579081,"sourceEffectType":0,"sourceTarget":16,"componentIds":[504529,503827,620446,620441],"components":[{"id":504529,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620446,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":16,"dot":{"timeSeconds":2,"type":0,"base":16,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490420],"sourceSkillId":494021,"name":"Healing Arrows","description":"Restores (Buff1-Dot) HP every 2 seconds to 5 friendly targets in range. Lasts for (Buff0-Time) seconds. \nIf you possess Nature's Power, it automatically will consume 1 point of Nature's Power to enhance abilities and restore (Buff0-Dot) HP. \n(Requires ranged weapon.)","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":5000,"costs":[{"resource":"focus","amount":20,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579081,"sourceEffectType":0,"sourceTarget":16,"componentIds":[504529,503827,620446,620441]}}],"icon":"/assets/ui/rom-spells/579081.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-30","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":30,"keyItemId":543116,"sourceSkillId":494217,"name":"Group Exorcism","description":"Requires 1 point of Nature's Power. Removes harmful effects from multiple friendly targets within a range of 50.","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579865,"sourceEffectType":0,"sourceTarget":16,"componentIds":[504861,504109],"components":[{"id":504861,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":1,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504109,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490420],"sourceSkillId":494217,"name":"Group Exorcism","description":"Requires 1 point of Nature's Power. Removes harmful effects from multiple friendly targets within a range of 50.","target":"hostile","range":18,"castTimeMs":1000,"cooldownMs":10000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579865,"sourceEffectType":0,"sourceTarget":16,"componentIds":[504861,504109]}}],"icon":"/assets/ui/rom-spells/579865.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-35","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":35,"keyItemId":543126,"sourceSkillId":494366,"name":"Warm Spring","description":"Party members within a range of 100 recover (DMG-505201) MP every 2 seconds for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579866,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505159,505201],"components":[{"id":505159,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":268435527,"specialActionFlags":0,"assistType":24,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":494621,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505201,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":67108865,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":1,"damagePower":30,"fixedValue":0,"attack":{"type":1,"calculationType":4,"damagePower":30,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490420],"sourceSkillId":494366,"name":"Warm Spring","description":"Party members within a range of 100 recover (DMG-505201) MP every 2 seconds for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579866,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505159,505201]}}],"icon":"/assets/ui/rom-spells/579866.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-40","classId":"rom-druid","secondaryClassId":"rom-scout","group":"elite","unlockLevel":40,"keyItemId":543136,"sourceSkillId":494367,"name":"Mother Earth's Blessing","description":"Increases your healing power by (Buff0-505160) for (Buff-Time-505160) seconds. This effect ends after you have used healings spells for 3 times. (This spell will reward you 2 points of Nature's Power.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579867,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505160,505181,505199],"components":[{"id":505160,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":129,"specialActionFlags":0,"assistType":-1,"clearFlags":16384,"abilityModifiers":[{"type":150,"value":25}],"abilitySkillLevelArg":20,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":494351,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505181,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505199,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490420],"sourceSkillId":494367,"name":"Mother Earth's Blessing","description":"Increases your healing power by (Buff0-505160) for (Buff-Time-505160) seconds. This effect ends after you have used healings spells for 3 times. (This spell will reward you 2 points of Nature's Power.)","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":40,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579867,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505160,505181,505199]}}],"icon":"/assets/ui/rom-spells/579867.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-45","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":45,"keyItemId":543146,"sourceSkillId":494931,"name":"Brilliance of Nature","description":"Increases your maximum amount of Nature's Power up to 15.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581126,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490420],"sourceSkillId":494931,"name":"Brilliance of Nature","description":"Increases your maximum amount of Nature's Power up to 15.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581126,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581126.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-50","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":50,"keyItemId":543156,"sourceSkillId":494932,"name":"Spring Flower Eulogy","description":"When casting [499935], if the target's HP is lower than 50%, the effect will automatically be stacked 3 times. There is also a chance of restoring 1 Nature's Power to you. When [499935] ends, it will restore additional HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581127,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490420],"sourceSkillId":494932,"name":"Spring Flower Eulogy","description":"When casting [499935], if the target's HP is lower than 50%, the effect will automatically be stacked 3 times. There is also a chance of restoring 1 Nature's Power to you. When [499935] ends, it will restore additional HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581127,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581127.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-60","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":60,"keyItemId":546835,"sourceSkillId":499952,"name":"Spring Carol","description":"Reduces your [499951] cooldown time to 30 seconds and gives your [499954] an area effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801303,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490420],"sourceSkillId":499952,"name":"Spring Carol","description":"Reduces your [499951] cooldown time to 30 seconds and gives your [499954] an area effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801303,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801303.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-scout-elite-70","classId":"rom-druid","secondaryClassId":"rom-scout","group":"passive","unlockLevel":70,"keyItemId":546836,"sourceSkillId":499949,"name":"Spirit Shackles","description":"Allows your [499950] to be used on players, but it won't make them become friendly. In fact it makes the target player unable to move, attack or cast spells. [SC_SKILLTIPS_HEAL_PASSIVE] is also reduced by (Buff0-623093)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801351,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623093],"components":[{"id":623093,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[65619,0],"abilityModifiers":[{"type":144,"value":-100}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490420],"sourceSkillId":499949,"name":"Spirit Shackles","description":"Allows your [499950] to be used on players, but it won't make them become friendly. In fact it makes the target player unable to move, attack or cast spells. [SC_SKILLTIPS_HEAL_PASSIVE] is also reduced by (Buff0-623093)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801351,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623093]}}],"icon":"/assets/ui/rom-spells/801351.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-15","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":543087,"sourceSkillId":494022,"name":"Poisonous Widow Embrace","description":"Summons the sinister plant, Poisonous Widow, to seize and attack your target. Inflicts (DMG1) [SC_SKILLTIPS_DARK] and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_DARK] on your targets. Also, 1 point of Nature's Power will be restored.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":579082,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620438,503827,620215,504717],"components":[{"id":620438,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-65,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-65,"damagePowerSkillLevelArg":32,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620215,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-50,"damagePowerSkillLevelArg":32,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504717,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":494022,"name":"Poisonous Widow Embrace","description":"Summons the sinister plant, Poisonous Widow, to seize and attack your target. Inflicts (DMG1) [SC_SKILLTIPS_DARK] and restores 1 point of Nature's Power.\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_DARK] on your targets. Also, 1 point of Nature's Power will be restored.","target":"hostile","range":20,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.65},"source":{"imageId":579082,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620438,503827,620215,504717]}}],"icon":"/assets/ui/rom-spells/579082.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-20","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":20,"keyItemId":543097,"sourceSkillId":494023,"name":"Speed Catalysis","description":"Temporarily raises the physical attack and casting speed of party members within a range of 150 by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579083,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504532],"components":[{"id":504532,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":9,"abilityModifiers":[{"type":23,"value":-20},{"type":51,"value":-20}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":494023,"name":"Speed Catalysis","description":"Temporarily raises the physical attack and casting speed of party members within a range of 150 by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"energy","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579083,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504532]}}],"icon":"/assets/ui/rom-spells/579083.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-25","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":25,"keyItemId":543107,"sourceSkillId":494024,"name":"Corrosive Poison","description":"Corrodes your target, inflicting (Buff0-Dot) points of dark damage every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579084,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504533],"components":[{"id":504533,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":26},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":494024,"name":"Corrosive Poison","description":"Corrodes your target, inflicting (Buff0-Dot) points of dark damage every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579084,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504533]}}],"icon":"/assets/ui/rom-spells/579084.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-30","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":30,"keyItemId":543117,"sourceSkillId":494321,"name":"Necrotic Wound","description":"Reduces healing received by target by (Buff2-0)% for (Buff0-Time) seconds.\n(If the target is a player, the amount he is healed is decreased by (Buff3-0)% for (Buff1-Time) seconds.)\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and reduce healing received by target by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579868,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504862,503827,504252,620448,620447,623094],"components":[{"id":504862,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":48,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504252,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":48,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620448,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620447,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":23,"abilityModifiers":[{"type":144,"value":-2}],"abilitySkillLevelArg":38,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623094,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":494321,"name":"Necrotic Wound","description":"Reduces healing received by target by (Buff2-0)% for (Buff0-Time) seconds.\n(If the target is a player, the amount he is healed is decreased by (Buff3-0)% for (Buff1-Time) seconds.)\nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and reduce healing received by target by (Buff0-0)%.\n[SC_SKILLTIPS_LEVEL50]","target":"hostile","range":18,"castTimeMs":0,"cooldownMs":10000,"costs":[{"resource":"energy","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579868,"sourceEffectType":0,"sourceTarget":6,"componentIds":[504862,503827,504252,620448,620447,623094]}}],"icon":"/assets/ui/rom-spells/579868.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-35","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":35,"keyItemId":543127,"sourceSkillId":494368,"name":"Shadow Contract","description":"Increases your maximum MP by (Buff0-0) and your [SC_SKILLTIPS_DARK] by (Buff4-1)%, but reduces healing power by (Buff4-0)% for (Buff0-Time) seconds.\n(Your [SC_SKILLTIPS_DARK] can be increased up to a maximum of (Max-Buff1-506309)% and healing power can be decreased up to (Max-Buff0-506309)%.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579869,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505161,506309],"components":[{"id":505161,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":227,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":70}],"abilitySkillLevelArg":18,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495286,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506309,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":524385,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":149,"value":-5},{"type":50,"value":5}],"abilitySkillLevelArg":16,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":494368,"name":"Shadow Contract","description":"Increases your maximum MP by (Buff0-0) and your [SC_SKILLTIPS_DARK] by (Buff4-1)%, but reduces healing power by (Buff4-0)% for (Buff0-Time) seconds.\n(Your [SC_SKILLTIPS_DARK] can be increased up to a maximum of (Max-Buff1-506309)% and healing power can be decreased up to (Max-Buff0-506309)%.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579869,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505161,506309]}}],"icon":"/assets/ui/rom-spells/579869.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-40","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":543137,"sourceSkillId":494369,"name":"Magic Turmoil","description":"Increases your magical critical hit rate by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579870,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505162],"components":[{"id":505162,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":177,"abilityModifiers":[{"type":20,"value":25}],"abilitySkillLevelArg":15.3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":494369,"name":"Magic Turmoil","description":"Increases your magical critical hit rate by (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":90000,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579870,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505162]}}],"icon":"/assets/ui/rom-spells/579870.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-45","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":45,"keyItemId":543147,"sourceSkillId":494933,"name":"Curtain of Darkness","description":"Covers you in the power of darkness, permanently reducing magical damage received by (Buff0-0)% and making it so your [494969] and [494941] no longer require Nature's Power to recover their original abilities.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581128,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505707],"components":[{"id":505707,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":142,"value":2}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":494933,"name":"Curtain of Darkness","description":"Covers you in the power of darkness, permanently reducing magical damage received by (Buff0-0)% and making it so your [494969] and [494941] no longer require Nature's Power to recover their original abilities.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581128,"sourceEffectType":2,"sourceTarget":0,"componentIds":[505707]}}],"icon":"/assets/ui/rom-spells/581128.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-50","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":543157,"sourceSkillId":494934,"name":"Dark Moon","description":"Increases the [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] of a friendly target by (Buff0-0) for (Buff0-Time) seconds. Also, when their attacks go critical, you may gain the Power of the Dark Moon status which increases your magic power by (Buff0-505912)% and healing power by (Buff1-505912)% for (Buff-Time-505912) seconds.\n(This skill cannot be used on yourself.)","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581129,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505911,504871,505912],"components":[{"id":505911,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":18,"value":145},{"type":20,"value":145}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":490068,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":504871,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":268959873,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505912,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":140,"abilityModifiers":[{"type":171,"value":5},{"type":149,"value":5}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":495103,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":494934,"name":"Dark Moon","description":"Increases the [SC_SKILLTIPS_CRI] and [SC_SKILLTIPS_MCRI] of a friendly target by (Buff0-0) for (Buff0-Time) seconds. Also, when their attacks go critical, you may gain the Power of the Dark Moon status which increases your magic power by (Buff0-505912)% and healing power by (Buff1-505912)% for (Buff-Time-505912) seconds.\n(This skill cannot be used on yourself.)","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581129,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505911,504871,505912]}}],"icon":"/assets/ui/rom-spells/581129.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-60","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546837,"sourceSkillId":499946,"name":"Wasteland","description":"Enables [499948] to inflict extra [SC_SKILLTIPS_DARK]. While the falling rocks are in effect, the target's critical hit rate resistance is reduced.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801304,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499946,"name":"Wasteland","description":"Enables [499948] to inflict extra [SC_SKILLTIPS_DARK]. While the falling rocks are in effect, the target's critical hit rate resistance is reduced.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801304,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801304.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-rogue-elite-70","classId":"rom-druid","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546838,"sourceSkillId":499944,"name":"Knee Ulcer","description":"Casts a [494321] and roots the target for (Buff-Time-623094) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801352,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623094],"components":[{"id":623094,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":45,"effectFlagWords":[64,0],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499944,"name":"Knee Ulcer","description":"Casts a [494321] and roots the target for (Buff-Time-623094) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801352,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623094]}}],"icon":"/assets/ui/rom-spells/801352.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-15","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":15,"keyItemId":543088,"sourceSkillId":494025,"name":"Earth Chain","description":"Inflicts (DMG1) [SC_SKILLTIPS_EARTH] to 3 targets within a radius of 60. Each hit does only 70% the damage of the preceding hit. \nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_EARTH] on targets. Each hit does only 70% the damage of the preceding hit.","target":"hostile","range":18,"castTimeMs":2000,"cooldownMs":4000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":579085,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620437,503827,620216,504886],"components":[{"id":620437,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-60,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-60,"damagePowerSkillLevelArg":24,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620216,"magicFunc":0,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-40,"fixedValue":-0.3,"attack":{"type":0,"calculationType":1,"damagePower":-40,"damagePowerSkillLevelArg":24,"fixedValue":-0.3,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":504886,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":494025,"name":"Earth Chain","description":"Inflicts (DMG1) [SC_SKILLTIPS_EARTH] to 3 targets within a radius of 60. Each hit does only 70% the damage of the preceding hit. \nIf you possess Nature's Power, it will automatically consume 1 point of Nature's Power to enhance abilities and inflict (DMG0) [SC_SKILLTIPS_EARTH] on targets. Each hit does only 70% the damage of the preceding hit.","target":"hostile","range":18,"castTimeMs":2000,"cooldownMs":4000,"costs":[{"resource":"mana","amount":35,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":0.6},"source":{"imageId":579085,"sourceEffectType":0,"sourceTarget":6,"componentIds":[620437,503827,620216,504886]}}],"icon":"/assets/ui/rom-spells/579085.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-20","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":543098,"sourceSkillId":494026,"name":"Spring of Blessings","description":"Causes party members within a range of 120 to recover (Buff0-Dot) HP every 2 seconds, for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579086,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504535],"components":[{"id":504535,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":12,"hateCost":0,"settingFlags":8299,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":15,"dot":{"timeSeconds":2,"type":0,"base":15,"skillLevelArg":22},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":494026,"name":"Spring of Blessings","description":"Causes party members within a range of 120 to recover (Buff0-Dot) HP every 2 seconds, for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":12000,"costs":[{"resource":"mana","amount":50,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579086,"sourceEffectType":0,"sourceTarget":0,"componentIds":[504535]}}],"icon":"/assets/ui/rom-spells/579086.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-25","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":25,"keyItemId":543108,"sourceSkillId":494027,"name":"Shield of Light","description":"Baths 3 friendly targets within a range of 60 in a shield of light that can absorb (Buff0-Shield)% HP damage for (Buff0-Time) seconds. (Effect cannot be used in conjunction with Wave Armor)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":579087,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620449],"components":[{"id":620449,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":60,"hateCost":-10,"settingFlags":355,"specialActionFlags":0,"assistType":50,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0,"magicShield":{"rawBaseWord":0,"type":3,"effect":0,"point":5,"skillLevelArg":2}}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":494027,"name":"Shield of Light","description":"Baths 3 friendly targets within a range of 60 in a shield of light that can absorb (Buff0-Shield)% HP damage for (Buff0-Time) seconds. (Effect cannot be used in conjunction with Wave Armor)","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":60000,"costs":[{"resource":"mana","amount":70,"percentage":false}],"passive":false,"effect":{"kind":"absorb","coefficient":0,"durationMs":60000},"source":{"imageId":579087,"sourceEffectType":0,"sourceTarget":16,"componentIds":[620449]}}],"icon":"/assets/ui/rom-spells/579087.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-30","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":30,"keyItemId":543118,"sourceSkillId":494322,"name":"Inspiration","description":"When your Fireball hits there is a chance that you will be Inspired, reducing the casting time of your next spell to less than 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579871,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":494322,"name":"Inspiration","description":"When your Fireball hits there is a chance that you will be Inspired, reducing the casting time of your next spell to less than 1 second.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579871,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579871.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-35","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":35,"keyItemId":543128,"sourceSkillId":494370,"name":"Spiritual Gush","description":"Reduces the mana requirement for your spells by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579872,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505163],"components":[{"id":505163,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":33,"value":10}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":494370,"name":"Spiritual Gush","description":"Reduces the mana requirement for your spells by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":90000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579872,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505163]}}],"icon":"/assets/ui/rom-spells/579872.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-40","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":40,"keyItemId":543138,"sourceSkillId":494371,"name":"Quick Help","description":"When the effect of Rock Protection ends you will additionally recover MP and HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579873,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":494371,"name":"Quick Help","description":"When the effect of Rock Protection ends you will additionally recover MP and HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579873,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579873.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-45","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":45,"keyItemId":543148,"sourceSkillId":494935,"name":"Holy Fury","description":"Increases the amount of damage caused by Mother Nature's Wrath when you do not have any of Nature's Power and lengthens effect time by 6 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581130,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":494935,"name":"Holy Fury","description":"Increases the amount of damage caused by Mother Nature's Wrath when you do not have any of Nature's Power and lengthens effect time by 6 seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":581130,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/581130.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-50","classId":"rom-druid","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":543158,"sourceSkillId":494936,"name":"Summer Banquet","description":"Temporarily increases the [SC_SKILLTIPS_PARRY] of a friendly target by (Buff0-0) and increases their [SC_SKILLTIPS_HP] by (Buff4-0)% for (Buff0-Time) seconds. When they parry, you may gain the Power of Summer status, which increases your [SC_SKILLTIPS_02] by (Buff0-505910)% and healing power by (Buff1-505910)% for (Buff-Time-505910) seconds.\n(You cannot use this skill on yourself.)","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581131,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505909,506402,505910],"components":[{"id":505909,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":22,"value":145}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":495067,"onBuffTimeoutMagicId":495408,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":506402,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":300,"hateCost":0,"settingFlags":268959745,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505910,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":268435555,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":171,"value":5},{"type":149,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":494936,"name":"Summer Banquet","description":"Temporarily increases the [SC_SKILLTIPS_PARRY] of a friendly target by (Buff0-0) and increases their [SC_SKILLTIPS_HP] by (Buff4-0)% for (Buff0-Time) seconds. When they parry, you may gain the Power of Summer status, which increases your [SC_SKILLTIPS_02] by (Buff0-505910)% and healing power by (Buff1-505910)% for (Buff-Time-505910) seconds.\n(You cannot use this skill on yourself.)","target":"friendly","range":25,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":30,"percentage":false},{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581131,"sourceEffectType":0,"sourceTarget":4,"componentIds":[505909,506402,505910]}}],"icon":"/assets/ui/rom-spells/581131.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-60","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546839,"sourceSkillId":499931,"name":"Sounds of Season","description":"Power of Summer that is triggered by [499933] is transferred from a personal effect to a party effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801305,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499931,"name":"Sounds of Season","description":"Power of Summer that is triggered by [499933] is transferred from a personal effect to a party effect.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801305,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801305.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-mage-elite-70","classId":"rom-druid","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546840,"sourceSkillId":499941,"name":"Inspiration Display","description":"[499942] can also trigger an Inspiration effect. In a [494370] state, the triggered Inspiration has a chance that it will be doubled.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801353,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499941,"name":"Inspiration Display","description":"[499942] can also trigger an Inspiration effect. In a [494370] state, the triggered Inspiration has a chance that it will be doubled.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801353,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801353.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-15","classId":"rom-druid","secondaryClassId":"rom-warden","group":"passive","unlockLevel":15,"keyItemId":543089,"sourceSkillId":494028,"name":"Enhanced Briar Shield","description":"Allows your Briar Shield to be used on other friendly targets to protect both you and them. However, friendly targets won't receive any increase in [SC_SKILLTIPS_DEF]. \nMana is restored when Briar Shield reflects damage.\n(Can only be placed on one player at a time. The restoration effect can only be triggered once every (Buff-Time-504870) seconds.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579088,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504870],"components":[{"id":504870,"magicFunc":1,"magicType":0,"effectType":0,"effectTime":8,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[493395],"sourceSkillId":494028,"name":"Enhanced Briar Shield","description":"Allows your Briar Shield to be used on other friendly targets to protect both you and them. However, friendly targets won't receive any increase in [SC_SKILLTIPS_DEF]. \nMana is restored when Briar Shield reflects damage.\n(Can only be placed on one player at a time. The restoration effect can only be triggered once every (Buff-Time-504870) seconds.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579088,"sourceEffectType":2,"sourceTarget":0,"componentIds":[504870]}}],"icon":"/assets/ui/rom-spells/579088.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-20","classId":"rom-druid","secondaryClassId":"rom-warden","group":"passive","unlockLevel":20,"keyItemId":543099,"sourceSkillId":494029,"name":"Avalanche","description":"Causes your Rockslide to cause additional Earth damage. Also has a chance of restoring 1 point of Nature's power to you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579089,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[493395],"sourceSkillId":494029,"name":"Avalanche","description":"Causes your Rockslide to cause additional Earth damage. Also has a chance of restoring 1 point of Nature's power to you.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":579089,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/579089.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-25","classId":"rom-druid","secondaryClassId":"rom-warden","group":"passive","unlockLevel":25,"keyItemId":543109,"sourceSkillId":494200,"name":"Extended Recovery","description":"Prolongs the effect of your Recover spell by 6 seconds, and has a chance of restoring 1 point of Nature's Power to you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578410,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[493395],"sourceSkillId":494200,"name":"Extended Recovery","description":"Prolongs the effect of your Recover spell by 6 seconds, and has a chance of restoring 1 point of Nature's Power to you.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":578410,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/578410.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-30","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":30,"keyItemId":543119,"sourceSkillId":494323,"name":"Healing Ripple","description":"Restores (DMG1) HP to up to 3 friendly targets in a range of 60. Each time healing power is halved.\nIf you possess Nature's Power, it will cosume 1 point of Nature's Power to enhance the power and restores (DMG0) HP to the friendly targets. Each time healing power is halved.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.6},"source":{"imageId":579874,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504864,503827,620436,620441],"components":[{"id":504864,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":60,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":60,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":503827,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32835,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620436,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":45,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":45,"damagePowerSkillLevelArg":30,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620441,"magicFunc":7,"magicType":0,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[493395],"sourceSkillId":494323,"name":"Healing Ripple","description":"Restores (DMG1) HP to up to 3 friendly targets in a range of 60. Each time healing power is halved.\nIf you possess Nature's Power, it will cosume 1 point of Nature's Power to enhance the power and restores (DMG0) HP to the friendly targets. Each time healing power is halved.","target":"friendly","range":25,"castTimeMs":2000,"cooldownMs":0,"costs":[{"resource":"mana","amount":30,"percentage":false}],"passive":false,"effect":{"kind":"heal","coefficient":0.6},"source":{"imageId":579874,"sourceEffectType":0,"sourceTarget":4,"componentIds":[504864,503827,620436,620441]}}],"icon":"/assets/ui/rom-spells/579874.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-35","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":35,"keyItemId":543129,"sourceSkillId":494372,"name":"Mysterious Grace","description":"Increases your and your party members' [SC_SKILLTIPS_MDMG] by (current [SC_SKILLTIPS_MDMG] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579875,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505165,620451],"components":[{"id":505165,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":268435683,"specialActionFlags":0,"assistType":182,"abilityModifiers":[{"type":191,"value":15}],"abilitySkillLevelArg":10,"triggers":{"onTimeMagicId":0,"onTimeSeconds":0,"onHitMagicId":0,"onBuffTimeoutMagicId":496897,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":620451,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":268959841,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":192,"value":1}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[493395],"sourceSkillId":494372,"name":"Mysterious Grace","description":"Increases your and your party members' [SC_SKILLTIPS_MDMG] by (current [SC_SKILLTIPS_MDMG] + (Buff0-0)) x (Buff4-0)% + (Buff0-0) for (Buff0-Time) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579875,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505165,620451]}}],"icon":"/assets/ui/rom-spells/579875.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-40","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":40,"keyItemId":543139,"sourceSkillId":494373,"name":"Essence Extraction","description":"Converts 10% MP into 4 points of Nature's Power.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579876,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505166],"components":[{"id":505166,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[493395],"sourceSkillId":494373,"name":"Essence Extraction","description":"Converts 10% MP into 4 points of Nature's Power.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":120000,"costs":[{"resource":"mana","amount":10,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":579876,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505166]}}],"icon":"/assets/ui/rom-spells/579876.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-45","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":45,"keyItemId":543149,"sourceSkillId":494937,"name":"Grace of the Forest","description":"Increases your mana by (Buff0-0) and healing by (Buff0-1)% for (Buff0-Time) seconds. Also, when you have Nature's Power it will additionally increase your maximum mana by (Buff0-505711)% and healing by (Buff1-505711)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581132,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505901,505711],"components":[{"id":505901,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":1800,"hateCost":0,"settingFlags":201326695,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":9,"value":500},{"type":149,"value":3}],"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":495063,"onTimeSeconds":3,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505711,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":4,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":168,"value":10},{"type":149,"value":3}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[493395],"sourceSkillId":494937,"name":"Grace of the Forest","description":"Increases your mana by (Buff0-0) and healing by (Buff0-1)% for (Buff0-Time) seconds. Also, when you have Nature's Power it will additionally increase your maximum mana by (Buff0-505711)% and healing by (Buff1-505711)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"mana","amount":5,"percentage":true}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":581132,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505901,505711]}}],"icon":"/assets/ui/rom-spells/581132.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-50","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":50,"keyItemId":543159,"sourceSkillId":494938,"name":"Spirit of Life","description":"Summons a [494938] brimming with the energy of the earth. It heals (DMG-505712) + (DMG-620452) HP to all friendly targets within a range of 70 every 4 seconds.\nThe [494938] lasts for (Buff-Time-505938) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":50,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":1},"source":{"imageId":581133,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505946,505712,620452,505938],"components":[{"id":505946,"magicFunc":6,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":505712,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":100,"fixedValue":0,"attack":{"type":0,"calculationType":4,"damagePower":100,"damagePowerSkillLevelArg":15,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":620452,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":1,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":1,"damagePowerSkillLevelArg":9,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":505938,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":40,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[493395],"sourceSkillId":494938,"name":"Spirit of Life","description":"Summons a [494938] brimming with the energy of the earth. It heals (DMG-505712) + (DMG-620452) HP to all friendly targets within a range of 70 every 4 seconds.\nThe [494938] lasts for (Buff-Time-505938) seconds.","target":"self","range":5,"castTimeMs":0,"cooldownMs":180000,"costs":[{"resource":"mana","amount":50,"percentage":false},{"resource":"mana","amount":8,"percentage":true}],"passive":false,"effect":{"kind":"heal","coefficient":1},"source":{"imageId":581133,"sourceEffectType":0,"sourceTarget":0,"componentIds":[505946,505712,620452,505938]}}],"icon":"/assets/ui/rom-spells/581133.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-60","classId":"rom-druid","secondaryClassId":"rom-warden","group":"passive","unlockLevel":60,"keyItemId":546841,"sourceSkillId":499938,"name":"Briar Life","description":"Gives [494062] an additional increase in [SC_SKILLTIPS_HEAL_PASSIVE]. When [494028] is triggered and MP are recovered, it causes an extra (DMG-623125) healing effect with a range of 50.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801306,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623125],"components":[{"id":623125,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":70,"damagePowerSkillLevelArg":32,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[493395],"sourceSkillId":499938,"name":"Briar Life","description":"Gives [494062] an additional increase in [SC_SKILLTIPS_HEAL_PASSIVE]. When [494028] is triggered and MP are recovered, it causes an extra (DMG-623125) healing effect with a range of 50.\n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801306,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623125]}}],"icon":"/assets/ui/rom-spells/801306.png","iconResolution":"native-interface-fdb"},{"id":"rom-druid-rom-warden-elite-70","classId":"rom-druid","secondaryClassId":"rom-warden","group":"elite","unlockLevel":70,"keyItemId":546842,"sourceSkillId":499936,"name":"Gift Pulse","description":"Consumes all Power of Nature and heals nearby party members. Every point of power of nature that is consumed heals (DMG-623140) HP. The maximum amount of healing is 100%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801354,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623149,623140],"components":[{"id":623149,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":268435456,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623140,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":268435457,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":10,"fixedValue":0,"attack":{"type":0,"calculationType":8,"damagePower":10,"damagePowerSkillLevelArg":100,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[493395],"sourceSkillId":499936,"name":"Gift Pulse","description":"Consumes all Power of Nature and heals nearby party members. Every point of power of nature that is consumed heals (DMG-623140) HP. The maximum amount of healing is 100%.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.15},"source":{"imageId":801354,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623149,623140]}}],"icon":"/assets/ui/rom-spells/801354.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-15","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":15,"keyItemId":545880,"sourceSkillId":498631,"name":"Psychic Slash","description":"Combines psychic powers with a slash move to cause greater magical damage in a farther range. Also, Bleed never requires special weapon activation.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800006,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[490053],"sourceSkillId":498631,"name":"Psychic Slash","description":"Combines psychic powers with a slash move to cause greater magical damage in a farther range. Also, Bleed never requires special weapon activation.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800006,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800006.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-20","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":20,"keyItemId":545881,"sourceSkillId":498636,"name":"Mind-Body Unification","description":"Increases damage caused by Psychic Arrows and earns rage for each hit.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800007,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":20,"prerequisites":[490053],"sourceSkillId":498636,"name":"Mind-Body Unification","description":"Increases damage caused by Psychic Arrows and earns rage for each hit.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800007,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800007.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-25","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":25,"keyItemId":545882,"sourceSkillId":498638,"name":"Vigorous Maneuver","description":"Berserk inflicts an extra increase in magical attack power and casting speed. Defensive Formation inflicts an increase in movement speed and casting speed.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800008,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":25,"prerequisites":[490053],"sourceSkillId":498638,"name":"Vigorous Maneuver","description":"Berserk inflicts an extra increase in magical attack power and casting speed. Defensive Formation inflicts an increase in movement speed and casting speed.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800008,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800008.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-30","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":30,"keyItemId":545883,"sourceSkillId":498634,"name":"Breathing Control","description":"Using Enraged can recover extra focus. When casting Psychic Arrow, Warp Charge or Weakening Weave Curse, there is a chance to reset the cooldown time of Enraged.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800009,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[490053],"sourceSkillId":498634,"name":"Breathing Control","description":"Using Enraged can recover extra focus. When casting Psychic Arrow, Warp Charge or Weakening Weave Curse, there is a chance to reset the cooldown time of Enraged.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800009,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800009.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-35","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":35,"keyItemId":545884,"sourceSkillId":498642,"name":"Mind Transference","description":"Converts all rage to psi. Each 35 points of rage can be exchanged for 1 psi.\n[SC_SKILLTIPS_9_PLUS2]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800010,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621320],"components":[{"id":621320,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"clearFlags":9,"abilityModifiers":[{"type":134,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":20,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490053],"sourceSkillId":498642,"name":"Mind Transference","description":"Converts all rage to psi. Each 35 points of rage can be exchanged for 1 psi.\n[SC_SKILLTIPS_9_PLUS2]","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800010,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621320]}}],"icon":"/assets/ui/rom-spells/800010.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-40","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":40,"keyItemId":545885,"sourceSkillId":498645,"name":"Heart Fence","description":"[SC_SKILLTIPS_P2]\nReduces friendly target's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621321)% for (Buff-Time-621321) seconds and consumes all rage. Effect can be extended by 1 second for every 20 points rage that is consumed.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800011,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621323,621321],"components":[{"id":621323,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":30,"hateCost":0,"settingFlags":3,"specialActionFlags":0,"assistType":-1,"clearFlags":9,"abilityModifiers":[{"type":134,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":3,"damagePower":20,"fixedValue":0,"summonCreatureId":0},{"id":621321,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":2,"hateCost":-10,"settingFlags":99,"specialActionFlags":0,"assistType":179,"abilityModifiers":[{"type":206,"value":-50},{"type":207,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490053],"sourceSkillId":498645,"name":"Heart Fence","description":"[SC_SKILLTIPS_P2]\nReduces friendly target's [SC_SKILLTIPS_HURT_PASSIVE] and [SC_SKILLTIPS_MHURT_PASSIVE] by (Buff0-621321)% for (Buff-Time-621321) seconds and consumes all rage. Effect can be extended by 1 second for every 20 points rage that is consumed.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800011,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621323,621321]}}],"icon":"/assets/ui/rom-spells/800011.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-45","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"elite","unlockLevel":45,"keyItemId":545886,"sourceSkillId":498646,"name":"Consistent Heart Strike","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on target. If target is in a [501577] state, then the state's effective time will be reset and full rage will be restored. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800012,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621325,501577],"components":[{"id":621325,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-120,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-120,"damagePowerSkillLevelArg":50,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":10,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":501577,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":226,"value":3}],"abilitySkillLevelArg":2,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490053],"sourceSkillId":498646,"name":"Consistent Heart Strike","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on target. If target is in a [501577] state, then the state's effective time will be reset and full rage will be restored. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800012,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621325,501577]}}],"icon":"/assets/ui/rom-spells/800012.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-50","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":50,"keyItemId":545887,"sourceSkillId":498647,"name":"Heart Death","description":"Extends time for Bleed effect caused by Slash. Also further reduces dark attribute resistance and increases damage inflicted by Soul Pain.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800013,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[490053],"sourceSkillId":498647,"name":"Heart Death","description":"Extends time for Bleed effect caused by Slash. Also further reduces dark attribute resistance and increases damage inflicted by Soul Pain.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800013,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800013.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-60","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":60,"keyItemId":546843,"sourceSkillId":499870,"name":"Deep Breathing Control","description":"Your [498634] recovers more focus and an extra 10% HP.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801630,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490053],"sourceSkillId":499870,"name":"Deep Breathing Control","description":"Your [498634] recovers more focus and an extra 10% HP.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801630,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801630.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-warrior-elite-70","classId":"rom-warlock","secondaryClassId":"rom-warrior","group":"passive","unlockLevel":70,"keyItemId":546844,"sourceSkillId":499868,"name":"Enhanced Mind Transference","description":"The rage consumption of [499869] drops from 35 to 20 and yields 1 extra psi.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801631,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490053],"sourceSkillId":499868,"name":"Enhanced Mind Transference","description":"The rage consumption of [499869] drops from 35 to 20 and yields 1 extra psi.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801631,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801631.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-15","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":15,"keyItemId":545912,"sourceSkillId":498650,"name":"Saces' Fury","description":"When the skill lands a critical hit during your next 5 attacks, it will increase [SC_SKILLTIPS_MCRI_POWER] by (Buff0-621331)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800063,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621439,621331],"components":[{"id":621439,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621331,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32903,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":21,"value":50}],"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":851623,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[498521],"sourceSkillId":498650,"name":"Saces' Fury","description":"When the skill lands a critical hit during your next 5 attacks, it will increase [SC_SKILLTIPS_MCRI_POWER] by (Buff0-621331)%.","target":"self","range":5,"castTimeMs":0,"cooldownMs":30000,"costs":[{"resource":"rage","amount":10,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800063,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621439,621331]}}],"icon":"/assets/ui/rom-spells/800063.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-20","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":20,"keyItemId":545913,"sourceSkillId":498665,"name":"Mind Rune","description":"Increases maximum HP by (Buff0-0)% and [SC_SKILLTIPS_INT] by (Buff0-1). Increases (Buff0-Dot) rage every 2 seconds for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800064,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621395],"components":[{"id":621395,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":900,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":10},{"type":4,"value":80}],"abilitySkillLevelArg":8,"dotTime":2,"dotType":2,"dotBase":10,"dot":{"timeSeconds":2,"type":2,"base":10,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[498521],"sourceSkillId":498665,"name":"Mind Rune","description":"Increases maximum HP by (Buff0-0)% and [SC_SKILLTIPS_INT] by (Buff0-1). Increases (Buff0-Dot) rage every 2 seconds for (Buff0-Time) seconds. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800064,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621395]}}],"icon":"/assets/ui/rom-spells/800064.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-25","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"passive","unlockLevel":25,"keyItemId":545914,"sourceSkillId":498667,"name":"Electric Transference","description":"Extends the [498522] state by 10 seconds and also increases [SC_SKILLTIPS_DARK] on the target by (Buff0-621396)%.\n\nAnd your [498522] will also give this effect:\n[SC_SKILLTIPS_9_1S]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800065,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621396],"components":[{"id":621396,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524354,"specialActionFlags":0,"assistType":-1,"clearFlags":66560,"abilityModifiers":[{"type":226,"value":10}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[498521],"sourceSkillId":498667,"name":"Electric Transference","description":"Extends the [498522] state by 10 seconds and also increases [SC_SKILLTIPS_DARK] on the target by (Buff0-621396)%.\n\nAnd your [498522] will also give this effect:\n[SC_SKILLTIPS_9_1S]","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800065,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621396]}}],"icon":"/assets/ui/rom-spells/800065.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-30","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"passive","unlockLevel":30,"keyItemId":545915,"sourceSkillId":498669,"name":"Runecraft - Ingenuity","description":"Defense Net cooldown time is reduced by 30 seconds. Caster will also earn Defense Net when skill is used on friendly targets.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800066,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[498521],"sourceSkillId":498669,"name":"Runecraft - Ingenuity","description":"Defense Net cooldown time is reduced by 30 seconds. Caster will also earn Defense Net when skill is used on friendly targets.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800066,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800066.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-35","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":35,"keyItemId":545916,"sourceSkillId":498673,"name":"Rune Energy Devotion","description":"Reduces inflicted aggro by (Buff0-1)% and increases dark attribute magic power by (Buff0-0)% for (Buff0-Time) seconds. Also immediately restores (DMG4) rage. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800067,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621403,621681],"components":[{"id":621403,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":50,"value":7},{"type":138,"value":-8}],"abilitySkillLevelArg":8,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621681,"magicFunc":0,"magicType":-1,"effectType":1,"effectTime":30,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"clearFlags":9,"abilityModifiers":[{"type":134,"value":40}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":2,"damagePower":35,"fixedValue":0,"attack":{"type":2,"calculationType":4,"damagePower":35,"damagePowerSkillLevelArg":0,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[498521],"sourceSkillId":498673,"name":"Rune Energy Devotion","description":"Reduces inflicted aggro by (Buff0-1)% and increases dark attribute magic power by (Buff0-0)% for (Buff0-Time) seconds. Also immediately restores (DMG4) rage. \n[SC_SKILLTIPS_LEVEL50]","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":60000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800067,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621403,621681]}}],"icon":"/assets/ui/rom-spells/800067.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-40","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":40,"keyItemId":545917,"sourceSkillId":498676,"name":"Imagination Release","description":"[SC_SKILLTIPS_P2]\nConverts the target's [621190] effect to 35 focus.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800068,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621405,621190],"components":[{"id":621405,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-50,"fixedValue":0,"summonCreatureId":0},{"id":621190,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"effectFlagWords":[0,1024],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[498521],"sourceSkillId":498676,"name":"Imagination Release","description":"[SC_SKILLTIPS_P2]\nConverts the target's [621190] effect to 35 focus.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800068,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621405,621190]}}],"icon":"/assets/ui/rom-spells/800068.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-45","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":45,"keyItemId":545918,"sourceSkillId":498677,"name":"Saces' Impulse","description":"[SC_SKILLTIPS_P1]\nRecovers (Buff0-Dot)% HP every second and increases [SC_SKILLTIPS_INT] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800069,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621407],"components":[{"id":621407,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":163,"value":9}],"abilitySkillLevelArg":8,"dotTime":1,"dotType":5,"dotBase":4,"dot":{"timeSeconds":1,"type":5,"base":4,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[498521],"sourceSkillId":498677,"name":"Saces' Impulse","description":"[SC_SKILLTIPS_P1]\nRecovers (Buff0-Dot)% HP every second and increases [SC_SKILLTIPS_INT] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800069,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621407]}}],"icon":"/assets/ui/rom-spells/800069.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-50","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"passive","unlockLevel":50,"keyItemId":545919,"sourceSkillId":498681,"name":"Psychic Extension","description":"Your [498522] and [498526] can be cast over long distances and cause [SC_SKILLTIPS_DARK]. Reduces [498522] cooldown time by 2 seconds, and [498526] cooldown time by 3 seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800070,"sourceEffectType":2,"sourceTarget":6,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[498521],"sourceSkillId":498681,"name":"Psychic Extension","description":"Your [498522] and [498526] can be cast over long distances and cause [SC_SKILLTIPS_DARK]. Reduces [498522] cooldown time by 2 seconds, and [498526] cooldown time by 3 seconds.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800070,"sourceEffectType":2,"sourceTarget":6,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800070.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-60","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"elite","unlockLevel":60,"keyItemId":546851,"sourceSkillId":499854,"name":"Rage Sublimation","description":"Consumes 100 rage and yields 6 psi points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"rage","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801638,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623472],"components":[{"id":623472,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[498521],"sourceSkillId":499854,"name":"Rage Sublimation","description":"Consumes 100 rage and yields 6 psi points.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"rage","amount":100,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801638,"sourceEffectType":0,"sourceTarget":0,"componentIds":[623472]}}],"icon":"/assets/ui/rom-spells/801638.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-champion-elite-70","classId":"rom-warlock","secondaryClassId":"rom-champion","group":"passive","unlockLevel":70,"keyItemId":546852,"sourceSkillId":499852,"name":"Psychic Tap","description":"When a target has been hit by [497957], there is a chance that your [SC_SKILLTIPS_MDMG] will be increased and a shield will be invoked that absorbs damage up to 10% of your HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801639,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[498521],"sourceSkillId":499852,"name":"Psychic Tap","description":"When a target has been hit by [497957], there is a chance that your [SC_SKILLTIPS_MDMG] will be increased and a shield will be invoked that absorbs damage up to 10% of your HP.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801639,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801639.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-15","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":15,"keyItemId":545888,"sourceSkillId":498670,"name":"Soul Poisoned Fang","description":"Reduces all of target's resistance by (Buff0-0) points and inflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] on target every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800014,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621399],"components":[{"id":621399,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":22,"hateCost":0,"settingFlags":74,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":26,"value":-16}],"abilitySkillLevelArg":100,"dotTime":2,"dotType":0,"dotBase":-16,"dot":{"timeSeconds":2,"type":0,"base":-16,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490306],"sourceSkillId":498670,"name":"Soul Poisoned Fang","description":"Reduces all of target's resistance by (Buff0-0) points and inflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] on target every 2 seconds for (Buff0-Time) seconds.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":0,"costs":[{"resource":"energy","amount":25,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800014,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621399]}}],"icon":"/assets/ui/rom-spells/800014.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-20","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":20,"keyItemId":545889,"sourceSkillId":498672,"name":"Soul Hit","description":"Shadowstab doesn't require a dagger and inflicts magical damage. \nThe effect time of [500654] will be extended by 12 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800015,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500654],"components":[{"id":500654,"magicFunc":1,"magicType":-1,"effectType":1,"effectTime":10,"hateCost":0,"settingFlags":8266,"specialActionFlags":0,"assistType":35,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-5,"dot":{"timeSeconds":2,"type":0,"base":-5,"skillLevelArg":45},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490306],"sourceSkillId":498672,"name":"Soul Hit","description":"Shadowstab doesn't require a dagger and inflicts magical damage. \nThe effect time of [500654] will be extended by 12 seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800015,"sourceEffectType":2,"sourceTarget":0,"componentIds":[500654]}}],"icon":"/assets/ui/rom-spells/800015.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-25","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":25,"keyItemId":545890,"sourceSkillId":498675,"name":"Ready and Waiting","description":"Increases [SC_SKILLTIPS_INT] when you enter a Willpower Blade or Willpower Construct state for (Buff-Time-621404) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800016,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621404],"components":[{"id":621404,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":18,"hateCost":0,"settingFlags":524355,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":163,"value":2}],"abilitySkillLevelArg":9,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490306],"sourceSkillId":498675,"name":"Ready and Waiting","description":"Increases [SC_SKILLTIPS_INT] when you enter a Willpower Blade or Willpower Construct state for (Buff-Time-621404) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800016,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621404]}}],"icon":"/assets/ui/rom-spells/800016.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-30","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":30,"keyItemId":545891,"sourceSkillId":498678,"name":"Soul Raid","description":"Increases [SC_SKILLTIPS_MOVE] and dark damage after Shadow Step is used. Lasts for (Buff-Time-621406) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800017,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621406],"components":[{"id":621406,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":6,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":24,"value":10},{"type":50,"value":10}],"abilitySkillLevelArg":3,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490306],"sourceSkillId":498678,"name":"Soul Raid","description":"Increases [SC_SKILLTIPS_MOVE] and dark damage after Shadow Step is used. Lasts for (Buff-Time-621406) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800017,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621406]}}],"icon":"/assets/ui/rom-spells/800017.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-35","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":35,"keyItemId":545892,"sourceSkillId":498679,"name":"Spirit Revival","description":"Gives 1 psi after a Willpower Blade or Willpower Construct state ends.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800018,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[490306],"sourceSkillId":498679,"name":"Spirit Revival","description":"Gives 1 psi after a Willpower Blade or Willpower Construct state ends.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800018,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800018.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-40","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":40,"keyItemId":545893,"sourceSkillId":498695,"name":"Liquidation Suffering","description":"[SC_SKILLTIPS_P2]\nTemporarily increases aggro caused by a friendly target by (Buff0-0)% and reduces the aggro caused by the caster and other party members by (Buff0-621433)%. Lasts for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800019,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621432,621654,621433],"components":[{"id":621432,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621654,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621433,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":35,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":138,"value":-5}],"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490306],"sourceSkillId":498695,"name":"Liquidation Suffering","description":"[SC_SKILLTIPS_P2]\nTemporarily increases aggro caused by a friendly target by (Buff0-0)% and reduces the aggro caused by the caster and other party members by (Buff0-621433)%. Lasts for (Buff0-Time) seconds.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800019,"sourceEffectType":0,"sourceTarget":4,"componentIds":[621432,621654,621433]}}],"icon":"/assets/ui/rom-spells/800019.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-45","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":45,"keyItemId":545894,"sourceSkillId":498699,"name":"End of Thought","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on target. If target's HP is less than 35%, the caster will earn 1 psi for every second. This can happen 4 times. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.8},"source":{"imageId":800020,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621435],"components":[{"id":621435,"magicFunc":0,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-80,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-80,"damagePowerSkillLevelArg":45,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490306],"sourceSkillId":498699,"name":"End of Thought","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on target. If target's HP is less than 35%, the caster will earn 1 psi for every second. This can happen 4 times. \n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":15000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":0.8},"source":{"imageId":800020,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621435]}}],"icon":"/assets/ui/rom-spells/800020.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-50","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"elite","unlockLevel":50,"keyItemId":545895,"sourceSkillId":498700,"name":"Crime and Punishment","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on the target. If the target has been affected by Perception Extraction, Soul Pain or Soul Poisoned Fang then each additional state will increase damage caused by [498700] by 25% and will reset the effect duration of these states.\n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800021,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621440],"components":[{"id":621440,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-120,"fixedValue":0,"attack":{"type":0,"calculationType":1,"damagePower":-120,"damagePowerSkillLevelArg":50,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490306],"sourceSkillId":498700,"name":"Crime and Punishment","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG0) [SC_SKILLTIPS_DARK] on the target. If the target has been affected by Perception Extraction, Soul Pain or Soul Poisoned Fang then each additional state will increase damage caused by [498700] by 25% and will reset the effect duration of these states.\n[SC_SKILLTIPS_03]","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":4000,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1.2},"source":{"imageId":800021,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621440]}}],"icon":"/assets/ui/rom-spells/800021.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-60","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":60,"keyItemId":546845,"sourceSkillId":499866,"name":"Psychic Projectile","description":"When a target is hit by [499867], all damage caused by the target is decreased by (Buff0-623417)% for (Buff-Time-623417) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801632,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623417],"components":[{"id":623417,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":5,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":204,"value":-50},{"type":205,"value":-50}],"abilitySkillLevelArg":0,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[490306],"sourceSkillId":499866,"name":"Psychic Projectile","description":"When a target is hit by [499867], all damage caused by the target is decreased by (Buff0-623417)% for (Buff-Time-623417) seconds.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801632,"sourceEffectType":2,"sourceTarget":0,"componentIds":[623417]}}],"icon":"/assets/ui/rom-spells/801632.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-rogue-elite-70","classId":"rom-warlock","secondaryClassId":"rom-rogue","group":"passive","unlockLevel":70,"keyItemId":546846,"sourceSkillId":499864,"name":"Shadowstab Guile","description":"When using [499865] you will obtain 1 additional psi and 3 extra psi when using [499666].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801633,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490306],"sourceSkillId":499864,"name":"Shadowstab Guile","description":"When using [499865] you will obtain 1 additional psi and 3 extra psi when using [499666].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801633,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801633.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-15","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":15,"keyItemId":545896,"sourceSkillId":498694,"name":"Psychic Flash","description":"Psychic Arrows and Weakening Weave Curse can cause an extra (FixDMG-621434) x INT [SC_SKILLTIPS_MDMG].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800027,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621434],"components":[{"id":621434,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-0.4,"attack":{"type":0,"calculationType":4,"damagePower":0,"damagePowerSkillLevelArg":0,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":15,"prerequisites":[490204],"sourceSkillId":498694,"name":"Psychic Flash","description":"Psychic Arrows and Weakening Weave Curse can cause an extra (FixDMG-621434) x INT [SC_SKILLTIPS_MDMG].","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800027,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621434]}}],"icon":"/assets/ui/rom-spells/800027.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-20","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":20,"keyItemId":545897,"sourceSkillId":498697,"name":"Flaming Heart Strike","description":"Inflicts (DMG0) + (FixDMG-621438) x INT [SC_SKILLTIPS_FLAME] on target. \n[SC_SKILLTIPS_9_3S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":65000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800028,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621438],"components":[{"id":621438,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":-1,"attack":{"type":0,"calculationType":1,"damagePower":-100,"damagePowerSkillLevelArg":45,"fixedValue":-1,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[490204],"sourceSkillId":498697,"name":"Flaming Heart Strike","description":"Inflicts (DMG0) + (FixDMG-621438) x INT [SC_SKILLTIPS_FLAME] on target. \n[SC_SKILLTIPS_9_3S]\n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":65000,"costs":[{"resource":"mana","amount":45,"percentage":false}],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800028,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621438]}}],"icon":"/assets/ui/rom-spells/800028.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-25","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":25,"keyItemId":545898,"sourceSkillId":498698,"name":"Warp Flash","description":"Warp Charge inflicts an extra (FixDMG-621434) x INT [SC_SKILLTIPS_MDMG] and when the skill hits, it raises the [SC_SKILLTIPS_DPS] and [SC_SKILLTIPS_CAST] of nearby party members.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800029,"sourceEffectType":2,"sourceTarget":6,"componentIds":[621434],"components":[{"id":621434,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":-0.4,"attack":{"type":0,"calculationType":4,"damagePower":0,"damagePowerSkillLevelArg":0,"fixedValue":-0.4,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":0,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[490204],"sourceSkillId":498698,"name":"Warp Flash","description":"Warp Charge inflicts an extra (FixDMG-621434) x INT [SC_SKILLTIPS_MDMG] and when the skill hits, it raises the [SC_SKILLTIPS_DPS] and [SC_SKILLTIPS_CAST] of nearby party members.","target":"hostile","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800029,"sourceEffectType":2,"sourceTarget":6,"componentIds":[621434]}}],"icon":"/assets/ui/rom-spells/800029.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-30","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":30,"keyItemId":545899,"sourceSkillId":498703,"name":"Focus Building","description":"Increases [SC_SKILLTIPS_INT] by (Buff0-621443)% every second while in effect. Can be stacked a maximum of 10 times, but effect is re-stacked after moving. \n(This skill consumes (Buff0-Dot) focus every second. Effect stops if there is insufficient focus.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800030,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621444,621443],"components":[{"id":621444,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":-10,"settingFlags":47,"specialActionFlags":0,"assistType":-1,"clearFlags":256,"abilitySkillLevelArg":0,"triggers":{"onTimeMagicId":498704,"onTimeSeconds":1,"onHitMagicId":0,"onBuffTimeoutMagicId":497740,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":1,"dotType":3,"dotBase":-2,"dot":{"timeSeconds":1,"type":3,"base":-2,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621443,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":3,"hateCost":-10,"settingFlags":32771,"specialActionFlags":0,"assistType":-1,"clearFlags":4,"abilityModifiers":[{"type":163,"value":3}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":30,"prerequisites":[490204],"sourceSkillId":498703,"name":"Focus Building","description":"Increases [SC_SKILLTIPS_INT] by (Buff0-621443)% every second while in effect. Can be stacked a maximum of 10 times, but effect is re-stacked after moving. \n(This skill consumes (Buff0-Dot) focus every second. Effect stops if there is insufficient focus.)","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800030,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621444,621443]}}],"icon":"/assets/ui/rom-spells/800030.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-35","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":35,"keyItemId":545900,"sourceSkillId":498705,"name":"Soul Brand","description":"When [497964], [497960] or [498545] hits, it carries an extra Soul Brand effect. It increases the [SC_SKILLTIPS_DARK] and [SC_SKILLTIPS_FLAME] on target by (Buff0-621446)% for (Buff-Time-621446) seconds. This effect can be stacked 4 times.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800031,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621446],"components":[{"id":621446,"magicFunc":1,"magicType":2,"effectType":0,"effectTime":20,"hateCost":0,"settingFlags":557122,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":223,"value":9},{"type":226,"value":9}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":35,"prerequisites":[490204],"sourceSkillId":498705,"name":"Soul Brand","description":"When [497964], [497960] or [498545] hits, it carries an extra Soul Brand effect. It increases the [SC_SKILLTIPS_DARK] and [SC_SKILLTIPS_FLAME] on target by (Buff0-621446)% for (Buff-Time-621446) seconds. This effect can be stacked 4 times.","target":"self","range":5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800031,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621446]}}],"icon":"/assets/ui/rom-spells/800031.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-40","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":40,"keyItemId":545901,"sourceSkillId":498709,"name":"Saces' Cracking Spell","description":"[SC_SKILLTIPS_P2]\nReduces target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE] by (Buff0-0). Lasts for (Buff0-Time) seconds.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800032,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621450],"components":[{"id":621450,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":15,"hateCost":0,"settingFlags":66,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":182,"value":-20},{"type":183,"value":-20}],"abilitySkillLevelArg":45,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[490204],"sourceSkillId":498709,"name":"Saces' Cracking Spell","description":"[SC_SKILLTIPS_P2]\nReduces target's [SC_SKILLTIPS_CRI_PASSIVE] and [SC_SKILLTIPS_MCRI_PASSIVE] by (Buff0-0). Lasts for (Buff0-Time) seconds.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800032,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621450]}}],"icon":"/assets/ui/rom-spells/800032.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-45","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":45,"keyItemId":545902,"sourceSkillId":498710,"name":"Soul Brand Sting","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG4) + (FixDMG-621473) x INT [SC_SKILLTIPS_DARK] and [SC_SKILLTIPS_FLAME] on target and resets the cooldown time for Flaming Heart Strike. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800033,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621473,621474],"components":[{"id":621473,"magicFunc":0,"magicType":2,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-100,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":3,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0},{"id":621474,"magicFunc":0,"magicType":5,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":-100,"fixedValue":-0.2,"attack":{"type":0,"calculationType":1,"damagePower":-100,"damagePowerSkillLevelArg":30,"fixedValue":-0.2,"fixedType":5,"fixedDamageSkillLevelArg":3,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[490204],"sourceSkillId":498710,"name":"Soul Brand Sting","description":"[SC_SKILLTIPS_P1]\nInflicts (DMG4) + (FixDMG-621473) x INT [SC_SKILLTIPS_DARK] and [SC_SKILLTIPS_FLAME] on target and resets the cooldown time for Flaming Heart Strike. \n[SC_SKILLTIPS_03]","target":"hostile","range":22.5,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"damage","coefficient":1},"source":{"imageId":800033,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621473,621474]}}],"icon":"/assets/ui/rom-spells/800033.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-50","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"elite","unlockLevel":50,"keyItemId":545903,"sourceSkillId":498711,"name":"Thinking Overload","description":"Restores (Buff0-Dot) focus every 2 seconds and increases [SC_SKILLTIPS_CAST] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800034,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621451],"components":[{"id":621451,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":60,"hateCost":0,"settingFlags":107,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":51,"value":-15}],"abilitySkillLevelArg":0,"dotTime":2,"dotType":3,"dotBase":5,"dot":{"timeSeconds":2,"type":3,"base":5,"skillLevelArg":0},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":50,"prerequisites":[490204],"sourceSkillId":498711,"name":"Thinking Overload","description":"Restores (Buff0-Dot) focus every 2 seconds and increases [SC_SKILLTIPS_CAST] by (Buff0-0)% for (Buff0-Time) seconds.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":180000,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800034,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621451]}}],"icon":"/assets/ui/rom-spells/800034.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-60","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":60,"keyItemId":546847,"sourceSkillId":499862,"name":"Blazing Barrier","description":"[499863] increases your [SC_SKILLTIPS_FLAME].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801634,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":60,"prerequisites":[490204],"sourceSkillId":499862,"name":"Blazing Barrier","description":"[499863] increases your [SC_SKILLTIPS_FLAME].","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801634,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801634.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-mage-elite-70","classId":"rom-warlock","secondaryClassId":"rom-mage","group":"passive","unlockLevel":70,"keyItemId":546848,"sourceSkillId":499860,"name":"Silent Seal","description":"When hit by [499861], the target will be marked out. The next time it is hit, the damage received will be doubled.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801635,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":70,"prerequisites":[490204],"sourceSkillId":499860,"name":"Silent Seal","description":"When hit by [499861], the target will be marked out. The next time it is hit, the damage received will be doubled.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":801635,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/801635.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-15","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":15,"keyItemId":545904,"sourceSkillId":498633,"name":"Healing Fortune","description":"When a psychic arrow hits, there is a chance that your next Urgent Heal will become an instant spell without consuming any MP. Also increases the healing amount of Urgent Heal.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800035,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":15,"prerequisites":[491147],"sourceSkillId":498633,"name":"Healing Fortune","description":"When a psychic arrow hits, there is a chance that your next Urgent Heal will become an instant spell without consuming any MP. Also increases the healing amount of Urgent Heal.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800035,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800035.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-20","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":20,"keyItemId":545905,"sourceSkillId":498640,"name":"Protection Weave Curse","description":"Your Regenerate will be able to increase your target's [SC_SKILLTIPS_INT] and [SC_SKILLTIPS_MND] by (Buff0-621318)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800036,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621318],"components":[{"id":621318,"magicFunc":1,"magicType":4,"effectType":0,"effectTime":20,"hateCost":-10,"settingFlags":8299,"specialActionFlags":0,"assistType":25,"abilityModifiers":[{"type":163,"value":10},{"type":164,"value":10}],"abilitySkillLevelArg":0,"dotTime":2,"dotType":0,"dotBase":20,"dot":{"timeSeconds":2,"type":0,"base":20,"skillLevelArg":18},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":20,"prerequisites":[491147],"sourceSkillId":498640,"name":"Protection Weave Curse","description":"Your Regenerate will be able to increase your target's [SC_SKILLTIPS_INT] and [SC_SKILLTIPS_MND] by (Buff0-621318)%.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800036,"sourceEffectType":2,"sourceTarget":0,"componentIds":[621318]}}],"icon":"/assets/ui/rom-spells/800036.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-25","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":25,"keyItemId":545906,"sourceSkillId":498641,"name":"Ring of Comfort","description":"Restores (DMG0) HP for 6 friendly targets in range.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":9,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800037,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621319],"components":[{"id":621319,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":1,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":70,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":70,"damagePowerSkillLevelArg":20,"fixedValue":0,"fixedType":0,"fixedDamageSkillLevelArg":5,"randomRange":2,"criticalRate":0,"hateRate":1},"summonCreatureId":0}]},"ranks":[{"rank":1,"level":25,"prerequisites":[491147],"sourceSkillId":498641,"name":"Ring of Comfort","description":"Restores (DMG0) HP for 6 friendly targets in range.","target":"hostile","range":20,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"mana","amount":9,"percentage":true}],"passive":false,"effect":{"kind":"damage","coefficient":0.7},"source":{"imageId":800037,"sourceEffectType":0,"sourceTarget":16,"componentIds":[621319]}}],"icon":"/assets/ui/rom-spells/800037.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-30","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":30,"keyItemId":545907,"sourceSkillId":498643,"name":"Psychic Rising Tide","description":"Rising Tide becomes an instant spell, but has a 5 second cooldown time. When Rising Tide hits, there is a chance that your next Urgent Heal will become an instant spell that doesn't require any MP. Also increases the healing amount of Urgent Heal.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800038,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":30,"prerequisites":[491147],"sourceSkillId":498643,"name":"Psychic Rising Tide","description":"Rising Tide becomes an instant spell, but has a 5 second cooldown time. When Rising Tide hits, there is a chance that your next Urgent Heal will become an instant spell that doesn't require any MP. Also increases the healing amount of Urgent Heal.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800038,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800038.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-35","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":35,"keyItemId":545908,"sourceSkillId":498648,"name":"Mind Shield","description":"[SC_SKILLTIPS_DEF] will be enhanced by Defense Net, but the effect time is reduced by 1 second. Urgent Heal carries a chance to reset cooldown time for Ring of Comfort.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800039,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":35,"prerequisites":[491147],"sourceSkillId":498648,"name":"Mind Shield","description":"[SC_SKILLTIPS_DEF] will be enhanced by Defense Net, but the effect time is reduced by 1 second. Urgent Heal carries a chance to reset cooldown time for Ring of Comfort.","target":"self","range":0.1,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800039,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800039.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-40","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":40,"keyItemId":545909,"sourceSkillId":498649,"name":"Soul Enlightenment","description":"[SC_SKILLTIPS_P2]\nCaster and friendly party members earn Soul Enlightenment which raises Maximum HP by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800040,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621328],"components":[{"id":621328,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":10,"hateCost":0,"settingFlags":99,"specialActionFlags":0,"assistType":-1,"abilityModifiers":[{"type":167,"value":10},{"type":144,"value":6}],"abilitySkillLevelArg":4,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":40,"prerequisites":[491147],"sourceSkillId":498649,"name":"Soul Enlightenment","description":"[SC_SKILLTIPS_P2]\nCaster and friendly party members earn Soul Enlightenment which raises Maximum HP by (Buff0-0)% and [SC_SKILLTIPS_HEAL_PASSIVE] by (Buff0-1)% for (Buff0-Time) seconds.","target":"self","range":10,"castTimeMs":0,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800040,"sourceEffectType":0,"sourceTarget":0,"componentIds":[621328]}}],"icon":"/assets/ui/rom-spells/800040.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-45","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":45,"keyItemId":545910,"sourceSkillId":498662,"name":"Touch of Faith","description":"[SC_SKILLTIPS_P1]\nInflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] on the target every 2 seconds for (Buff0-Time) seconds. Every time [498662] inflicts damage, there is a 50% chance that your next Psychic Arrows will become an instant spell that doesn't consume any focus. However, you will be unable to earn psi. Also resets cooldown time for Rising Tide.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800041,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621329,621330],"components":[{"id":621329,"magicFunc":1,"magicType":5,"effectType":0,"effectTime":24,"hateCost":0,"settingFlags":202,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"dotTime":2,"dotType":0,"dotBase":-14,"dot":{"timeSeconds":2,"type":0,"base":-14,"skillLevelArg":40},"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":621330,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":24,"hateCost":0,"settingFlags":4,"specialActionFlags":0,"assistType":-1,"clearFlags":1024,"abilitySkillLevelArg":5,"triggers":{"onTimeMagicId":498663,"onTimeSeconds":2,"onHitMagicId":0,"onBuffTimeoutMagicId":0,"onAttackReboundMagicId":0,"onMagicAttackReboundMagicId":0,"onDeathMagicId":0},"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":45,"prerequisites":[491147],"sourceSkillId":498662,"name":"Touch of Faith","description":"[SC_SKILLTIPS_P1]\nInflicts (Buff0-Dot) [SC_SKILLTIPS_DARK] on the target every 2 seconds for (Buff0-Time) seconds. Every time [498662] inflicts damage, there is a 50% chance that your next Psychic Arrows will become an instant spell that doesn't consume any focus. However, you will be unable to earn psi. Also resets cooldown time for Rising Tide.","target":"hostile","range":20,"castTimeMs":1000,"cooldownMs":0,"costs":[],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":800041,"sourceEffectType":0,"sourceTarget":6,"componentIds":[621329,621330]}}],"icon":"/assets/ui/rom-spells/800041.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-50","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"passive","unlockLevel":50,"keyItemId":545911,"sourceSkillId":498668,"name":"Divine Assistance","description":"When you use Urgent Heal because you activated Healing Fortune or Psychic Rising Tide, you can earn 1 point Inspiration. After 8 points of Inspiration are accumulated, you can reset the cooldown time for Defense Net.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800042,"sourceEffectType":2,"sourceTarget":0,"componentIds":[],"components":[]},"ranks":[{"rank":1,"level":50,"prerequisites":[491147],"sourceSkillId":498668,"name":"Divine Assistance","description":"When you use Urgent Heal because you activated Healing Fortune or Psychic Rising Tide, you can earn 1 point Inspiration. After 8 points of Inspiration are accumulated, you can reset the cooldown time for Defense Net.","target":"self","range":0.1,"castTimeMs":2000,"cooldownMs":0,"costs":[],"passive":true,"effect":{"kind":"passive","coefficient":0},"source":{"imageId":800042,"sourceEffectType":2,"sourceTarget":0,"componentIds":[]}}],"icon":"/assets/ui/rom-spells/800042.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-60","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":60,"keyItemId":546849,"sourceSkillId":499858,"name":"Great Salvation","description":"Restores (DMG0) HP to the target. If the target is under any negative effects, each negative effect will increase the amount of healing by (Buff0-623450)%. It also restores HP to the caster.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.4},"source":{"imageId":801636,"sourceEffectType":0,"sourceTarget":4,"componentIds":[620577,623701,623450],"components":[{"id":620577,"magicFunc":0,"magicType":4,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":40,"fixedValue":0,"attack":{"type":0,"calculationType":5,"damagePower":40,"damagePowerSkillLevelArg":33,"fixedValue":0,"fixedType":5,"fixedDamageSkillLevelArg":0,"randomRange":2,"criticalRate":0,"hateRate":2},"summonCreatureId":0},{"id":623701,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0},{"id":623450,"magicFunc":1,"magicType":-1,"effectType":0,"effectTime":-1,"hateCost":0,"settingFlags":32769,"specialActionFlags":0,"assistType":-1,"clearFlags":16384,"abilityModifiers":[{"type":149,"value":10}],"abilitySkillLevelArg":100,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":60,"prerequisites":[491147],"sourceSkillId":499858,"name":"Great Salvation","description":"Restores (DMG0) HP to the target. If the target is under any negative effects, each negative effect will increase the amount of healing by (Buff0-623450)%. It also restores HP to the caster.","target":"friendly","range":20,"castTimeMs":0,"cooldownMs":10000,"costs":[],"passive":false,"effect":{"kind":"heal","coefficient":0.4},"source":{"imageId":801636,"sourceEffectType":0,"sourceTarget":4,"componentIds":[620577,623701,623450]}}],"icon":"/assets/ui/rom-spells/801636.png","iconResolution":"native-interface-fdb"},{"id":"rom-warlock-rom-priest-elite-70","classId":"rom-warlock","secondaryClassId":"rom-priest","group":"elite","unlockLevel":70,"keyItemId":546850,"sourceSkillId":499856,"name":"Spreading Pain","description":"Inflicts [497959], [497960], and [497964] on an enemy target.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801637,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623469],"components":[{"id":623469,"magicFunc":7,"magicType":-1,"effectType":0,"effectTime":0,"hateCost":0,"settingFlags":0,"specialActionFlags":0,"assistType":-1,"abilitySkillLevelArg":5,"dotTime":0,"dotType":0,"dotBase":0,"attackType":0,"damagePower":0,"fixedValue":0,"summonCreatureId":0}]},"ranks":[{"rank":1,"level":70,"prerequisites":[491147],"sourceSkillId":499856,"name":"Spreading Pain","description":"Inflicts [497959], [497960], and [497964] on an enemy target.","target":"hostile","range":22.5,"castTimeMs":0,"cooldownMs":20000,"costs":[{"resource":"focus","amount":15,"percentage":false}],"passive":false,"effect":{"kind":"source-components","coefficient":0},"source":{"imageId":801637,"sourceEffectType":0,"sourceTarget":6,"componentIds":[623469]}}],"icon":"/assets/ui/rom-spells/801637.png","iconResolution":"native-interface-fdb"}]} diff --git a/src/game/romPlayerCatalog.test.ts b/src/game/romPlayerCatalog.test.ts index 802bf438..fdac9772 100644 --- a/src/game/romPlayerCatalog.test.ts +++ b/src/game/romPlayerCatalog.test.ts @@ -85,6 +85,29 @@ describe("generated RuneWaker player catalog", () => { expect(abilityAtLevel(ranked, 80).dbcSpellId).toBe(eligible.spellId); }); + it("preserves every source rank and its full flat or percentage cost", () => { + const normalizedCosts = (rows: readonly { resource: string; amount: number; percentage?: boolean }[]) => rows.map((cost) => ({ + resource: cost.resource, + amount: cost.amount, + ...(cost.percentage ? { percentage: true } : {}), + })); + const generatedRanks = generated.skills.reduce((sum, ability) => sum + ability.ranks.length, 0); + expect(generatedRanks).toBe(934); + expect(Math.max(...generated.skills.flatMap((ability) => ( + ability.costs.filter((cost) => !cost.percentage).map((cost) => cost.amount) + )))).toBe(400); + + for (const source of generated.skills) { + const runtime = ROM_ALL_ABILITIES.find((ability) => ability.id === source.id)!; + expect(runtime.costs, `${source.name} base costs`).toEqual(normalizedCosts(source.costs)); + expect(runtime.ranks).toHaveLength(source.ranks.length); + for (const [index, sourceRank] of source.ranks.entries()) { + expect(runtime.ranks?.[index]?.spellId, `${source.name} rank ${sourceRank.rank}`).toBe(sourceRank.sourceSkillId); + expect(runtime.ranks?.[index]?.costs, `${source.name} rank ${sourceRank.rank} costs`).toEqual(normalizedCosts(sourceRank.costs)); + } + } + }); + it("adds exactly ten percent of the secondary class base stats", () => { const primary = romNativeClassBaseStats("rom-warrior", 40); const secondary = romNativeClassBaseStats("rom-scout", 40); diff --git a/src/game/wow335AbilityCatalog.test.ts b/src/game/wow335AbilityCatalog.test.ts index 20b08305..83db39c6 100644 --- a/src/game/wow335AbilityCatalog.test.ts +++ b/src/game/wow335AbilityCatalog.test.ts @@ -20,26 +20,59 @@ function effectsOfKind( } describe("WoW 3.3.5 executable effect mapping", () => { - it("never reduces an imported DBC effect to generic utility", () => { + it("gives every imported classic rank executable or explicit utility semantics", () => { const effects = Object.values(WOW335_ABILITIES_BY_CLASS) .flat() .flatMap((ability) => ability.ranks?.flatMap((rank) => rank.effects) ?? ability.effects); expect(effects.length).toBeGreaterThan(1_000); - expect(effects.some((effect) => effect.kind === "utility")).toBe(false); - expect([ - ...new Set(effectsOfKind( - { effects }, - "scripted", - ).map((effect) => effect.effectType)), - ].sort((left, right) => left - right)).toEqual([3, 77]); - for (const effect of effectsOfKind( - { effects }, - "unsupported", - )) { - expect(effect.combat).toBe(false); - expect(effect.reason).toMatch(/^Noncombat DBC effect \d+$/); + expect(effectsOfKind({ effects }, "scripted")).toEqual([]); + expect(effectsOfKind({ effects }, "unsupported")).toEqual([]); + for (const effect of effectsOfKind({ effects }, "utility")) { + expect(effect.action).toMatch(/^(?:create-item|open-lock|portal|weapon-enchant|pickpocket|farsight|class-script)$/); } + + for (const ability of Object.values(WOW335_ABILITIES_BY_CLASS).flat()) { + if (ability.passive) continue; + for (const rank of ability.ranks ?? []) { + expect(rank.effects.length, `${ability.name} rank ${rank.rank}`).toBeGreaterThan(0); + expect(rank.effects.some((effect) => { + if (["trigger-spell", "scripted", "unsupported"].includes(effect.kind)) return false; + if (effect.kind !== "apply-aura") return true; + return Boolean( + effect.control + || effect.aura.modifiers?.length + || effect.aura.absorbs?.length + || effect.aura.procs?.length + || effect.aura.utilityTags?.length + || effect.aura.controlImmunities?.length + || effect.aura.reflectSpellChance + || effect.aura.redirectDamagePercent, + ); + }), `${ability.name} rank ${rank.rank}`).toBe(true); + } + } + }); + + it("does not promote triggered rank-zero child spells into player ranks", () => { + expect(byId("wow335-warrior-execute").ranks?.map((rank) => rank.spellId)).not.toContain(20647); + expect(byId("wow335-priest-divine-hymn").ranks?.map((rank) => rank.spellId)).toEqual([64843]); + expect(byId("wow335-death-knight-death-coil").ranks?.map((rank) => rank.spellId)).not.toContain(47632); + }); + + it("keeps percentage costs and form resources source-correct", () => { + expect(byId("wow335-mage-frostbolt").cost).toMatchObject({ resource: "mana", amount: 14, percentage: true }); + expect(byId("wow335-druid-claw").cost).toMatchObject({ resource: "energy", amount: 45 }); + expect(byId("wow335-druid-maul").cost).toMatchObject({ resource: "rage", amount: 15 }); + }); + + it("provides mechanics for previously silent class scripts and hidden proc spells", () => { + expect(effectsOfKind(byId("wow335-warrior-slam"), "damage")).not.toEqual([]); + expect(effectsOfKind(byId("wow335-death-knight-death-grip"), "pull")).not.toEqual([]); + expect(effectsOfKind(byId("wow335-shaman-windfury-weapon"), "apply-aura")[0]?.aura.procs).not.toEqual([]); + expect(effectsOfKind(byId("wow335-shaman-lightning-shield"), "apply-aura")[0]?.aura.procs).toEqual(expect.arrayContaining([ + expect.objectContaining({ triggers: "damage-taken", charges: 3 }), + ])); }); it("creates source-named stat and avoidance auras", () => { @@ -77,6 +110,28 @@ describe("WoW 3.3.5 executable effect mapping", () => { expect(shield.effects.some((effect) => effect.kind === "shield")).toBe(false); }); + it("maps Paladin emergency cooldowns to their source-backed mechanics", () => { + const layOnHands = byId("wow335-paladin-lay-on-hands"); + expect(effectsOfKind(layOnHands, "heal")).toContainEqual(expect.objectContaining({ + coefficient: 0, + percentMaxHealth: 1, + })); + + const handOfProtection = byId("wow335-paladin-hand-of-protection"); + const immunity = effectsOfKind(handOfProtection, "apply-aura") + .find((effect) => effect.sourceAuraType === 39); + expect(immunity?.aura).toMatchObject({ + durationMs: 6_000, + modifiers: [{ + kind: "damage", + direction: "taken", + school: "physical", + operation: "percent", + value: -1, + }], + }); + }); + it("keeps periodic damage and healing auras out of the generic HUD strip", () => { const pain = byId("wow335-priest-shadow-word-pain"); const painAura = effectsOfKind(pain, "apply-aura") @@ -123,11 +178,11 @@ describe("WoW 3.3.5 executable effect mapping", () => { .find((effect) => effect.sourceAuraType === 42); expect(seal?.aura.procs).toEqual([ expect.objectContaining({ - triggers: expect.arrayContaining(["hit"]), + triggers: "hit", action: { kind: "custom", - id: "wow335-trigger-spell", - data: { spellId: 20170 }, + id: "classic-status", + data: { status: "stun", durationMs: 2_000 }, }, }), ]); diff --git a/src/game/wow335AbilityCatalog.ts b/src/game/wow335AbilityCatalog.ts index ecefea2d..a55243a1 100644 --- a/src/game/wow335AbilityCatalog.ts +++ b/src/game/wow335AbilityCatalog.ts @@ -125,6 +125,11 @@ function effectTargetsHostile(effect: Wow335Effect): boolean { } function schoolFromMask(mask: number): DamageSchool | undefined { + const matches = schoolsFromMask(mask); + return matches.length === 1 ? matches[0] : undefined; +} + +function schoolsFromMask(mask: number): readonly DamageSchool[] { const schools: readonly [number, DamageSchool][] = [ [1, "physical"], [2, "holy"], @@ -134,8 +139,7 @@ function schoolFromMask(mask: number): DamageSchool | undefined { [32, "shadow"], [64, "arcane"], ]; - const matches = schools.filter(([bit]) => (mask & bit) !== 0); - return matches.length === 1 ? matches[0]?.[1] : undefined; + return schools.filter(([bit]) => (mask & bit) !== 0).map(([, school]) => school); } function percentValue(effect: Wow335Effect): number { @@ -158,6 +162,7 @@ function auraModifiers(effect: Wow335Effect): readonly AuraModifier[] { case 221: return percentStat("threat"); case 13: return [{ kind: "damage", direction: "dealt", school: schoolFromMask(effect.miscValue), operation: "flat", value: effect.basePoints }]; case 14: return [{ kind: "damage", direction: "taken", school: schoolFromMask(effect.miscValue), operation: "flat", value: effect.basePoints }]; + case 20: return flatStat("health-regeneration"); case 22: case 83: case 123: @@ -182,6 +187,17 @@ function auraModifiers(effect: Wow335Effect): readonly AuraModifier[] { case 34: case 250: return flatStat("maximum-health"); case 35: return [{ kind: "resource", resource: "power", property: "maximum", operation: "flat", value: effect.basePoints }]; + // SPELL_AURA_SCHOOL_IMMUNITY. Multi-school masks are common (Divine + // Shield, Ice Block, Cyclone); retain every bit instead of dropping the + // aura unless exactly one school was selected. + case 39: + case 267: return schoolsFromMask(effect.miscValue).map((school) => ({ + kind: "damage" as const, + direction: "taken" as const, + school, + operation: "percent" as const, + value: -1, + })); case 47: return percentStat("parry"); case 49: return percentStat("dodge"); case 50: return percentStat("critical-healing"); @@ -200,6 +216,7 @@ function auraModifiers(effect: Wow335Effect): readonly AuraModifier[] { case 71: case 179: return percentStat("spell-critical-strike"); case 59: return [{ kind: "damage", direction: "dealt", operation: "flat", value: effect.basePoints }]; + case 61: return percentStat("haste"); case 65: case 138: case 140: @@ -260,6 +277,9 @@ function auraModifiers(effect: Wow335Effect): readonly AuraModifier[] { case 189: case 220: return flatStat(`combat-rating:${effect.miscValue}`); case 240: return flatStat("expertise"); + case 230: return flatStat("maximum-health"); + case 271: return [{ kind: "damage", direction: "taken", operation: "percent", value: percentValue(effect) }]; + case 280: return percentStat("armor-penetration"); case 248: return percentStat("combat-result"); case 251: return percentStat("enemy-dodge"); case 253: return percentStat("block-critical-strike"); @@ -279,11 +299,56 @@ function controlFromAura(auraType: number): AbilityAuraControl | undefined { case 27: return { kind: "silence" }; case 60: return { kind: "silence" }; case 67: - case 254: return { kind: "disarm" }; + case 254: + case 278: return { kind: "disarm" }; + case 56: return { kind: "confuse" }; + case 92: return { kind: "root" }; default: return undefined; } } +function exclusiveGroupForAbility(classId: BaseClassId, abilityName: string): string | undefined { + if (/\bStance$/i.test(abilityName)) return `${classId}:stance`; + if (/^Seal of\b/i.test(abilityName)) return "paladin:seal"; + if (/\bAura$/i.test(abilityName)) return `${classId}:aura`; + if (/^(?:Greater )?Blessing of\b/i.test(abilityName)) return "paladin:blessing"; + if (/^Aspect of\b/i.test(abilityName)) return "hunter:aspect"; + if (/^Track\b|^Sense (?:Undead|Demons)$/i.test(abilityName)) return `${classId}:tracking`; + if (/\b(?:Bear|Cat|Travel|Aquatic|Flight|Tree of Life) Form$/i.test(abilityName)) return "druid:form"; + if (/\bArmor$/i.test(abilityName)) return `${classId}:armor`; + if (/\bPresence$/i.test(abilityName)) return "death-knight:presence"; + if (/ Weapon$/i.test(abilityName)) return "shaman:weapon-enchant"; + return undefined; +} + +function utilityTagsForAura(auraType: number, abilityName: string): readonly string[] { + const tags: string[] = []; + if (auraType === 16 || /\bStealth|Prowl\b/i.test(abilityName)) tags.push("stealth"); + if ([17, 19, 44, 151].includes(auraType)) tags.push("tracking"); + if (auraType === 36) tags.push("shapeshift"); + if (auraType === 66) tags.push("feign-death"); + if (auraType === 78) tags.push("mounted"); + if (auraType === 82) tags.push("water-breathing"); + if (auraType === 104) tags.push("water-walking"); + if (auraType === 105) tags.push("slow-fall"); + if ([1, 4, 68, 121, 128, 226, 292].includes(auraType)) tags.push(`classic-aura:${auraType}`); + if (auraType === 120) tags.push("untrackable"); + if (auraType === 149) tags.push("pushback-resistance"); + if (auraType === 25) tags.push("pacified"); + if (auraType === 41) tags.push("reveal-stealth"); + if (auraType === 91) tags.push("reduced-aggro-radius"); + return tags; +} + +function controlImmunitiesForAura(auraType: number, miscValue: number): AuraDefinition["controlImmunities"] { + if (auraType !== 77) return undefined; + if (miscValue === 5) return ["fear"]; + if (miscValue === 7 || miscValue === 11) return ["root"]; + if (miscValue === 10) return ["sleep"]; + if (miscValue === 12) return ["stun"]; + return undefined; +} + function inferredProcTriggers(description: string, auraType: number): readonly ProcTrigger[] { if (auraType === 23 || auraType === 48 || auraType === 226 || auraType === 227) return ["periodic"]; const triggers: ProcTrigger[] = []; @@ -355,16 +420,176 @@ function dispelCategoryForAura( } function namedAuraForEffect( + classId: BaseClassId, effect: Wow335Effect, rank: Wow335Rank, abilityName: string, effectIndex: number, ): AuraDefinition { const durationMs = rank.durationMs > 0 ? rank.durationMs : null; - const proc = procForAura(effect, rank, rank.description); + const hiddenProcOverrides = new Set([ + "Seal of Justice", "Lightning Shield", "Water Shield", "Frost Armor", "Ice Armor", "Molten Armor", "Nature's Grasp", + ]); + const proc = hiddenProcOverrides.has(abilityName) ? undefined : procForAura(effect, rank, rank.description); const school = schoolFromMask(effect.miscValue); + const auraId = `wow335:${rank.spellId}:effect:${effectIndex}:aura:${effect.auraType}`; + const modifiers = [...auraModifiers(effect)]; + if (abilityName === "Greater Blessing of Sanctuary" && effect.auraType === 4) { + modifiers.push( + { kind: "damage", direction: "taken", operation: "percent", value: -0.03 }, + { kind: "stat", stat: "stamina", operation: "percent", value: 0.1 }, + ); + } + if (abilityName === "Ice Block" && effect.auraType === 39) { + modifiers.push({ kind: "damage", direction: "taken", school: "physical", operation: "percent", value: -1 }); + } + if (effect.auraType === 36 && ["Bear Form", "Dire Bear Form"].includes(abilityName)) { + modifiers.push( + { kind: "stat", stat: "armor", operation: "percent", value: abilityName === "Dire Bear Form" ? 3.7 : 1.8 }, + { kind: "stat", stat: "stamina", operation: "percent", value: abilityName === "Dire Bear Form" ? 0.25 : 0.1 }, + ); + } + if (effect.auraType === 36 && abilityName === "Cat Form") { + modifiers.push( + { kind: "stat", stat: "attack-power", operation: "percent", value: 0.1 }, + { kind: "stat", stat: "movement-speed", operation: "percent", value: 0.3 }, + ); + } + if (effect.auraType === 36 && ["Travel Form", "Ghost Wolf"].includes(abilityName)) { + modifiers.push({ kind: "stat", stat: "movement-speed", operation: "percent", value: 0.4 }); + } + if (effect.auraType === 36 && ["Flight Form", "Swift Flight Form"].includes(abilityName)) { + modifiers.push({ kind: "stat", stat: "movement-speed", operation: "percent", value: abilityName === "Swift Flight Form" ? 2.8 : 0.6 }); + } + if (effect.auraType === 36 && abilityName === "Tree of Life") { + modifiers.push({ kind: "healing", direction: "done", operation: "percent", value: 0.06 }); + } + if (effect.auraType === 36 && abilityName === "Defensive Stance") { + modifiers.push( + { kind: "damage", direction: "taken", operation: "percent", value: -0.1 }, + { kind: "stat", stat: "threat", operation: "percent", value: 0.3 }, + ); + } + if (effect.auraType === 36 && abilityName === "Berserker Stance") { + modifiers.push( + { kind: "stat", stat: "critical-strike", operation: "percent", value: 0.03 }, + { kind: "damage", direction: "taken", operation: "percent", value: 0.05 }, + ); + } + if (effect.auraType === 21 && abilityName === "Aspect of the Viper") { + modifiers.push({ + kind: "resource", + resource: "mana", + property: "regeneration", + operation: "flat", + value: Math.max(1, Math.abs(effect.basePoints)), + }); + } + const specialProcs: AuraProcDefinition[] = []; + const procAmount = Math.max(1, Math.round(playerCombatPower(Math.max(1, rank.sourceLevel)) * 0.12)); + if (["Seal of Righteousness", "Seal of Vengeance", "Seal of Corruption"].includes(abilityName) && effectIndex === 0) { + specialProcs.push({ + id: `${auraId}:seal-damage`, + triggers: "hit", + chance: 1, + action: { kind: "damage", amount: procAmount, school: "holy", target: "event-other" }, + }); + } else if (abilityName === "Seal of Light" && effectIndex === 0) { + specialProcs.push({ + id: `${auraId}:seal-heal`, + triggers: "hit", + chance: 1, + action: { kind: "heal", amount: procAmount, target: "aura-target" }, + }); + } else if (abilityName === "Seal of Wisdom" && effectIndex === 0) { + specialProcs.push({ + id: `${auraId}:seal-mana`, + triggers: "hit", + chance: 1, + action: { kind: "resource", resource: "mana", amount: Math.max(1, Math.round(procAmount / 3)), target: "aura-target" }, + }); + } + if (abilityName === "Holy Shield" && effect.auraType === 43) { + specialProcs.push({ + id: `${auraId}:holy-shield`, + triggers: "block", + chance: 1, + action: { kind: "damage", amount: procAmount, school: "holy", target: "event-other" }, + }); + } + if (abilityName === "Retaliation" && effect.auraType === 4) { + specialProcs.push({ + id: `${auraId}:retaliation`, triggers: "damage-taken", chance: 1, charges: 30, + action: { kind: "damage", amount: Math.max(1, Math.round(procAmount * 1.5)), school: "physical", target: "event-other" }, + }); + } + if (abilityName === "Judgement of Light" && effect.auraType === 4) { + specialProcs.push({ + id: `${auraId}:judgement-light`, triggers: "damage-taken", chance: 1, + action: { kind: "heal", amount: procAmount, target: "event-other" }, + }); + } + if (abilityName === "Judgement of Wisdom" && effect.auraType === 4) { + specialProcs.push({ + id: `${auraId}:judgement-wisdom`, triggers: "damage-taken", chance: 1, + action: { kind: "resource", resource: "mana", amount: Math.max(1, Math.round(procAmount / 3)), target: "event-other" }, + }); + } + if (abilityName === "Seal of Justice" && effect.auraType === 42) { + specialProcs.push({ + id: `${auraId}:seal-justice`, triggers: "hit", chance: 0.2, + action: { kind: "custom", id: "classic-status", data: { status: "stun", durationMs: 2_000 } }, + }); + } + if (abilityName === "Lightning Shield" && effect.auraType === 42) { + specialProcs.push({ + id: `${auraId}:lightning-shield`, triggers: "damage-taken", chance: 1, charges: 3, + action: { kind: "damage", amount: Math.max(1, effect.basePoints), school: "nature", target: "event-other" }, + }); + } + if (abilityName === "Water Shield" && effect.auraType === 42) { + specialProcs.push({ + id: `${auraId}:water-shield`, triggers: "damage-taken", chance: 1, charges: 3, + action: { kind: "resource", resource: "mana", amount: Math.max(1, effect.basePoints), target: "aura-target" }, + }); + } + if (["Frost Armor", "Ice Armor"].includes(abilityName) && effect.auraType === 42) { + specialProcs.push({ + id: `${auraId}:frost-slow`, triggers: "damage-taken", chance: 1, + action: { kind: "custom", id: "classic-status", data: { status: "slow", durationMs: 5_000, magnitude: 0.3 } }, + }); + } + if (abilityName === "Molten Armor" && effect.auraType === 42) { + specialProcs.push({ + id: `${auraId}:molten-retaliation`, triggers: "damage-taken", chance: 1, + action: { kind: "damage", amount: procAmount, school: "fire", target: "event-other" }, + }); + } + if (abilityName === "Nature's Grasp" && effect.auraType === 42) { + specialProcs.push({ + id: `${auraId}:natures-grasp`, triggers: "damage-taken", chance: 1, charges: 1, + action: { kind: "custom", id: "classic-status", data: { status: "root", durationMs: 10_000 } }, + }); + } + if (abilityName === "Recklessness" && effect.auraType === 107) { + modifiers.push({ kind: "stat", stat: "critical-strike", operation: "percent", value: 1 }); + } + const sacredShield = abilityName === "Sacred Shield" && effect.auraType === 4; + if (sacredShield) { + specialProcs.push({ + id: `${auraId}:sacred-shield-refresh`, + triggers: "damage-taken", + chance: 1, + internalCooldownMs: 6_000, + action: { kind: "apply-aura", auraId, target: "aura-target" }, + }); + } + const utilityTags = [ + ...utilityTagsForAura(effect.auraType, abilityName), + ...(abilityName === "Light's Beacon" ? ["beacon-of-light"] : []), + ]; return { - id: `wow335:${rank.spellId}:effect:${effectIndex}:aura:${effect.auraType}`, + id: auraId, name: `${abilityName} (DBC ${rank.spellId}, Aura ${effect.auraType})`, disposition: effectTargetsHostile(effect) ? "debuff" : "buff", ...([3, 8].includes(effect.auraType) && effect.periodMs > 0 @@ -373,21 +598,37 @@ function namedAuraForEffect( durationMs, maxStacks: 1, stackBehavior: "refresh", + ...(exclusiveGroupForAbility(classId, abilityName) || abilityName === "Light's Beacon" + ? { exclusiveGroup: abilityName === "Light's Beacon" ? "paladin:beacon" : exclusiveGroupForAbility(classId, abilityName) } + : {}), + ...(utilityTags.length ? { utilityTags } : {}), + ...(controlImmunitiesForAura(effect.auraType, effect.miscValue) + ? { controlImmunities: controlImmunitiesForAura(effect.auraType, effect.miscValue) } + : {}), + ...(effect.auraType === 28 + ? { reflectSpellChance: Math.min(1, Math.max(0, Math.abs(effect.basePoints) / 100)) } + : {}), + ...(effect.auraType === 74 + ? { reflectSpellChance: Math.min(1, Math.max(0, Math.abs(effect.basePoints) / 100)) } + : {}), + ...(effect.auraType === 81 + ? { redirectDamagePercent: Math.min(1, Math.max(0, Math.abs(effect.basePoints) / 100)) } + : {}), ...(dispelCategoryForAura(abilityName, rank.description, rank.durationMs) !== undefined ? { dispelCategory: dispelCategoryForAura(abilityName, rank.description, rank.durationMs) } : {}), - ...(auraModifiers(effect).length ? { modifiers: auraModifiers(effect) } : {}), - ...([69, 97].includes(effect.auraType) + ...(modifiers.length ? { modifiers } : {}), + ...([69, 97].includes(effect.auraType) || sacredShield ? { absorbs: [{ id: `wow335:${rank.spellId}:absorb:${effectIndex}`, - amount: Math.max(0, effect.basePoints), + amount: sacredShield ? Math.max(1, Math.round(playerCombatPower(Math.max(1, rank.sourceLevel)) * 0.75)) : Math.max(0, effect.basePoints), ...(school !== undefined ? { school } : {}), perStack: false, }], } : {}), - ...(proc ? { procs: [proc] } : {}), + ...(proc || specialProcs.length ? { procs: [...(proc ? [proc] : []), ...specialProcs] } : {}), }; } @@ -437,16 +678,183 @@ function fallbackCoefficient(effect: Wow335Effect, rank: Wow335Rank): number { return Math.max(0.08, Math.min(4, average / playerCombatPower(Math.max(1, rank.sourceLevel || rank.level)))); } -function effectsForRank(rank: Wow335Rank, abilityName: string): readonly AbilityEffect[] { +function utilityAction(effectType: number): Extract["action"] { + if (effectType === 24) return "create-item"; + if (effectType === 33) return "open-lock"; + if (effectType === 50) return "portal"; + if (effectType === 54) return "weapon-enchant"; + if (effectType === 71) return "pickpocket"; + if (effectType === 72) return "farsight"; + return "class-script"; +} + +function classScriptEffects( + classId: BaseClassId, + abilityName: string, + rank: Wow335Rank, +): readonly AbilityEffect[] { + const power = playerCombatPower(Math.max(1, rank.sourceLevel || rank.level)); + const aura = ( + id: string, + modifiers: readonly AuraModifier[], + procs: readonly AuraProcDefinition[] = [], + ): AbilityEffect => ({ + kind: "apply-aura", + aura: { + id: `wow335:${rank.spellId}:${id}`, + name: abilityName, + disposition: "buff", + durationMs: rank.durationMs > 0 ? rank.durationMs : null, + maxStacks: 1, + stackBehavior: "refresh", + exclusiveGroup: exclusiveGroupForAbility(classId, abilityName), + ...(modifiers.length ? { modifiers } : {}), + ...(procs.length ? { procs } : {}), + utilityTags: ["weapon-enchant"], + }, + sourceEffectType: 3, + sourceAuraType: 4, + miscValue: 0, + triggerSpellId: 0, + }); + switch (`${classId}:${abilityName}`) { + case "warrior:Slam": return [{ kind: "damage", coefficient: 1.5 }]; + case "warrior:Charge": return [{ kind: "status", status: "stun", durationMs: 1_500 }]; + case "warrior:Intercept": return [{ kind: "status", status: "stun", durationMs: 3_000 }]; + case "warrior:Sunder Armor": return [{ + kind: "apply-aura", + aura: { + id: `wow335:${rank.spellId}:sunder-armor`, name: abilityName, disposition: "debuff", durationMs: 30_000, + maxStacks: 5, stackBehavior: "add", + modifiers: [{ kind: "damage", direction: "taken", school: "physical", operation: "percent", value: 0.04, perStack: true }], + }, + sourceEffectType: 6, sourceAuraType: 4, miscValue: 0, triggerSpellId: 0, + }]; + case "warrior:Shattering Throw": return [ + { kind: "damage", coefficient: 1 }, + { kind: "status", status: "marked", durationMs: 10_000, magnitude: 0.2 }, + ]; + case "paladin:Judgement of Justice": return [{ kind: "status", status: "root", durationMs: 10_000 }]; + case "paladin:Righteous Defense": return [{ kind: "taunt", durationMs: 3_000, maxTargets: 3 }]; + case "paladin:Hand of Salvation": return [{ kind: "threat", mode: "percent", amount: -20, recipient: "ability-target" }]; + case "paladin:Divine Intervention": return [{ + kind: "apply-aura", + aura: { + id: `wow335:${rank.spellId}:divine-intervention`, name: abilityName, disposition: "buff", durationMs: 180_000, + modifiers: schoolsFromMask(127).map((school) => ({ + kind: "damage" as const, direction: "taken" as const, school, operation: "percent" as const, value: -1, + })), + }, + sourceEffectType: 64, sourceAuraType: 39, miscValue: 127, triggerSpellId: 0, + }, { + kind: "utility", action: "class-script", effectType: 77, auraType: 0, miscValue: 0, triggerSpellId: 0, durationMs: 0, + }]; + case "hunter:Disengage": return [{ kind: "movement", movement: "leap", toward: "away" }]; + case "hunter:Freezing Arrow": return [{ kind: "status", status: "freeze", durationMs: 10_000 }]; + case "hunter:Feign Death": return [{ kind: "threat", mode: "percent", amount: -100 }]; + case "rogue:Shiv": return [{ kind: "damage", coefficient: 1 }]; + case "rogue:Garrote": return [{ kind: "status", status: "silence", durationMs: 3_000 }]; + case "rogue:Cloak of Shadows": return [{ + kind: "dispel", mode: "cleanse", relationship: "friendly", categories: ["magic"], maxCount: 10, + }]; + case "priest:Shadowfiend": return [{ kind: "summon", creatureId: 19668, coefficient: 0.5, durationMs: 15_000 }]; + case "priest:Prayer of Mending": return [{ + kind: "apply-aura", + aura: { + id: `wow335:${rank.spellId}:prayer-of-mending`, + name: abilityName, + disposition: "buff", + durationMs: 30_000, + maxStacks: 1, + stackBehavior: "refresh", + procs: [{ + id: `wow335:${rank.spellId}:prayer-of-mending-proc`, + triggers: "damage-taken", + chance: 1, + charges: 5, + action: { kind: "heal", amount: Math.max(1, Math.round(power * 0.8)), target: "aura-target" }, + }], + }, + sourceEffectType: 64, + sourceAuraType: 42, + miscValue: 0, + triggerSpellId: 0, + }]; + case "death-knight:Death Grip": return [{ kind: "pull", toward: "caster" }]; + case "death-knight:Blood Tap": return [{ kind: "rune", action: "activate", count: 1 }]; + case "death-knight:Chains of Ice": return [ + { kind: "status", status: "root", durationMs: 3_000 }, + { kind: "status", status: "slow", durationMs: 10_000, magnitude: 0.95 }, + ]; + case "death-knight:Icy Touch": return [{ kind: "dot", coefficient: 0.22, ticks: 5, intervalMs: 3_000, tag: "frost-fever" }]; + case "death-knight:Plague Strike": return [{ kind: "dot", coefficient: 0.22, ticks: 5, intervalMs: 3_000, tag: "blood-plague" }]; + case "death-knight:Pestilence": return [{ kind: "damage", coefficient: 0.35 }]; + case "death-knight:Raise Dead": return [{ kind: "summon", creatureId: 26125, coefficient: 0.45, durationMs: 60_000 }]; + case "death-knight:Army of the Dead": return Array.from({ length: 8 }, () => ({ + kind: "summon" as const, creatureId: 24207, coefficient: 0.2, durationMs: 40_000, + })); + case "shaman:Rockbiter Weapon": return [aura("rockbiter", [ + { kind: "damage", direction: "dealt", school: "physical", operation: "flat", value: Math.max(1, Math.round(power * 0.12)) }, + ])]; + case "shaman:Frostbrand Weapon": return [aura("frostbrand", [], [{ + id: `wow335:${rank.spellId}:frostbrand-proc`, triggers: "hit", chance: 0.2, + action: { kind: "damage", amount: Math.max(1, Math.round(power * 0.3)), school: "frost", target: "event-other" }, + }])]; + case "shaman:Flametongue Weapon": return [aura("flametongue", [], [{ + id: `wow335:${rank.spellId}:flametongue-proc`, triggers: "hit", chance: 1, + action: { kind: "damage", amount: Math.max(1, Math.round(power * 0.18)), school: "fire", target: "event-other" }, + }])]; + case "shaman:Windfury Weapon": return [aura("windfury", [], [{ + id: `wow335:${rank.spellId}:windfury-proc`, triggers: "hit", chance: 0.2, + action: { kind: "damage", amount: Math.max(1, Math.round(power * 0.75)), school: "physical", target: "event-other" }, + }])]; + case "warlock:Soulshatter": return [{ kind: "threat", mode: "percent", amount: -90 }]; + case "warlock:Demonic Circle: Summon": return [{ kind: "summon", creatureId: 19175, coefficient: 0, durationMs: 360_000 }]; + case "warlock:Demonic Circle: Teleport": return [{ kind: "movement", movement: "teleport", toward: "away" }]; + case "hunter:Misdirection": return [{ kind: "threat", mode: "redirect", amount: 100 }]; + case "rogue:Tricks of the Trade": return [{ kind: "threat", mode: "redirect", amount: 100 }]; + case "mage:Blink": return [{ kind: "movement", movement: "leap", toward: "away" }]; + case "mage:Arcane Blast": return [{ + kind: "apply-aura", + recipient: "caster", + aura: { + id: "wow335:arcane-blast-stack", + name: "Arcane Blast", + disposition: "debuff", + durationMs: 6_000, + maxStacks: 4, + stackBehavior: "add", + modifiers: [{ kind: "resource", resource: "mana", property: "cost", operation: "percent", value: 0.15 }], + }, + sourceEffectType: 64, + sourceAuraType: 108, + miscValue: 0, + triggerSpellId: 0, + }]; + case "warlock:Inferno": return [{ kind: "summon", creatureId: 89, coefficient: 0.8, durationMs: 60_000 }]; + case "druid:Pounce": return [{ kind: "dot", coefficient: 0.18, ticks: 6, intervalMs: 3_000, tag: "pounce" }]; + default: return []; + } +} + +const COMBO_FINISHERS = new Set([ + "Eviscerate", "Slice and Dice", "Expose Armor", "Rupture", "Kidney Shot", "Envenom", "Deadly Throw", + "Rip", "Ferocious Bite", "Maim", "Savage Roar", +]); + +const DIRECT_COMBO_FINISHERS = new Set(["Eviscerate", "Envenom", "Deadly Throw", "Ferocious Bite"]); + +function effectsForRank(classId: BaseClassId, rank: Wow335Rank, abilityName: string): readonly AbilityEffect[] { const effects: AbilityEffect[] = []; for (const [effectIndex, effect] of rank.effects.entries()) { const coefficient = fallbackCoefficient(effect, rank); const scaling = amountScaling(effect, rank); if (APPLY_AURA_EFFECTS.has(effect.effectType) && effect.auraType > 0) { - const aura = namedAuraForEffect(effect, rank, abilityName, effectIndex); + const aura = namedAuraForEffect(classId, effect, rank, abilityName, effectIndex); effects.push({ kind: "apply-aura", aura, + ...([35, 65].includes(effect.effectType) ? { scope: "party" as const } : {}), ...(controlFromAura(effect.auraType) ? { control: controlFromAura(effect.auraType) } : {}), sourceEffectType: effect.effectType, sourceAuraType: effect.auraType, @@ -461,6 +869,42 @@ function effectsForRank(rank: Wow335Rank, abilityName: string): readonly Ability effects.push({ kind: "hot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs }); } else if (effect.auraType === 11) { effects.push({ kind: "taunt", durationMs: Math.max(3_000, rank.durationMs) }); + } else if (effect.auraType === 20 && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, rank.durationMs) / effect.periodMs)); + effects.push({ kind: "hot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs }); + } else if (effect.auraType === 53 && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, rank.durationMs) / effect.periodMs)); + effects.push({ kind: "dot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs, tag: `spell-${rank.spellId}` }); + effects.push({ + kind: "hot", + coefficient: abilityName === "Devouring Plague" ? coefficient * 0.15 : coefficient, + ...scaling, + ticks, + intervalMs: effect.periodMs, + }); + } else if (effect.auraType === 64 && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, rank.durationMs) / effect.periodMs)); + effects.push({ kind: "resource-drain", amount: Math.abs(effect.basePoints) * ticks, burn: false, resource: "mana", percentage: true }); + } else if (effect.auraType === 24) { + const ticks = effect.periodMs > 0 + ? Math.max(1, Math.round(Math.max(effect.periodMs, rank.durationMs) / effect.periodMs)) + : 1; + effects.push({ + kind: "resource", + resource: abilityName === "Enrage" ? "rage" : "mana", + amount: abilityName === "Innervate" ? 100 : Math.abs(effect.basePoints) * ticks, + ...(abilityName === "Innervate" ? { percentage: true } : {}), + }); + } else if (effect.auraType === 21 && abilityName === "Divine Plea") { + effects.push({ kind: "resource", resource: "mana", amount: 25, percentage: true }); + } else if (effect.auraType === 226 && abilityName === "Death and Decay" && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, rank.durationMs) / effect.periodMs)); + effects.push({ kind: "dot", coefficient, ...scaling, ticks, intervalMs: effect.periodMs, tag: `spell-${rank.spellId}` }); + } else if (effect.auraType === 226 && abilityName === "Frenzied Regeneration" && effect.periodMs > 0) { + const ticks = Math.max(1, Math.round(Math.max(effect.periodMs, rank.durationMs) / effect.periodMs)); + effects.push({ kind: "hot", coefficient: 0.3, ticks, intervalMs: effect.periodMs }); + } else if (effect.auraType === 226 && abilityName === "Mirror Image") { + effects.push({ kind: "summon", creatureId: effect.triggerSpellId || 58836, coefficient: 0.25, durationMs: Math.max(1_000, rank.durationMs) }); } continue; } @@ -492,8 +936,18 @@ function effectsForRank(rank: Wow335Rank, abilityName: string): readonly Ability effects.push({ kind: "damage", coefficient: weaponCoefficient }); continue; } - if (effect.effectType === 10 || effect.effectType === 67 || effect.effectType === 136) { - effects.push({ kind: "heal", coefficient, ...scaling }); + if (effect.effectType === 67) { + // SPELL_EFFECT_HEAL_MAX_HEALTH is used by Lay on Hands. Its DBC amount + // fields are intentionally zero because the target's maximum health is + // the amount; treating it as an ordinary coefficient heal makes the + // spell appear to do nothing. + effects.push({ kind: "heal", coefficient: 0, percentMaxHealth: 1, ...scaling }); + continue; + } + if (effect.effectType === 10 || effect.effectType === 136) { + effects.push(effect.effectType === 136 + ? { kind: "heal", coefficient: 0, percentMaxHealth: Math.max(0, Math.abs(effect.basePoints) / 100), ...scaling } + : { kind: "heal", coefficient, ...scaling }); continue; } if (effect.effectType === 30) { @@ -501,7 +955,7 @@ function effectsForRank(rank: Wow335Rank, abilityName: string): readonly Ability continue; } if (effect.effectType === 137) { - effects.push({ kind: "resource", amount: Math.abs(effect.basePoints) }); + effects.push({ kind: "resource", amount: Math.abs(effect.basePoints), percentage: true }); continue; } if (effect.effectType === 63 || effect.effectType === 91 || effect.effectType === 125 || effect.effectType === 130) { @@ -634,11 +1088,13 @@ function effectsForRank(rank: Wow335Rank, abilityName: string): readonly Ability if (effect.effectType === 0 && effect.auraType === 0) continue; if (NONCOMBAT_EFFECTS.has(effect.effectType)) { effects.push({ - kind: "unsupported", - combat: false, + kind: "utility", + action: utilityAction(effect.effectType), effectType: effect.effectType, auraType: effect.auraType, - reason: `Noncombat DBC effect ${effect.effectType}`, + miscValue: effect.miscValue, + triggerSpellId: effect.triggerSpellId, + durationMs: rank.durationMs, }); continue; } @@ -658,15 +1114,40 @@ function effectsForRank(rank: Wow335Rank, abilityName: string): readonly Ability effects.unshift({ kind: "damage", coefficient: 1 }); } } - return effects.length - ? effects + const scriptedFallbacks = classScriptEffects(classId, abilityName, rank); + const executable = effects + .filter((effect) => effect.kind !== "scripted" && effect.kind !== "unsupported") + .map((effect) => effect.kind === "utility" ? effect : effect); + const result = scriptedFallbacks.length + ? [...executable, ...scriptedFallbacks] + : executable; + let finalized = result; + if (DIRECT_COMBO_FINISHERS.has(abilityName)) { + finalized = [ + ...result.filter((effect) => effect.kind !== "damage" && effect.kind !== "finisher-damage"), + { kind: "finisher-damage", baseCoefficient: 0.55, perComboCoefficient: 0.45 }, + ]; + } + if (COMBO_FINISHERS.has(abilityName) && !finalized.some((effect) => effect.kind === "finisher-damage")) { + finalized = [...finalized, { kind: "combo", amount: -5 }]; + } + if ( + classId === "death-knight" + && rank.powerType === 5 + && finalized.some((effect) => ["damage", "dot", "status", "pull", "taunt"].includes(effect.kind)) + ) { + finalized = [...finalized, { kind: "resource", resource: "runic-power", amount: 10 }]; + } + return finalized.length + ? finalized : [{ - kind: "scripted", + kind: "utility", + action: "class-script", effectType: 0, auraType: 0, miscValue: 0, triggerSpellId: 0, - label: "Description-backed spell script", + durationMs: rank.durationMs, }]; } @@ -689,6 +1170,20 @@ function costForRank(resource: ResourceType, rank: Wow335Rank): number { return rank.powerCost; } +function resourceForRank(fallback: ResourceType, rank: Wow335Rank): ResourceType { + switch (rank.powerType) { + case -2: return "health"; + case 0: return "mana"; + case 1: return "rage"; + case 2: return "focus"; + case 3: return "energy"; + case 6: return "runic-power"; + // Runes (power type 5) are represented by the existing rune effects; + // their DBC powerCost is zero, so keep the class pool for display. + default: return fallback; + } +} + function rankDefinition( classId: BaseClassId, resource: ResourceType, @@ -696,8 +1191,9 @@ function rankDefinition( index: number, abilityName: string, ): AbilityRankDefinition { - const effects = effectsForRank(rank, abilityName); + const effects = effectsForRank(classId, rank, abilityName); const channeling = rank.channelDurationMs > 0; + const rankResource = resourceForRank(resource, rank); return { rank: rank.rank || index + 1, spellId: rank.spellId, @@ -707,7 +1203,11 @@ function rankDefinition( castTimeMs: channeling ? Math.max(rank.castTimeMs, rank.channelDurationMs) : rank.castTimeMs, cooldownMs: rank.cooldownMs, gcdMs: rank.gcdMs, - cost: { resource, amount: costForRank(resource, rank) }, + cost: { + resource: rankResource, + amount: costForRank(rankResource, rank), + ...(rank.powerCostPercentage > 0 ? { percentage: true } : {}), + }, effects, }; } @@ -724,12 +1224,22 @@ function sigil(name: string): string { function abilityDefinition(classId: BaseClassId, chain: Wow335Chain): AbilityDefinition | null { const resource = RESOURCE_BY_CLASS[classId]; - const ranks = chain.ranks.map((rank, index) => rankDefinition(classId, resource, rank, index, chain.name)); + // Some SpellChain rows include rank-zero triggered children or cosmetic + // variants after the actual learnable ranks (Execute's damage child, + // Divine Hymn's tick, Death Coil's split target spells, polymorph models). + // They are executable sub-spells, not a higher player rank. + const sourceRanks = chain.ranks.some((rank) => rank.rank > 0) + ? chain.ranks.filter((rank) => rank.rank > 0) + : chain.ranks; + const ranks = sourceRanks.map((rank, index) => rankDefinition(classId, resource, rank, index, chain.name)); const first = ranks[0]; - const firstRaw = chain.ranks[0]; + const firstRaw = sourceRanks[0]; if (!first || !firstRaw) return null; - const target = targetForRank(firstRaw, first.effects); - const radius = Math.max(0, ...firstRaw.effects.map((effect) => effect.radius)); + const target = abilityNameTarget(chain.name) ?? targetForRank(firstRaw, first.effects); + const radius = Math.max( + abilityNameRadius(chain.name), + ...firstRaw.effects.map((effect) => effect.radius), + ); const range = target === "self" ? { min: 0, max: 0 } : { @@ -752,6 +1262,9 @@ function abilityDefinition(classId: BaseClassId, chain: Wow335Chain): AbilityDef castMode: first.castMode, castTimeMs: first.castTimeMs, cooldownMs: first.cooldownMs, + ...(classicCooldownGroup(classId, chain.name) + ? { cooldownGroup: classicCooldownGroup(classId, chain.name) } + : {}), gcdMs: first.gcdMs, cost: first.cost, effects: first.effects, @@ -761,6 +1274,26 @@ function abilityDefinition(classId: BaseClassId, chain: Wow335Chain): AbilityDef }; } +function abilityNameRadius(abilityName: string): number { + if (abilityName === "Hellfire") return 10; + if (abilityName === "Mind Sear") return 10; + if (abilityName === "Pestilence") return 10; + if (abilityName === "Divine Hymn") return 40; + return 0; +} + +function abilityNameTarget(abilityName: string): AbilityTarget | undefined { + if (["Divine Hymn", "Tranquility", "Holy Nova", "Hellfire", "Army of the Dead"].includes(abilityName)) return "self"; + return undefined; +} + +function classicCooldownGroup(classId: BaseClassId, abilityName: string): string | undefined { + if (classId === "shaman" && / Shock$/i.test(abilityName)) return "shaman-shocks"; + if (classId === "hunter" && / Trap$/i.test(abilityName)) return "hunter-traps"; + if (classId === "mage" && /^(?:Fire|Frost) Ward$/i.test(abilityName)) return "mage-wards"; + return undefined; +} + export const WOW335_ABILITIES_BY_CLASS: Readonly> = Object.freeze(Object.fromEntries(BASE_CLASS_IDS.map((classId) => [ classId, diff --git a/src/scene/GameScene.tsx b/src/scene/GameScene.tsx index 78140180..c06bafc9 100644 --- a/src/scene/GameScene.tsx +++ b/src/scene/GameScene.tsx @@ -20,6 +20,7 @@ import { useGameStore } from "../game/store"; import { DungeonEnvironment } from "./DungeonEnvironment"; import { MobPopulation } from "./MobPopulation"; import { PartyPopulation } from "./PartyPopulation"; +import { GroundEffectTelegraphs } from "./GroundEffectTelegraphs"; import { PlayerRig } from "./PlayerRig"; import { useManastormStore } from "../game/manastormStore"; import { ManastormPortal } from "./ManastormPortal"; @@ -40,6 +41,9 @@ import { GameGltfLoaderLifecycle } from "./useGameGLTF"; import { CombatEffects } from "./CombatEffects"; import { PLAYER_GRAVITY } from "../game/playerMovement"; import { GmPlacementMarkers } from "./GmPlacementMarkers"; +import { useOnlineGroupStore } from "../app/onlineGroupStore"; +import { useOnlineSessionStore } from "../app/onlineSessionStore"; +import { OnlinePlayerPopulation } from "./OnlinePlayerPopulation"; export function GameScene() { const activeDungeonId = useGameStore((state) => state.activeDungeonId); @@ -88,6 +92,8 @@ export function GameScene() { const paused = useGameStore((state) => state.paused); const mapOpen = useGameStore((state) => state.mapOpen); const companionOpen = useGameStore((state) => state.companionOpen); + const sharedOnline = useOnlineGroupStore((state) => state.activeActivity !== null); + const onlineAuthority = useOnlineSessionStore((state) => state.snapshot?.authority ?? true); const canvasRef = useRef(null); const [readySessionRevision, setReadySessionRevision] = useState(null); const [safeGraphics, setSafeGraphics] = useState(false); @@ -96,9 +102,7 @@ export function GameScene() { const worldReady = encounterWorldIsReady(readySessionRevision, sessionRevision); const simulationBlocked = graphicsRecovery !== null || !worldReady - || paused - || mapOpen - || companionOpen; + || (!sharedOnline && (paused || mapOpen || companionOpen)); const allowedRuntimeIds = useMemo( () => gameMode === "manastorm" && manastormEncounter ? manastormChaoticLinkRuntimeIds(manastormEncounter, manastormPhase) @@ -236,7 +240,9 @@ export function GameScene() { {worldReady && ( <> - + + + state.areaEffects); + const pending = useCombatStore((state) => state.pendingGroundTarget); + return ( + + {pending ? ( + + + + + ) : null} + {effects.map((effect) => ( + + + + + ))} + + ); +} diff --git a/src/scene/ManastormPortal.tsx b/src/scene/ManastormPortal.tsx index 250f957d..f7ec7602 100644 --- a/src/scene/ManastormPortal.tsx +++ b/src/scene/ManastormPortal.tsx @@ -6,6 +6,7 @@ import { MANASTORM_BUBBLE_DEFAULT_RADIUS } from "../game/manastormClientOverlay" import { advanceManastormSession } from "../game/manastormSession"; import { useManastormStore } from "../game/manastormStore"; import { useGameStore } from "../game/store"; +import { requestOnlineInteraction } from "../game/onlineSessionRuntime"; const STORM_PARTICLES = [ [-0.9, 1.4, 0.4], @@ -101,6 +102,10 @@ export function ManastormPortal() { useGameStore.getState().playerPosition, ); if (inside && !wasInsideRef.current) { + if (requestOnlineInteraction("portal")) { + wasInsideRef.current = true; + return; + } transitionLatchedRef.current = true; transitionStartedAtRef.current = Date.now(); displayedCountdownRef.current = NEXT_WAVE_COUNTDOWN_SECONDS; diff --git a/src/scene/MobPopulation.tsx b/src/scene/MobPopulation.tsx index 8967c2bb..404d9b0d 100644 --- a/src/scene/MobPopulation.tsx +++ b/src/scene/MobPopulation.tsx @@ -73,6 +73,7 @@ import { resolveMobAnimationInterval, } from "./mobAnimationCadence"; import { useGameGLTF } from "./useGameGLTF"; +import { onlineSynchronizedMobTransform, requestOnlineInteraction } from "../game/onlineSessionRuntime"; const MOVEMENT_LOCKING_MOB_STATUSES: ReadonlySet = new Set([ "stun", "root", "sleep", "knockdown", "freeze", "charm", "confuse", @@ -916,7 +917,9 @@ function ProxyMob({ if (event.button !== PRIMARY_MOUSE_BUTTON) return; event.stopPropagation(); if (dead) { - useCombatStore.getState().lootMob(instanceId); + if (!requestOnlineInteraction("loot", instanceId)) { + useCombatStore.getState().lootMob(instanceId); + } return; } usePartyStore.getState().clearSelection(); @@ -1188,6 +1191,25 @@ function RoamingPack({ const forward = scratchForwards[index]; const member = definition.members[index]; const instanceId = `${definition.id}:${member.id}`; + const synchronizedTransform = onlineSynchronizedMobTransform(instanceId); + if (synchronizedTransform) { + const object = memberRefs.current[index]; + if (object) { + object.position.set(...synchronizedTransform.position); + object.rotation.y = synchronizedTransform.yaw; + } + chasePositions[index][0] = synchronizedTransform.position[0]; + chasePositions[index][1] = synchronizedTransform.position[1]; + chasePositions[index][2] = synchronizedTransform.position[2]; + updateMobRuntimePosition( + instanceId, + synchronizedTransform.position[0], + synchronizedTransform.position[1], + synchronizedTransform.position[2], + synchronizedTransform.yaw, + ); + continue; + } const mob = combat.mobs[instanceId]; const chasePosition = chasePositions[index]; const engaged = Boolean(mob?.engaged && !mob.dead); @@ -1303,6 +1325,24 @@ function StaticPopulationMember({ spawn, entities, active, showLabels, useOrigin const positionRef = useRef([...spawn.position]); useEffect(() => registerMobRuntime(spawn.id, spawn.position, spawn.yaw ?? 0), [spawn.id, spawn.position, spawn.yaw]); useFrame((_, delta) => { + const synchronizedTransform = onlineSynchronizedMobTransform(spawn.id); + if (synchronizedTransform) { + positionRef.current[0] = synchronizedTransform.position[0]; + positionRef.current[1] = synchronizedTransform.position[1]; + positionRef.current[2] = synchronizedTransform.position[2]; + if (groupRef.current) { + groupRef.current.position.set(...synchronizedTransform.position); + groupRef.current.rotation.y = synchronizedTransform.yaw; + } + updateMobRuntimePosition( + spawn.id, + synchronizedTransform.position[0], + synchronizedTransform.position[1], + synchronizedTransform.position[2], + synchronizedTransform.yaw, + ); + return; + } const mob = useCombatStore.getState().mobs[spawn.id]; const position = positionRef.current; const player = useGameStore.getState().playerPosition; diff --git a/src/scene/OnlinePlayerPopulation.tsx b/src/scene/OnlinePlayerPopulation.tsx new file mode 100644 index 00000000..2a6dee91 --- /dev/null +++ b/src/scene/OnlinePlayerPopulation.tsx @@ -0,0 +1,140 @@ +import { Html } from "@react-three/drei"; +import { useFrame } from "@react-three/fiber"; +import { useMemo, useRef, type CSSProperties } from "react"; +import type { Group } from "three"; +import { + classById, + clampAppearance, + createDefaultAppearance, + type ClassId, + type GenderId, + type RaceId, +} from "../app/characterCatalog"; +import { useOnlineSessionStore } from "../app/onlineSessionStore"; +import type { OnlineSessionPlayer } from "../app/onlineSessionTypes"; +import { CharacterModel, type AvatarIdentity } from "../avatar/CharacterModel"; +import { ProceduralAvatar } from "../avatar/ProceduralAvatar"; +import { useCombatStore } from "../game/combatStore"; +import { onlinePlayerActorId } from "../game/onlineSessionRuntime"; +import { usePartyStore } from "../game/partyStore"; + +const labelStyle: CSSProperties = { + color: "#d8f6ff", + fontFamily: "system-ui, sans-serif", + fontSize: "11px", + fontWeight: 700, + lineHeight: 1.1, + pointerEvents: "none", + textAlign: "center", + textShadow: "0 1px 2px #000, 0 0 5px #000", + userSelect: "none", + whiteSpace: "nowrap", +}; + +function validAppearance(player: OnlineSessionPlayer): AvatarIdentity { + const raceId = (player.character?.raceId ?? "human") as RaceId; + const gender = (player.character?.gender ?? "male") as GenderId; + const source = player.character?.appearance; + const appearance = source && [source.skinColor, source.face, source.hairStyle, source.hairColor, source.feature].every(Number.isFinite) + ? source + : createDefaultAppearance(); + return { + raceId, + gender, + classId: (player.character?.classId ?? "priest") as ClassId, + appearance: clampAppearance(raceId, gender, appearance), + }; +} + +function RemoteOnlinePlayer({ player, active }: { + readonly player: OnlineSessionPlayer; + readonly active: boolean; +}) { + const rootRef = useRef(null); + const movingRef = useRef(false); + const animationEventRef = useRef(player.animationEvent); + animationEventRef.current = player.animationEvent; + const previousTargetRef = useRef<[number, number, number]>([...player.position]); + const identity = useMemo(() => validAppearance(player), [player.character]); + const characterClass = classById(identity.classId); + const actorId = onlinePlayerActorId(player.accountId); + const selected = useCombatStore((state) => state.selectedFriendlyActorId === actorId); + + useFrame((_, delta) => { + const root = rootRef.current; + if (!root) return; + const target = player.position; + const previousTarget = previousTargetRef.current; + movingRef.current = Math.hypot( + target[0] - previousTarget[0], + target[2] - previousTarget[2], + ) > 0.015; + previousTarget[0] = target[0]; + previousTarget[1] = target[1]; + previousTarget[2] = target[2]; + const alpha = 1 - Math.exp(-18 * Math.min(delta, 0.05)); + root.position.x += (target[0] - root.position.x) * alpha; + root.position.y += (target[1] - root.position.y) * alpha; + root.position.z += (target[2] - root.position.z) * alpha; + const yawDelta = Math.atan2(Math.sin(player.yaw - root.rotation.y), Math.cos(player.yaw - root.rotation.y)); + root.rotation.y += yawDelta * alpha; + }); + + return ( + { + event.stopPropagation(); + event.nativeEvent.stopPropagation(); + if (event.button !== 0 || !active || player.health <= 0) return; + useCombatStore.getState().clearTarget(); + usePartyStore.getState().clearSelection(); + useCombatStore.getState().selectFriendlyActor(actorId); + }} + > + + + + + } + /> + {selected && player.health > 0 ? ( + + + + + ) : null} + 0 ? 1 : 0.55, + }}> +
{player.character?.name ?? player.username}
Online player · {player.role ?? "party"}
+ +
+ ); +} + +export function OnlinePlayerPopulation({ active = true }: { readonly active?: boolean }) { + const snapshot = useOnlineSessionStore((state) => state.snapshot); + if (!snapshot) return null; + const remotePlayers = snapshot.players.filter((player) => ( + player.accountId !== snapshot.localAccountId && player.character + )); + if (!remotePlayers.length) return null; + return ( + + {remotePlayers.map((player) => ( + + ))} + + ); +} diff --git a/src/scene/PartyPopulation.tsx b/src/scene/PartyPopulation.tsx index 6d094531..a50c6061 100644 --- a/src/scene/PartyPopulation.tsx +++ b/src/scene/PartyPopulation.tsx @@ -65,6 +65,7 @@ import { partyCombatRangeBand } from "../game/partyRuntime"; import { useWailingEncounterStore } from "../game/wailingCavernsEncounter"; import { clearPartyRuntimeAttackCorridor, + getPartyRuntimePosition, registerPartyRuntimePosition, updatePartyRuntimeAttackCorridor, updatePartyRuntimePosition, @@ -75,6 +76,8 @@ import { import { usePartyStore } from "../game/partyStore"; import { useGameStore } from "../game/store"; import { useManastormStore } from "../game/manastormStore"; +import { registerCombatSpatialProvider } from "../game/combatSpatial"; +import { PLAYER_AGGRO_ID } from "../game/aggro"; const PARTY_MOVE_SPEED = 5.25; const PARTY_CATCH_UP_SPEED = 7.5; @@ -266,12 +269,14 @@ function initialMemberPosition(index: number): MutablePartyWorldPosition { function PartyActors({ active, + simulate, navigationGraph, navigationFailed, objectives, stackAtEntrance, }: { readonly active: boolean; + readonly simulate: boolean; readonly navigationGraph: PartyNavigationGraph | null; readonly navigationFailed: boolean; readonly objectives: readonly DungeonBossObjective[]; @@ -442,6 +447,56 @@ function PartyActors({ const directFollowMovingRef = useRef(new Map()); const combatAnchorsRef = useRef(new Map()); const memberIdKey = members.map((member) => member.id).join("|"); + useEffect(() => registerCombatSpatialProvider({ + actor: (actorId) => { + const gameState = useGameStore.getState(); + if (actorId === PLAYER_AGGRO_ID) { + return { id: actorId, position: gameState.playerPosition, yaw: gameState.cameraYaw }; + } + const memberIndex = usePartyStore.getState().members.findIndex((member) => member.id === actorId); + const memberPosition = positionsRef.current.get(actorId); + if (memberPosition) { + return { + id: actorId, + position: memberPosition, + yaw: actorRefs.current[memberIndex]?.rotation.y ?? gameState.cameraYaw, + }; + } + const summon = useCombatStore.getState().summons.find((candidate) => candidate.id === actorId); + if (summon) return { id: actorId, position: summon.position, yaw: gameState.cameraYaw }; + const mobPosition = getMobPosition(actorId); + if (!mobPosition) return null; + const mob = useCombatStore.getState().mobs[actorId]; + const targetPosition = mob?.targetActorId === PLAYER_AGGRO_ID + ? gameState.playerPosition + : mob?.targetActorId + ? positionsRef.current.get(mob.targetActorId) + ?? useCombatStore.getState().summons.find((candidate) => candidate.id === mob.targetActorId)?.position + : null; + const yaw = targetPosition + ? Math.atan2(targetPosition[0] - mobPosition[0], targetPosition[2] - mobPosition[2]) + : 0; + return { id: actorId, position: mobPosition, yaw }; + }, + hasLineOfSight: hasStaticLineOfSight, + projectGroundPoint: (requested, maximumDistance, requestedOrigin) => { + const origin = requestedOrigin ?? useGameStore.getState().playerPosition; + const dx = requested[0] - origin[0]; + const dz = requested[2] - origin[2]; + const planar = Math.hypot(dx, dz); + const scale = planar > maximumDistance && planar > 0 ? maximumDistance / planar : 1; + const x = origin[0] + dx * scale; + const z = origin[2] + dz * scale; + const ray = new rapier.Ray({ x, y: requested[1] + 8, z }, { x: 0, y: -1, z: 0 }); + const hit = world.castRay( + ray, + 20, + true, + rapier.QueryFilterFlags.EXCLUDE_SENSORS | rapier.QueryFilterFlags.EXCLUDE_DYNAMIC, + ); + return hit ? [x, ray.origin.y - hit.timeOfImpact, z] : null; + }, + }), [hasStaticLineOfSight, memberIdKey, rapier, world]); const teleportPartyToPlayer = useCallback((player: PartyWorldPosition, now: number): void => { const party = usePartyStore.getState(); party.members.forEach((member, index) => { @@ -606,6 +661,21 @@ function PartyActors({ if (!active) return; const party = usePartyStore.getState(); if (!party.members.length) return; + if (!simulate) { + party.members.forEach((member, index) => { + const synchronized = getPartyRuntimePosition(member.id); + if (!synchronized) return; + const position = positionsRef.current.get(member.id) ?? initialMemberPosition(index); + position[0] = synchronized[0]; + position[1] = synchronized[1]; + position[2] = synchronized[2]; + positionsRef.current.set(member.id, position); + actorRefs.current[index]?.position.set(position[0], presentationY(position), position[2]); + const movingSignal = movingSignalsRef.current.get(member.id); + if (movingSignal) movingSignal.current = false; + }); + return; + } const game = useGameStore.getState(); const playerNavigation = game.playerNavigationPosition; appendPartyBreadcrumb(playerTrailRef.current, playerNavigation); @@ -1320,7 +1390,13 @@ function PartyActors({ ); } -export function PartyPopulation({ active = true }: { readonly active?: boolean }) { +export function PartyPopulation({ + active = true, + simulate = true, +}: { + readonly active?: boolean; + readonly simulate?: boolean; +}) { const activeDungeonId = useGameStore((state) => state.activeDungeonId); const gameMode = useGameStore((state) => state.gameMode); const sessionRevision = useGameStore((state) => state.sessionRevision); @@ -1383,6 +1459,7 @@ export function PartyPopulation({ active = true }: { readonly active?: boolean } div { height: 4px; margin-top: 3px; overflow: hidden; border-radius: 3px; background: rgba(0,0,0,.65); } +.summon-frame > div i { display: block; height: 100%; background: linear-gradient(90deg, #417b64, #78c7a2); } +.summon-frame--totem { border-color: rgba(220,188,91,.38); } +.summon-frame--totem > div i { background: linear-gradient(90deg, #8a6d2b, #d5b755); } +.ground-target-reticle { position: absolute; top: 50%; left: 50%; z-index: 20; display: grid; width: 220px; justify-items: center; gap: 5px; color: #f4e8ae; text-align: center; text-shadow: 0 2px 4px #000; transform: translate(-50%, -50%); pointer-events: auto; } +.ground-target-reticle > div { position: relative; width: 58px; height: 58px; border: 2px solid rgba(239,210,91,.9); border-radius: 50%; box-shadow: 0 0 18px rgba(238,199,71,.42), inset 0 0 16px rgba(238,199,71,.18); } +.ground-target-reticle > div i, .ground-target-reticle > div b { position: absolute; top: 50%; left: 50%; background: rgba(250,222,116,.95); transform: translate(-50%, -50%); } +.ground-target-reticle > div i { width: 76px; height: 1px; } +.ground-target-reticle > div b { width: 1px; height: 76px; } +.ground-target-reticle strong { font: 600 12px Georgia, serif; } +.ground-target-reticle small { max-width: 210px; color: #d5ddca; font-size: 7px; } +.ground-target-reticle span { display: flex; gap: 5px; } +.ground-target-reticle button { padding: 3px 8px; border: 1px solid rgba(232,207,116,.38); border-radius: 4px; background: rgba(7,18,12,.9); color: #edf2d9; font-size: 7px; } .timed-effect-strip { display: flex; max-width: 100%; @@ -2129,6 +2158,56 @@ html[data-display-layout="thor-preview"], html[data-display-layout="thor-preview .companion-map-card > div small { color: var(--front-dim); font-size: 7px; line-height: 1.4; } .companion-actions--game button { min-width: 78px; } +/* Optional online groups stay collapsed until a player needs lobby controls. */ +.online-group-panel { margin: 9px 0; border: 1px solid rgba(111,190,174,.24); border-radius: 8px; background: rgba(3,18,17,.72); color: var(--front-cream); } +.online-group-panel > summary { display: grid; min-height: 42px; grid-template-columns: 24px 1fr auto; align-items: center; gap: 7px; padding: 6px 9px; cursor: pointer; list-style: none; } +.online-group-panel > summary::-webkit-details-marker { display: none; } +.online-group-panel > summary > span { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid rgba(112,212,190,.42); border-radius: 50%; color: #87dcc7; font-size: 12px; } +.online-group-panel > summary strong { font: 12px Georgia, serif; font-weight: 400; } +.online-group-panel > summary small { color: #8fb4a9; font-size: 7px; letter-spacing: .05em; text-transform: uppercase; } +.online-group-panel[open] > summary { border-bottom: 1px solid rgba(111,190,174,.16); background: rgba(91,155,133,.07); } +.online-group-panel__body { display: grid; gap: 8px; padding: 8px; } +.online-group-panel__body section > strong, .online-group-roster header strong, .online-group-role > strong { color: #b6dfce; font-size: 7px; letter-spacing: .09em; text-transform: uppercase; } +.online-group-roster header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; } +.online-group-roster header small { color: var(--front-dim); font-size: 7px; } +.online-group-member { display: grid; grid-template-columns: 7px minmax(0, 1fr) auto auto; align-items: center; gap: 6px; padding: 5px 0; border-bottom: 1px solid rgba(203,219,180,.08); } +.online-group-member > span { width: 6px; height: 6px; border: 1px solid #6e776d; border-radius: 50%; background: #313b36; } +.online-group-member > span.is-ready { border-color: #72d0a0; background: #3fa16f; box-shadow: 0 0 5px rgba(92,211,143,.48); } +.online-group-member p { min-width: 0; margin: 0; } +.online-group-member p strong, .online-group-member p small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.online-group-member p strong { font-size: 8px; } +.online-group-member p small { margin-top: 1px; color: var(--front-dim); font-size: 6px; } +.online-group-member > b { color: #d2e5da; font-size: 6px; font-weight: 600; text-transform: uppercase; } +.online-group-member button, .online-group-invites button, .online-group-role button, .online-group-invite-form button, .online-group-leave { padding: 4px 7px; border: 1px solid rgba(143,201,180,.27); border-radius: 4px; background: rgba(89,139,113,.13); color: #e7f2e9; font-size: 7px; cursor: pointer; } +.online-group-member button:disabled, .online-group-invites button:disabled, .online-group-role button:disabled, .online-group-invite-form button:disabled, .online-group-leave:disabled { cursor: not-allowed; opacity: .45; } +.online-group-invites { display: grid; gap: 4px; padding: 6px; border: 1px solid rgba(218,188,91,.2); border-radius: 6px; background: rgba(129,104,33,.09); } +.online-group-invites > div { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 4px; } +.online-group-invites span b, .online-group-invites span small { display: block; } +.online-group-invites span b { font-size: 8px; } +.online-group-invites span small { color: var(--front-dim); font-size: 6px; } +.online-group-role { display: flex; align-items: center; justify-content: space-between; gap: 8px; } +.online-group-role > div { display: flex; gap: 4px; } +.online-group-role button.is-active { border-color: rgba(116,222,178,.7); background: rgba(62,139,105,.35); color: #dffff0; } +.online-group-ai-toggle { display: flex; align-items: center; gap: 7px; padding: 6px; border-radius: 6px; background: rgba(255,255,255,.025); cursor: pointer; } +.online-group-ai-toggle input { accent-color: #5fae84; } +.online-group-ai-toggle span strong, .online-group-ai-toggle span small { display: block; } +.online-group-ai-toggle span strong { font-size: 8px; } +.online-group-ai-toggle span small { margin-top: 1px; color: var(--front-dim); font-size: 6px; } +.online-group-invite-form { display: grid; gap: 3px; } +.online-group-invite-form > label { color: var(--front-dim); font-size: 6px; letter-spacing: .08em; text-transform: uppercase; } +.online-group-invite-form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 5px; } +.online-group-invite-form input { min-width: 0; padding: 6px 8px; border: 1px solid rgba(143,201,180,.22); border-radius: 5px; outline: none; background: rgba(0,0,0,.3); color: var(--front-cream); font: 8px inherit; } +.online-group-invite-form input:focus { border-color: rgba(111,211,181,.68); box-shadow: 0 0 0 2px rgba(76,165,136,.12); } +.online-group-activity { display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 7px; border: 1px solid rgba(221,186,82,.3); border-radius: 6px; background: rgba(145,108,22,.12); } +.online-group-activity span strong, .online-group-activity span small { display: block; } +.online-group-activity strong { color: #efd98d; font: 10px Georgia, serif; } +.online-group-activity small { color: var(--front-dim); font-size: 6px; } +.online-group-activity button { padding: 4px 7px; border: 1px solid rgba(221,186,82,.3); border-radius: 4px; background: rgba(131,96,19,.25); color: #efdda0; font-size: 7px; cursor: pointer; } +.online-group-leave { justify-self: start; border-color: rgba(192,116,103,.28); background: rgba(126,57,49,.12); color: #e8bbb2; } +.online-group-error { margin: 0; color: #f1a99d; font-size: 7px; line-height: 1.35; } +.main-menu-modes > .online-group-panel { max-width: 570px; } +.dungeon-select-copy > .online-group-panel, .manastorm-role-select > .online-group-panel { margin: 8px 0 10px; } + /* Dedicated native WebViews own separate measured viewports. */ .native-platform, .native-platform body, .native-platform #root { width: 100%; height: 100%; overscroll-behavior: none; } .native-platform .dedicated-display-surface { padding: 0; } diff --git a/src/ui/ActionBar.tsx b/src/ui/ActionBar.tsx index 641c6b21..6207ba3b 100644 --- a/src/ui/ActionBar.tsx +++ b/src/ui/ActionBar.tsx @@ -82,7 +82,11 @@ function ActionSlot({ const cooldownLabel = (item?.cooldownRemaining ?? 0) > 0.05 ? ", cooling down" : ""; - const targetLabel = item?.target === "friendly" ? ", targets selected ally or self" : ""; + const targetLabel = item?.target === "friendly" + ? ", targets selected ally or self" + : item?.target === "any" + ? ", targets selected enemy or ally" + : ""; const resourceLabel = item?.resourceCost ? `, costs ${item.resourceCost} ${item.resourceLabel ?? "resource"}` : ""; @@ -93,7 +97,7 @@ function ActionSlot({ return (